/* --------------------------------------------------------------------
   Variáveis CSS Gerais: Paleta de cores
--------------------------------------------------------------------- */
:root {
  --color01: #ffffff;
  --color02: #00e1ff;
  --color03: #3894B0;
  --color04: #3080AA;
  --color05: #127BCF;
  --color06: #286BA4;
  --color07: #000000;
  --color08: #d946ef;
}

/* --------------------------------------------------------------------
   Reset/Base
--------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
body {
  background-color: rgb(27, 27, 27);
}


/* --------------------------------------------------------------------
   HEADER, NAV, E MENU
--------------------------------------------------------------------- */
header {
  background-color: rgb(0, 0, 0);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow:
    0 0 5px #00e1ff,
    0 0 10px #00e1ff,
    0 0 20px #00e1ff,
    0 0 40px #286BA4,
    0 0 80px #286BA4;
}
.Nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
}
.logo img {
  width: 120px;
  height: 100px;
}
.Nav-list ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Nav-item {
  margin: 15px;
}
.Nav-link {
  text-decoration: none;
  font-size: 1.5rem;
   color: var(--color02);
    text-shadow: 0 0 2px #00e1ff;
  font-weight: 400;
  transition: .5s ease-in-out;
}.Nav-link:hover {
  color: var(--color06);
  text-shadow:
    0 0 5px #00e1ff;
}
.Menu_Mobile_Icon { display: none; }
.Mobile-Menu { display: none; }
.btn_topo { display: none; }

/* --------------------------------------------------------------------
   HOME SECTION E CONTEÚDO PRINCIPAL
--------------------------------------------------------------------- */
#home_section {
   margin-top: 150px;
  height: calc(100vh -90px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-direction: column;
  position: relative;
  z-index: 7777;
}
#home_section .home_content h1 {
  font-size: 70px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 1000;
  color: #00e1ff;
  animation: neonGlow 7s infinite alternate, flutuar 2s ease-in-out infinite;
}
#home_section .home_content h1 span {
  width: 100%;
  font-size: 70px;
  text-align: center;
  font-weight: 1000;
  color: #d946ef;
  animation: brilhoRoxo 7s infinite alternate;
}
#home_section .countdown {
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  background-color: #141414;
  padding: 40px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow:
    0 0 10px rgba(0, 225, 255, 0.2),
    0 0 20px rgba(217, 70, 239, 0.4),
    0 0 30px rgba(0, 0, 0, 0.4);
}
#home_section .countdown h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--color08);
  text-shadow:
    0 0 4px var(--color08),
    0 0 8px var(--color08);
  animation: blink 1s infinite;
}
.countdown .boxes {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.box {
  width: 130px;
  height: 100px;
  border-radius: 10px;
  background-color: #070707;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow:
    0 0 10px rgba(0, 225, 255, 0.2),
    0 0 20px rgba(217, 70, 239, 0.4),
    0 0 30px rgba(0, 0, 0, 0.4);
}

/* HOME02/03 */
.home02 {
  height:60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home02_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 900px;
  gap: 40px;
}
.home02_content h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
}
.home02_content h2 span {
  text-align: justify;
  color: #6d6d6d;
  font-size: 17pt;
  font-weight:800;
  margin-bottom: 150px;

}
.home_buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
 
  }
