/* =========================================
 * ESTILOS DOS TOASTS (POPUP PREMIUM)
 * ========================================= */
#toast-sucesso, #toast-curriculo {
  position: fixed;
  bottom: 30px;
  right: 30px; /* Os dois ancorados na direita para a animação funcionar! */
  background-color: #421F38; /* Fundo alinhado com a identidade */
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-left: 4px solid #957755; /* Detalhe dourado/marrom */
  transform: translateX(150%); /* Empurra 150% para a direita (fora da tela) */
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 9999;
  font-family: inherit; /* Vai herdar a tipografia do seu site */
}

/* Quando o JS adiciona esta classe, o Toast entra na tela */
#toast-sucesso.toast-show, #toast-curriculo.toast-show {
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #957755;
}

.toast-text p {
  margin: 4px 0 0 0;
  font-size: 14px;
  opacity: 0.9;
}

#fechar-toast {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

#fechar-toast:hover {
  opacity: 1;
}

/* Ajuste Mobile */
@media (max-width: 600px) {
  #toast-sucesso, #toast-curriculo {
    bottom: 20px;
    right: 20px;
    left: 20px; /* No mobile ele ocupa a largura da tela */
    transform: translateY(150%); /* Esconde jogando para baixo no mobile */
  }
  
  #toast-sucesso.toast-show, #toast-curriculo.toast-show {
    transform: translateY(0); /* Sobe para a tela no mobile */
  }
}


.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}








html {
  /* Força a barra de rolagem vertical a aparecer sempre, 
     evitando que a NAV pule quando você muda de página */
  overflow-y: scroll; 
  overflow-x: hidden;

}

body {
  background-color: #E1DAD2;
  margin: 0;
  padding: 0;
  /* Remova o max-width: 100vw se puder, ele causa bugs com scroll */
  width: 100%;
  overflow-x: hidden;
    background-color: #E1DAD2;
  zoom: 0.9;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}


a{
  text-decoration: none;
  color: white;
}

ul li{
  list-style: none;
}



header{
  background-color: #421F38;
}

nav{
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

nav img{
  width: 220px;
}


.navegacao{
  display: flex;
  list-style: none;
  font-family: 'Inter';
  gap: 20px;
  color: white;
}

/* DROPDOWN GALERIA */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown > a {
  color: white;
  text-decoration: none;
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #421F38; /* Fundo roxo/vinho do header */
  min-width: 180px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.4);
  z-index: 1001;
  border: 1px solid #957755; /* Detalhe dourado */
  border-radius: 8px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 0;
  margin-top: 10px;
}

/* Triângulo indicador */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #957755;
}

