/* ====== RESET BÁSICO ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-family: 'Playfair Display', serif;
    color:red;
    font-size: 22px;
    

}

/* ====== ESTILOS GERAIS (DESKTOP / BASE) ====== */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color:#ffed00;
    margin: 0;
    padding: 0;

    /* Fundo com imagem */
    background-image: url('fundo2.png');
    background-size: cover;       /* Ajusta a imagem para cobrir toda a tela */
    background-position: center;  /* Centraliza a imagem */
    background-repeat: no-repeat; /* Não repete a imagem */
     /* Mantém o fundo fixo ao rolar a página */
}

h2{
    color: #333;
}
span{
    color:#d8ca03
}

.top-banner {
  background-color: rgb(254, 255, 0);
  color: #082f8e;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 10px 0;
  height: 45px; /* mantém altura fixa pra não pular */
}

#marquee-text {
  display: inline-block;
  color:#082f8e;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}


.highlight {
  background: white;
  color: rgb(196, 1, 1);
}



/* Cabeçalho */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 20%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 110PX;
    padding: 20px;
}

.title {
    font-size: 3rem;
}

/* Seção do vídeo */
.video-section {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    width: 100%;
    max-width: 800px; /* opcional, limite de largura */
    margin: 0 auto; /* centraliza na página */
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* proporção 16:9 */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Botão do WhatsApp */
.button-container {
    text-align: center;
    margin: 10px 0;
    padding: 30px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 15px 100px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    gap: 10px;
    margin-top: -100px;
}

.whatsapp-button:hover {
    background-color: #ffff;
    color: #25D366;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

.texto-botao {
    color: #ffffff;
    font-family: "Sora", sans-serif;
    text-align: center;
    padding-bottom: 100px;
    
}

.contagem_regressiva {
    color: rgb(254, 255, 0);
    font-family: "Sora", sans-serif;
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
    transform: translateY(-80px);
    
}
.timer-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    margin-top: -100px;
  }

  .timer-box {
    background-color: #2E3A59;
    padding: 20px 15px;
    border-radius: 10px;
    min-width: 80px;
  }

  .timer-box span {
    display: block;
  }

  .number {
    font-size: 40px;
    font-weight: bold;
  }

  .label {
    font-size: 11px;
    margin-top: 5px;
    text-align:center;
  }

  .date-box {
    background-color: #2E3A59;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 18px;
  }
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; 
    }

  .icon {
    font-size: 20px;
  }

/* Seção de informações */
.info-section {
    text-align: center;
    padding: 20px;
    background: #d8ca03;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.green {
    color: rgb(196, 1, 1);
}


.info-section h2 {
    margin-bottom: 10px;
}

.info-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.info-box {
    background-color: #ffed00; /* amarelo */
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}


.info-slideshow {
    color: #ffffff;
    text-align: center;
    padding: 5px;
}
/* Seção do Slideshow */
.slideshow-section {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 155%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Roda Pé */
.info-foot {
  text-align: center;
  padding: 20px;
  color:#fffefe;
  margin: 0;
  width: 100%;
}

.info-foot p {
  margin-top: 25px;
  color:#d8ca03; /* preto ou outra cor visível no amarelo */
  font-size: 12px;
}
.foot-button-container {
    text-align: center;
    margin: 10px 0;
    padding: 10px;
    }

/* ====== RESPONSIVIDADE PARA DISPOSITIVOS MÓVEIS ====== */

@media (max-width: 768px) {

    body {
        background-attachment: scroll; /* evita problemas de performance em mobile */
    }
    
    .top-banner {
      position: relative;
      left: 0;
      top: 0;
      width: 100vw; /* largura da viewport */
      background-color: rgb(254, 255, 0);
      color: #082f8e;
      text-align: center;
      padding: 2px;
      font-family: Arial, sans-serif;
      font-size: 16px;
      font-weight: bold;
      box-sizing: border-box;
    }

    .highlight {
      background: white;
      color: rgb(196, 1, 1);
      padding: 2px 6px;
      border-radius: 4px;
      margin-left: 5px;
    }
    
    .logo {
        width: 50%;
        border-radius: 50%;
        padding: 20px;
    }

    .video {
        height: 220px;
    }

    .title {
        font-size: 2.6rem;
    }

    .whatsapp-button {
        font-size: 0.93rem;
        padding: 12px 20px;
    }

    .texto-botao, .contagem_regressiva {
        font-size: 80%;
        padding-bottom: 74px;
    }

    .contagem_regressiva {
        
        transform: translateY(-50px);
    }
    .info-container {
    display: flex;
    justify-content: center; /* centraliza */
    align-items: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.info-box {
    background-color: #ffed00; /* amarelo */
    border-radius: 15px;
    padding: 30px 20px; /* mais alto e mais largo */
    width: 100%; 
    max-width: 350px; /* controla largura máxima */
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
   

.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 155%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .carousel img {
        width: 250px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 80%;
        border-radius: 50%;
    }

    .video {
        height: 180px;
    }

    .title {
        font-size: 1.4rem;
    }

    .whatsapp-button {
        font-size: 0.93rem;
        padding: 11px 73px;
    }

    .slideshow-section {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .slideshow-container {
    position: relative;
    width: 100%;
    height: 530px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 70%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .carousel img {
        width: 200px;
        height: 100px;
    }
}
