
@font-face {
  font-family: 'Monolito';
  src: url('fonts/MONOLITO.otf') format('opentype');
  font-weight: normal; 
  font-style: normal;
}

:root {
  --cor-verde-claro: #a6da84;
  --cor-verde-escuro: #606C38;
  --cor-laranja-terracota: #BC6C25;
  --cor-bege-dourado: #DDA15E;
  --cor-creme-claro: #FEFAE0;
  --cor-ver-oliva-claro: #cce289;
  --cor-azul: #1050d4;
  --cor-azul-claro: #4c86fc;
  --fonte-h1: 'Monolito', sans-serif;
  --fonte-corpo: 'Manrope', sans-serif;
  

  --fs-base: 1.6rem;
  --fs-h1: 6.4rem;
  --fs-h2: 3.6rem;
  --fs-h3: 2.4rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; 
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte-corpo);
  font-size: var(--fs-base);
  font-weight: 600;
}

h1 {
  font-family: var(--fonte-h1);
  font-weight: normal;
}

h2, h3, h4, h5, h6 {
  font-family: var(--fonte-corpo);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}


.container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hero {
  background-image: url('img/WEB_HEADER_IMG.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  min-height: 90vh;
}

.hero-content {
  grid-column: 1 / 2;
  padding-left: 10%;
  padding-right: 2rem;
}

.hero-content h1 {
  font-size: 12rem;
  color: var(--cor-verde-claro);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: var(--cor-creme-claro);
  text-shadow: 1px 1px 3px rgba(40, 54, 24, 0.4);
}

.hero-subtitle {
  display: inline-block;
  background-color: var(--cor-verde-escuro);
  color: var(--cor-creme-claro);
  padding: 1rem 2rem; 
  border-radius: 5px; 
  font-family: var(--fonte-corpo);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.hero-text {
  font-size: var(--fs-h3);
  line-height: 1.6;
  color: var(--cor-creme-claro);
  margin-bottom: 2.5rem;
  max-width: 50ch;
}

.hero-label {
  font-family: var(--fonte-corpo);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--cor-verde-claro);
  text-transform: uppercase;
  margin-bottom: 3rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  display: inline-block;
  font-family: var(--fonte-corpo);
  font-weight: 600;
  font-size: var(--fs-h2);
  background-color: var(--cor-creme-claro);
  color: var(--cor-verde-escuro);
  padding: 1.5rem 3rem;
  border-radius: 5px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-primary:hover {
  color: var(--cor-creme-claro);
  background-color: var(--cor-verde-escuro);
  transform: translateY(-3px);
}

.pitch-section {
  background-image: url('img/WEB_SESSÃO_2_IMG.png');
  background-color: var(--cor-verde-claro);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  padding: 8rem 0;
  color: var(--cor-creme-claro);
}

.content-right {
  grid-column: 2 / 3;
  padding-left: 10%;
  padding-right: 5%;
  text-align: right;
}

.checklist {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.pitch-section h2 {
  font-family: var(--fonte-h1);
  font-size: 10rem;
  color: var(--cor-ver-oliva-claro);
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.pitch-section h2 .highlight-orange {
  color: var(--cor-creme-claro);
}

.check-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 1.5rem;
  font-size: 4rem;
  font-weight: 600;
}

.check-item img {
  width: 24px; 
  height: 24px;
}

.final-text {
  font-size: 3rem;
  font-style: italic;
  line-height: 1.6;
}

.consultoria-section {
  background-image: url('img/WEB_SECTION_3_IMG.png');
  background-position: center top;
  background-size: cover;
  display: grid;
  grid-template-columns: 930fr 990fr; 
}


.consultoria-right {
  display: grid;
  grid-template-rows: 600px auto;
  align-items: start;
}

.consultoria-content {
  grid-row: 2 / 3;
  padding-left: 80px;
  padding-right: 60px;
  color: var(--cor-creme-claro);
  text-align: right;
}

.consultoria-content p {
  font-size: 3rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 65ch;
}

.consultoria-content p:last-child {
  margin-bottom: 0;
}

.consultoria-content strong {
  font-weight: 800;
}

.consultoria-content h3 {
    
  display: inline-block;
  background-image: linear-gradient(to right, var(--cor-verde-escuro), var(--cor-laranja-terracota)); 
  color: var(--cor-ver-oliva-claro);
  font-family: var(--fonte-corpo);
  font-size: 8rem;
  font-weight: 600;
  text-transform: uppercase;
  align-items: right;
  padding: 0.5rem 1.5rem;
  margin-bottom: 3rem;
  border-radius: 15px;
}

.como-funciona-section {
  background-image: url('img/WEB_SECTION_4.png');
  background-color: var(--cor-azul);
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 55% 45%; 
  align-items: center;
  padding: 8rem 0;
}

.como-funciona-content {
  grid-column: 2 / 3; 
  padding-right: 15%; 
  padding-left: 2rem; 
  color: var(--cor-creme-claro);
}

.como-funciona-content h2 {
  font-family: var(--fonte-h1);
  font-size: 12rem;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 3rem;
  text-align: right;
  color: var(--cor-verde-claro);
  background-image: linear-gradient(
    to right, 
    var(--cor-azul), 
    var(--cor-verde-escuro)
  );
  display: inline-block;  
  padding: 1rem 2rem;    
  border-radius: 10px; 
}

.como-funciona-content .subtitulo {
  font-size: 4rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4rem;
  text-align: right;
}

.como-funciona-content p {
  font-size: 2.9rem;
  line-height: 1.2;
  margin-bottom: 3rem;
  max-width: 50ch;
  text-align: right;
}

.como-funciona-content p:last-child {
  margin-bottom: 0;
}

.como-funciona-content p strong {
  color: #ffff;
  font-weight: 8000;
}

.etapas-section {
  background-color: var(--cor-azul);
  padding: 8rem 0;
  color: var(--cor-creme-claro);
}

.etapas-titulo-principal {
  font-family: var(--fonte-h1);
  font-size: 10rem;
  font-weight: 300;
  color: var(--cor-verde-claro);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5rem;
}

.etapas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}

.etapa-card {
  background-color: var(--cor-azul-claro);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

.etapas-grid:hover > .etapa-card {
  transform: scale(0.95);
  opacity: 0.7;
}

.etapas-grid:hover > .etapa-card:hover {
  transform: scale(1.05);
  opacity: 1;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.etapa-numero {
  display: block;
  font-family: var(--fonte-h1);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.etapa-card h3 {
  font-family: var(--fonte-corpo);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.etapa-card p {
  font-size: 1.6rem;
  line-height: 1.6;
}

.etapas-subtitulo {
  font-family: var(--fonte-corpo);
  font-size: 2.4rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

.contato-box {
  background-color: var(--cor-creme-claro);
  color: var(--cor-azul); 
  border-radius: 15px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contato-box p {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.7;
}

.contato-box strong {
  font-weight: 800;
}

.depoimentos-section {
  background-image: url('img/WEB._SECTION_6.png');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center top;
  gap: 20rem;
  padding-top: 17rem;
  padding-left: 5%;
  padding-bottom: 5%;
  padding-right: 5%;
}

.depoimentos-content {
  color: var(--cor-azul); 
}

.label-depoimento {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--cor-creme-claro); 
  position: relative;            
  padding-left: 1.5rem;         
}

.label-depoimento::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); 
  width: 4px;
  height: 5rem; 
  background-color: var(--cor-azul);
  border-radius: 2px;
}

.depoimentos-content h2 {
  font-family: var(--fonte-h1);
  font-size: 12rem;
  font-weight: 200;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.depoimentos-content h2 .highlight-white {
  color: var(--cor-creme-claro);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.depoimentos-content .texto-principal {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.depoimentos-content .texto-secundario {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--cor-creme-claro);
}

.depoimentos-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.card-depoimento {
  display: flex;
  align-items: stretch; 
  
  background-color: #FFFFFF;
  color: var(--cor-azul);
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  
  overflow: hidden; 
  min-height: 200px;
}
.card-imagem {
  flex: 0 0 150px; 
}

.card-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  padding: 1rem;
}

.card-texto {
  flex: 1; 
  padding: 2.5rem; 
  font-size: 2rem;
}

.card-texto p:first-of-type {
  font-style: italic;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cor-creme-claro); 
  text-align: right;
  padding-right: 1.5rem;
}

/* ======================================================= */
/* SOBRE NAY SECTION                                       */
/* ======================================================= */
.sobre-section {
  background-image: url('img/WEB_SECTION_7.png');
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 12rem 0;
}

.sobre-content {
  grid-column: 2 / 3;
  padding-right: 15%;
  color: var(--cor-azul); /* Cor do texto (Confirmado) */

}

.sobre-content p {
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 2rem;
  max-width: 60ch;

}
.sobre-content p strong {
  /* Altere as propriedades aqui */
  font-size: 2.7rem;
  font-weight: 1000; /* Deixa o negrito um pouco mais forte que o padrão */
  color: inherit;   /* Por padrão, herda a cor azul do parágrafo. Você pode mudar. */
}

/* --- EFEITO DO TÍTULO "SOU NAY" ADAPTADO --- */
.titulo-nay-card {
  position: relative;
  /* Ajustei o tamanho para o texto "SOU NAY," */
  width: 350px; 
  height: 150px;
  border-radius: 14px;
  z-index: 10;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  /* Sombra sutil que funciona em fundo branco */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.titulo-nay-card .bg {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 340px;
  height: 140px;
  z-index: 2;
  /* Fundo creme-claro, como nossa identidade */
  background: var(--cor-creme-claro);
  border-radius: 10px;
  overflow: hidden;
  /* Borda verde-claro, como no design original */
  outline: 2px solid var(--cor-verde-claro);
}

.titulo-nay-card .blob {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--cor-azul);
  opacity: 1;
  filter: blur(12px);
  animation: blob-bounce 5s infinite ease;
}

.titulo-nay-text {
  position: relative;
  z-index: 3; /* Para ficar em cima do .bg */
  font-family: var(--fonte-h1);
  font-size: 8rem;
  color: var(--cor-azul);
  font-weight: 300;
  text-transform: uppercase;
}
/* --- FIM DO EFEITO DO TÍTULO --- */

.abefin-label {
  position: relative; /* "Ancora" a barra a este texto */
  padding-left: 2.5rem; /* Cria espaço para a barra */
  font-weight: 1000; /* Deixa o texto um pouco mais forte */
}

.abefin-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* Centraliza a barra verticalmente */
  width: 5px; /* Largura da barra */
  height: 100%; /* Altura da barra (ocupa a altura toda do texto) */
  background-color: var(--cor-verde-claro); /* A cor verde que você pediu */
  border-radius: 2px;
}

.item-ajuda {
  display: flex;
  align-items: center; /* << CHAVE: Centraliza o ícone e a caixa de texto verticalmente */
  gap: 2rem; 
}

.item-ajuda p {
  background-color: var(--cor-azul);
  color: var(--cor-creme-claro);
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.6rem;
  flex: 1;
  padding: 1.2rem 2rem; 
}

.item-ajuda img {
  width: 40px;
  height: 60px;
  flex-shrink: 0; /* Impede que o ícone encolha se não houver espaço */
  padding-bottom: 1.3rem;
}

/* ======================================================= */
/* CTA FINAL SECTION                                       */
/* ======================================================= */
.cta-section {
  background-image: url('img/WEB_SECTION_8.png');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  
  min-height: 100vh; 
  display: flex;
  padding: 5rem 0;
}

.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.cta-titulo {
  font-family: var(--fonte-h1);
  font-size: 6rem;
  font-weight: 300;
  color: var(--cor-creme-claro); 
  text-transform: uppercase;
  text-align: center;
  max-width: 800px;
  line-height: 1.2;
}

.cta-titulo span {
  color: var(--cor-verde-claro);
}

.cta-content-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.cta-subtitulo {
  font-family: var(--fonte-corpo);
  font-size: 3rem;
  font-weight: 600;
  color: var(--cor-creme-claro);
  text-transform: uppercase;
}

/* --- NOVO BOTÃO ANIMADO (ADAPTADO) --- */
.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 1.6rem 3.6rem; /* 16px 36px */
  border: 4px solid;
  border-color: transparent;
  font-size: 1.6rem; /* 16px */
  background-color: transparent; /* Fundo herdado (azul) */
  border-radius: 100px;
  font-weight: 600;
  font-family: var(--fonte-corpo); /* Fonte da identidade */
  text-transform: uppercase;
  
  /* --- Cores Adaptadas --- */
  color: var(--cor-creme-claro);
  box-shadow: 0 0 0 2px var(--cor-creme-claro);
  /* --- Fim Adaptação --- */
  
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: var(--cor-creme-claro); /* Cor Adaptada */
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: var(--cor-creme-claro); /* Cor Adaptada */
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: var(--cor-azul); /* Cor Adaptada */
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: var(--cor-azul); /* Cor Adaptada */
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px var(--cor-creme-claro); /* Cor Adaptada */
}

.animated-button:hover .circle {
  width: 500px;
  height: 500px;
  opacity: 1;
}
/* --- FIM DO NOVO BOTÃO --- */
.pra-quem-section {
  background-image: url('img/WEB_SECTION_9.png');
  background-position: left top; /* Alinha a imagem à esquerda */
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--cor-azul); /* Cor de fundo principal */
  display: grid;
  grid-template-columns: 1fr 1fr; /* Duas colunas 50/50 */

}

.pra-quem-content {
  grid-column: 2 / 3; /* Posiciona o conteúdo na segunda coluna */
  padding-right: 15%; /* Espaço na borda direita */
  padding-left: 2rem; /* Pequeno respiro da linha central */
  padding-top: 25rem;
  text-align: center;
  margin-bottom: 20rem;

}

.pra-quem-content h2 {
  font-family: var(--fonte-h1);
  font-size: 18rem;
  font-weight: 300;
  color: var(--cor-creme-claro); /* << Placeholder */
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative; /* Necessário para posicionar a barra */
  display: inline-block;
}

.pra-quem-content h2::after {
  content: ''; /* Essencial para pseudo-elementos */
  display: block; /* Para ocupar a largura total e quebrar a linha */
  width: 100%; /* Ocupa a largura do h2 */
  height: 10px; /* Espessura da barra */
  background-color: var(--cor-verde-claro); /* Cor verde da identidade */
  margin-top: 1rem; /* Espaço entre o título e a barra */
  border-radius: 2px;
}

.pra-quem-content .subtitulo {
  font-size: 4.8rem;
  font-weight: 600;
  /* PERGUNTA: Cor é --cor-creme-claro? */
  color: var(--cor-creme-claro); /* << Placeholder */
  margin-bottom: 3rem;
}

.lista-pra-quem {
  list-style: none; /* Remove as bolinhas padrão da lista */
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Espaço entre os itens da lista */
}

.lista-pra-quem li {
  /* PERGUNTA: Qual a cor de fundo? */
  background-color: #0d3a9b; /* << Placeholder (Azul escuro) */
  color: var(--cor-creme-claro); /* << Placeholder */
  
  padding: 1.5rem 2rem;
  border-radius: 100px; /* Bordas bem arredondadas */
  font-size: 2rem;
  font-weight: 600;
  border: 2px solid var(--cor-azul-claro);
}

@media (max-width: 768px) {
  .hero {
    background-image: url('img/MOBILE_HEADER_IMG.png');
    background-position: center bottom;
    grid-template-columns: 1fr;
    grid-template-rows: 55% 45%;
    align-items: start;
    min-height: 100vh;
  }

  .hero-content {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    padding: 3rem 2.5rem 2.5rem 2.5rem; 
    text-align: center;
  }

  .hero-content h1 {
    font-size: 5rem; 
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
  }

  .hero-text {
    font-size: 1.5rem; 
    line-height: 1.5;
    max-width: 100%;
  }

  .hero-label {
    font-size: 1.2rem; 
    margin-bottom: 1.5rem;
  }

  .btn-primary {
    font-size: 1.4rem; 
    padding: 1.2rem 2.4rem;
  }

.pitch-section {
  background-image: url('img/MOBILE_SECTION_2_IMG.png');
  background-position: center top;
  background-size: cover;
  grid-template-columns: 1fr;
  grid-template-rows: 40% 60%;
  align-items: start;
  min-height: 100vh;
  padding: 0;
}

.content-right {
  grid-row: 2 / 3; 
  grid-column: 1 / 2; 
  padding: 2.5rem;
  text-align: center;
}

.pitch-section h2 {
  font-size: 4rem;
  margin-bottom: 3.5rem;
}

.checklist {
  display: inline-flex; 
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.check-item {
  justify-content: flex-start;
  flex-direction: row-reverse;
  gap: 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.final-text {
  font-size: 1.6rem;
}
.consultoria-section {
  background-image: url('img/MOBILE_SECTION_3_IMG.png');
  background-position: center top;
  background-size: cover;
  grid-template-columns: 1fr;
  grid-template-rows: 230fr 700fr 550fr;
  min-height: 150vh; 
}

.consultoria-left {
  display: none;
}

.consultoria-right {
  grid-column: 1 / 2; 
  grid-row: 2 / 3;   
  display: block;    
  align-self: center; 
}

.consultoria-content {
  grid-row: auto; 
  padding: 0 2.5rem; 
  text-align: center; 
}

.consultoria-content p {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.consultoria-content h3 {
  font-size: 3.2rem;
  margin-bottom: 2.5rem;
}
.como-funciona-section {
  background-image: url('img/MOBILE_SECTION_4.png');
  background-position: center center; 
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column; 
  justify-content: flex-start; 
  padding: 0;
  padding-bottom: 45vh;
}

.como-funciona-content {
  grid-column: auto; 
  padding: 5rem 2.5rem; 
  text-align: center;
  width: 100%;
}

.como-funciona-content h2 {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  padding: 0.8rem 1.5rem; 
  border-radius: 8px; 
  text-align: center; 
  display: inline-block; 
}

.como-funciona-content .subtitulo {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.como-funciona-content p {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  max-width: none; 
}


.etapas-titulo-principal {
  font-size: 5rem;
  line-height: 1.2;
}



.etapas-grid {
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-left: 7rem;  
  padding-right: 7rem;
}

.etapas-subtitulo {
  font-size: 2rem;
}

.contato-box p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.etapas-grid:hover > .etapa-card {
  transform: none;
  opacity: 1;
}

.etapas-grid:hover > .etapa-card:hover {
  transform: none;
  opacity: 1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
}

.depoimentos-section {
  grid-template-columns: 1fr;
  padding: 13rem 2.5rem 5rem;
  gap: 10rem;
  background-image: url('img/MOBILE_SECTION_6.png'); 
  background-position: center top;
  background-size: cover;
}

.depoimentos-content {
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;
}

.depoimentos-content h2 {
  order: 1; 
  font-size: 5rem; 
  line-height: 1.1;
  color: var(--cor-azul);
}

.depoimentos-content h2 .highlight-white {
   color: var(--cor-creme-claro); 
}

.depoimentos-content .texto-principal {
  order: 2; 
  font-size: 1.7rem;
  color: var(--cor-azul);
}

.depoimentos-content .texto-secundario {
  order: 3; 
  font-size: 1.8rem;
  color: var(--cor-creme-claro);
  margin-bottom: 3rem; 
}

.label-depoimento {
  order: 4; 
  font-size: 1.6rem;
  color: var(--cor-azul); 
  padding-left: 0;
  margin-bottom: 3rem; 
  position: relative;
}

.label-depoimento::before {
  display: none;
}
.label-depoimento::after {
  content: ''; 
  position: absolute;
  left: 50%; 
  bottom: -1.5rem;
  transform: translateX(-50%); 

  width: 100px;
  height: 3px;
  background-color: var(--cor-azul);
  border-radius: 2px;
}

.card-depoimento {
  display: block; 
  min-height: auto;
}

.card-imagem {
  flex: none;
  width: 100%;
  height: auto;
}

.card-texto {
  flex: none; 
  padding: 2.5rem; 
  text-align: left;
}

.card-texto p {
  font-size: 1.5rem;
}

.disclaimer {
  text-align: center;
  padding: 1rem 0 0 0;
  color: var(--cor-creme-claro); 
}

.sobre-section {
  /* 1. MUDA para coluna única e se torna âncora */
  grid-template-columns: 1fr;
  position: relative; /* Essencial para o título flutuar */
  
  /* 2. TROCA a imagem de fundo */
  background-image: url('img/MOBILE_SECTION_7.png');
  background-position: center top;
  background-size: 100% auto; /* Ajusta à largura, altura automática */
  background-repeat: no-repeat;
  
  padding: 0; /* Remove o padding do desktop */
  min-height: 100vh;
}

/* 3. AJUSTA O CONTEÚDO PRINCIPAL (o texto de baixo) */
.sobre-content {
  grid-column: 1 / 2;
  color: var(--cor-azul);
  padding: 0 2.5rem 5rem 2.5rem; /* Padding lateral e inferior */
  text-align: center; /* Centraliza todo o texto de baixo */
  
  /* EMPURRA o conteúdo para baixo da imagem */
  padding-top: 85vh;
}

/* 4. FAZ O TÍTULO FLUTUAR (Absolute) */
.titulo-nay-card {
  position: absolute;
  top: 3rem; /* Distância do topo */
  left: 50%;
  transform: translateX(-50%);
  
  /* Ajusta o tamanho para mobile */
  width: 90%;
  max-width: 350px;
  height: 120px;
  
  margin-bottom: 0; /* Remove a margem que não é mais necessária */
}

.titulo-nay-card .bg {
  width: calc(100% - 10px); /* Ajusta o .bg ao novo tamanho */
  height: 110px;
}

.titulo-nay-text {
  font-size: 4rem; /* Reduz a fonte do título */
}

/* 5. AJUSTES NOS TEXTOS E BOTÕES */
.abefin-label {
  padding-left: 0; /* Remove o padding da barra */
  text-align: center;
  font-size: 2rem;
  padding: 0 3rem;
}

.abefin-label::before {
  display: none; /* Esconde a barra no mobile */
}

.sobre-content p {
  font-size: 1.6rem;
  max-width: none; 
  padding: 0 3rem;
}
.sobre-content p strong {
  font-size: 1.8rem;
}

.lista-ajuda {
  align-items: center; /* Centraliza a lista de botões */
}

.item-ajuda {
  gap: 1.5rem; /* Espaço menor entre ícone e texto */
  width: 100%; /* Faz os botões ocuparem a largura */
}

.item-ajuda img {
  width: 30px; /* Ícones menores */
  height: 30px;
}

.item-ajuda p {
  font-size: 1.4rem;
  padding: 0 1.5rem;
}
/* Dentro da sua @media (max-width: 768px) { ... } */

/* Dentro da sua @media (max-width: 768px) { ... } */

/* --- AJUSTES NA CTA FINAL SECTION PARA MOBILE (VERSÃO COM MARGIN-TOP) --- */
.cta-section {
  background-image: url('img/MOBILE_SECTION_8.png');
  background-position: center top;
  background-size: cover;
  min-height: 100vh;
  padding: 0; /* Remove padding */
  
  /* Garantimos que a seção seja o contêiner flex principal */
  display: flex; 
}

/* O container agora controla o layout e o padding */
.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Alinha tudo no TOPO */
  width: 100%;
  min-height: 100vh;
  padding: 5rem 2.5rem; /* Padding geral */
}

/* Título continua no fluxo normal no topo */
.cta-titulo {
  font-size: 4rem;
  max-width: 100%;
  text-align: center;
  padding-top: 0; /* Remove padding específico */
  margin-bottom: 3rem; /* Adiciona espaço abaixo do título */
}

/* O conteúdo de baixo é EMPURRADO para baixo com margin-top */
.cta-content-bottom {
  /* Removemos o position: absolute */
  position: static; 
  
  /* ADICIONAMOS MARGIN-TOP GRANDE */
  margin-top: 60vh; /* << AJUSTE ESTE VALOR (55% da altura da tela) */
  
  /* Estilos que já tínhamos */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  width: 90%; 
}

.cta-subtitulo {
  font-size: 2.4rem;
  text-align: center;
}

/* Ajustes no botão animado (continuam os mesmos) */
.animated-button {
  font-size: 1.4rem;
  width: 100%; 
  max-width: 350px;
}

.animated-button .text{
  font-size: 1rem;
}

.animated-button:hover .circle {
  width: 400px;
  height: 400px;
}

/* --- FIM DOS AJUSTES DA SEÇÃO 8 MOBILE --- */
/* Dentro da sua @media (max-width: 768px) { ... } */

/* --- AJUSTES NA PRA QUEM É SECTION PARA MOBILE --- */
.pra-quem-section {
  /* 1. TROCA a imagem de fundo */
  background-image: url('img/MOBILE_SECTION_9.png');
  background-position: center top;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Alinha o conteúdo no topo */
  grid-template-columns: 1fr; /* Reseta o grid do desktop */
  min-height: 100vh; /* Ocupa a altura da tela */
  padding-bottom: 35vh
}

.pra-quem-content {
  grid-column: 1 / 2; /* Ocupa a coluna única */
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 2rem;
  padding-right: 2rem; /* Padding lateral */
  text-align: center; /* Centraliza tudo */
  width: 100%;
}

.pra-quem-content h2 {
  font-size: 4rem; /* Reduz o título */
  margin-bottom: 2rem;
  display: inline-block; /* Mantém o display para a barra funcionar */
}

/* Garante que a barra continue centralizada */
.pra-quem-content h2::after {
  margin-top: 0.5rem; /* Ajusta o espaço da barra */
  height: 4px;
}

.pra-quem-content .subtitulo {
  font-size: 2rem; /* Reduz o subtítulo */
  margin-bottom: 1.5rem;
}

.lista-pra-quem {
  align-items: center; /* Garante que a lista fique centralizada */
  gap: 1rem; /* Espaço menor entre as pílulas */
}

.lista-pra-quem li {
  font-size: 1.4rem; /* Fonte menor nas pílulas */
  padding: 1rem 1.8rem; /* Padding menor */
  width: 100%; /* Faz as pílulas ocuparem a largura */
  max-width: 400px; /* Limita a largura máxima no mobile */
}
}

@keyframes blob-bounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }

  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }

  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }

  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }

  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}