/* Estilos do Toast / Popup */
#toast-sucesso {
  position: fixed;
  bottom: 30px;
  right: 30px;
  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%);
  opacity: 0;
visibility: hidden;
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
            opacity 0.4s ease,
            visibility 0s linear 0.4s;
  z-index: 9999;
  font-family: inherit; /* Vai herdar a tipografia do seu site */
}

#toast-sucesso.toast-show {
  transform: translateX(0);
  opacity: 1;
visibility: visible;
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
            opacity 0.4s ease,
            visibility 0s linear 0s;
}

.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 para mobile */
@media (max-width: 600px) {
  #toast-sucesso {
    bottom: 20px;
    right: 20px;
    left: 20px;
  }
}


.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;
}


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;
  zoom: 0.9;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}


a{
  text-decoration: none;
  color: white;
}

ul li{
  list-style: none;
}


/* NAVEGAÇÃO */

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;
  }
}

/* INICIO */

.fundoPrincipal{
  position: absolute;
  z-index: -1 ;
}

.container{
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 100px;
}

.textosInicio h1{
  color: #957755;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  font-size: 46px;
}

.visionaries{
  color: #421F38;
  font-style: italic;
  font-weight: 600;
}

.subtituloInicio{
  font-style: italic;
  font-family: 'Inter' !important;
  font-weight: 200 !important;
  color: #322D31 !important;
  margin-left: 50px;
  color: white !important;
  padding-bottom: 10px;
}


.fundoRoxo{
  max-width: 1260px;
  background-color: #421F38;
  margin: 0 auto;
  border-radius: 30px;
  padding-top: 20px;
  padding-bottom: 100px;
}
.descricaoPlanos{
  max-width: 1160px;
  margin: 0 auto;
}

.fundoTexto{
  width: 460px;
  position: absolute;
  border-radius: 10px;

}


.member img{
  border-radius: 10px;
}
/* PILARES DA CULTURA  */

.tituloAlem{
  position: relative;
  top: 10px;
  left: 10px;
  color: white;
  font-style: italic;
  font-family: "Playfair Display";
  font-weight: 500;
}

.textoAlem{
  margin-top: 40px;
  font-size: 18px;
  max-width: 470px;
  text-align: left;
  color: white;
  font-weight: 200;
  font-family: "Playfair Display";
}

.containerPilares{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1160px;
    margin: 0 auto;
    margin-top: 60px;
    align-items: start;
}

.fundoTitulo{
  width: 460px;
  border-radius: 10px;
}

.visao, .honra, .frente, .verdade{
  grid-column: 1;
}

.visao img, .honra img, .frente img, .verdade img{
  position: absolute;
  margin-top: 40px;
}

.visao h1{
  position: relative;
  top: 65px;
  left: 130px;
  color: white;
  font-family: "Playfair Display";
  font-weight: 500;
  font-size: 28px;

}

.visao p, .honra p, .frente p, .verdade p{
  margin-top: 120px;
  color: white;
  font-family: "Playfair Display";
  max-width: 470px;
  font-size: 18px;
}

.honra h1{
   position: relative;
  top: 65px;
  left: 40px;
  color: white;
  font-family: "Playfair Display";
  font-weight: 500;
  font-size: 28px;

}

.frente h1{
   position: relative;
  top: 65px;
  left: 90px;
  color: white;
  font-family: "Playfair Display";
  font-weight: 500;
  font-size: 28px;

}

.verdade h1{
     position: relative;
  top: 70px;
  left: 80px;
  color: white;
  font-family: "Playfair Display";
  font-weight: 500;
  font-size: 28px;

}

/* COLUNA DA DIREITA DOS PILARES  */


.direita{
  grid-column: 2;
}

.amor{
  position: relative;
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-self: end;
  align-items: flex-end;
  margin-top: 40px;
}

.amor img{
  position: relative;
}

.amor h1{
  position: absolute;
  left: 160px;
  top: 30px;
  color: white;
  font-weight: 500;
  font-family: "Playfair Display";
  font-size: 28px;

}

.amor p{
    margin-top: 20px;
  color: white;
  font-family: "Playfair Display";
  max-width: 470px;
  font-size: 18px;
  text-align: end;
}

.excelencia{
  grid-row: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-self: end;
  align-items: flex-end;
  margin-top: 40px;
}

