:root {
    /* Paleta de Cores Vest.Rio */
    --roxo: #9200D0;
    --amarelo: #F2C029;
    --laranja: #F2762E;
    --laranja-claro: #F29727;

    /* Cores de base */
    --cor-fundo: #FFFFFF;
    --cor-texto-principal: #333333;
    --cor-texto-claro: #FFFFFF;
    
    --cinza: #5C5C5C;
    --cinza-fundo: #fdfdfd; 
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--cor-fundo);
    color: var(--cor-texto-principal);
    line-height: 1.6;
}

/* --- Estrutura e Containers --- */
.container {
    max-width: 800px; /* Largura ideal para leitura */
    margin: 0 auto;
    padding: 0 20px;
}

section, header {
    padding:  0px;
    box-sizing: border-box;
}

/* --- Header --- */
.header {
    padding-top: 20px;
    text-align: center;
    background-color: var(--roxo);
}
.logo {
    width: 90px;
    height: auto;
    
}

/* --- Seção Hero --- */
.hero {
    text-align: center;
    background-color: var(--roxo);
}

.hero .container {
    max-width: 1100px;
}

.hero h1 {
    padding-top: 20px;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--cor-texto-claro);
    margin: 0 auto 15px auto;
    max-width: 1000px;
    text-wrap: balance;
}

.hero .subheadline {
    font-size: 1.1rem;
    color: var(--cor-texto-claro); /* Usando o cinza da paleta para hierarquia */
    margin: 0 auto 30px auto;
    max-width: 900px;
    text-wrap: balance;
}

/* --- Botão CTA Matador --- */
.cta-button {
    display: inline-block;
    background-color: var(--laranja);
    color: var(--cor-fundo);
    padding: 16px 30px;
    border: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(244, 99, 53, 0.4); /* Sombra suave com a cor do botão */
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(244, 99, 53, 0.5); /* Sombra mais intensa no hover */
}

/* --- Responsividade --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero .subheadline {
        font-size: 1rem;
    }
}

/* --- Seção de Benefícios (Features) --- */
.features {
    background-color: #F7F7F7; /* Um cinza bem claro para quebrar o fundo branco */
    padding: 10px 0px 30px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--cor-texto-principal);
}

.features-grid {
    display: grid;
    /* Cria colunas responsivas: no mínimo 250px, no máximo 1 fração (distribuição igual) */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
   
}

.feature-card {
    background-color: var(--cor-fundo);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    border-top: 4px solid var(--roxo); /* Destaque com a cor azul */
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* Para a animação de entrada */
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.is-visible {
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.feature-icon {
    margin-bottom: 15px;
    color: var(--roxo); /* Ícones na cor azul */
}

.feature-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: var(--cor-texto-principal);
}

.feature-card p {
    margin: 0;
    color: var(--cinza);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.7rem;
    }
}

/* --- Seção de Resultados (Prints) - VERSÃO GRANDE E RESPONSIVA --- */
.results {
    /* Esta seção não tem padding vertical, pois o padding será no .result-block */
    padding: 20px; 
}

.result-block {
    padding: 10px 0 20px;
    width: 100%;
}

/* Fundo cinza para o segundo bloco, criando o efeito de alternância */
.result-block-alt {
    background-color: #F7F7F7;
}

.result-item-content {
    max-width: 1200px; /* Container bem mais largo para dar espaço */
    margin: 0 auto;
    padding: 0 25px; /* Padding de segurança nas laterais */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Ambos os blocos têm a mesma estrutura vertical */
.result-block-alt .result-item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.result-text {
    text-align: center;
    /* Animação de entrada do texto */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}
.result-block-alt .result-text {
    /* Mesma animação para ambos */
    transform: translateY(30px);
}
.result-block.is-visible .result-text {
    opacity: 1;
    transform: translateY(0);
}

.results h1 {
    text-align: center;
}

.result-text h3 {
    font-size: 2.5rem; /* Título maior */
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 20px 0;
    color: var(--cor-texto-principal);
}

.result-text h3 strong {
    font-weight: 700;
    color: var(--roxo);
    display: inline-block;
}

.result-text p {
    font-size: 1.1rem;
    color: var(--cinza);
    line-height: 1.7;
    margin-bottom: 25px;
}

.source-tag {
    display: inline-block;
    padding: 5px 12px;
    background-color: #e9e9e9;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cinza);
}

.result-image-wrapper {
    border-radius: 12px;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.2);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    
    /* Animação de entrada da imagem */
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.7s ease-out;
}
.result-block.is-visible .result-image-wrapper {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.2s; /* A imagem aparece um pouco depois do texto */
}