.home_buttons .btn_home_Se_Increver {
    background: linear-gradient(135deg, #00e1ff, #286BA4);
    color: #fff;
    border: none;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-shadow: 0 0 5px #00e1ff;
    box-shadow:
      0 0 5px #00e1ff,
      0 0 10px #00e1ff,
      0 0 20px #00e1ff,
      0 0 40px #286BA4;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: button_pulse 2s ease-in-out infinite;
  }
  .home_buttons .btn_home_Se_Increver:hover {
    transform: scale(1.05);
  }
  .home_buttons .btn_home_Ver_Regras {
    background: linear-gradient(135deg, #d946ef, #7c3aed);
    color: #fff;
    border: none;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-shadow: 0 0 5px #d946ef;
    box-shadow:
      0 0 5px #d946ef,
      0 0 10px #d946ef,
      0 0 20px #d946ef,
      0 0 40px #7c3aed;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: button_pulse 2s ease-in-out infinite;
  }
  .home_buttons .btn_home_Ver_Regras:hover {
    transform: scale(1.05);
  }
  @keyframes button_pulse {
    0% {transform: scaleY(1);}
    50% {transform: scaleY(1.2);}
    100% {transform: scaleY(1);}
  }
.home03 {
  height: 100vh !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -130px;
}
.home03 .home_03_regras_card h1 {
  width: 100%;
  text-align: center;
  font-size: 40px;
  font-weight:800 ;
  margin-bottom: 60px;
  animation: blink 1s infinite;
  text-shadow:
    0 0 4px var(--color02),
    0 0 8px var(--color02);
}
.home03 .home_03_regras_card h1 span {
  font-size: 40px;
  font-weight: 800;
  color: var(--color08);
  text-shadow:
    0 0 4px var(--color08),
    0 0 8px var(--color08);
}
.home03 div {

  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
}
.home03 .home_03_regras_card {
   display: flex;
  text-align: start;
  font-size: 18pt;
  font-weight: 500;
  margin-bottom: 100px;
  padding: 50px 20px;
  background-color: #141414;
  animation: pulseShadow 7s infinite ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  border-radius: 20px;
  filter: brightness(1.1);
}
.home03 .home_03_regras_card span {
  text-align: justify;
  color: #6d6d6d;
  font-size: 17pt;
  font-weight: 550;
}
.home03 .home_03_regras_card span b {
  font-size: 24px;
  color: var(--color08);
}
.home03 .home_03_regras_card span p {
  font-weight: 500;
  margin-top: 20px;
  color: var(--color02);
}
.home03 .home_03_regras_card span p i {
  color: var(--color06);
  margin-right: 10px;
}
.home_03_regras_card {
  padding: 10px 20px;
}
.value {
  font-size: 24pt;
  font-weight: 700;
  color: var(--color02);
}
.name {
  color: var(--color03);
}

/* --------------------------------------------------------------------
   FORMULARIOS
--------------------------------------------------------------------- */
form {

   width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  background-color: #141414;
  gap: 30px;
  border-radius: 10px;
  padding: 40px 20px;

margin: 0 auto;
margin-bottom: 100px;
  box-shadow:
    0 0 10px rgba(0, 225, 255, 0.2),
    0 0 20px rgba(217, 70, 239, 0.4),
    0 0 30px rgba(0, 0, 0, 0.4);
}
form h1 {
  font-size: 34px;
  font-weight: 800;
  color: var(--color02);
  letter-spacing: 3px;
  text-shadow:
    0 0 4px #00e1ff,
    0 0 8px #00e1ff;
  animation: blink 1s infinite;
}
form label {
  font-size: 16pt;
  color: var(--color02);
  font-weight: 500;
}
form div {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 10px;
}
form div input {
  width: 290px;
  height: 40px;
  border: 1px solid var(--color02);
  border-radius: 10px;
  background-color: transparent;
  padding: 0 10px;
  font-size: 16px;
  color: var(--color02);
  outline: none;
  transition: border-color 0.3s ease;
}
form div input:focus {
  box-shadow:
    0 0 10px rgba(0, 225, 255, 0.2),
    0 0 20px rgba(40, 107, 164, 0.2),
    0 0 30px rgba(0, 0, 0, 0.4);
}
form div input::placeholder {
  color: var(--color08);
  text-shadow:
    0 0 1px var(--color08),
    0 0 3px var(--color08);
  opacity: 0.5;
}
form div button {
  width: 290px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: none;
  margin: 10px 0;
}
#buttonEscolher {
  height: 45px;
  background: linear-gradient(135deg, #00e1ff, #007bff);
  box-shadow: 0 0 10px var(--color02);
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  text-shadow: 0 0 5px #00e1ff;
  color: var(--color01);
}
.btn_cancel {
  background: linear-gradient(135deg, #d946ef, #8b5cf6);
  box-shadow: 0 0 10px var(--color08);
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  text-shadow: 0 0 5px #d946ef;
  color: var(--color01);
}
.btn_cadastra {
  position: relative;
  padding: 10px;
  border-radius: 12px;
  background: #000;
  z-index: 0;
  overflow: hidden;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color01);
}
.btn_cadastra::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(270deg, #00e1ff, #d946ef, #00e1ff);
  background-size: 600% 600%;
  animation: borderAnimation 6s ease infinite;
  z-index: -1;
  border-radius: 14px;
}

/* --------------------------------------------------------------------
   UTILITÁRIOS
--------------------------------------------------------------------- */
.container {
  margin-top: 30px;
  background-color: #000;
  color: #00e1ff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-family: sans-serif;
  font-size: 1.2rem;
}
.escondido { display: none; }
.visivel { display: block; }
.home_03_regras_card { padding: 10px 20px; }

/* --------------------------------------------------------------------
   FOOTER
--------------------------------------------------------------------- */
footer {
  background-color: #000;
  width: 100%;
  box-shadow:
    0 0 5px var(--color02),
    0 0 10px var(--color02);
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  height: 80px;
}
footer span {
  font-weight: 500;
  color: var(--color02);
  text-shadow:
    0 0 4px var(--color02),
    0 0 8px var(--color02);
}

/* --------------------------------------------------------------------
   MEDIA QUERIES: RESPONSIVIDADE
--------------------------------------------------------------------- */
@media screen and (max-width:600px) {
  html, body { max-width: 100%; overflow-x: hidden; }

   .btn_topo { display: block; 
   background-color: black;
  color: rgb(0, 0, 0) !important;}
  .Menu_Mobile_Icon{
   display: block;
  }
  header { justify-content: center; }
  .Nav-bar { width: 100px; height: 90px; }
  .Nav-item, .Nav-button { display: none; }
  .Menu_Mobile_Icon { display: block; }
  #menu_icon {
    font-size: 50px;
    position: absolute;
    right: 10px;
    top: 20px;
    color: var(--color02);
    text-shadow: 0 0 2px #00e1ff;
    transition: all 0.3s ease;
  }
  nav .logo img {
    width: 135px;
    height: 100px;
    position: absolute;
    left: 10px;
    top: 2px;
    bottom: 10px;
    cursor: pointer;
  }
  .Mobile-Menu ul {
   margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-right: 20px;
    width: 600px;
    margin-left: -30px;
  }
  .Mobile-Menu ul li a {
    text-decoration: none;
    font-size: 15pt;
    font-weight: 500;
    color: var(--color02);
    background-color: #000;
    position: relative;
    letter-spacing: 2px;
  }
  .Mobile-Menu ul li a::after {
    content: "";
    width: 0%;
    height: 4px;
    background-color: var(--color02);
    position: absolute;
    bottom: -5px;
    left: 0;
    border-radius: 10px;
    transition: .5s ease-in-out;
    box-shadow: 0 0 3px #00e1ff,
      0 0 6px #00e1ff,
      0 0 20px #286BA4;
    width: 100%;
  }
  .Mobile-Menu .Nav-item {
    display: block;
    padding-top: 1.2rem;
    text-align: center;

  }
  .Mobile-Menu .Nav-button button {
    width: 100%;
    margin-left: -50px;
  }
  .open { display: block; }
  .home_content h1 {
    font-size: 60px;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .home_content .subtitle {
    color: #6d6d6d;
    font-size: 17pt;
    font-weight: 550;
    margin-bottom: 40px;
  }
  .countdown{
    max-width: 330px;
    margin: 0 auto;
  }
  .home_buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 100px;
    margin-bottom: 30px;
  }
  .home_buttons .btn_home_Se_Increver {
    background: linear-gradient(135deg, #00e1ff, #286BA4);
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-shadow: 0 0 5px #00e1ff;
    box-shadow:
      0 0 5px #00e1ff,
      0 0 10px #00e1ff,
      0 0 20px #00e1ff,
      0 0 40px #286BA4;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: button_pulse 2s ease-in-out infinite;
  }
  .home_buttons .btn_home_Se_Increver:hover {
    transform: scale(1.05);
  }
  .home_buttons .btn_home_Ver_Regras {

    background: linear-gradient(135deg, #d946ef, #7c3aed);
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-shadow: 0 0 5px #d946ef;
    box-shadow:
      0 0 5px #d946ef,
      0 0 10px #d946ef,
      0 0 20px #d946ef,
      0 0 40px #7c3aed;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: button_pulse 2s ease-in-out infinite;
  }
  .home_buttons .btn_home_Ver_Regras:hover {
    transform: scale(1.05);
  }
  @keyframes button_pulse {
    0% {transform: scaleY(1);}
    50% {transform: scaleY(1.2);}
    100% {transform: scaleY(1);}
  }
  .home02{
    margin-bottom: 550px; 

  }
  .home_03_regras_card{
    
  }
  form{
height: auto;
    max-width: 360px;
position: relative;
   left: 50%;
   right: 50%;
  margin-top: 300px;
   transform: translateX(-50% );
  }
}
@media screen and (max-width:350px) {
  html, body { max-width: 100%; overflow-x: hidden; }
   
  nav .logo img {
    width: 135px;
    height: 100px;
    position: absolute;
    left: 10px;
    top: 2px;
    bottom: 10px;
    cursor: pointer;
  }
  .Nav-item{
  
  }
  section {
    margin-bottom: 0px;
  }
  div.home_content h1{
    font-size: 60px !important;
    margin-top: -40px;
  }
  div.home_content h1 span{
    font-size:60px !important;
  }
  .home_buttons{
    margin-bottom: 150px !important;
  }
  div .home_03_regras_card h1{
    font-size: 30px !important;
  }
  div .home_03_regras_card h1 span{
    font-size: 30px !important;
  }
   div .home_03_regras_card{
max-width: 350px;
margin-top: 580px;

  }

    form{
height: auto;
    max-width: 310px;
position: relative;
   left: 50%;
   right: 50%;
  margin-top: 900px;
   transform: translateX(-50% );
  }
  }


@media screen and (max-width:300px) {
  html, body { max-width: 100%; overflow-x: hidden; }
   
  nav .logo img {
    width: 135px;
    height: 100px;
    position: absolute;
    left: 10px;
    top: 2px;
    bottom: 10px;
    cursor: pointer;
  }

}
@media screen and (max-width:250px) {
  html, body { max-width: 100%; overflow-x: hidden; }
   
  nav .logo img {
    width: 100px;
    height: 90px;
    position: absolute;
    left: 10px;
    top: 2px;
    bottom: 10px;
    cursor: pointer;
  }

}
@media screen and (max-width:150px){
.logo img{
  width: 40px;
  height: 40px;
}
.home_buttons{
  margin-bottom: 100px;
}
}
/* --------------------------------------------------------------------
   ANIMAÇÕES
--------------------------------------------------------------------- */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes neonGlow {
  0% {
    text-shadow:
      0 0 10px #00e1ff,
      0 0 20px #00e1ff,
      0 0 30px #00e1ff,
      0 0 60px #286BA4;
    color: #00e1ff;
  }
  100% {
    text-shadow:
      0 0 10px #286BA4,
      0 0 60px #00e1ff;
    color: #286BA4;
  }
}
@keyframes brilhoRoxo {
  0% {
    text-shadow:
      0 0 10px #d946ef,
      0 0 20px #d946ef,
      0 0 30px #d946ef,
      0 0 60px #7c3aed;
    color: #d946ef;
  }
  100% {
    text-shadow:
      0 0 10px #7c3aed,
      0 0 20px #7c3aed,
      0 0 30px #7c3aed,
      0 0 60px #d946ef;
    color: #7c3aed;
  }
}
@keyframes borderAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulseShadow {
  0%   { box-shadow: 0 0 15px var(--color08); }
  20%  { box-shadow: 0 0 15px var(--color02); }
  40%  { box-shadow: 0 0 15px var(--color03); }
  60%  { box-shadow: 0 0 15px var(--color04); }
  80%  { box-shadow: 0 0 15px var(--color05); }
  100% { box-shadow: 0 0 15px var(--color06); }
}
@keyframes flutuar {
    0% { transform: translateY(0);}
    50% { transform: translateY(-7px);}
    100% { transform: translateY(0);}
  }