.excelencia img{
  position: relative;
}

.excelencia h1{
  position: absolute;
  left: 50px;
  top: 30px;
  color: white;
  font-weight: 500;
  font-family: "Playfair Display";
  font-size: 26px;
}

.excelencia p{
  margin-top: 20px;
  color: white;
  font-family: "Playfair Display";
  max-width: 470px;
  font-size: 18px;
  text-align: end;
}

.mais{
  grid-row: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-self: end;
  align-items: flex-end;
  margin-top: 40px;
}

.mais img{
  position: relative;
}

.mais h1{
  position: absolute;
  left: 150px;
  top: 30px;
  color: white;
  font-weight: 500;
  font-family: "Playfair Display";
  font-size: 28px;
}

.mais p{
  margin-top: 20px;
  color: white;
  font-family: "Playfair Display";
  max-width: 470px;
  font-size: 18px;
  text-align: end;
}

.guardioes{
  grid-row: 4;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-self: end;
  align-items: flex-end;
  margin-top: 40px;
}

.guardioes img{
  position: relative;
}

.guardioes h1{
  position: absolute;
  left: 60px;
  top: 30px;
  color: white;
  font-weight: 500;
  font-family: "Playfair Display";
  font-size: 28px;
  text-wrap: nowrap;
}

.guardioes p{
  margin-top: 20px;
  color: white;
  font-family: "Playfair Display";
  max-width: 470px;
  font-size: 18px;
  text-align: end;
}


/* PASSOS PARA SE TORNAR UM VISIONARY*/

.blocoVisioanry{
    margin-top: 100px;
    display: inline-flex;
    margin-bottom: 100px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 370px;
    color: white;
    font-family: 'Playfair Display', sans-serif;
    font-size: 22px;
    font-weight: 500;
    padding: 20px 20px 20px 20px;
    background: linear-gradient(90deg, #957755 0%, #B59E81 100%);
    box-shadow: -1px 13px 12.7px 9px rgba(0, 0, 0, 0.14);
    color: white;
    position: relative;
    border-radius: 10px;
}


.tornarVisionary{
    font-weight: 500;
    font-family: 'Playfair Display', serif;
  
}

.tornarVisionary span{
    font-style: italic;
    color: #0F1F2E;
}

.aguiaVision{
    position: absolute;
    width: 500px;
    left: -200px;
    top: 2100px;
    z-index: -1;
}

.passos-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
}
.passos-section{
    margin-top: -100px;
}


.passo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 30px;
    color: #322D31;
    position: relative;
}
.passo-item::after {
    content: "";
    position: absolute;
    right: 0; 
    top: 140px; 
    transform: translateY(-50%); 
    height: 300px; 
    width: 2px; 
    background-color: rgba(149, 119, 85, 0.5); 
}

.passo-item::before {
    display: none;
}


.passo-item:first-child::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 140px;
    transform: translateY(-50%);
    height: 300px;
    width: 2px; 
    background-color: rgba(149, 119, 85, 0.5);
}

.passo-numero {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    background: linear-gradient(180deg, #957755 0%, #C7B299 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-shadow: 8px 4px 7.5px rgba(0, 0, 0, 0.25);

}

.passo-numero{
    font-weight: 700;
}

.passo-item p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 300;
}

.botaoVisionary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 100px auto;
    padding: 20px 60px;
    background: #0F1F2E;
    box-shadow: -1px 13px 12.7px 9px rgba(0, 0, 0, 0.14);
    color: white;
    font-family: 'Playfair Display', sans-serif;
    font-size: 26px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    margin-top: 60px;
    margin-left: 600px;
    border-radius: 10px;
}


.doisPontos{
  color: white !important;
}

/* INSTAGRAM */

.instagram h1{
  text-align: center;
  font-size: 46px;
  padding-top: 130px;
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  color: #421F38;
  line-height: 1.0;
}


/* 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;
}






/* TESTE */


.team-container {
  position: absolute;
  top: 170px;
  left: 780px;
  display: flex;
  width: 100%;
  max-width: 500px;
  height: 400px;
  margin: 0 auto;
}

.member {
  position: relative;
  flex: 1; /* Todos começam com o mesmo tamanho */
  overflow: hidden;
  transition: all 0.5s ease; /* Suaviza a expansão */
  cursor: pointer;
}