.result-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

/* --- Responsividade para a seção de resultados --- */
@media (max-width: 768px) {
    .result-text h3 {
        font-size: 1.8rem;
    }
}

/* --- SEÇÃO DE GANHOS (EARNINGS) --- */
.earnings {
    background-color: var(--roxo);
    color: var(--cor-fundo);
    padding: 10px 0;
    text-align: center;
   }

.earnings .section-title {
    color: var(--cor-fundo);
}

.earnings .section-subtitle {
    font-size: 1.2rem;
    color: #ececec;
    margin-top: -40px;
    margin-bottom: 40px;
}

.earnings-intro {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap; /* Permite que os itens quebrem a linha em telas menores */
}

.intro-item {
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    min-width: 220px;
}

.intro-item span {
    display: block;
    font-size: 0.9rem;
    color: #ececec;
}

.intro-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amarelo); /* Destaque azul nos números */
}

.earnings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

.earning-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 35px 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.earning-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.1);
}

.earning-card .sales-count {
    display: block;
    font-size: 1rem;
    color: #ececec;
    margin-bottom: 15px;
}

.earning-card .earnings-amount {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--amarelo);
    line-height: 1.1;
    text-wrap: nowrap;
}

.earnings-teaser {
    margin-top: 50px;
    font-size: 1.2rem;
    font-style: italic;
    color: #bdbdbd;
}

/* --- Responsividade para a seção de ganhos --- */
@media (max-width: 768px) {
    .earnings-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }

    .earning-card .earnings-amount {
        font-size: 2.4rem;
    }
}

/* --- SEÇÃO DE PROGRESSÃO --- */
.progression {
    padding: 10px 0;
    background-color: #F7F7F7;
}

.progression .section-subtitle {
    max-width: 600px;
    margin: -40px auto 50px auto;
}

.progression-footer {
    text-align: center;
    color: var(--cinza);
    font-size: 0.9rem;
    margin-top: 40px;
}

/* --- VERSÃO DESKTOP: LINHA DO TEMPO (COM CORREÇÕES) --- */

/* Aumenta a largura máxima do container nesta seção para dar mais espaço */
.progression .container {
    max-width: 1100px;
}

.progression-desktop {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.progression-line {
    position: absolute;
    top: 28px; /* Posição vertical exata para centralizar na bolinha */
    height: 4px;
    background-color: #ddd;
    z-index: 1;
    /* Ajuste para alinhar com o centro dos marcos inicial e final */
    left: 80px; /* Metade da largura de um card (160px / 2) */
    right: 80px;/* Metade da largura de um card (160px / 2) */
}

.progression-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.step-milestone {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--cinza);
    border: 5px solid #F7F7F7; /* Aumenta a borda para "cortar" melhor a linha */
    margin-bottom: 15px; /* Margem ajustada */
}

.step-milestone.is-upgrade {
    background-color: var(--roxo); /* Destaque para upgrade de comissão */
}

.step-card {
    background: var(--cor-fundo);
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    width: 160px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.18);
    border-top: 4px solid var(--cinza);
}

.step-milestone.is-upgrade + .step-card {
    border-top-color: var(--roxo);
}