.dropdown-content a {
  color: white !important;
  padding: 12px 20px;
  text-decoration: none;
  display: block !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #957755;
  color: white !important;
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Responsividade Dropdown */
@media (max-width: 768px) {
  .dropdown {
    flex-direction: column;
    align-items: flex-start;
  }
  .dropdown.active .dropdown-content {
    display: block !important;
    animation: none !important;
  }
  .dropdown-content {
    position: static;
    display: none !important; /* Oculto por padrão no mobile para abrir no clique */
    background-color: transparent;
    box-shadow: none;
    border: none;
    padding-left: 15px;
    transform: none;
    margin-top: 0;
  }
  
  .dropdown-content::before {
    display: none;
  }
  
  .dropdown-content a {
    padding: 10px 0;
    font-size: 14px;
    opacity: 0.8;
  }
}

/* CONTEÚDO INICIAL DA HOME*/
.mobile-only {
  display: none !important;
}

.desktop-only {
  display: block;
}

.inicio {
  width: 100%;
  padding-top: 100px; /* Espaço para o vídeo não cortar no topo da tela */
 /* Só para visualizar melhor */
 position: relative;

}

.containerRoxo {
  max-width: 1260px;
  /* position: relative é OBRIGATÓRIO para os filhos absolutos (o V) funcionarem */
  margin: 0 auto;
  padding: 0 20px 60px 20px; 
  background-color: #421F38;
  border-radius: 40px;

     
}

/* O Elemento V (Decorativo) */
.V {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%; 
height: 56%;

 

  z-index: 1; /* Fica acima do fundo roxo, mas abaixo do vídeo */
  pointer-events: none; /* O usuário não clica/arrasta o fundo sem querer */
}

/* O Wrapper do Vídeo */
.video-wrapper {
  position: relative;
  z-index: 10; /* O MAIS ALTO: Garante que o vídeo fique por cima de tudo */
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden; /* Corta o vídeo no formato do raio */
  /* O PULO DO GATO: Margem negativa para subir o vídeo */
  margin-top: -60px; 
}

video {
  width: 100%;  
  display: block; /* Remove espaços estranhos abaixo do vídeo */
box-shadow: 0 25px 20px -10px rgba(0, 0, 0, 0.25);
margin-top: 50px;
  border-radius: 20px;


}
  


.conteudo-texto{
  max-width: 1160px;
  margin: 0 auto;
}

.conteudo-texto h1 {
  font-family: "Playfair Display", serif;
  position: relative;
  z-index: 5;
  margin-top: 200px;
  color: white;
  font-size: 52px;
  font-weight: 200;
}

.conteudo-texto h1 span{
  font-style: italic;
}

/* PILARES */

.imagemPilares{
  background-image: url(./assets/fundoCulturaInicio.webp);
  background-position: center;
  background-size: auto;

}

.pilares{
  
  max-width: 1160px;
  margin: 0 auto;
  margin-top: 50px;
}

.pilar{
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  font-style: italic;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid #624E38;
  font-weight: 100;
  padding: 20px 0;
}

.pilar h2{
  font-weight: 200;
  color: #421F38;
}

.impar h2{
  color: #957755;
}

.number{

  font-weight: 100;
  
}
.last{
  border-bottom: 1px solid #624E38;
}


/* BANNERS */

.banner img{
  display: block;
}

.banner{
  max-width: 1160px;
  margin: 0 auto;
  margin-top: 80px;
  box-shadow: 0 4px 40px 10px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border-radius: 20px;
}

.slides-wrapper{
  display: flex;
  width: 400%;
  transition: transform 0.7 cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
}

.slides-wrapper:active{
  cursor: grabbing;
}

.slide{
  width: 25%;
  flex-shrink: 0;
}

.banner-content{
  position: relative;
}

.banner-content img{
  width: 100%;
  display: block;
}

.banner-content h1{
font-family: "Playfair Display", serif;
  position: absolute;
  z-index: 10;
  top: 30%;
  left: 10%;
  color: #ffffff;
  font-size: 48px;
  font-weight: 200;
  margin: 0;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.banner-content p{
  font-family: "Inter", sans-serif;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 10%;
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  max-width: 500px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.partner{
  top: 20% !important; 
}

.partnerP{
  top: 40% !important;
}



.banner{
  position: relative;
  z-index: 10;
}

.banner h1{
  font-family: "Playfair Display", serif;
  position: absolute;
  z-index: 10;
  top: 30%;
  left: 10%;
  color: #ffffff;
  font-size: 48px;
  font-weight: 200;
  margin: 0;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* Container dos Dots flutuando sobre o banner */
.dots-container {
  position: absolute;
  z-index: 20;
  bottom: 40px; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px; 
  align-items: center;
}

.dot {
  width: 30px;
  height: auto;
  cursor: pointer;
  opacity: 0.5; 
  transition: all 0.3s ease; 
  filter: grayscale(100%) brightness(200%);
}

.dot.active, 
.dot:hover {
  opacity: 1;
  transform: scale(1.1); 
  filter: none;
}


/* 5 ANOS */

.aguiaHome{
  position: absolute;
  right: -300px;
  top: 2050px;
}

.interrogacao{
  color: white;
}


.anosRoxo{
  max-width: 1260px;
  background-color: #421F38;
  margin: 0 auto;
  margin-top: 80px;
  border-radius: 20px;
  font-family: "Playfair Display", serif;
  padding-bottom: 40px;
}

.anos{
  max-width: 1160px;
  margin: 0 auto;
}

.anos h1{
  color: white;
  font-weight: 500;
  font-size: 42px;
  padding-top: 20px;
}

.sAnos{
  font-style: italic;
  color: #957755;
}

.objetivo{
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.objetivo img{
  width: 20px;
}

.objetivo p{
  max-width: 1160px;
  color: #E1DAD2;
  font-size: 18px;
  font-family: 'Inter';
}

.textoDescricaoAnos{
  font-family: 'Playfair Display', serif;
  max-width: 1160px;
  margin: 0 auto;
  font-size: 32px;
  margin-top: 80px;
  color: #0F1F2E;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.CTA{
  font-family: 'Playfair Display', serif;
  max-width: 1160px;
  margin: 0 auto;
  font-size: 32px;
  margin-top: 20px;
  color: #957755;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  font-style: italic;
}

/* BOTÕES 5 ANOS */


.botoes{
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
  margin-top: 60px;
  gap: 50px;
  justify-content: center;
  
  
}

.botao{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 60px;
  background-color: #0F1F2E;
  font-size: 24px;
  border-radius: 15px;
  font-family: 'PlayFair Display';
  box-shadow: 4px 2px 4px 7px rgba(0, 0, 0, 0.12);
}

.botao img{
  width: 40px;
}

/* DEPOIMENTOS */


.depoimentos{
  max-width: 1160px;
  margin: 0 auto;
  margin-top: 100px;
}
.slider-container {
  max-width: 1160px;
  margin: 40px auto 0;
  overflow: hidden; /* Corta as imagens que saem dos 1160px */
  position: relative;
}


.depoimentos h1{
  font-weight: 300;
  font-family: 'PlayFair Display';
  color: #421F38;
  font-weight: 700;

}

.italico{
  font-style: italic;
}

.cards{
  display: flex;
  max-width: 1160px;
  gap: 10px;
  margin-top: 20px;
  cursor: grab;
}

.cards img{
  border-radius: 10px;
}


#slider-track {
  display: flex; /* Garante que fiquem em linha */
  cursor: grab;
  user-select: none; /* Impede seleção de texto */
  -webkit-user-drag: none; /* Desativa o arraste nativo no Chrome/Safari */
  touch-action: pan-y; /* Melhora a performance em touch, evitando scroll vertical acidental */
}



/* FORMULÁRIO */

form{
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto;
}


.form{
  margin-top: 80px;
  overflow: hidden;
  background-image: url(./assets/fundoFormulario.webp);
  background-size: 100%;
  padding: 20px;
  
}


.form h1{
  color: #421F38;
  font-family: "Playfair Display";
  font-size: 48px;
  font-weight: 400;
  max-width: 1160px;
  margin: 0 auto;
  margin-bottom: 0px;
}

.form h1::after{
  content: '';
  display: block;
  width: 400px;
  height: 2px;
  background-color: white;
  margin-top: 5px;
}



.ready{
  font-style: italic;
  font-weight: 500;
}

label{
  display: block;
  margin-top: 16px;
  margin-bottom: 10px;
  color: #322D31;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

input{
  display: block;
  margin-top: 10px;
  width: 520px;
  height: 20px;
  border: none;
  padding: 20px;
  font-size: 16px;
  border-radius: 4px;
}

#enviar{
  margin: 0 130px;
  margin-top: 30px;
  width: 240px;
  height: 40px;
  background: #421F38;
  color: white;
  font-family: Inter;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer !important;
  z-index: 1000;
  position: relative;
  margin-bottom: 10px;
}


#objetivo{
  height: 100px;
  width: 520px;
}


#conheceu{
  height: 50px;
  width: 520px;
  border-radius: 4px;
  border: none;
}

select {
  color: #322D31;
}

textarea{
  font-size: 16px;
  padding: 2px;
  border: none;
}








/* FOOTER */

footer{
 background: #421F38;
  height: 250px;
  display: flex;
  position: relative;
  font-family: 'Playfair Display';
}

.xadrez{
  position: absolute;
  bottom: -1;
  left: -1;
  right: 0;
  height: 250px;
}



.NaveFooter{
  font-family: 'Playfair Display', serif;
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;

}

.FooterNavegacao{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: -100px;  
}


.NavFooter{
  display: flex;
  flex-direction: column;
  margin-left: 100px;
  margin-top: 50px;
  font-family: 'Inter', sans-serif;
  color: white;
  font-size: 18px;
}

.tituloNav{
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
}



.contatoFooter{
  display: flex;
  flex-direction: column;
  margin-left: 120px;
  margin-top: 50px;
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 18px;
}


.logoFooter{
  height: 50px;
  cursor: pointer;
}


.logosFooter{
  display: flex;
  gap: 20px;
  position: absolute;
  bottom: 10px;
  left: 90px;
  height: 60px;
}





@media (max-width: 768px) {
  .hamburger {
    display: flex; /* Mostra o botão no mobile */
    z-index: 1100;
  }

  .navegacao {
    position: fixed;
    top: 0;
    right: -100%; /* Esconde o menu para fora da tela */
    width: 50%;
    height: 50vh;
    background-color: #421F38;
    flex-direction: column;
    justify-content: center;
       align-items: left;
    padding-left: 50px;
    transition: 0.4s;
    box-shadow: -10px 0 20px rgba(0,0,0,0.3);
    z-index: 1000;
  }

  .navegacao.active {
    right: 0; /* Traz o menu para dentro da tela */
  }

  /* Animação do X no hambúrguer quando ativo */
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

.navegacao li {
    font-size: 14px;
  }

}

/* --- RESPONSIVIDADE GERAL (768px e 425px) --- */

@media (max-width: 768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1100;
    }
    /* Ajustes de Layout Global - Padronização Ouro (Eixo X) */
    .containerRoxo {
        width: 100%;
        max-width: 100vw;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }

    .pilares, .anosRoxo, .anos, .botoes, .depoimentos, .form, form, nav {
        width: 100%;
        max-width: 100vw;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }

    /* Slider dos Partners (Restaurado para a forma original a pedido) */
    .banner {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .logoPrincipal  {
      width: 150px;
    }

    /* Início e Vídeo */
    .inicio { padding-top: 140px; }
    .V { height: 80%; }
    .video-wrapper { 
        margin-top: -30px; 
        width: 100%;
        margin-left: 0;
        max-width: none;
    }
    .video-wrapper video {
        width: 100%;
        height: 56vw; /* Proporção 16:9 (9/16 = 0.5625) */
        object-fit: cover;
        border-radius: 20px; /* Arredondamento para acompanhar o container */
        box-shadow: none;
    }

    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }

    .conteudo-texto {
        margin-top: 40px; /* Espaço entre o bloco roxo e o título no mobile */
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .conteudo-texto h1 { 
        font-size: 48px; 
        margin-top: 0; 
        color: #957755; /* Cor dourada da marca para destaque no mobile */
        text-align: left;
    }

    /* Pilares (Transformando em lista simples) */
    .pilar {
        font-size: 18px;
        padding: 15px 5px;
    }
    .pilar h2 { font-size: 18px; }

    /* Banner/Slider */
    .banner-content h1 { font-size: 28px; top: 20%; }
    .banner-content p { font-size: 16px; top: 45%; max-width: 40%; }
    .partnerP { top: 35% !important; }

    .dots-container{
        bottom: 10px;
        gap: 15px; /* Distância respirável pros pontinhos */
    }

    .dot{
        width: 20px;
    }

    /* Seção 5 Anos */
    .anos h1 { font-size: 30px; text-align: center; }
    .aguiaHome { display: none; } 
    
    /* Botões (Um em cima do outro com gap padrão) */
    .botoes { 
        flex-direction: column; 
        gap: 20px; 
        align-items: center;
    }
    .botao { width: 100%; justify-content: center; }

    /* Formulário */
    input, #conheceu, #objetivo, textarea {
        width: 100% !important; 
        box-sizing: border-box; /* Garante que o padding interno não estoure a tela */
    }
    #enviar { margin: 20px auto; width: 100%; box-sizing: border-box; }

    .form{
      background-image: none;
      padding: 30px 20px; /* Ritmo no form mobile */
      border-radius: 20px;
    }

    /* Footer - Padding Cimentado nas laterais e gap coeso */
    footer { 
        height: auto; 
        padding: 40px 20px; 
        padding-right: calc(50% - 55px); /* Protege a área de texto */
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column; 
        align-items: flex-start; 
        text-align: left; 
        position: relative;
        overflow: hidden;
        background-color: #421F38;
        background-image: url('./assets/xadrezFooter.webp');
        background-repeat: repeat-y; 
        background-position: right top; 
        background-size: calc(50% - 55px) 33.333%; /* Pega o meio menos 55px, repetindo exatas 3x na altura (100 / 3) */
    }
    .FooterNavegacao { flex-direction: column; margin-top: 0; gap: 30px; align-items: flex-start; }
    .NavFooter, .contatoFooter { 
        margin-left: 0; 
        margin-top: 0; 
        align-items: flex-start; 
        text-align: left; 
        word-break: break-word; /* Evita que o email comprido estoure o layout da esquerda */
    }
    .logosFooter { position: static; margin-top: 30px; justify-content: flex-start; gap: 15px; }
    .xadrez { 
        display: none !important; /* Escondemos a img HTML que é ruim de escalar e duplicar em CSS puro =] */
    } 
    .quebra-mobile {
        display: block;
    }
}

/* Ajustes específicos para Celulares Pequenos (425px) */
@media (max-width: 425px) {

  .tituloCultura  {
    font-size: 48px;
  }


  .V{
    width: 100%;
    margin-top: 0px;
    height: 34.7%;
  }


    .conteudo-texto h1 { font-size: 32px; }
    
    .pilar { flex-direction: column; gap: 5px; text-align: left; }
    .number { font-weight: bold; order: -1; } /* Número aparece antes do texto */

    .banner-content h1 { font-size: 22px; }
    .banner-content p { font-size: 10px; margin-top: 10px; } /* Esconde descrição longa em telas muito pequenas para manter o design limpo */
    .john{
      font-size: 8px !important;
    }


    .anos h1 { font-size: 24px; }
    .objetivo p { font-size: 15px; }

    .form h1 { font-size: 34px; }
    .form h1::after { width: 150px; }

    .textoDescricaoAnos{
      font-size: 18px;
      text-align: center;
    }
    .botoes a{
      font-size: 18px;
    }


  }



  .banner-oculto {
  display: none;
  width: 100%;
  border-radius: 8px; /* Opcional: para manter as bordas arredondadas e um visual moderno */
}

#bannerCultura{
  margin-top: 50px;
}