.member img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que a foto não distorça */
  transition: all 0.5s ease;
}

/* Quando passar o mouse no container, o que acontece com o item: */
.member:hover {
  flex: 2; /* Aumenta o peso do elemento no flexbox */
}

.member:hover img {
  filter: grayscale(0%); /* Volta a cor original no hover */
}

/* Estilo para o nome (opcional) */
.info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}

.member:hover .info {
  opacity: 1;
}








/* --- AJUSTE PARA TELAS ACIMA DE 1440px (zoom 75%) --- */

@media (min-width: 1441px) {
  /* Ancora o container de fotos ao fundoRoxo para manter o mesmo
     posicionamento visual do 1440px: 690px da borda esquerda do fundoRoxo
     (equivalente a left:780px viewport - 90px margem do fundoRoxo em 1440px) */
  .fundoRoxo {
    position: relative;
  }

  .team-container {
    left: 690px;
    top: -100px;
  }

  /* Centraliza o título "Como se tornar um Visionary" */
  .blocoVisioanry {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 150px;
  }

  /* Centraliza o botão "Começar agora" */
  .botaoVisionary {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
  }
}

/* --- RESPONSIVIDADE PÁGINA CULTURA --- */

@media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
  }



  nav {
        width: 100%;
        max-width: 100vw;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }

    .logoPrincipal  {
      width: 150px;
      height: auto;
    }

    .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;
  }
  /* Header e Seção Inicial */
  .inicio {
    padding-top: 100px;
    padding-bottom: 175px; /* Reduzido de 200px para puxar as fotos um pouco mais para perto do título */
  }
  .container {
    padding-top: 35px; /* Reduzido de 60px para aproximar o título da Nav */
    text-align: center;
    position: relative;
    z-index: 10; /* Garante que 'SOMOS VISIONARIES' ficará sobrepondo tudo */
  }
  .textosInicio h1 { font-size: 32px; }
  .fundoPrincipal { width: 100%; height: auto; object-fit: cover; }

  /* Team e Descrição Mobile - Restauração Magica */

  .fundoRoxo {
    background-color: transparent !important;
    position: relative;
    z-index: 5; /* Cria um universo empilhado seguro sobre o banner */
  }
  
  /* Esse carinha age como o novo fundo sólido roxo */
  .fundoRoxo::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #421F38; /* O clássico roxo da Vision */
    border-radius: inherit; /* Pega o arredondamento de 30px automático */
    z-index: 1; /* Fica na camada 1 */
  }

  /* Eleva todos os textos, containers, e itens pra cima (camada 2) para ficarem em cima do fundo novo */
  .fundoRoxo > *:not(.team-container) {
    position: relative;
    z-index: 2;
  }

  .team-container {
    display: flex;
    position: absolute;
    top: -160px; /* As fotos sobem 160px, o banner tem 200px livres, portanto distanciam do título maravilhosamente bem */
    left: 0;
    width: 100%;
    margin: 0;
    height: 220px; /* Altura visível de todas */
    z-index: 0 !important; /* Camada 0: escondida atrás do fundo roxo (camada 1) */
    justify-content: center;
    align-items: flex-start;
    gap: 0; /* ZERAMOS o GAP para as imagens ficarem 100% coladas transformando numa barra única */
    padding: 0 15px;
    box-sizing: border-box;
  }

  .member {
    flex: 1;
    max-width: 140px;
    height: 100%;
  }

  .member img { 
    width: 100%; 
    height: 100%;
    object-fit: cover;
    object-position: top; /* Posição gravidade original base */
  }

  /* João (Sócio 1) - Ajuste de enquadramento da Câmera e Arredondamento esquerdo */
  .member:first-child img {
    border-radius: 12px 0 0 12px; /* Só arredonda a lateral esquerda externa */
    object-position: center 40%; /* Puxa o João mais para cima ainda */
  }

  /* Ale (Sócio 2 - Do Meio) - Fica retangular e colado sem bordas */
  .member:nth-child(2) img {
    border-radius: 0;
  }

  /* Isabella (Sócio 3) - Arredondamento da direita */
  .member:nth-child(3) img {
    border-radius: 0 12px 12px 0;
    object-position: center 40%;
  }
  
  .fundoTexto { width: 100%; position: relative; }
  .tituloAlem {  text-align: center; margin-top: -75px;}
  .textoAlem { max-width: 100%; text-align: center; padding: 0 20px; margin-top: 60px;}

  /* Pilares da Cultura */
  .containerPilares {
    grid-template-columns: 1fr; /* Uma coluna só */
    margin-top: 50px;
    gap: 30px;
    padding: 0 20px;
  }

  .visao, .honra, .frente, .verdade, .amor, .excelencia, .mais, .guardioes {
    grid-column: 1 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center !important;
  }

  /* Ajuste das imagens de fundo dos títulos */
  .fundoTitulo {
    width: 100%;
    max-width: 350px;
    position: relative !important;
    margin-top: 0 !important;
  }

  /* Resetando as posições absolutas dos textos dos pilares */
  .containerPilares h1 {
    position: relative !important;
    top: -45px !important; /* Sobe o texto para dentro da imagem */
    left: 0 !important;
    margin-bottom: -30px;
    font-size: 24px !important;
  }

  .containerPilares p {
    margin-top: 0 !important;
    text-align: center !important;
    max-width: 100%;
  }

  /* Passos para se tornar Visionary */
  .blocoVisioanry {
    margin-left: 0;
    width: 100%;
    font-size: 18px;
  }

  .tornarVisionary{
    font-size: 22px;
    justify-content: center;
  }



  .passo-item p{
    font-size: 16px;
    max-width: 100px;
  }

  .passo-item:first-child::before{
    height: 350px;
    top: 130px;
  }

  .passo-item::after, .passo-item::before {
  height: 350px;
    top: 130px;
  }


  
  .check{
    width: 0px;
    margin-top: -50px;
  }
  
  .doisPontos{
    color: white !important;
  }


  .aguiaVision { display: none; } /* Evita quebra de layout */

  .botaoVisionary {
    margin-top: 10px;
    margin-right: auto;
    margin-left: 80px;
    width: 80%;
    font-size: 20px;

  }



  .instagram h1 { font-size: 30px; }
    /* 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 =] */
    } /* O xadrez pode poluir o visual mobile */

    .form{
      background-image: none;
    }

     /* Formulário */
    input, #conheceu, #objetivo, textarea {
        width: 100% !important; /* Ocupa a largura total do container */
    }
    #enviar { margin: 30px auto; width: 100%; }

    .form{
      background-image: none;
    }
}

