/* ================= RESET & BASE ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
  font-family:'Poppins', sans-serif;
}

h1,h2,h3{
  font-family:'Bebas Neue', cursive;
  letter-spacing:2px;
}

section{
  padding:120px 80px;
  color:#fff;
}

button{
  transition:transform .2s ease, box-shadow .2s ease;
  cursor:pointer;
}

button:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 15px rgba(0,0,0,0.3);
}

/* ================= HEADER / NAV ================= */

header{
  position:fixed;
  top:0;
  width:100%;
  padding:20px 60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#071A33;
  z-index:1000;
}

header a{
  color:#fff;
  margin-left:25px;
  text-decoration:none;
}

.btn-nav{
  background:#ff7a00;
  padding:8px 18px;
}

.logo img{
  height:40px;
  object-fit:contain;
}

nav{
  transition:.3s;
}

nav.scrolled{
  background:#0d2238;
  box-shadow:0 4px 10px rgba(0,0,0,0.4);
}

/* ================= HERO ================= */

.hero{
  height:100vh;
  background:url('../img/Rectangle 2.png') center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  padding-top:80px;
}

.hero-content{
  max-width:1100px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.hero-titles{
  text-align:center;
  margin-bottom:30px;
}

.hero-titles h1{
  font-size:64px;
  line-height:60px;
}

.hero-titles h2{
  font-size:26px;
  margin-top:8px;
}

#countdown{
  display:flex;
  gap:25px;
  margin:30px 0;
}

.time-box{
  background:rgba(7,26,51,0.85);
  backdrop-filter:blur(6px);
  border:2px solid #FF7A00;
  border-radius:12px;
  padding:18px 22px;
  min-width:90px;
  text-align:center;
  box-shadow:0 0 18px #00000040;
}

.time-box h3{
  font-size:42px;
}

.time-box span{
  font-size:12px;
  color:#FF7A00;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:50px;

}

.hero-info{
  background:rgba(0,0,0,0.6);
  padding:12px 22px;
  border-radius:30px;
}

/* BOTÃO DO HERO CORRETO (igual ao design) */
#btnHero{
  background: #0d2238;        /* azul do design */
  color: #fff;
  border: 2px solid #FF7A00;  /* borda laranja */
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

#btnHero:hover{
  background: #F4A261;
  color: #0D3B66;
}


/* ================= SOBRE ================= */

.sobre{
  background:#071A33;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:140px 80px;
}

.box-text{
  max-width:700px;
  padding:50px 60px;
  border-radius:18px;
  text-align:left;
}

.box-text h3{
  font-size:48px;
  margin-bottom:25px;
}

.box-text p{
  font-size:16px;
  line-height:28px;
  font-weight:300;
}

/* ================= ATRAÇÃO ================= */

.atracao{
  height:65vh;
  background:url("../img/Rectangle 4.png") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}

.overlay{
  background:#ffffffcc;
  color:#000;
  padding:40px;
}

/* ================= PROGRAMAÇÃO ================= */

.programacao{
  background:#071A33;
  text-align:center;
  padding:140px 80px;
}

.programacao h3{
  font-size:52px;
  margin-bottom:70px;
}

.subtitulo{
  font-size:16px;
  font-weight:300;
  margin:15px 0 60px;
  opacity:.9;
}

.programacao-grid{
  display:flex;
  justify-content:center;
  gap:70px;
}

.item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}

.item p{
  font-size:18px;
  font-weight:300;
}

.hora{
  border:3px solid #FF7A00;
  background:#F5E6C8;
  padding:18px 32px;
  border-radius:25px;
  font-size:22px;
  font-weight:600;
  color:#000;
}

/* ================= PARTICIPE / INSCRIÇÃO ================= */

.participar{
  background:url('../img/luaa.jpg') center/cover no-repeat;
  padding:90px 0;
  text-align:center;
}

.participar-titulo{
  font-size:42px;
  margin-bottom:50px;
}

.participar-conteudo{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:60px;
}

.participar-texto{
  width:40%;
  text-align:left;
  font-size:18px;
  line-height:28px;
}

.participar-formulario{
  width:50%;
  text-align:left;
}

.participar-formulario h3{
  font-size:26px;
  margin-bottom:20px;
  text-align:center;
}

.participar-formulario input{
  width:100%;
  padding:14px;
  margin-bottom:15px;
  background:#0d2238;
  border:none;
  color:#fff;
  font-size:16px;
}

.participar-formulario form button{
  width:100%;
  padding:14px;
  background:#0d2238;
  border:2px solid #ff7a00;
  color:#fff;
  border-radius:30px;
  transition:.3s;
}

.participar-formulario form button:hover{
  background:#ff7a00;
}

.participar-rodape{
  margin-top:35px;
  font-size:14px;
}

/* ================= FOOTER ================= */

footer{
  background:#071A33;
  padding:28px 60px;
}

.footer-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color: #fff;
}

.footer-container img{
  height:36px;
}

.footer-centro,
.footer-direita{
  font-size:12px;
  letter-spacing:.8px;
  white-space:nowrap;
}

/* ================= RESPONSIVO ================= */

/* Tablets */
@media (max-width: 1024px){

  section{
    padding:100px 40px;
  }

  .hero-titles h1{
    font-size:48px;
    line-height:50px;
  }

  .hero-titles h2{
    font-size:22px;
  }

  .hero-actions{
    flex-direction:column;
    gap:25px;
  }

  .programacao-grid{
    flex-wrap:wrap;
    gap:40px;
  }

  .participar-conteudo{
    flex-direction:column;
    gap:40px;
  }

  .participar-texto,
  .participar-formulario{
    width:100%;
  }

  .footer-container{
    flex-direction:column;
    text-align:center;
    gap:15px;
  }
}


/* Celulares */
@media (max-width: 768px){

  header{
    padding:15px 25px;
  }

  header nav{
    display:flex;
    gap:15px;
    font-size:14px;
  }

  .hero{
    padding-top:120px;
    height:auto;
  }

  .hero-titles h1{
    font-size:36px;
    line-height:38px;
  }

  .hero-titles h2{
    font-size:18px;
  }

  #countdown{
    gap:10px;
    flex-wrap:wrap;
  }

  .time-box{
    min-width:70px;
    padding:12px;
  }

  .time-box h3{
    font-size:28px;
  }

  .hero-info{
    text-align:center;
  }

  .box-text{
    padding:30px 25px;
  }

  .box-text h3{
    font-size:36px;
  }

  .overlay{
    padding:25px;
  }

  .programacao-grid{
    flex-direction:column;
    gap:30px;
  }

  .item{
    width:100%;
  }

  .hora{
    width:100%;
    text-align:center;
  }

  .participar{
    padding:70px 20px;
  }

  .participar-titulo{
    font-size:32px;
  }

  form{
    width:100%;
  }

  footer{
    padding:25px 20px;
  }

  .footer-centro,
  .footer-direita{
    white-space:normal;
    text-align:center;
  }
}