*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body{
  background-color: #282828;
  font-family: 'Inter';
  padding-top: 180px;
}

ul, li{
  list-style: none;
}

a{
  text-decoration: none;
  color: white;
}

header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background-color: #0e0e0e;
  
}

.redesNav{
  display: flex;
  flex-direction: row;
  background-color: #020304;
  padding: 5px 100px;
  gap: 20px;
}

.redesNav h6{
  color: white;
  font-size: 14px;
  font-weight: 200;
}

.instaNAV, .ytNAV{
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 5px;
}

/* Escondido por padrão no Desktop */
.menu-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 10001;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.4s;
}

/* NAVEGAÇÃO PRINCIPAL DA PÁGINA */
nav{
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0px;
  z-index: 10000;
  background-color: #0e0e0e;
}

.header{
  max-width: 1162px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between !important;
  gap: 510px;
}


.containerNAV{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.itensNAV{
  display: flex;
  flex-direction: row;
  gap: 0 20px;
}


.itensNAV li{
  color: white;
  z-index: 1000;
  white-space: nowrap;
}

#nav-menu{
}

header a{
  color: white;
  font-size: 16px;
  z-index: 1000;
}

/* INICIO DA PÁGINA*/

.containerSOBRE{
  background-image: url(./assets/fundoQUEM.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}




/* video */

video{
  width: 100%;
}

.video{
  max-width: 1160px;
  margin: 10px auto;
}

/* ICONES */

.icones{
  display: flex;
  max-width: 1100px;
  margin: 0px auto;
  margin-top: 100px;
  margin-bottom: 00px;
  gap: 190px;
}

/* --- Seu código original --- */
.icones {
  display: flex;
  max-width: 1100px;
  margin: 0px auto;
  margin-top: 100px;
  margin-bottom: 0px;
  gap: 190px;
}

/* --- O Novo Código de Animação --- */

/* Estado inicial das imagens: Invisíveis e deslocadas para baixo */
.icones img {
  opacity: 0;
  transform: translateY(40px); /* Começa 40px abaixo da posição final */
  /* 'all' anima tanto a opacidade quanto a posição */
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
  will-change: opacity, transform; /* Otimização de performance para o navegador */
}

/* Estado final: Quando o JS adicionar a classe 'ativo' */
.icones img.ativo {
  opacity: 1;
  transform: translateY(0);
}

/* --- Delays Escalonados (Stagger) --- */
/* Cada imagem espera um pouco mais que a anterior */

.icones img:nth-child(1) {
  transition-delay: 0.1s;
}

.icones img:nth-child(2) {
  transition-delay: 0.3s;
}

.icones img:nth-child(3) {
  transition-delay: 0.5s;
}

.icones img:nth-child(4) {
  transition-delay: 0.7s;
}

/* SESSÃO DE DESCRIÇÃO DA PÁGINA */

.sessaoPrincipal{
  background-image: url(./assets/fundoQUEM2.webp);
  background-position: top;
  z-index: -1;
  margin-top: 100px;
}

/* Card Vídeo + Texto (padrão Soluções) */
.sobre-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 1160px;
}