/* Oculta o container inteiro até o vídeo acabar */
#bannerCultura {
  display: none; 
  position: relative;
 
}

.imagem-fundo {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Camada de textos por cima da imagem */
.overlay-conteudo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 8% 6%;
  box-sizing: border-box;
}

/* Estilo do texto "A nossa visão vai" */
.bloco-texto.superior {
  background-color: #3f2235; /* Tom de vinho/roxo escuro */
  color: #ffffff;
  padding: 8px 16px;
  width: fit-content;
  font-size: 2.5rem;
  margin-bottom: 4px;
  font-family: 'Inter';
  border-radius: 10px;
}

.bloco-texto.superior i {
  font-weight: 200;
}

/* Estilo do texto "Muito Além do Inglês" */
.bloco-texto.inferior {
  background-color: #ffffff;
  color: #694b37; /* Tom de bronze/marrom */
  padding: 10px 20px;
  width: fit-content;
  font-size: 2.2rem;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
  font-family: 'Playfair Display', serif;
  text-shadow: 0 4px 7.3px rgba(0, 0, 0, 0.23);
  border-radius: 10px;
}

.bloco-texto h2, .bloco-texto p {
  margin: 0;
  font-weight: 500;
}

/* Estilo do Botão */
.btn-visionary {
  margin-top: 160px; /* Empurra o botão para o final do banner */
  background-color: #12212f; /* Azul marinho/grafite */
  color: #ffffff;
  text-decoration: none;
  padding: 14px 28px;
  width: fit-content;
  font-family: sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s ease;
  border-radius: 10px;
}