/* Ajustes para 425px (Celulares Pequenos) */
@media (max-width: 425px) {
  .textosInicio h1 { font-size: 26px; }
  
  .containerPilares h1 {
    font-size: 24px !important;
    top: -60px !important; /* Ajusta a posição do título para caber melhor no mobile */
  }
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative; /* Segura qualquer elemento absolute fujão */
  margin: 0;
  padding: 0;
}


.form{
  margin-top: 5px !important;
}

.subtituloInicio {
  display: block;           /* Garante que o elemento ocupe sua própria linha */
  width: 100%;              /* Ocupa a largura total para o text-align funcionar */
  text-align: center;       /* Centraliza o texto internamente */
  margin-left: auto !important; 
  margin-right: auto !important; /* Essas duas linhas centralizam o bloco em si */
  justify-content: center;  /* Mantemos por segurança caso seja um flex container */
}

.check {
    display: block; 
    width: 45px; /* Ajuste suave pro 2x2 */
    height: auto;
    margin: -10px auto 0px auto; 
  }

  .containerPilares p{
    margin-top: 40px !important;
  }

  .passo-numero { font-size: 42px; } 
  
  .fundoRoxo {
    border-radius: 30px; 
    width: 100%;
  }

  .tornarVisionary {
    font-size: 20px;
    justify-content: center;
    text-align: center;
  }

 .passos-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* O 2x2 que você gostou */
    gap: 20px; 
    width: 100%;
    max-width: 100vw; 
    box-sizing: border-box; 
    padding: 0 15px; 
    overflow-x: hidden; /* Zero scroll */
  }

  .passo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .passo-item p {
    font-size: 14px; /* Legível e equilibrado */
    line-height: 1.4;
    margin-top: 5px;
    max-width: 100%; 
    word-break: break-word; 
  }

  .passo-item:first-child::before{
    display: none; /* Remove a linha vertical que não cabe no mobile */
  }

  .passo-item::after, .passo-item::before {
    display: none; /* Remove as linhas verticais que não cabem no mobile */
  }

  .aguiaVision { display: none; } /* Evita quebra de layout */

  .botaoVisionary {
    margin-top: 10px;
    margin-right: auto;
    margin-left: 40px;
    width: 80%;
    font-size: 20px;

  }



}



  /* Seção Principal */
  .instagram {
    padding: 0px 20px;
    text-align: center;
  }

  .instagram h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
    margin-top: -60px !important;
    padding-top: 0px !important;
  }

  /* Wrapper para controle de largura e fundo */
  .instagram-bg-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff; /* Fundo interno se desejar um efeito de card */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }

  /* Grid Responsiva */
  .grid-container {
    display: grid;
    /* Define 4 colunas no desktop, ajustando conforme o espaço */
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px;
  }

  /* Estilização dos itens injetados pelo JS */
  .insta-item {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    aspect-ratio: 1 / 1;
  }

  .insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }



  .insta-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative; /* Necessário para posicionar o ícone de play */
  }

  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.6);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    pointer-events: none; /* Garante que o clique passe reto pelo ícone e abra o link */
    backdrop-filter: blur(2px); /* Toque de modernidade */
  }

