style.css

/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    /* Removemos o overflow:hidden daqui para o site não travar para sempre */
}

/* Adicione esta NOVA classe logo abaixo */
body.scroll-locked {
    overflow: hidden !important; /* A trava só existe quando esta classe está presente */
}

:root {
  /* Cores extraídas do seu manual de marca */
  --bg-primary: #0E0E0E;        /* Fundo bem escuro para dar aspecto premium */
  --text-primary: #FFFFFF;     /* Texto principal em branco */
  --accent-green: #2ECC71;     /* Verde que indica saúde e bem-estar  */
  --accent-green-hover: #27AE60; /* Um verde mais escuro para quando passar o mouse */

  /* Fontes que comunicam conhecimento técnico e científico  */
  --font-title: 'Montserrat', sans-serif;
  --font-text: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-text);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;
  border-radius: 6px;

  background-color: var(--accent-green);
  color: #FFFFFF;

  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;

  text-decoration: none;
  cursor: pointer;

  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--accent-green-hover);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* proporção 16:9 */
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;     /* Centraliza Verticalmente */
    justify-content: center; /* Centraliza Horizontalmente */
    background-color: var(--background-dark); /* Seu fundo padrão */
    padding: 0;
}

.hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.5rem); /* Reduzi um pouco o máximo */
    margin-bottom: 10px; /* Menos espaço embaixo */
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem); /* Fonte levemente maior */
    margin: 0 auto 20px;
    line-height: 1.5;
    
    /* AUMENTAMOS AQUI: De 600px para 800px */
    max-width: 800px; 
    width: 95%; /* Ocupa quase toda a largura em celulares */
}

/* Estilo Base do Botão */
.hero-btn {
  display: flex; /* Alinha ícone e texto na mesma linha */
  align-items: center;
  justify-content: center;
  gap: 12px; /* Espaço entre o ícone e o texto */
  
  background-color: var(--accent-green);
  color: var(--text-primary) !important; /* FORÇA O TEXTO BRANCO */
  
  /* Padding menor para não ficar "gordo" */
  padding: 14px 32px; 
  
  border-radius: 50px; /* Bordas bem redondas */
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase; /* Letras maiúsculas para mais impacto */
  letter-spacing: 1px;
  
  /* Sombra suave verde para dar destaque */
  box-shadow: 0 10px 20px -10px rgba(46, 204, 113, 0.5);
  
  /* Configurações da animação de aparecer (mantém as que você já tinha) */
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  margin-top: 0;
  border: 2px solid transparent; /* Prepara para o efeito de hover */
  z-index: 20;
}

/* Configuração do Ícone SVG */
.btn-icon {
    width: 24px;
    height: 24px;
    /* O stroke: currentColor garante que a cor siga o texto */
}

/* Efeito quando passa o mouse */
.hero-btn:hover {
  background-color: transparent;
  border-color: var(--accent-green);
  color: var(--accent-green) !important; /* Texto vira verde */
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
  transform: translateY(-3px); /* Um leve "pulinho" para cima */
}

/* Quando o JS manda o botão aparecer */
.hero-btn.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVIDADE: Ajustes para Celular */
@media (max-width: 480px) {
    .hero-btn {
        width: 100%; /* Ocupa a largura total no celular */
        max-width: 320px; /* Mas não fica gigante em celulares largos */
        padding: 14px 20px; /* Padding lateral um pouco menor */
        font-size: 0.9rem; /* Texto um pouquinho menor */
    }
    
    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }
}

.hero-btn .btn-icon {
  display: flex;
  align-items: center;
}

.hero-btn svg {
  display: block;
}

/* Quando o CTA é liberado */
.hero-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;

  box-shadow:
    0 0 10px rgba(46, 204, 113, 0.35),
    0 0 18px rgba(46, 204, 113, 0.25);
}

.video-box {
    /* --- ESTILO & GEOMETRIA JUNTOS --- */
    width: 100%;

    position: relative;
    
    /* O limite de ouro: O vídeo nunca ocupará mais de 40% da altura da tela */
    height: auto;
    max-height: 40vh; 
    
    /* Mantém a proporção 16:9 sempre */
    aspect-ratio: 16 / 9; 
    
    /* Centraliza ele horizontalmente */
    margin: 0 auto 2vh; 
    
    /* Visual */
    background: #000;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Sombra elegante */
    
    /* Alinhamento interno */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* PLAYER */
#player {
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* BARRA */
.video-progress {
  position: absolute; /* O Segredo: Flutua por cima do vídeo */
  bottom: 0;          /* Cola no fundo */
  left: 0;            /* Cola na esquerda */
  width: 100%;        /* Ocupa a largura total do vídeo */
  height: 28px;
  background-color: rgba(28, 28, 28, 0.8); /* Adicionei transparência para ficar mais elegante */
  overflow: visible;  /* Mantém visible para o seu brilho (glow) vazar para fora se precisar */
  z-index: 10;        /* Garante que fique acima do iframe do YouTube */
  
  /* Centraliza o texto dentro da barra */
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--accent-green);
  /* Adiciona um brilho que remete a energia e movimento  */
  box-shadow: 0 0 15px var(--accent-green); 
  transition: width 0.1s linear;
}

.video-progress-fill::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;

  width: 22px;
  height: 14px;

  background: radial-gradient(
    circle,
    rgba(46, 204, 113, 0.6) 0%,
    rgba(46, 204, 113, 0.35) 40%,
    rgba(46, 204, 113, 0.15) 60%,
    rgba(46, 204, 113, 0) 75%
  );

  pointer-events: none;
}

.video-progress-fill::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -8px;
  bottom: -8px;

  width: 100%;
  pointer-events: none;

  background: linear-gradient(
    to right,
    rgba(46, 204, 113, 0.35),
    rgba(46, 204, 113, 0.15),
    rgba(46, 204, 113, 0)
  );

  filter: blur(32px);
  opacity: 1;
}

.video-progress-text {
  position: relative;
  z-index: 2;

  font-family: 'Cal Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;

  color: #ffffff;
  line-height: 28px;

  user-select: none;
}