.step-header {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-body {
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.step-body span {
    display: block;
    color: var(--cinza);
}
.step-body strong {
    color: var(--cor-texto-principal);
}
.step-body .highlight {
    color: var(--roxo);
    font-weight: 700;
}
.step-body .highlight strong {
    color: var(--roxo);
}

.step-total {
    background-color: #f0f0f0;
    padding: 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}
.step-total strong {
    font-weight: 700;
    color: var(--cor-texto-principal);
    text-wrap: nowrap;
}

/* --- VERSÃO MOBILE: ACORDEÃO --- */
.progression-mobile {
    display: none; /* Escondido por padrão */
    max-width: 600px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}
.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.accordion-header span {
    font-size: 1.1rem;
    font-weight: 400;
}
.accordion-header strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--roxo);
}

.accordion-header::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--cinza);
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #fff;
}
.accordion-body p {
    padding: 0 20px 10px 20px;
    color: var(--cinza);
}
.accordion-body p:first-child {
    padding-top: 10px;
}
.accordion-body .highlight {
    color: var(--roxo);
    font-weight: 600;
}

/* --- LÓGICA DE RESPONSIVIDADE --- */
@media(max-width: 950px) {
    .progression-desktop {
        display: none; /* Esconde a versão desktop */
    }
    .progression-mobile {
        display: block; /* Mostra a versão mobile */
    }
}

/* --- SEÇÃO FAÇA AS CONTAS (CALCULATOR PROMO) --- */
.calculator-promo {
    position: relative;
    background-color: var(--roxo);
    color: var(--cor-fundo);
    padding: 80px 0;
    text-align: center;
    overflow: hidden; /* Esconde o excesso dos símbolos de fundo */
}

.calculator-promo h1 {
    font-size: 2.2rem;
}

/* Símbolos decorativos de fundo */
.bg-symbol {
    position: absolute;
    font-size: 12rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
    user-select: none; /* Impede que o texto seja selecionado */
}
.symbol-plus {
    top: 5%;
    left: 5%;
    transform: rotate(-15deg);
}
.symbol-times {
    top: 50%;
    right: -5%;
    transform: rotate(15deg);
}
.symbol-equals {
    bottom: 5%;
    left: 20%;
}

/* Garante que o conteúdo fique por cima dos símbolos */
.calculator-promo .container {
    position: relative;
    z-index: 1;
}

.calculator-promo .section-title {
    color: var(--cor-fundo);
}

.calculation-box {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    margin: 40px auto 0 auto;
    max-width: 650px;
}

.scenario {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
}
.scenario strong {
    color: var(--cor-fundo);
    font-weight: 600;
}

.calc-step {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.calc-symbol {
    font-size: 2rem;
    font-weight: 600;
    color: var(--amarelo);
}
.plus-symbol {
    font-size: 2.5rem;
}

.calc-subtotal {
    background-color: rgba(0,0,0,0.2);
    padding: 5px 15px;
    border-radius: 6px;
    font-weight: 600;
}

.final-result {
    margin-top: 20px;
}

.equals-line {
    display: block;
    height: 2px;
    background-image: linear-gradient(to right, transparent, var(--amarelo), transparent);
    border: 0;
    margin: 20px auto;
    width: 80%;
}

.total-amount {
    display: block;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--amarelo);
    line-height: 1;
}

.total-label {
    display: block;
    font-size: 1rem;
    color: #ccc;
    margin-top: 5px;
}

.follow-up-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 50px 0 15px 0;
    color: var(--cor-fundo);
}
.follow-up-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
    max-width: 550px;
    margin: 0 auto;
}
.follow-up-text strong {
    color: var(--cor-fundo);
}

.disclaimer {
    font-size: 0.8rem;
    color: #bdbdbd;
    max-width: 550px;
    margin: 30px auto 0 auto;
    line-height: 1.5;
}

/* --- Responsividade --- */
@media(max-width: 600px) {
    .calc-step {
        font-size: 1rem;
        gap: 10px;
    }
    .total-amount {
        font-size: 3rem;
    }
    .calculator-promo h1 {
        font-size: 1.8rem;
    }
}

/* --- SEÇÃO DE TUTORIAL --- */
.tutorial {
    background-color: #F7F7F7;
    padding: 10px 0;
    text-align: center;
}