.insta-header-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 40px auto; /* Centraliza e dá um respiro antes do grid de fotos */
    padding-bottom: 30px;
    border-bottom: 1px solid #dbdbdb; /* Aquela linhazinha sutil do Insta */
}

/* Foto de Perfil Redonda */
.insta-profile-pic img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f9f9f9; /* Espaço falso */
    box-shadow: 0 0 0 2px #dbdbdb; /* Borda cinza clássica */
    padding: 2px;
}

/* Coluna de Informações */
.insta-profile-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    color: #262626;
}

/* Linha do @Username e Botão de Seguir */
.insta-username-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.insta-username {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.insta-follow-btn {
    background-color: #421F38; /* Azul exato do botão do Insta */
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.insta-follow-btn:hover {
    background-color: #421F38;
}

/* Estatísticas (Posts, Seguidores, Seguindo) */
.insta-stats {
    display: flex;
    gap: 25px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.insta-stats strong {
    font-weight: 600;
}

/* Biografia e Link */
.insta-bio p {
    margin: 0 0 5px 0;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.insta-link {
    color: #00376b; /* Cor do link da bio do Insta */
    font-weight: 600;
    text-decoration: none;
    font-family: 'inter';
}


@media (max-width: 425px) {
        .instagram { padding: 40px 10px; }
        .instagram h1 { font-size: 1.5rem; margin-bottom: 25px; }
        .instagram-bg-wrapper { padding: 15px 10px; border-radius: 10px; }
        
        .insta-header-container { gap: 15px; margin-bottom: 20px; padding-bottom: 15px; }
        
        /* Foto menor para não roubar a tela inteira */
        .insta-profile-pic img { width: 85px; height: 85px; border-width: 2px; }
        
        .insta-username-row { flex-direction: column; gap: 10px; }
        .insta-username { font-size: 1.3rem; }
        .insta-follow-btn { width: 100%; max-width: 200px; text-align: center; } /* Botão esticado no mobile */
        
        /* Estatísticas empilhadas idênticas ao app nativo */
        .insta-stats { 
            width: 100%; 
            justify-content: space-around; 
            gap: 10px; 
            font-size: 0.85rem;
            border-top: 1px solid #efefef;
            border-bottom: 1px solid #efefef;
            padding: 10px 0;
            margin-top: 5px;
        }
        .insta-stats span {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }
        .insta-stats strong { font-size: 1rem; }
        
        .insta-bio p { font-size: 0.9rem; margin-bottom: 10px; }
        
        /* Feed com 3 colunas coladas (padrão Instagram Mobile) */
        .grid-container { grid-template-columns: repeat(3, 1fr); gap: 3px; }
        .insta-item { border-radius: 0; } /* Tira a borda arredondada para colar as imagens */
        
        .play-icon { width: 25px; height: 25px; font-size: 12px; } /* Ícone de vídeo adaptado */
        .insta-item:nth-child(n+4) {
            display: none;
        }
    }