/* LEGENDA */
.video-caption {
    /* --- 1. ESTILO VISUAL (Mantendo o que você gosta) --- */
    font-family: var(--font-title);
    color: var(--text-primary); /* Mantém sua variável de cor */
    text-align: center;
    line-height: 1.4;
    transition: opacity 0.4s ease; /* Mantém o efeito suave de troca */
    
    /* --- 2. GEOMETRIA DE ENQUADRAMENTO (Ajuste para não estourar a tela) --- */
    width: 100%;
    
    /* Fonte inteligente baseada na tela (vmin) para caber no celular e PC */
    font-size: clamp(0.9rem, 3vmin, 1.2rem);
    
    /* Padding lateral para o texto não colar na borda verde */
    padding: 0 10px;
    
    /* --- LIMPEZA (Importante) --- */
    /* Removemos min-height e margins daqui pois quem segura o espaço agora
       é o container pai (.caption-cta-wrapper). Isso evita buracos duplos. */
    margin: 0;
    min-height: auto; 
}

/* CTA */
.hidden {
  display: none;
}


/* Highlight da Legenda */
.video-caption .highlight {
  color: var(--accent-green);
  font-weight: 700;
  text-shadow:
    0 0 6px rgba(46, 204, 113, 0.35),
    0 0 12px rgba(46, 204, 113, 0.25);
}

.caption-cta-wrapper {
    flex-shrink: 0;
    width: 100%;
    min-height: 60px; 
    display: grid;
    place-items: center;
    margin-top: 1vh;
}

/* O TRUQUE MÁGICO: 
   Manda a legenda e o botão ocuparem a linha 1 e coluna 1 da grade.
   Assim, um fica em cima do outro. */
.video-caption, .hero-btn {
  grid-area: 1 / 1; 
}

.logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.logo-ms {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
  /* O "M" e o "S" representam o atendimento personalizado [cite: 4, 5] */
}

.logo-text {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.logo-text strong {
  display: block;
  color: var(--text-primary);
}

.logo-text span {
  color: var(--accent-green);
}

/* --- BADGE RESPONSIVA --- */
.authority-badge {
    /* Visual Base */
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 50px; /* Borda bem redonda no PC */
    
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* Geometria Base (Desktop) */
    display: inline-flex; /* Permite alinhar os itens */
    align-items: center;
    justify-content: center;
    gap: 10px; /* Espaço entre o nome e a barra */
    
    font-size: clamp(0.6rem, 2vmin, 0.8rem);
    padding: 0.8em 2em; /* Padding gordinho */
    margin-bottom: 2vh;
    
    /* Garante que caiba na tela */
    max-width: 100%;
    box-sizing: border-box;
}

.author-name {
  color: #ffffff;
}

    
/* --- REGRAS ESPECÍFICAS PARA CELULAR --- */
@media (max-width: 600px) {
    .authority-badge {
        flex-direction: column; /* Empilha: um em cima do outro */
        gap: 4px; /* Espacinho pequeno entre as linhas */
        
        border-radius: 20px; /* Borda um pouco menos redonda para caber o texto quadrado */
        padding: 10px 20px;  /* Ajusta o padding para não ficar gigante */
        
        white-space: normal; /* Permite quebrar linha se precisar muito */
        text-align: center;
    }

    /* Esconde a barra vertical "|" no celular */
    .author-divider {
        display: none; 
    }

    /* Dá um destaque maior para o nome */
    .author-name {
        font-weight: 800;
        font-size: 1.1em; /* Nome levemente maior */
        color: #ffffff;
    }
    
    /* Título levemente menor */
    .author-title {
        font-size: 0.9em;
        opacity: 0.9;
    }
}

/* Divisor vertical */
.separator {
    color: #333;
}

/* Título em Verde */
.badge-title {
    color: var(--accent-green);
    font-weight: 600;
}

.hero h1 {
    /* --- ESTILO VISUAL --- */
    color: #ffffff;
    font-weight: 700;
    
    /* --- GEOMETRIA --- */
    flex-shrink: 0;
    width: 100%;
    text-align: center;
    /* Fonte inteligente: nunca menor que 1.1rem, idealmente 4% da tela */
    font-size: clamp(1.2rem, 4vmin, 2.2rem); 
    line-height: 1.2;
    margin-bottom: 1.5vh;
}

.hero h1 br {
    display: block; /* Garante a quebra de linha */
}

/* Subtitle: Mais clara e legível */
.hero-subtitle {
    /* --- ESTILO VISUAL --- */
    color: #cccccc; /* Cinza claro */
    font-weight: 400;
    
    /* --- GEOMETRIA --- */
    flex-shrink: 0;
    width: 100%;
    text-align: center;
    font-size: clamp(0.8rem, 2.5vmin, 1.1rem);
    margin-bottom: 2vh;
    padding: 0 10px; /* Garante que não cole nas bordas */
}

.hero-subtitle strong {
    color: var(--text-primary); /* Destaca os "16 anos" em branco */
}

/* Ajuste fino no Botão para o texto novo */
.btn-text {
    font-size: 0.9rem; /* Levemente menor pois o texto ficou maior */
}

/* EFEITO DE DESTAQUE (HIGHLIGHT) */
.highlight-text {
    color: var(--accent-green) !important; /* O !important garante que o verde vença o branco */
    text-shadow: 0 0 12px rgba(46, 204, 113, 0.45); /* O brilho neon */
    font-weight: inherit; /* Mantém o negrito se já estiver em negrito */
}

/* Ajuste fino: Se estiver dentro do subtítulo, garantimos que fique negrito */
.hero-subtitle .highlight-text {
    font-weight: 700;
}

/* --- FORÇAR COR VERDE (GLOBAL) --- */
/* O seletor abaixo diz: "Não importa se é H1, P ou Strong, se tiver essa classe, pinte de verde!" */

h1 .highlight-text,
p .highlight-text,
.hero-subtitle .highlight-text,
strong.highlight-text,
span.highlight-text {
    color: #2ECC71 !important; /* O !important obriga o navegador a obedecer */
    text-shadow: 0 0 15px rgba(46, 204, 113, 0.6); /* Aumentei um pouco o brilho */
    font-weight: inherit; /* Mantém o peso da fonte original */
}

/* --- NOVA ANIMAÇÃO: DIAGONAL LETTER REVEAL --- */

/* 1. Esconde o vídeo inicialmente */
.video-box, .caption-cta-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Classe para mostrar o vídeo */
.video-box.visible, .caption-cta-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 2. Estilo das LETRAS INDIVIDUAIS (Criadas pelo JS) */
.char-reveal {
    display: inline-block; /* Necessário para mover a letra */
    opacity: 0; /* Começa invisível */
    
    /* A MÁGICA: Começa deslocada na Diagonal (Esquerda/Baixo) e Inclinada */
    transform: translateX(-20px) translateY(20px) skewX(-20deg);
    
    /* A transição suave de chegada */
    transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

/* 3. O Estado Final (Visível e no lugar certo) */
.char-reveal.active {
    opacity: 1;
    transform: translateX(0) translateY(0) skewX(0deg);
}

/* Pequeno ajuste para garantir que espaços entre palavras funcionem */
.split-animate span {
    display: inline-block;
}

/* CORREÇÃO DO BUG DO PISCA-PISCA */
.split-animate {
    opacity: 0; /* Começa 100% invisível */
}

/* --- O NOVO FRAME DA HERO (BOX) --- */

.hero-container {
    /* GEOMETRIA DE ENQUADRAMENTO */
    width: 94%;           /* Deixa 3% de respiro em cada lado */
    max-width: 800px;     /* No PC, não fica largo demais */
    
    height: auto;         /* A altura se adapta ao conteúdo... */
    max-height: 94vh;     /* ...MAS nunca passa de 94% da altura da tela (sobra 3% em cima/baixo) */
    
    /* ORGANIZAÇÃO INTERNA */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza o conteúdo no meio do quadro */
    align-items: center;
    
    /* ESPAÇAMENTO INTELIGENTE */
    /* Padding dinâmico: diminui em celulares, aumenta em monitores */
    padding: 2vh 3vw; 
    
    /* MOLDURA VISUAL (Sua identidade verde) */
    border: 1px solid rgba(46, 204, 113, 0.4);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.05);
    backdrop-filter: blur(5px);
    
    /* Garante que o padding não some ao tamanho total */
    box-sizing: border-box; 
}

/* Ajuste fino para telas pequenas (Celular) */
@media (max-width: 480px) {
    .hero-container {
        max-width: 95%; /* Ocupa quase toda a tela */
        padding: 20px 20px; /* Reduz um pouco o padding para ganhar espaço */
        border-radius: 24px;
    }
    .video-box {
        max-width: 100%; /* No celular, o vídeo ocupa a largura disponível */
    }
}

/* Detalhe das 3 linhas no topo da caixa */
.hero-container::before {
    content: '';
    position: absolute;
    top: -1px; /* Cola na borda de cima */
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Largura do detalhe */
    height: 3px; /* Altura da linha */
    background-color: var(--accent-green);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 10px var(--accent-green);
}

/* --- SEÇÃO 2: PALIATIVO (Mobile First) --- */
.palliative-section {
    position: relative; /* Necessário para posicionar o detalhe das 3 linhas */
    background-color: #0a0a0a;
    padding: 4rem 1.5rem;
    
    /* MUDANÇA 1: Borda verde técnica igual ao container da Hero */
    border-top: 1px solid rgba(46, 204, 113, 0.4); 
    
    /* Sombra interna sutil para dar profundidade na emenda */
    box-shadow: inset 0 10px 20px -10px rgba(0,0,0,0.8);
}

/* MUDANÇA 2: O Detalhe das "3 Linhas" (Aba Verde) centralizado na borda */
.palliative-section::before {
    content: '';
    position: absolute;
    top: -1px; /* Cola exatamente na linha da borda */
    left: 50%;
    transform: translateX(-50%); /* Centraliza perfeitamente */
    
    width: 60px; /* Mesma largura do detalhe da Hero */
    height: 4px; /* Altura da "aba" */
    
    /* O Verde Neon da Marca */
    background-color: var(--accent-green);
    
    /* Arredonda só as pontas de baixo para parecer uma "garra" ou aba */
    border-radius: 0 0 4px 4px;
    
    /* O Brilho (Glow) */
    box-shadow: 0 2px 15px var(--accent-green);
    
    z-index: 10;
}

/* Centraliza tudo no celular */
.palliative-section .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- TEXTOS --- */
.palliative-header {
    text-align: center;
}

.section-tag {
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.palliative-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-green); /* O verde neon da marca */
}