.tutorial h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cor-texto-principal);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tutorial video {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
    border: 1px solid #e0e0e0;
}

/* Responsividade da seção tutorial */
@media (max-width: 768px) {
    .tutorial h1 {
        font-size: 1.7rem;
    }
}

/* --- SEÇÃO DE BENEFÍCIOS RECEBIDOS (COM FONT AWESOME) --- */
.benefits-received {
    background-color: var(--cor-fundo);
    padding: 10px 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.benefit-card {
    background-color: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 14px 44px rgba(0,0,0,0.14);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(0,0,0,0.22);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px; /* Tamanho do círculo de fundo */
    height: 64px;
    background-color: #8621b1; /* Fundo suave para o ícone */
    color: var(--amarelo); /* Cor do ícone */
    border-radius: 50%;
    margin: 0 auto 20px auto; /* Centraliza o círculo */
}

/* Define o tamanho do ícone Font Awesome dentro do círculo */
.benefit-icon i {
    font-size: 28px; 
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cor-texto-principal);
    margin: 0 0 10px 0;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--cinza);
    line-height: 1.6;
}

/* --- Responsividade --- */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr; /* Uma coluna em mobile */
        gap: 25px;
    }
}

/* --- SEÇÃO COMO FUNCIONA --- */
.how-it-works {
    background-color: var(--cor-fundo);
    padding: 10px 0;
}
.how-it-works .section-title {
    text-align: center;
    margin-bottom: 50px;
}
.steps-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
/* Linha vertical que conecta os passos */
.steps-container::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: #e0e0e0;
}
.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--roxo);
    color: var(--amarelo);
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 25px;
    flex-shrink: 0; /* Impede que o número encolha */
}
.step-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--cor-texto-principal);
}
.closing-text {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cinza);
    margin-top: 40px;
}

/* --- SEÇÃO QUEM PODE SER AFILIADO --- */
.who-can-join {
    background-color: #F7F7F7; /* Fundo cinza claro */
    padding: 10px 0;
}
.who-can-join-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.who-can-join .section-title {
    text-align: left; /* Título alinhado à esquerda nesta seção */
    text-wrap: nowrap;
}
.checklist {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}
.checklist li {
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    color: var(--cinza);
    margin-bottom: 20px;
    text-align: left;
}
.checklist i {
    color: var(--roxo);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 4px;
}
.closing-note {
    margin-top: 30px;
    font-size: 1.1rem;
    color: var(--cor-texto-principal);
    line-height: 1.6;
}
.closing-note strong {
    font-weight: 700;
}
.who-can-join-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
/* Responsividade da Seção */
@media(max-width: 900px) {
    .who-can-join-grid {
        grid-template-columns: 1fr;
    }
    .who-can-join .section-title {
        text-align: center;
    }
    /* Inverte a ordem no mobile: imagem primeiro, depois o texto */
    .who-can-join-image {
        grid-row: 1;
        margin-bottom: 10px;
    }
    .who-can-join-text {
        grid-row: 2;
        text-align: center;
    }
}

/* --- SEÇÃO DEPOIMENTOS (VERSÃO SIMPLIFICADA) --- */
.testimonials {
    background-color: #F7F7F7;
    padding: 10px 0 30px;
}

.testimonials .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Espaço entre os depoimentos */
    max-width: 900px; /* Largura máxima para os cards */
    margin: 0 auto;
}

.testimonial-card-horizontal {
    display: flex;
    align-items: flex-start; /* Alinha no topo */
    gap: 30px;
    background-color: var(--cor-fundo);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.author-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #eee;
}

.testimonial-content {
    flex: 1; /* Ocupa o resto do espaço */
    text-align: left;
}

.quote-icon {
    font-size: 2rem;
    color: var(--roxo);
    opacity: 0.4;
    margin-bottom: 15px;
}

.quote-text {
    margin: 0 0 20px 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--cinza);
    font-style: italic;
}

.author-details {
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--cor-texto-principal);
}