.sobre-video {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sobre-video video {
  width: 100%;
  max-width: 500px;
  height: 350px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sobre-texto {
  flex: 1;
}

.sobre-texto h1 {
  color: #282828;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  background: none;
  -webkit-text-fill-color: #282828;
}

.sobre-texto h1::before {
  display: none;
}

.sobre-texto p {
  color: #444444;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 100%;
  -webkit-text-fill-color: #444444;
}

.sobre-item.reverse {
  flex-direction: row-reverse;
}

.Vitrini{
  margin-left:  auto;
  margin-right: auto;
  max-width: 1160px;
  
  
}


.Vitrini h1{
  background: linear-gradient(102deg, #D0CCC6 5.81%, #999 87.9%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  position: relative;
  font-size: 38px;

  
}

.Vitrini h1::before{
  content: '';
  position: absolute;
    left: -10px; /* Cola na esquerda */
    top: 4px;
    /* AQUI ESTÁ O SEGREDO DA BARRA VERTICAL: */
    width: 2px; /* Espessura da linha */
    height: 90%; 
    background-color: #ffffff; 
}

.Vitrini p{
  font-size: 20px;
  max-width: 400px;
  color: white;
  margin-top: 20px;
  margin-bottom: 40px ;
  font-weight: 200;


}



.containerProposito{
    max-width: 1160px;
  display: flex;
  margin: 0 auto;
  margin-top: 100px;
  justify-content: end;
  align-items: end;
}



.proposito h1{
  background: linear-gradient(102deg, #D0CCC6 5.81%, #999 87.9%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  position: relative;
  font-size: 38px;
  
}

.proposito h1::before{
     content: '';
  position: absolute;
    left: -10px; /* Cola na esquerda */
    top: 8px;
    /* AQUI ESTÁ O SEGREDO DA BARRA VERTICAL: */
    width: 2px; /* Espessura da linha */
    height: 90%; 
    background-color: #ffffff; 
}

.proposito p{
    max-width: 400px;
  color: white;
  margin-top: 20px;
  margin-bottom: 40px ;
  font-weight: 200;
  font-size: 20px;
}

/* CULTURA */

.cultura{
  background-image: url(./assets/fundoQUEM3.webp);
  background-position: top;
  
}

.textoCultura{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.textoCultura h1{
    background: linear-gradient(102deg, #D0CCC6 5.81%, #999 87.9%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  position: relative;
  font-size: 42px;
  margin-left: 40px;
}

.textoCultura p{
  max-width: 1160px;
  text-align: center;
  font-size: 22px;
  font-weight: 200;
  color: white;
  margin-top: 20px;
  margin-bottom: 40px ;
}



/* PILARES DA CULTURA */

.pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1160px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

.pilar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: background 0.3s ease;
}

.pilar:hover {
  background: rgba(255, 255, 255, 0.09);
}

.pilar h3 {
  background: linear-gradient(102deg, #D0CCC6 5.81%, #999 87.9%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.pilar p {
  color: #aaaaaa;
  font-size: 15px;
  font-weight: 200;
  line-height: 1.5;
  margin: 0;
  max-width: 100%;
  text-align: center;
}

/* CERTIFICAÇÕES */

.titulo-certificacoes {
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  margin-top: 80px;
  margin-bottom: 0px;
  background: linear-gradient(90deg, #D0CCC6 0%, #999 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 20px;
}

.certificacoes-wrapper {
  max-width: 85%; /* Ocupa a largura da tela */
  margin-top: 40px; /* Reduzido de 120px para aproximar do título */
  overflow: hidden; /* Esconde o que sai da tela */
   margin-left: 100px;
  /* Opcional: Fade nas laterais para ficar elegante */
  -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  padding-bottom: 80px; /* Aumentado para dar respiro em relação ao footer */
  cursor: grab;
  user-select: none;
}

.certificacoes-wrapper:active {
  cursor: grabbing;
}

/* A "Fita" que se move */
.certificacoes img {
    pointer-events: none;
    user-select: none;
}
.certificacoes {
  display: flex;
  gap: 90px; /* Seu gap original */
  width: max-content; /* Força a largura a ser a soma dos itens */
  flex-wrap: nowrap;
 
  /* A animação será controlada via JS para garantir fluidez, 
     mas definimos a base aqui */
}

/* A animação será controlada via JS para garantir fluidez e interatividade */
.certificacoes[data-animated="true"] {
  /* Removemos a animação CSS daqui */
}


@keyframes scroll {
  to {
    /* Move para a esquerda 50% do tamanho total (que será o tamanho original + clone) */
    /* O ajuste de pixels ajuda a compensar o gap no final do loop */
    transform: translate(calc(-50% - 45px)); 
  }
}



/* FOOTER */

.vitrini-footer {
    background-color: #020304;
    color: #ffffff;
    padding: 20px 20px 40px;
    width: 100%;
    font-family: 'Inter', sans-serif; /* Certifique-se de ter essa fonte ou similar */

}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px; /* Aumentei o espaço geral */
}

/* --- Topo --- */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

/* Links */
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #020304;
}

.footer-nav a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 18px;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.8;
}

/* Reseta estilos herdados do nav genérico do header */
.footer-nav {
    background-color: #020304;
    position: static;
    padding: 0;
    z-index: auto;
    max-width: none;
}

/* Contato (Correção da quebra de linha) */
.footer-contact {
  margin-top: 20px;  
  text-align: right;
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
    /* Impede que o container fique muito estreito */
    min-width: 300px; 
}

.email-link {
    display: block;
    margin-top: 8px;
    color: #e0e0e0;
    text-decoration: none;
}

/* --- Divisória --- */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #333333; /* Cor sólida para ficar mais visível */ 
}

/* --- Base (Logo e Social) --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Centraliza verticalmente */
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Correção das imagens dos ícones */
.social-icons img {
    height: 30px;
    width: auto;
    display: block;
    object-fit: contain;
    /* Removi o filtro "brightness" que podia estar deixando o Youtube quadrado branco. 
       Se suas imagens forem pretas e precisarem ficar brancas, descomente a linha abaixo: */
    /* filter: brightness(0) invert(1); */
    transition: transform 0.2s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-logo img {
    height: 50px; /* Ajuste a altura conforme necessário */
    width: auto;
    object-fit: contain;
}

/* CSS: Estilo e Animação */
.whatsapp-link {
    position: fixed; /* O segredo para ele "correr" junto com a tela */
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Verde Oficial do WhatsApp */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Garante que fique acima de tudo */
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Efeito Hover (passar o mouse) */
.whatsapp-link:hover {
    transform: scale(1.1);
    background-color: #128c7e; /* Verde mais escuro ao passar o mouse */
}

/* Ícone SVG */
.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: #fff;
}

/* Responsividade: Ajuste para tablets/celulares */
@media (max-width: 900px) {
    .whatsapp-link {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
      .logoNAV img {
    width: 120px !important;
  }
}




/* --- ADAPTAÇÃO PARA TABLET (900px) --- */
@media (max-width: 900px) {


  .redesNav{
            padding: 5px 20px;
        justify-content: start;
  }

      .redesNav h6 {
        display: none; /* Esconde o texto @ e deixa só os ícones para poupar espaço */
    }

      nav {
        padding: 20px;
    }

    .containerNAV {
        flex-direction: row;
        gap: 20px;
    }

  .containerSOBRE {
    background-size: cover;
  }

  .logoNAV img {
    width: 150px !important;
  }

    /* Vídeo */
    .video {
        padding: 0 20px;
    }

.menu-hamburger {
    display: flex; /* Mostra o hambúrguer */
  }

  .itensNAV {
    position: fixed;
    left: -100%; /* Esconde o menu fora da tela */
    top: 100px; /* Ajuste conforme a altura do seu header */
    flex-direction: column;
    background-color: #020304;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
    padding: 40px 0;
    z-index: 9999;
  }

  /* Quando o menu estiver ativo */
  .itensNAV.active {
    left: 0;
  }

  /* Animação do X (Transforma as barras em um X) */
  .menu-hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
    /* Ícones: Reduz o gap e permite quebra de linha se necessário */
    .icones {
      display: flex;
      flex-wrap: nowrap;
      flex-direction: row;
        gap: 50px;
        justify-content: center;
        margin-top: 50px;
        padding: 0 20px;
    }

    .icones img {
        width: 60px; /* Ajuste o tamanho conforme seus ativos */
    }

    /* Sessão Principal e Propósito */
    .Vitrini, .containerProposito {
        padding: 0 30px;
        text-align: center;
        justify-content: center;
    }

    .Vitrini h1::before, .proposito h1::before {
        left: 50%;
        transform: translateX(-50%);
        top: -15px;
        width: 60px;
        height: 2px;
    }

    .Vitrini p, .proposito p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Cultura */
    .textoCultura p {
        padding: 0 30px;
        font-size: 18px;
    }

    .titulo-certificacoes {
        font-size: 20px;
    }

    .pilares {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .certificacoes-wrapper {
        margin-left: 0;
        max-width: 100%;
    }

    /* Card Vídeo + Texto */
    .sobre-item {
        flex-direction: column;
        margin: 60px 20px;
        gap: 20px;
        text-align: center;
    }

    .sobre-item.reverse {
        flex-direction: column;
    }

    .sobre-video video {
        max-width: 100%;
        height: auto;
    }

        /* Footer */
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-contact {
        text-align: center;
        min-width: unset;
    }
}

/* --- ADAPTAÇÃO PARA MOBILE (425px) --- */
@media (max-width: 425px) {
  .header {
    gap: 0; /* Remove o espaçamento gigante para a tela menor */
    width: 100%;
  }

      .itensNAV {
        gap: 15px;
        font-size: 12px;
    }

  .logoNAV  {
    width: 150px !important;
  }

    /* Ajuste de Títulos */
    .Vitrini h1, .proposito h1, .textoCultura h1 {
        font-size: 28px;
    }

    /* Ícones: Grid de 2x2 para caber melhor */
    .icones {
        gap: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    /* Espaçamentos entre seções */
    .sessaoPrincipal, .textoCultura {
        margin-top: 60px;
    }

    .sobre-item,
    .sobre-item.reverse {
        flex-direction: column;
        margin: 40px 15px;
        gap: 20px;
        text-align: center;
    }

    .sobre-video video {
        max-width: 100%;
        height: auto;
    }

    .Vitrini p, .proposito p, .textoCultura p {
        font-size: 16px;
        line-height: 1.5;
    }

    .pilares {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
    
    }
}


/* Prepara o item pai para receber o submenu absoluto */
.itensNAV .dropdown {
  position: relative;
}

/* Estilo do container do submenu oculto por padrão */
.itensNAV .dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 140%; /* Posiciona logo abaixo do link Soluções */
  left: -60%;
  background-color: #ffffff; /* Ajuste para a cor do seu layout */
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
  padding: 10px 0;
  list-style: none;
  border-radius: 4px;
  transform: translateY(10px); /* Leve recuo para animação */
  transition: all 0.3s ease;
  z-index: 999; /* Garante que fique por cima de outros elementos */
}

/* Estilo dos links internos do dropdown */
.itensNAV .dropdown-content li a {
  display: block;
  padding: 10px 20px;
  color: #333333; /* Ajuste para a cor do seu layout */
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s;
}

/* Efeito Hover nos itens internos */
.itensNAV .dropdown-content li a:hover {
  background-color: #f1f1f1; /* Ajuste para a cor do seu layout */
}

/* Revela o menu no Hover do item pai (.dropdown) */
.itensNAV .dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}


/* Transforma o link <a> em um flex container para alinhar a imagem e o texto */
.instaNAV a, 
.ytNAV a {
  display: flex;
  flex-direction: row; /* Flex já é row por padrão, mas é bom reforçar */
  align-items: center; /* Centraliza verticalmente a logo e o texto */
  text-decoration: none; /* Remove qualquer sublinhado padrão de links */
  gap: 5px;
}

/* Remove a margem padrão do h6 que pode desalinhá-lo do centro da imagem */
.instaNAV h6, 
.ytNAV h6 {
  margin: 0;
  color: #ffffff; /* Ajuste para a cor que você está usando no header */
}