.palliative-header p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto; /* Centraliza o texto se for curto */
}

/* --- CARD DA FERRAMENTA (A "Caixa") --- */
.palliative-card {
    background: linear-gradient(145deg, #151515, #111);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Ícone SVG */
.card-icon svg {
    width: 60px;
    height: 60px;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(46, 204, 113, 0.4));
}

.card-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Lista de Benefícios */
.benefit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left; /* Lista alinhada à esquerda fica mais legível */
    display: inline-block; /* Truque para centralizar o bloco da lista */
}

.benefit-list li {
    color: #bbb;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Checkzinho antes de cada item da lista */
.benefit-list li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: bold;
}

/* --- BOTÃO CORRIGIDO (Estilo Hero + Fix de Largura) --- */
.palliative-btn {
    /* 1. Visual Idêntico ao Botão da Hero */
    background-color: var(--accent-green);
    color: #ffffff; /* Texto Branco */
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    
    border-radius: 50px; /* Formato Pílula */
    border: 2px solid transparent; /* Borda transparente para não "pular" no hover */
    
    box-shadow: 0 10px 20px -10px rgba(46, 204, 113, 0.5); /* A mesma sombra neon */
    
    /* 2. Correção do Layout (O fim do botão cortado) */
    display: block;       /* Comporta-se como bloco */
    width: 100%;          /* Ocupa 100% do espaço disponível... */
    max-width: 100%;      /* ...mas NUNCA passa disso */
    box-sizing: border-box; /* A CHAVE: Faz o padding contar DENTRO da largura, não fora */
    
    padding: 14px 20px;   /* Altura confortável */
    margin-top: 1.5rem;   /* Espaço para separar do texto acima */
    text-align: center;   /* Texto centralizado */
    
    transition: all 0.3s ease;
}

/* Efeito Hover (Igual ao Hero) */
.palliative-btn:hover {
    background-color: transparent; /* Fica vazado */
    border-color: var(--accent-green); /* Borda verde aparece */
    color: var(--accent-green); /* Texto fica verde */
    
    transform: translateY(-3px); /* O leve "pulo" para cima */
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* --- ADAPTAÇÃO PARA DESKTOP (A Mágica Responsiva) --- */
@media (min-width: 900px) {
    .palliative-section .container {
        flex-direction: row; /* Coloca texto e card lado a lado */
        align-items: center;
        justify-content: space-between;
        text-align: left; /* Texto alinhado à esquerda no PC */
    }

    .palliative-header {
        text-align: left;
        max-width: 50%; /* Ocupa metade da tela */
    }

    .palliative-header p {
        margin: 0; /* Remove a centralização automática */
    }

    .palliative-card {
        max-width: 400px; /* Limita a largura do card no PC */
        width: 100%;
    }
}

/* --- SEÇÃO 3: DEMONSTRAÇÃO (DEMO) --- */
.demo-section {
    position: relative;
    background-color: var(--bg-primary); /* Mantém o fundo escuro padrão */
    padding: 4rem 1.5rem;
    
    /* A Mesma Linha Verde Estilizada da Seção Anterior */
    border-top: 1px solid rgba(46, 204, 113, 0.4);
    box-shadow: inset 0 10px 20px -10px rgba(0,0,0,0.8);
}

/* O Detalhe da "Garra" Verde (Copiado para manter padrão) */
.demo-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-green);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 15px var(--accent-green);
    z-index: 10;
}