.author-title {
    display: block;
    font-size: 0.9rem;
    color: var(--cinza);
}

/* Responsividade da Seção */
@media(max-width: 768px) {
    .testimonial-card-horizontal {
        flex-direction: column; /* Empilha os itens */
        align-items: center; /* Centraliza tudo */
        text-align: center;
        gap: 20px;
    }

    .testimonial-content {
        text-align: center;
    }
}

/* --- SEÇÃO DE PERGUNTAS FREQUENTES (FAQ) --- */
/* --- SEÇÃO DE PERGUNTAS FREQUENTES (FAQ) --- */
#secao-faq {
    background-color: var(--cor-fundo);
    padding: 60px 20px;
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.faq-header h2 {
    color: var(--roxo);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-header p {
    font-size: 1.1rem;
    color: var(--cinza);
}

.faq-card-body {
    padding: 30px 25px !important; 
    min-height: 250px !important; 
    background-color: #fff;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

#faq-dynamic-answer {
    font-family: 'Consolas', 'Courier New', monospace; /* Fonte estilo máquina de escrever */
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.interactive-faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
}

/* --- Coluna da Esquerda (Lista de Perguntas COM SCROLL) --- */
.faq-questions-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 520px; /* Altura fixa para forçar a rolagem */
    overflow-y: auto;  /* Ativa a rolagem vertical */
    padding-right: 15px; /* Dá um espacinho para a barra não colar nos botões */
}

/* Customização da Barra de Rolagem da Lista */
.faq-questions-column::-webkit-scrollbar {
    width: 6px;
}
.faq-questions-column::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}
.faq-questions-column::-webkit-scrollbar-thumb {
    background: var(--amarelo); /* Usando o roxo da sua marca */
    border-radius: 10px;
}

.faq-interactive-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px 25px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cor-texto-principal);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.faq-interactive-btn:hover {
    border-color: var(--roxo);
    transform: translateX(5px);
}