#videoCultura {
  opacity: 1;
  transition: opacity 0.5s ease-in-out; /* Duração do fade-out do vídeo */
}

#bannerCultura {
  display: none; 
  opacity: 0; /* O banner agora começa transparente */
  transition: opacity 0.8s ease-in-out; /* Duração do fade-in do banner */
  
  /* Restante do seu CSS que já estava aqui... */
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}





/* =========================================
   RESPONSIVIDADE - CELULAR (Até 425px)
   ========================================= */
@media (max-width: 425px) {
  
  /* Garante espaço suficiente para os textos não vazarem */
  #bannerCultura {
    max-height: 205px; 
    margin-top: 20px;
  }
  
  .imagem-fundo {
    min-height: 240px;
  }

  /* Reduz os espaçamentos laterais para aproveitar mais a tela */
  .overlay-conteudo {
    padding: 6% 5%;
  }

  /* Ajustes do texto "A nossa visão vai" */
  .bloco-texto.superior {
    font-size: 1rem; 
    padding: 4px 10px;
    margin-bottom: 2px;
  }

  /* Ajustes do texto "Muito Além do Inglês" */
  .bloco-texto.inferior {
    font-size: 1.3rem; 
    padding: 6px 12px;
  }

  /* Ajustes do botão */
  .btn-visionary {
    padding: 10px 18px;
    font-size: 0.75rem;
    margin-top: auto;
  }
}