.demo-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- CABEÇALHO DA SEÇÃO --- */
.demo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.demo-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
}

.demo-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #ccc;
}

/* --- GRID VISUAL (Mobile First: Coluna Única) --- */
.demo-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* CARD INDIVIDUAL */
.demo-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden; /* Para a imagem não vazar as bordas */
    transition: transform 0.3s ease;
}

.demo-card:hover {
    border-color: rgba(46, 204, 113, 0.3);
    transform: translateY(-5px);
}

/* A IMAGEM (Placeholder) */
.demo-image-placeholder {
    width: 100%;
    height: 200px; /* Altura fixa para ficar uniforme */
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    
    /* Gradiente temporário para simular foto (depois você põe a imagem real via CSS ou HTML) */
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

/* Etiquetas sobre as imagens */
.img-label {
    background-color: rgba(0,0,0,0.7);
    color: var(--accent-green);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 50px;
    border: 1px solid var(--accent-green);
    letter-spacing: 1px;
}

/* Conteúdo do Card */
.demo-content {
    padding: 1.5rem;
    text-align: left;
}

.demo-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Pequeno detalhe verde ao lado do título */
.demo-content h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    background-color: var(--accent-green);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-green);
}

.demo-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bbb;
}

/* --- DESKTOP (Quando a tela cresce) --- */
@media (min-width: 900px) {
    .demo-grid {
        flex-direction: row; /* Vira linha com 3 colunas */
        gap: 2rem;
    }
    
    .demo-card {
        flex: 1; /* Todos com o mesmo tamanho */
    }
    
    .demo-image-placeholder {
        height: 250px; /* Imagens mais altas no PC */
    }
}

/* --- BOTÃO DISCRETO NO CARD --- */
.saiba-mais-btn {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--accent-green);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.demo-card:hover .saiba-mais-btn {
    border-bottom-color: var(--accent-green); /* Sublinha ao passar o mouse */
    letter-spacing: 1px; /* Efeito de expansão elegante */
}

/* --- MODAL (POP-UP) BLINDADO --- */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Ocupa a tela toda */
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999; /* Garante que fique acima de tudo mesmo */
    
    /* Centralização Segura */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Garante que o modal nunca toque nas bordas da tela */
    padding: 20px; 
    box-sizing: border-box;
    
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* A CAIXA VERDE */
.modal-content {
    background-color: var(--accent-green);
    color: #ffffff;
    
    width: 100%;
    max-width: 500px;
    
    /* --- A CORREÇÃO DO VAZAMENTO --- */
    /* Define uma altura máxima que deixa uma margem de respiro em cima e embaixo */
    max-height: 80vh; 
    
    /* Habilita a rolagem interna APENAS se o texto for maior que a caixa */
    overflow-y: auto; 
    
    /* Garante que o padding não aumente o tamanho da caixa */
    box-sizing: border-box;
    
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: left;
    
    /* Estilo da barra de rolagem (para ficar bonita/invisível) */
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}

/* Ajuste da barra no Chrome/Safari */
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-track {
    background: transparent;
}
.modal-content::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.3);
    border-radius: 20px;
}

/* --- ESTILO INTERNO DO MODAL --- */
.modal-close {
    position: sticky; /* O X fica preso no topo mesmo se rolar o texto */
    top: -10px;      /* Ajuste fino */
    float: right;    /* Joga para a direita */
    background: none;
    border: none;
    font-size: 2rem;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    margin-bottom: 10px;
}

.modal-content h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
    margin-top: 0;
}

.modal-body p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* --- BOTÃO DO MODAL CORRIGIDO --- */
.modal-btn {
    display: block;
    width: 100%; /* Ocupa todo o espaço disponível */
    
    /* A CORREÇÃO DO VAZAMENTO: */
    box-sizing: border-box; /* O padding passa a contar por dentro, impedindo que estoure */
    max-width: 100%; /* Segurança extra */
    
    background-color: #ffffff;
    color: var(--accent-green);
    text-align: center;
    
    padding: 15px; /* O enchimento interno */
    margin-top: 2rem; /* Espaço em cima */
    margin-bottom: 0; /* Garante que não empurre nada embaixo */
    
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.modal-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* --- MODO MOBILE (CELULAR) --- */
@media (max-width: 600px) {
    .modal-content {
        /* No celular, reduzimos o padding para o texto ter mais espaço */
        padding: 1.5rem;
        
        /* Aumentamos a segurança da altura no celular */
        max-height: 75vh; 
        
        width: 100%; /* Usa toda a largura disponível (respeitando o padding do overlay) */
    }

    .modal-content h4 {
        font-size: 1.1rem; /* Título menor para não quebrar */
        padding-right: 30px; /* Garante que não fique embaixo do X */
    }
}

/* --- SEÇÃO 4: PROBLEMATIZAÇÃO --- */
.problem-section {
    position: relative;
    background-color: #050505; /* Um preto ainda mais profundo */
    padding: 4rem 1.5rem;
    
    /* A Linha Verde de Continuidade */
    border-top: 1px solid rgba(46, 204, 113, 0.4);
}

/* O Detalhe da "Garra" (Padrão do Site) */
.problem-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-green);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 15px rgba(46, 204, 113, 0.5); /* Mantive um brilho leve aqui só na linha */
    z-index: 10;
}

.problem-section .container {
    max-width: 800px; /* Conteúdo mais estreito para focar na leitura */
    margin: 0 auto;
}