.faq-interactive-btn i {
    color: #aaa;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Estado Ativo do Botão */
.faq-interactive-btn.active {
    border: 2px solid var(--roxo);
    background-color: rgba(146, 0, 208, 0.05); /* Fundo roxo bem clarinho */
    color: var(--roxo);
    box-shadow: 0 5px 15px rgba(146, 0, 208, 0.1);
}

.faq-interactive-btn.active i {
    color: var(--roxo);
    transform: rotate(90deg); /* Seta aponta pra baixo */
}

/* --- Coluna da Direita (Card Resposta) --- */
.faq-answer-column {
    position: sticky;
    top: 100px; /* Faz o card acompanhar a rolagem */
}

.faq-answer-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* --- NOVO CABEÇALHO DO CARD DE RESPOSTA --- */
.faq-card-header {
    background-color: #fff; /* Fundo branco como no exemplo */
    padding: 20px 25px;
    display: flex;
    align-items: center; /* Alinha avatar e textos no meio */
    gap: 15px;
    border-bottom: 1px solid #eee;
}

.faq-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Deixa a foto redonda */
    background-color: var(--roxo); /* Cor de fundo caso a imagem seja transparente */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.faq-avatar img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.faq-header-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.faq-brand-title {
    font-weight: 800; /* Título mais grosso igual ao exemplo */
    font-size: 1.2rem;
    color: #111;
}

.faq-status {
    font-size: 0.9rem;
    color: #b0cc24; /* Aquele verde/amarelado específico do seu print */
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #b0cc24;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.faq-accordion-item {
    width: 100%;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.faq-mobile-answer {
    display: none; 
}

/* Animações */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(176, 204, 36, 0.6); }
    70% { box-shadow: 0 0 0 6px rgba(176, 204, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(176, 204, 36, 0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVIDADE DO FAQ (A Mágica do Mobile) --- */
@media (max-width: 992px) {
    .interactive-faq-layout {
        grid-template-columns: 1fr;
    }
    
    /* 1. Oculta o card lateral de digitação no celular */
    .faq-answer-column {
        display: none !important;
    }

    /* 2. Libera a rolagem da coluna de perguntas para a página normal */
    .faq-questions-column {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
        gap: 12px;
    }

    /* 3. Transforma os itens na estética de Cartão Fechado */
    .faq-accordion-item {
        border: 1px solid #e0e0e0;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        overflow: hidden;
    }

    /* Quando a pergunta recebe o clique, o container inteiro fica Roxo */
    .faq-accordion-item.active {
        background-color: var(--roxo);
        border-color: var(--roxo);
    }

    /* Remove os estilos do botão que vieram do desktop */
    .faq-interactive-btn {
        border: none;
        box-shadow: none;
        background: transparent;
        padding: 18px 20px; 
    }

    .faq-interactive-btn:hover {
        transform: none; /* Tira o efeito do botão "pular" pro lado no mobile */
        border-color: transparent;
    }

    /* Textos e ícones brancos quando a sanfona abre */
    .faq-interactive-btn.active {
        background: transparent;
        color: #fff;
        border: none;
        box-shadow: none;
    }

    .faq-interactive-btn.active i {
        color: #fff;
    }

    /* 4. Mostra a resposta fluindo para baixo de forma suave */
    .faq-accordion-item.active .faq-mobile-answer {
        display: block;
        padding: 0 20px 20px 20px;
        color: rgba(255, 255, 255, 0.95); /* Texto branco para leitura suave no fundo roxo */
        font-size: 1rem;
        line-height: 1.6;
        animation: fadeIn 0.4s ease-in-out forwards;
    }
}

/* --- SEÇÃO CTA FINAL --- */
.final-cta {
    background-color: var(--roxo);
    color: var(--cor-fundo);
    padding: 20px 0;
    text-align: center;
}
.final-cta h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    max-width: 650px;
    margin: 0 auto 30px auto;
    color: var(--cor-fundo);
}
.warning-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ffcc00;
    background-color: rgba(255, 204, 0, 0.1);
    color: #ffcc00;
    padding: 12px 20px;
    border-radius: 20px;
    margin-bottom: 25px;
    font-weight: 500;
}
.warning-box i {
    font-size: 1.2rem;
}
.cta-subtext {
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    color: #ccc;
}
.final-cta .cta-button {
    margin-bottom: 25px;
    transform: scale(1.1); /* Botão um pouco maior para destaque */
}
.final-cta .cta-button:hover {
    transform: scale(1.15) translateY(-4px);
}
.cta-checklist {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap; /* Permite quebrar a linha em telas menores */
    color: #ccc;
}
.cta-checklist li {
    display: flex;
    align-items: center;
    
    gap: 8px;
    text-align: left;
}
.cta-checklist i {
    color: var(--roxo);
}
/* Responsividade */
@media(max-width: 768px) {
    .final-cta h2 {
        font-size: 1.7rem;
    }

}

@media(min-width: 768px) {
    .cta-checklist {
        justify-content: center;
    }
}

/* --- RODAPÉ (FOOTER) --- */
.site-footer {
    background-color: var(--cor-fundo);
    color: var(--cor-texto-principal);
    padding: 40px 0;
    text-align: center;
}
.footer-logo {
    width: 90px;
    height: auto;
    margin-bottom: 15px;
}
/* ============================================== */
/* === ESTILOS PARA DIVISORES DE ONDA === */
/* ============================================== */
.wave-divider {
    width: 100%;
    line-height: 0;
    direction: ltr; 
    margin-top: -2px;
    margin-bottom: -2px;
    position: relative;
    z-index: 10;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 90px;
    transform: scaleY(1.08) translate3d(0, 0, 0);
    transform-origin: center;
}
.wave-bottom {
    transform: rotate(180deg);
}
.wave-roxo .shape-fill {
    fill: var(--roxo);
}
.wave-cinza .shape-fill {
    fill: #F7F7F7;
}
.wave-bg-f7 {
    background-color: #F7F7F7;
}
.wave-bg-roxo {
    background-color: var(--roxo);
}
.site-footer p {
    margin: 5px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}