/* Tag de Alerta (Vermelha para indicar perigo/erro) */
.red-tag {
    color: #e74c3c; /* Vermelho Alerta */
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.problem-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Destaque negativo (Vermelho) */
.highlight-red {
    color: #e74c3c;
    text-decoration: underline;
    text-decoration-color: rgba(231, 76, 60, 0.3);
}

.intro-text {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.intro-text strong {
    color: #fff;
    border-bottom: 2px solid var(--accent-green); /* Sublinhado verde para dar esperança */
}

/* Caixa dos Inimigos */
.enemy-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(231, 76, 60, 0.2); /* Borda vermelha sutil */
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.enemy-box p {
    color: #bbb;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.enemy-list {
    list-style: none;
    padding: 0;
}

.enemy-list li {
    display: flex;
    align-items: flex-start; /* Alinha no topo caso o texto quebre linha */
    gap: 15px;
    margin-bottom: 1.2rem;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.4;
}

.enemy-list li:last-child {
    margin-bottom: 0;
}

/* O X vermelho */
.icon-x {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.enemy-list strong {
    color: #fff;
}

/* Texto de Ponte (Prepara para a solução) */
.bridge-text {
    font-size: 1.1rem;
    text-align: center;
    color: #fff;
    font-weight: 500;
    margin-top: 1rem;
    padding: 0 1rem;
    border-left: 3px solid var(--accent-green); /* Detalhe verde lateral */
}

/* Mobile Adjust */
@media (max-width: 600px) {
    .enemy-box {
        padding: 1.5rem;
    }
}

/* --- SEÇÃO 5: AUTORIDADE --- */
.authority-section {
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    padding: 5rem 1.5rem;
    
    /* Linha de Continuidade (Padrão do Site) */
    border-top: 1px solid rgba(46, 204, 113, 0.4);
}

/* Garra Verde no Topo */
.authority-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-green);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 15px var(--accent-green);
    z-index: 10;
}

.authority-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* GRID PRINCIPAL (Mobile First: Empilhado) */
.authority-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

/* --- ÁREA DA FOTO --- */
.authority-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px; /* Limita o tamanho da foto */
}

.image-frame {
    border: 2px solid rgba(46, 204, 113, 0.3); /* Moldura fina verde */
    border-radius: 20px;
    padding: 10px; /* Espaço entre foto e moldura */
    position: relative;
}

/* Detalhe decorativo atrás da foto */
.image-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    z-index: -1;
}

.expert-photo {
    width: 100%;
    border-radius: 12px;
    display: block;
    filter: grayscale(20%); /* Um pouco de p&b para ficar chique */
    transition: filter 0.3s;
}

.expert-photo:hover {
    filter: grayscale(0%); /* Fica colorida ao passar o mouse */
}

/* Badge Flutuante (Anos de Carreira) */
/* --- BADGE BRILHOSO (Efeito Vidro Neon) --- */
.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    
    /* Tamanho e Espaçamento */
    padding: 15px 25px;
    border-radius: 16px;
    text-align: center;

    /* 1. O Fundo de Vidro Verde */
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.9) 0%, rgba(39, 174, 96, 0.95) 100%);
    backdrop-filter: blur(8px); /* Desfoque do que está atrás */

    /* 2. As Bordas de Luz (Simulam reflexo) */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.8); /* Borda de cima mais forte (luz do teto) */
    border-left: 1px solid rgba(255, 255, 255, 0.8); /* Borda esquerda iluminada */

    /* 3. O Glow (Brilho Neon Externo e Interno) */
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5), /* Sombra de profundidade (3D) */
        0 0 25px rgba(46, 204, 113, 0.6), /* O Brilho Neon Verde em volta */
        inset 0 0 20px rgba(255, 255, 255, 0.2); /* Brilho interno (Gloss) */

    color: #fff;
    z-index: 5; /* Garante que flutue por cima da moldura */
    
    /* Pequena animação suave de pulso */
    animation: floatingGlow 3s infinite alternate;
}

/* Animação suave para o brilho "respirar" */
@keyframes floatingGlow {
    from {
        box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(46, 204, 113, 0.5);
        transform: translateY(0);
    }
    to {
        box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 35px rgba(46, 204, 113, 0.8); /* Brilho aumenta */
        transform: translateY(-5px); /* Flutua levemente para cima */
    }
}

.badge-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* --- CONTEÚDO DE TEXTO --- */
.authority-content {
    text-align: left; /* Alinhado à esquerda para leitura */
}

.authority-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.academic-title {
    color: var(--accent-green);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    display: inline-block;
    border-bottom: 1px solid rgba(46, 204, 113, 0.3);
    padding-bottom: 5px;
}

.authority-content p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Lista de Credenciais */
.credentials-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.credentials-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.credentials-list li::before {
    content: '✓'; /* Check verde */
    color: var(--accent-green);
    font-weight: 800;
    font-size: 1.2rem;
}

/* Assinatura MS */
.ms-signature {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 3rem;
    color: rgba(255,255,255,0.1); /* Bem sutil */
    letter-spacing: -2px;
}

/* --- BARRA DE LOGOS (Rodapé da seção) --- */
.logos-strip {
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    text-align: center;
}

.logos-label {
    display: block;
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.5; /* Logos mais apagados para não roubar a cena */
}

.logos-grid span {
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
    /* Aqui depois você troca os <span> por <img> dos logos reais */
}

/* --- DESKTOP (Lado a Lado) --- */
@media (min-width: 900px) {
    .authority-grid {
        flex-direction: row; /* Foto na Esquerda, Texto na Direita */
        align-items: center;
        gap: 5rem; /* Mais espaço entre eles */
    }

    .authority-image-wrapper {
        flex: 1;
        text-align: right; /* Foto alinhada para a direita do container dela */
    }

    .authority-content {
        flex: 1;
    }
}

/* --- SEÇÃO 6: O MÉTODO (TIMELINE) --- */
.method-section {
    position: relative;
    background-color: #050505; /* Fundo bem escuro para destacar o verde */
    padding: 4rem 1.5rem;
    border-top: 1px solid rgba(46, 204, 113, 0.4);
}

/* Garra Verde (Padrão) */
.method-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-green);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 15px var(--accent-green);
    z-index: 10;
}

.method-header {
    text-align: center;
    margin-bottom: 4rem;
}

.method-header h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.method-header p {
    color: #ccc;
    max-width: 500px;
    margin: 0 auto;
}

/* --- BOTÃO DO MÉTODO (ATUALIZADO E POSICIONADO) --- */

.method-cta {
    text-align: center;
    
    /* CORREÇÃO DE POSIÇÃO: */
    margin-top: 1.5rem; /* Reduzi de 4rem para 2rem. Aproxima o botão do último card */
    padding: 0 1.5rem; /* Garante margem lateral no celular */
    position: relative;
    z-index: 5;
}

/* --- BOTÃO DO MÉTODO (CORRIGIDO SEM VAZAMENTO) --- */
.method-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* A CORREÇÃO ESTÁ AQUI: */
    width: 100%; 
    box-sizing: border-box; /* Faz o padding contar por dentro da largura */
    
    max-width: 350px; 
    margin: 0 auto; 
    
    background-color: var(--accent-green);
    color: #ffffff;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    
    padding: 16px 32px; 
    border-radius: 50px;
    
    box-shadow: 0 10px 20px -5px rgba(46, 204, 113, 0.5);
    border: 2px solid transparent; 
    
    transition: all 0.3s ease;
}

.method-btn:hover {
    background-color: transparent;
    border-color: var(--accent-green);
    color: var(--accent-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* --- ESTRUTURA DA TIMELINE (FLEX & ALINHAMENTO) --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0 0 0; /* Espaço extra para não cortar nada */
}

/* LINHAS (Cinza e Verde) - Agora controladas pelo JS */
.timeline-line, .timeline-progress {
    position: absolute;
    width: 4px;
    border-radius: 4px;
    z-index: 1;
    left: 29px; /* Posição Mobile (Centro da bolinha de 60px) */
    
    /* O JS vai definir o Top e o Height exatos */
}

.timeline-line {
    background-color: rgba(255, 255, 255, 0.1);
}

.timeline-progress {
    background-color: var(--accent-green);
    box-shadow: 0 0 15px var(--accent-green);
    height: 0; /* Começa zerada */
    z-index: 2;
    transition: height 0.1s linear;
}

/* CARD (ITEM) - Flexbox para centralizar */
.timeline-item {
    position: relative;
    display: flex;       /* A Mágica do Alinhamento */
    align-items: center; /* Centraliza verticalmente (Bolinha x Texto) */
    gap: 30px;           /* Espaço entre bolinha e texto */
    margin-bottom: 4rem;
    z-index: 3;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* O Círculo com Número (Agora relativo ao Flex) */
.timeline-number {
    position: relative; /* Deixa de ser absolute */
    flex-shrink: 0;     /* Garante que não amasse */
    width: 60px;
    height: 60px;
    
    background-color: #0a0a0a;
    border: 2px solid rgba(46, 204, 113, 0.3);
    color: rgba(255, 255, 255, 0.5);
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: var(--font-title);
    
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(0,0,0,0.5); /* Sombra para destacar da linha */
}

.timeline-item.active .timeline-number {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.6);
}

.timeline-content {
    flex: 1; /* Ocupa o resto do espaço */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.5s ease;
}

/* O Card em si (quando a linha passa por ele) */
.timeline-item.active .timeline-content {
    /* 1. A Borda Verde fica mais intensa */
    border-color: var(--accent-green);
    
    /* 2. O Brilho Neon que salta para fora (3 camadas de luz) */
    box-shadow: 
        /* Camada 1: Brilho intenso e perto da borda */
        0 0 8px rgba(46, 204, 113, 0.5),
        
        /* Camada 2: Brilho médio que se espalha */
        0 0 15px rgba(46, 204, 113, 0.3),
        
        /* Camada 3: Halo difuso e distante para dar ambiência */
        0 0 30px rgba(46, 204, 113, 0.1);
        
    /* Um leve pulo para frente para destacar */
    transform: scale(1.02);
}

/* Pequeno ajuste: Quando está ativo, o hover não precisa fazer nada extra */
.timeline-item.active .timeline-content:hover {
    transform: scale(1.02); /* Mantém o tamanho do ativo */
}

/* --- DESKTOP (ZIG-ZAG) --- */
@media (min-width: 768px) {
    .timeline-line, .timeline-progress {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        width: 100%;
        justify-content: center; /* Centraliza o bloco todo */
        gap: 60px; /* Mais espaço no PC */
    }

    /* Ímpar (Esquerda) */
    .timeline-item:nth-child(odd) {
        flex-direction: row-reverse; /* Texto na Esquerda, Bola na Direita */
    }
    
    /* Content ocupa 40% para sobrar espaço no meio */
    .timeline-content {
        flex: 0 0 40%; 
        text-align: right;
    }

    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }
    
    /* Pequeno ajuste para a bolinha ficar no meio exato da tela */
    .timeline-number {
        margin: 0; /* Remove margens extras */
    }
}

/* Tag pequena no final do card */
.step-tag {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-weight: 700;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    padding-top: 10px;

    /* ADICIONE ESTA LINHA PARA SUAVIZAR: */
    transition: all 0.5s ease;
}

/* --- ESTADO ATIVO DA TAG (QUANDO BRILHA) --- */
.timeline-item.active .step-tag {
    /* Muda a cor do texto para verde neon */
    color: var(--accent-green);
    
    /* Muda a cor da bordinha superior para verde */
    border-top-color: rgba(46, 204, 113, 0.5);
    
    /* Adiciona um brilho de luz (Glow) específico no texto */
    text-shadow: 
        0 0 5px rgba(46, 204, 113, 0.8),
        0 0 15px rgba(46, 204, 113, 0.5);
}

/* Botão Outline (Vazado) para não brigar com o principal */
.method-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-outline {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Ajuste Desktop: Linha centralizada */
@media (min-width: 768px) {
    .timeline::before {
        left: 50%; /* Linha no meio */
    }
    
    .timeline-item {
        width: 50%; /* Cada item ocupa metade */
        padding-left: 0;
        padding-right: 40px;
        left: 0;
    }
    
    /* Itens Pares (Direita) */
    .timeline-item:nth-child(even) {
        left: 50%;
        padding-right: 0;
        padding-left: 40px;
    }

    /* Ajuste do Número Centralizado */
    .timeline-number {
        left: auto;
        right: -30px; /* Cola no meio (Lado esquerdo) */
    }
    
    .timeline-item:nth-child(even) .timeline-number {
        right: auto;
        left: -30px; /* Cola no meio (Lado direito) */
    }
    
    .timeline-content {
        text-align: right; /* Texto alinhado para a linha central */
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }
}

/* --- SEÇÃO 7: PROVA SOCIAL --- */
.social-section {
    position: relative;
    background-color: #080808;
    padding: 4rem 1.5rem;
    border-top: 1px solid rgba(46, 204, 113, 0.4);
}

/* Garra Verde (Padrão) */
.social-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-green);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 15px var(--accent-green);
    z-index: 10;
}

.social-header {
    text-align: center;
    margin-bottom: 3rem;
}

.social-header h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.social-header p {
    color: #999;
}

/* --- O SCROLL HORIZONTAL (SWIPE) CORRIGIDO --- */
.social-scroll-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    
    /* AQUI ESTÁ A CORREÇÃO: */
    /* Adicionamos 40px no topo e embaixo para o brilho caber */
    padding-top: 40px; 
    padding-bottom: 40px;
    
    padding-left: 5%;
    padding-right: 5%;
    
    /* Esconde barra de rolagem */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.social-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* O CARD GENÉRICO */
.social-card {
    flex: 0 0 300px; /* Largura fixa do card */
    scroll-snap-align: center; /* Centraliza ao parar de rolar */
    background-color: #111;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

/* --- ESTILO WHATSAPP (CONVERSÃO ALTA) --- */
.whatsapp-card {
    background-color: #0d1418; /* Fundo escuro do Zap */
    display: flex;
    flex-direction: column;
}

.wa-header {
    background-color: #1f2c34;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

.wa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.wa-info {
    display: flex;
    flex-direction: column;
}

.wa-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.wa-status {
    color: var(--accent-green);
    font-size: 0.7rem;
}

.wa-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png'); /* Fundo padrão do Zap (opcional) ou cor sólida */
    background-blend-mode: overlay;
    background-color: #0b141a;
    flex: 1;
}

.wa-message {
    background-color: #202c33;
    color: #fff;
    padding: 10px 15px;
    border-radius: 0 15px 15px 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    align-self: flex-start; /* Alinha à esquerda */
}

.wa-time {
    align-self: flex-end;
    font-size: 0.7rem;
    color: #8696a0;
    margin-top: 5px;
}

/* --- ESTILO FOTO ANTES/DEPOIS --- */
.photo-card {
    position: relative;
}

.photo-compare {
    height: 250px;
    display: flex;
}

.photo-half {
    width: 50%;
    height: 100%;
    background-color: #333;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10px;
    background-size: cover;
    background-position: center;
}

.photo-half span {
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* Simulando imagens para teste (depois você põe fotos reais) */
.before { background-image: linear-gradient(to right, #222, #333); }
.after { background-image: linear-gradient(to right, #333, #444); border-left: 1px solid #fff; }

.full-photo {
    width: 100%;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.card-caption {
    padding: 15px;
    text-align: center;
}

.card-caption h4 {
    color: var(--accent-green);
    margin-bottom: 5px;
}

.card-caption p {
    color: #ccc;
    font-size: 0.85rem;
    font-style: italic;
}

/* Indicador de Swipe */
.scroll-indicator {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    margin-top: 10px;
    animation: pulseText 2s infinite;
}

@keyframes pulseText {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Botão da Seção (Reaproveitando o estilo) */
.social-cta {
    margin-top: 2rem;
    text-align: center;
}

/* --- BOTÃO SOCIAL (PADRONIZADO E SEM VAZAMENTO) --- */
.social-btn {
    display: flex; /* Garante alinhamento interno */
    align-items: center;
    justify-content: center;
    
    /* --- A CORREÇÃO DO VAZAMENTO --- */
    width: 100%; 
    box-sizing: border-box; /* O padding conta POR DENTRO da largura */
    
    max-width: 350px; /* Trava o tamanho no PC */
    margin: 0 auto;   /* Centraliza o botão na tela */
    
    /* --- VISUAL PADRÃO (SÓLIDO) --- */
    background-color: var(--accent-green);
    color: #ffffff;
    
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    
    padding: 16px 32px;
    border-radius: 50px;
    
    /* Sombra e Borda idênticas aos outros */
    box-shadow: 0 10px 20px -5px rgba(46, 204, 113, 0.5);
    border: 2px solid transparent;
    
    transition: all 0.3s ease;
}

/* Efeito Hover */
.social-btn:hover {
    background-color: transparent; /* Fica vazado ao passar o mouse */
    border-color: var(--accent-green);
    color: var(--accent-green);
    
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.social-btn:hover {
    background-color: var(--accent-green);
    color: #fff;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.4);
}

/* Desktop Fix */
@media (min-width: 900px) {
    .social-scroll-wrapper {
        justify-content: center; /* Centraliza os cards */
        flex-wrap: wrap; /* Quebra linha se precisar */
        overflow: visible; /* Tira o scroll no PC */
    }
    .scroll-indicator { display: none; } /* Esconde o "Arraste" no PC */
}

/* --- ESTADO ATIVO DO CARD SOCIAL (CENTRALIZADO) --- */

/* Garante que a transição seja suave */
.social-card {
    /* já tínhamos transition, mas reforçando */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
}

/* Quando o JS adiciona esta classe: */
.social-card.active-card {
    /* 1. Borda Verde */
    border-color: var(--accent-green);
    
    /* 2. O Brilho Neon (Glow) em camadas */
    box-shadow: 
        0 5px 15px rgba(0,0,0,0.5), /* Sombra de profundidade base */
        0 0 20px rgba(46, 204, 113, 0.4), /* Camada 1 de luz */
        0 0 40px rgba(46, 204, 113, 0.2); /* Camada 2 difusa */
        
    /* 3. Um leve "pulo" para frente */
    transform: scale(1.03); 
    z-index: 2; /* Garante que o brilho fique por cima dos vizinhos */
}

/* --- SEÇÃO 8: OFERTA & PREÇO --- */
.offer-section {
    position: relative;
    background-color: #050505;
    padding: 5rem 1.5rem;
    border-top: 1px solid rgba(46, 204, 113, 0.4);
}

/* Garra Verde (Padrão) */
.offer-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-green);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 15px var(--accent-green);
    z-index: 10;
}

.offer-header {
    text-align: center;
    margin-bottom: 3rem;
}

.offer-header h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.offer-header p {
    color: #ccc;
}

/* --- O CARD DE PREÇO (MASTER) --- */
.pricing-card {
    position: relative;
    max-width: 450px;
    margin: 0 auto; /* Centraliza */
    background: linear-gradient(145deg, #111, #0a0a0a);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    
    /* Sombra poderosa para destacar */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 20px 60px rgba(46, 204, 113, 0.15);
}

/* Badge "Mais Escolhido" */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-green);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.plan-name {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.plan-desc {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* --- ÁREA DE PREÇO --- */
.price-area {
    margin-bottom: 2rem;
}

.old-price {
    display: block;
    color: #666;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.current-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: #fff;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 5px;
}

.value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.period {
    color: #888;
    margin-left: 5px;
}

/* Divisor */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 0 auto 2rem auto;
    width: 80%;
}

/* --- LISTA DE BENEFÍCIOS --- */
.benefits-list {
    list-style: none;
    padding: 0;
    text-align: left; /* Lista alinhada à esquerda para leitura fácil */
    margin-bottom: 2.5rem;
    max-width: 320px; /* Mantém alinhado no centro visualmente */
    margin-left: auto;
    margin-right: auto;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 1rem;
}

.check-icon {
    color: var(--accent-green);
    font-weight: 800;
    font-style: normal;
    margin-right: 12px;
    font-size: 1.2rem;
}

.benefits-list strong {
    color: #fff;
}

/* Item de Bônus */
.bonus-item {
    margin-top: 1.5rem;
    background: rgba(46, 204, 113, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px dashed rgba(46, 204, 113, 0.3);
}

.plus-icon {
    color: var(--accent-green);
    font-weight: 800;
    margin-right: 10px;
}

/* --- BOTÃO FINAL --- */
.offer-cta-box {
    text-align: center;
}

.offer-btn {
    /* Padrão Sólido, Largo e Forte */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box; /* Regra de Ouro */
    
    background-color: var(--accent-green);
    color: #fff;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
    transition: all 0.3s;
}

.offer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.6);
}

/* Animação de Pulso para chamar atenção */
.pulse-effect {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.secure-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* --- CAIXA DE GARANTIA --- */
.guarantee-box {
    max-width: 600px;
    margin: 4rem auto 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee-text h4 {
    color: #fff;
    margin-bottom: 5px;
}

.guarantee-text p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Adjust */
@media (max-width: 600px) {
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

/* --- SEÇÃO 9: FAQ --- */
.faq-section {
    background-color: #080808;
    padding: 4rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    color: #fff;
    font-size: 2rem;
}

.faq-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* O Item da Pergunta */
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.02);
    overflow: hidden; /* Garante que a animação não vaze */
    transition: all 0.3s ease;
}

/* Estado Ativo (Pergunta Aberta) */
.faq-item.active {
    border-color: var(--accent-green);
    background-color: rgba(46, 204, 113, 0.05);
}

/* O Botão da Pergunta */
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-green);
    transition: transform 0.3s ease;
}

/* Gira o ícone quando abre */
.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Vira um X */
    color: #fff;
}

/* A Resposta (Escondida por padrão) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 20px 20px 20px; /* Padding só aparece quando abre */
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Ajuste para quando abrir */
.faq-item.active .faq-answer {
    /* O JS vai calcular a altura exata, mas o CSS precisa permitir */
    max-height: 500px; /* Um valor seguro */
}

/* --- RODAPÉ (FOOTER) --- */
.site-footer {
    background-color: #020202; /* Quase preto absoluto */
    padding: 4rem 1.5rem 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 coluna */
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Coluna da Marca */
.footer-logo {
    color: #fff;
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

/* Redes Sociais */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: all 0.3s;
}

.social-icon:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

/* Títulos das Colunas */
.footer-col h4 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Listas de Links */
.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: var(--accent-green);
}

/* Linha Final (Copyright) */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    color: #444;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Desktop Adjust */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr; /* Marca maior, colunas menores */
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* --- CORREÇÃO DO VAZAMENTO DO SLIDER --- */

/* O Container do Slider */
.plans-slider {
    display: flex;
    gap: 20px; /* Espaço entre os cards */
    
    /* Scroll Horizontal Nativo */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    
    /* Padding lateral para o primeiro card não colar na borda */
    padding: 20px 5%; 
    
    /* Esconde barra de rolagem */
    scrollbar-width: none; 
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    
    /* Garante que o slider em si não estoure a tela */
    width: 100%;
    max-width: 100vw;
}

.plans-slider::-webkit-scrollbar {
    display: none;
}

/* --- AJUSTE TÉCNICO DO CARD ORIGINAL PARA FUNCIONAR NO SLIDER --- */
/* Mantemos todas as cores e fontes originais da classe .pricing-card */
/* Apenas ajustamos o comportamento de layout flexbox */
/* O Card Individual (Mantendo Design, Corrigindo Tamanho) */
/* --- SEÇÃO 8: OFERTA (CORREÇÃO DEFINITIVA DO VAZAMENTO) --- */

/* 1. A Trava Mestra: Impede que qualquer coisa nesta seção estoure a largura do site */
/* --- SEÇÃO 8: OFERTA (CORREÇÃO MOBILE DEFINITIVA) --- */

/* --- SEÇÃO 8: OFERTA (CORREÇÃO BLINDADA DO VAZAMENTO) --- */

.plans-section {
    padding: 4rem 1.5rem;
    background-color: #0e0e0e;
    position: relative;
    
    /* A TRAVA MESTRA: Isso impede que qualquer coisa "vaze" para fora desta seção */
    overflow-x: hidden; 
}

.plans-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* O CONTAINER DESLIZANTE */
.plans-slider {
    display: flex;
    gap: 15px; /* Espaço entre os cards */
    
    /* Scroll Horizontal */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    
    /* TÉCNICA SEGURA: Estica até as bordas sem usar width fixa */
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: auto; 
    
    /* Padding interno para o primeiro card não colar na borda da tela */
    padding: 20px 1.5rem 40px 1.5rem;
    
    /* Esconde barra de rolagem */
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.plans-slider::-webkit-scrollbar {
    display: none;
}

/* O CARD (Design Original Preservado) */
.pricing-card.plan-card {
    /* Impede que o card encolha */
    flex: 0 0 auto; 
    
    /* Tamanho Responsivo Seguro */
    width: 85vw; /* Ocupa 85% da largura da tela */
    max-width: 380px; 
    min-width: 280px;
    
    /* Centraliza ao soltar */
    scroll-snap-align: center;
    margin: 0;
    
    /* Mantendo o Visual Original Exato */
    background: linear-gradient(145deg, #111, #0a0a0a);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 24px;
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
    box-sizing: border-box; /* Garante que padding não aumente o tamanho */
}

/* --- ESTILOS DE DESTAQUE E BOLINHAS --- */

.highlight-border {
    border-color: var(--accent-green) !important;
    box-shadow: 0 20px 60px rgba(46, 204, 113, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-green);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
    z-index: 5;
}

/* Bolinhas de navegação */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: -10px;
    padding-bottom: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background-color: var(--accent-green);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--accent-green);
}

/* Setas (Apenas Desktop) */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    width: 45px; height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}
.slider-btn:hover { background: var(--accent-green); color: #000; }
.prev { left: -60px; }
.next { right: -60px; }

/* Esconde setas no celular */
@media (max-width: 900px) {
    .slider-btn { display: none; }
}

/* --- AJUSTE DESKTOP (Quando a tela é grande) --- */
@media (min-width: 900px) {
    .plans-slider {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        justify-content: center; /* Centraliza os cards */
        padding: 20px 0 40px 0;
        overflow-x: visible; /* Remove o scroll no PC */
    }
    
    .pricing-card.plan-card {
        width: 45%; /* Cada card ocupa quase metade */
        max-width: 400px;
    }
    
    .plans-section {
        overflow-x: visible; /* No PC não precisa travar */
    }
}