/* === CSS RESET (Simple) === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: var(--line-height-base);
    color: var(--color-brand-text-primary);
    background-color: var(--color-brand-light-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* === NOVO DESIGN - VARIÁVEIS CSS === */
:root {
    /* Cores da Marca */
    --color-brand-primary: #00796B;      /* Teal Green */
    --color-brand-secondary: #0288D1;    /* Professional Blue */
    --color-brand-accent: #FFC107;       /* Amber for highlights */
    --color-brand-light-bg: #F5FAFF;     /* Very light blue/gray for backgrounds */
    --color-brand-dark-text: #212529;    /* Dark text for high contrast */
    --color-brand-bg-main: #FFFFFF;      /* Main background for sections */
    --color-brand-card-bg: #FFFFFF;      /* Card background */
    --color-brand-text-primary: #343A40; /* Primary text color */
    --color-brand-text-secondary: #6C757D; /* Secondary text color (gray) */
    --color-alert-red: #D32F2F;          /* Red for alerts or negative emphasis */

    /* Bordas */
    --color-border-light: #E9ECEF;       /* Light border color for dividers */

    /* Fontes */
    --font-primary: 'Inter', sans-serif;
    --font-headings: 'Poppins', sans-serif;

    /* Espaçamentos */
    --padding-section-vertical: 70px;
    --padding-container-horizontal: 20px;

    /* Outros */
    --border-radius-cards: 10px;
    --box-shadow-cards: 0 4px 12px rgba(0, 0, 0, 0.06);
    --box-shadow-cards-hover: 0 6px 16px rgba(0, 0, 0, 0.09);
    --line-height-base: 1.65;
    --line-height-headings: 1.3;
}

/* === GLOBAL STYLES (New Design) === */
.container {
    width: 100%;
    max-width: 1140px; /* Reduzido de 1180px para alinhar com design mais compacto */
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--padding-container-horizontal);
    padding-right: var(--padding-container-horizontal);
}

.section-padding {
    padding-top: var(--padding-section-vertical);
    padding-bottom: var(--padding-section-vertical);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--color-brand-dark-text);
    line-height: var(--line-height-headings);
    margin-bottom: 1rem;
}

h1.hero-headline { /* Classe específica para a headline da Hero */
    font-size: 1.6rem; /* Reduzido ainda mais para mobile - mais compacto */
    font-weight: 700;
    margin-bottom: 1rem; /* Menos margem */
    color: var(--color-brand-bg-main);
    line-height: 1.2;
}
/* .brand-name-hero - removido (não mais usado)
.brand-name-hero {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-brand-accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
*/

h2.section-title {
    font-size: 2rem; /* Ajustado */
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.25rem; /* Menos margem */
    color: var(--color-brand-dark-text);
}

p.section-subtitle {
    font-size: 1.05rem; /* Ajustado */
    color: var(--color-brand-text-secondary);
    text-align: center;
    max-width: 650px; /* Ajustado */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem; /* Ajustado */
    line-height: var(--line-height-base);
}

h3 { /* Títulos de Cards */
    font-size: 1.15rem; /* Ajustado */
    font-weight: 600;
    margin-bottom: 0.5rem; /* Menos margem */
    color: var(--color-brand-dark-text);
}

p {
    font-family: var(--font-primary);
    color: var(--color-brand-text-primary);
    line-height: var(--line-height-base);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Botões (New Design) */
.btn {
    display: inline-block;
    font-family: var(--font-headings);
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.07);
    padding: 0.8rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: none;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.12);
}
.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.07);
}

.btn-primary { /* Botão Amarelo */
    background-color: var(--color-brand-accent);
    color: var(--color-brand-dark-text);
}
.btn-primary:hover {
    background-color: #FFB300;
}

.btn-secondary { /* Botão com borda branca para Hero */
    background-color: transparent;
    color: var(--color-brand-bg-main);
    border: 2px solid var(--color-brand-bg-main);
}
.btn-secondary:hover {
    background-color: rgba(255,255,255, 0.1);
}

/* Botão secundário para fundos claros */
.btn-secondary-on-light {
    background-color: transparent;
    color: var(--color-brand-secondary);
    border: 2px solid var(--color-brand-secondary);
}
.btn-secondary-on-light:hover {
    background-color: rgba(2, 136, 209, 0.05);
    color: #0277BD;
    border-color: #0277BD;
}

/* === HEADER (New Design) === */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-brand-bg-main);
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-header-login {
    background-color: transparent;
    color: var(--color-brand-secondary);
    padding: 0.6rem 1.25rem;
    border: none;
    text-transform: none;
    font-weight: 500;
    letter-spacing: normal;
    box-shadow: none;
}

.btn-header-login:hover {
    color: var(--color-brand-primary);
    text-decoration: underline;
    transform: none;
    box-shadow: none;
}

.btn-header-signup {
    background-color: var(--color-brand-accent);
    color: var(--color-brand-dark-text);
    padding: 0.6rem 1.25rem;
    border-radius: 20px;
    text-transform: none;
    font-weight: 500;
    letter-spacing: normal;
}

.btn-header-signup:hover {
    background-color: #FFB300;
}

.site-logo {
    max-height: 35px;
}

/* === HERO SECTION (#hero) (New Design) === */
.hero-section {
    background: linear-gradient(120deg, var(--color-brand-primary) 0%, var(--color-brand-secondary) 100%);
    color: var(--color-brand-bg-main);
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: calc(80vh - 70px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

/* .brand-name-hero - removido (não mais usado)
.brand-name-hero {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-brand-accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
*/

h1.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-brand-bg-main);
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 0.9rem; /* Reduzido ainda mais para mobile */
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    align-items: center;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 0.9rem 2.25rem;
    width: 100%;
    max-width: 280px;
    min-width: 250px;
    font-size: 0.95rem;
    border-radius: 4px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
}

.btn-hero-primary {
    background-color: var(--color-brand-accent);
    color: var(--color-brand-dark-text);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--color-brand-bg-main);
    border: 2px solid var(--color-brand-bg-main);
}

.hero-value-reinforcement {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}

.hero-image-container {
    display: none;
}

.hero-image-container {
    display: none;
}

/* === SEÇÕES COM FUNDOS ALTERNADOS === */
.dores-section {
    background-color: var(--color-brand-light-bg); /* #F5FAFF */
}

.solucao-section {
    background-color: var(--color-brand-bg-main); /* #FFFFFF */
}

.prova-social-section {
    background-color: var(--color-brand-light-bg); /* #F5FAFF */
}

.como-funciona-section {
    background-color: var(--color-brand-bg-main); /* #FFFFFF */
}

.objecoes-section {
    background-color: var(--color-brand-light-bg); /* #F5FAFF */
}

/* Aceleradores mantém seu fundo escuro definido separadamente */

/* === DORES SECTION (#dores) === */
.dores-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.dor-card {
    background-color: var(--color-brand-card-bg);
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}
.dor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.dor-visual-media {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    margin-bottom: 0;
}

.dor-content {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.dor-title {
    color: var(--color-brand-dark-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.dor-description {
    font-size: 0.95rem;
    color: var(--color-brand-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Remover estilos antigos do ícone que não são mais usados */
.dor-icon {
    display: none;
}


/* === SOLUCAO SECTION (#solucao) === */
.solucao-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.solucao-card {
    text-align: left; /* Texto alinhado à esquerda como nos cards do novo design */
    padding: 1.5rem;
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-cards);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    background-color: var(--color-brand-card-bg);
    box-shadow: var(--box-shadow-cards);
}

/* Garantir alinhamento à esquerda em todos os elementos filhos */
.solucao-card h3,
.solucao-card p {
    text-align: left;
}
.solucao-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-cards-hover);
    /* border-color: var(--color-brand-secondary); */ /* Opcional: borda azul no hover */
}
.solucao-image { /* Imagens das funcionalidades */
    width: 100%; /* Ocupar largura do card */
    height: 180px; /* Altura fixa para as imagens */
    object-fit: cover; /* Cortar para preencher */
    border-radius: 6px; /* Borda arredondada na imagem */
    margin-bottom: 1rem;
}
.solucao-title { /* Título da funcionalidade (Motor de Questões, etc.) */
    color: var(--color-brand-dark-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.solucao-description { /* Texto descritivo abaixo */
    color: var(--color-brand-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}


/* === PROVA SOCIAL SECTION (#prova-social) === */
.stats-container {
    display: grid;
    grid-template-columns: 1fr; /* Uma coluna no mobile */
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 480px) {
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
    }
}
.stat-item { /* Cards azuis das estatísticas */
    background-color: var(--color-brand-secondary); /* Azul secundário */
    color: var(--color-brand-bg-main); /* Texto branco */
    padding: 2rem;
    border-radius: var(--border-radius-cards);
    text-align: center;
    box-shadow: var(--box-shadow-cards);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(2, 136, 209, 0.3);
}
.stat-number { /* "81%", "+10.000", "Até 3x Mais" */
    font-family: var(--font-headings);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-brand-bg-main);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.stat-item p, .stat-text { /* Texto descritivo abaixo do número */
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.65; /* Aumentado para melhor legibilidade */
    margin-bottom: 0;
    font-weight: 400;
}
.depoimentos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.depoimento-card {
    background-color: var(--color-brand-card-bg);
    padding: 2rem;
    border-radius: var(--border-radius-cards);
    box-shadow: var(--box-shadow-cards);
    text-align: center; /* Centralizar conteúdo do depoimento */
    /* position: relative; (já definido) */
}
.depoimento-card::before { display: none; } /* Remover aspas decorativas do design anterior */

.depoimento-avatar {
    width: 70px; /* Menor */
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid var(--color-brand-secondary); /* Borda azul */
    box-shadow: none; /* Remover sombra específica do avatar */
}
.depoimento-text {
    font-style: normal; /* Texto normal, não itálico */
    color: var(--color-brand-text-primary);
    margin-bottom: 1rem;
    font-size: 0.95rem; /* Ajustado */
    line-height: 1.7;
}
.depoimento-autor {
    font-size: 0.9rem;
    color: var(--color-brand-text-secondary);
}
.depoimento-autor strong {
    color: var(--color-brand-dark-text);
    font-weight: 600;
    display: block; /* Nome em uma linha */
}
.depoimento-autor span { /* Para "Aprovada no Revalida..." */
    color: var(--color-brand-secondary); /* Azul */
    font-size: 0.85rem;
}


/* === COMO FUNCIONA SECTION (#como-funciona) === */
.passos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.passo-card {
    background-color: var(--color-brand-card-bg);
    border-radius: var(--border-radius-cards);
    box-shadow: var(--box-shadow-cards);
    text-align: left;
    overflow: hidden;
    padding: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.passo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-cards-hover);
}

.passo-visual-media {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.passo-content-wrapper {
    padding: 1.5rem;
}

.passo-title {
    color: var(--color-brand-dark-text);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.passo-description {
    color: var(--color-brand-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Remover estilos antigos que não são mais usados */
.passo-icon {
    display: none;
}

/* === CTA GRATIS SECTION (#cta-gratis) === */
.cta-gratis-section {
    background-color: var(--color-brand-secondary); /* Fundo azul */
    color: var(--color-brand-bg-main);
    text-align: center; /* Todo conteúdo centralizado */
}
.cta-gratis-section .section-title,
.cta-gratis-section .section-subtitle {
    color: var(--color-brand-bg-main);
}
.cta-gratis-section .section-subtitle {
    opacity: 0.9;
    max-width: 600px; /* Limitar largura do subtítulo */
}
.beneficios-gratis-lista {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    text-align: left; /* Itens da lista alinhados à esquerda */
    max-width: 480px; /* Aumentado para acomodar o texto maior */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem; /* Espaço para os checkmarks */
}
.beneficios-gratis-lista p {
    margin-bottom: 0.75rem;
    font-size: 1.1rem; /* Aumentado para melhor legibilidade */
    font-weight: 500; /* Peso médio para dar mais destaque */
    display: flex;
    align-items: flex-start;
    color: var(--color-brand-bg-main); /* Texto branco */
}
/* === NOVOS ÍCONES DOS BENEFÍCIOS === */
.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 0.75rem;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-icon svg {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

/* Cores específicas para cada tipo de ícone */
.benefit-icon-questions {
    background: linear-gradient(135deg, #00796B, #004D47);
    color: white;
    border: 2px solid rgba(0, 121, 107, 0.3);
}

.benefit-icon-simulation {
    background: linear-gradient(135deg, #0288D1, #01579B);
    color: white;
    border: 2px solid rgba(2, 136, 209, 0.3);
}

.benefit-icon-flashcards {
    background: linear-gradient(135deg, #FFC107, #FF8F00);
    color: #333;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.benefit-icon-performance {
    background: linear-gradient(135deg, #8BC34A, #558B2F);
    color: white;
    border: 2px solid rgba(139, 195, 74, 0.3);
}

.benefit-icon-access {
    background: linear-gradient(135deg, #FF5722, #D84315);
    color: white;
    border: 2px solid rgba(255, 87, 34, 0.3);
}

/* Efeito hover nos ícones */
.beneficios-gratis-lista p:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.beneficios-gratis-lista p:hover .benefit-icon svg {
    transform: scale(1.1);
}

/* Ajustes na lista de benefícios */
.beneficios-gratis-lista p {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 121, 107, 0.15);
    transition: all 0.3s ease;
    color: var(--color-brand-dark-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.beneficios-gratis-lista p:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 121, 107, 0.25);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.beneficios-gratis-lista p strong {
    font-weight: 500; /* Inter Medium */
}

.btn-cta-gratis { /* Botão Amarelo */
    background-color: var(--color-brand-accent);
    color: var(--color-brand-dark-text);
    padding: 0.9rem 2.5rem; /* Ajustado */
    font-size: 1rem; /* Ajustado */
}
.btn-cta-gratis:hover {
    background-color: #FFB300;
}
.cta-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--color-brand-bg-main);
}

/* === OBJEÇÕES SECTION (#objecoes) === */
.objecoes-section .section-subtitle { /* Subtítulo da seção de objeções */
    margin-bottom: 2.5rem;
}
.faq-card-container {
    background-color: var(--color-brand-card-bg);
    border-radius: var(--border-radius-cards);
    box-shadow: var(--box-shadow-cards);
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}
.objecoes-accordion {
    width: 100%;
}
.accordion-item {
    background-color: transparent;
    border-bottom: 1px solid var(--color-border-light);
    margin-bottom: 0;
    transition: background-color 0.2s ease;
}
.accordion-item:last-child {
    border-bottom: none;
}
.accordion-item:hover {
    background-color: rgba(2, 136, 209, 0.02);
}
.accordion-header {
    background-color: transparent;
    color: var(--color-brand-text-primary);
    cursor: pointer;
    padding: 1.1rem 1.25rem;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-family: var(--font-primary); /* Usar Inter para as perguntas */
    font-size: 0.95rem; /* Reduzido para textos mais curtos */
    font-weight: 500; /* Inter Medium */
    transition: color 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-header.active,
.accordion-header:hover {
    color: var(--color-brand-secondary); /* Azul ao estar ativo ou no hover */
}
.accordion-header::after { /* Ícone de seta/dropdown */
    content: '▼'; /* Usar uma seta para baixo unicode */
    font-size: 0.8rem;
    color: var(--color-brand-text-secondary);
    transition: transform 0.3s ease, color 0.2s ease;
}
.accordion-header.active::after,
.accordion-header:hover::after {
    color: var(--color-brand-secondary);
}
.accordion-header.active::after {
    transform: rotate(180deg); /* Gira a seta para cima */
}
.accordion-content {
    padding: 0;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
}
.accordion-content p {
    padding: 0.75rem 1.25rem 1.5rem 1.25rem;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--color-brand-text-secondary);
    line-height: 1.7;
}

/* === ACELERADORES SECTION (#aceleradores) === */
.aceleradores-section {
    background-color: #1A202C; /* Azul marinho escuro */
    color: var(--color-brand-bg-main); /* Texto padrão da seção em branco */
}

/* Título principal da seção em branco */
.aceleradores-section .section-title {
    color: var(--color-brand-bg-main);
}

.aceleradores-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.acelerador-item {
    background-color: #2D3748; /* Azul/cinza escuro mais claro que o fundo da seção */
    color: #E2E8F0; /* Branco/cinza muito claro para o texto */
    border-radius: var(--border-radius-cards);
    padding: 2rem; /* Padding interno generoso */
    text-align: left;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borda sutil e clara */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.acelerador-item:hover {
    background-color: #4A5568; /* Tom mais claro no hover */
    transform: translateY(-3px);
}

.acelerador-title {
    color: var(--color-brand-bg-main); /* Texto branco para o título */
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Adicionar seta após o título */
.acelerador-title::after {
    content: ' →'; /* Seta para a direita */
    font-weight: normal; /* Para a seta não ficar tão bold */
    margin-left: 0.25em;
    opacity: 0.7;
}

.acelerador-item p {
    color: #A0AEC0; /* Cinza claro para a descrição */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* === CTA FINAL SECTION (#cta-final) === */
.cta-final-section {
    background: linear-gradient(120deg, var(--color-brand-primary) 0%, var(--color-brand-secondary) 100%);
    color: var(--color-brand-bg-main);
    padding-top: var(--padding-section-vertical); /* Padding padrão */
    padding-bottom: var(--padding-section-vertical);
    text-align: center;
}
.cta-final-section .section-title-large {
    color: var(--color-brand-bg-main);
    font-size: 2.25rem; /* Ajustado */
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-final-section .section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem; /* Ajustado */
    margin-bottom: 2rem;
    max-width: 600px;
}
.btn-cta-final { /* Botão Amarelo */
    background-color: var(--color-brand-accent);
    color: var(--color-brand-dark-text);
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
}
.btn-cta-final:hover {
    background-color: #FFB300;
}
/* Subtexto do CTA Final */
.cta-final-section .cta-subtext { /* Reutilizando a classe .cta-subtext */
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}


/* === FOOTER (New White Design) === */
.site-footer {
    background-color: #ffffff;
    color: #6B7280; /* Gray-500 */
    border-top: 1px solid #E5E7EB; /* Gray-200 border */
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-container-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col-brand {
    align-items: center;
    text-align: center;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.footer-logo-img {
    max-height: 40px;
    width: auto;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #374151; /* Gray-700 */
    font-weight: 500;
    margin: 0;
}

.footer-col-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937; /* Gray-800 */
    margin-bottom: 0.75rem;
    text-align: center;
}

.footer-nav-new {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.footer-nav-link {
    color: #6B7280; /* Gray-500 */
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
}

.footer-nav-link:hover {
    color: var(--color-brand-primary);
    text-decoration: none;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #D1D5DB; /* Gray-300 - mais escuro para melhor contraste */
    color: #1F2937; /* Gray-800 - muito mais escuro para excelente visibilidade */
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #9CA3AF; /* Gray-400 - borda mais definida */
}

.social-icon-link:hover {
    background-color: var(--color-brand-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: var(--color-brand-primary);
}

/* Estilo específico para o Instagram - gradiente característico */
.social-icon-link[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border-color: #bc1888;
}

/* Estilo específico para o Facebook - cor azul característica */
.social-icon-link[href*="facebook"]:hover {
    background-color: #1877F2; /* Azul oficial do Facebook */
    color: #ffffff;
    border-color: #1877F2;
}

.social-icon-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-bottom-bar {
    border-top: 1px solid #E5E7EB; /* Gray-200 */
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright-new {
    font-size: 0.875rem;
    color: #6B7280; /* Gray-500 */
    margin: 0;
}


/* === MEDIA QUERIES (Adaptações para Desktop - Revisado) === */
@media (min-width: 576px) { /* Telas um pouco maiores que mobile */
    .hero-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
        min-width: 260px;
        max-width: 300px;
    }
    .stats-container { 
        grid-template-columns: repeat(3, 1fr); 
        gap: 1.5rem; 
    }
}

@media (min-width: 768px) { /* Tablets */
    :root {
        --padding-section-vertical: 80px;
    }
    body { font-size: 1rem; } /* Resetar para 1rem base em tablet/desktop */

    h1.hero-headline { font-size: 2.5rem; } /* Tamanho médio para tablets */
    .hero-subheadline { font-size: 1.1rem; } /* Restaurar tamanho original */
    /* .brand-name-hero { font-size: 1.25rem; } - removido */
    h2.section-title { font-size: 2.2rem; }
    h3 { font-size: 1.2rem; }
    p.section-subtitle { font-size: 1.1rem; max-width: 680px;}
    p { font-size: 0.95rem; }

    .site-header { padding: 1.25rem 0; }
    .site-logo { max-height: 40px; }

    .hero-section { padding-top: 80px; padding-bottom: 80px; min-height: calc(85vh - 80px); }
    .hero-container { max-width: 700px; }

    .btn-hero-primary,
    .btn-hero-secondary {
        min-width: 280px;
        max-width: 320px;
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .dores-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .dor-visual-media {
        height: 180px;
    }
    .dor-content {
        padding: 1.25rem;
    }

    .passo-visual-media {
        height: 180px;
    }
    .passo-content-wrapper {
        padding: 1.25rem;
    }

    .solucao-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .passos-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .aceleradores-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }

    .depoimentos-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

    .footer-container-new {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        text-align: left;
        align-items: start;
    }
    
    .footer-col-brand {
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-col-title {
        text-align: left;
    }
    
    .footer-nav-new {
        align-items: flex-start;
    }
    
    .footer-social-icons {
        justify-content: flex-start;
    }
}

@media (min-width: 992px) { /* Desktops médios */
    h1.hero-headline { font-size: 2.75rem; } /* Tamanho maior para desktop */
    .hero-container { max-width: 800px; }
    .hero-section { min-height: calc(80vh - 80px); }

    .btn-hero-primary,
    .btn-hero-secondary {
        min-width: 300px;
        max-width: 340px;
        padding: 1.1rem 2.75rem;
        font-size: 1.05rem;
    }

    .dores-grid, .solucao-grid, .passos-grid, .aceleradores-grid { gap: 2rem; }
    .dor-visual-media {
        height: 220px;
    }
    .dor-content {
        padding: 1.75rem;
    }
    .dor-title {
        font-size: 1.15rem;
    }
    .dor-description {
        font-size: 0.95rem;
    }

    .passo-visual-media {
        height: 220px;
    }
    .passo-content-wrapper {
        padding: 1.75rem;
    }
    
    .stats-container { 
        gap: 2rem; 
    }
    .stat-number {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) { /* Desktops grandes */
    .container { max-width: 1140px; } /* Restaurar max-width para telas grandes */
    h1.hero-headline { font-size: 3.25rem; }
}

/* === Responsividade do Header === */
@media (max-width: 575px) {
    .header-actions {
        gap: 0.5rem;
    }
    
    .btn-header-login,
    .btn-header-signup {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-header-signup {
        border-radius: 16px;
    }
    
    /* FAQ Card responsividade */
    .faq-card-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

/* === MEDIA QUERIES MOBILE === */
@media (max-width: 767px) {
    /* Footer ajustes para mobile */
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-copyright-new,
    .footer-bottom-bar p {
        font-size: 0.85rem;
        line-height: 1.5; /* Melhorar legibilidade */
    }
    
    .footer-social-icons {
        gap: 1.25rem;
        justify-content: center;
    }
    
    .footer-bottom-bar {
        text-align: center;
        width: 100%;
    }
    
    /* Botões CTA - melhor tamanho de toque no mobile */
    .btn-cta-gratis,
    .btn-cta-final {
        min-height: 48px; /* Tamanho mínimo recomendado para toque */
        padding: 0.875rem 1.5rem;
    }
}

/* === PÁGINA FALE CONOSCO - ESTILOS ESPECÍFICOS === */

/* Classe para páginas de conteúdo de texto */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.page-content h1 {
    color: var(--color-brand-dark-text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.page-content h2 {
    color: var(--color-brand-dark-text);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    text-align: left;
}

.page-content h3 {
    color: var(--color-brand-dark-text);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
}

.page-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.page-content a {
    color: var(--color-brand-secondary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.page-content a:hover {
    color: var(--color-brand-primary);
    text-decoration: none;
}

/* Ícones de contato */
.contact-icon {
    margin-right: 0.75rem;
    font-size: 1.4em;
    display: inline-block;
    min-width: 1.5em;
    text-align: center;
}

/* Texto muted para informações secundárias */
.text-muted {
    color: var(--color-brand-text-secondary);
    font-style: italic;
}

/* === ESTILOS PARA PÁGINA FALE CONOSCO === */

/* Ajuste do max-width para página de contato */
.page-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Cards dos canais de contato */
.contact-channel-card {
    background-color: var(--color-brand-bg-main);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-cards);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow-cards);
    text-align: left;
}

/* Títulos dos canais de contato */
.contact-channel-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    color: var(--color-brand-secondary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Ícones de contato */
.contact-icon {
    font-size: 1.5rem;
    color: var(--color-brand-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

/* Parágrafos dentro dos cards */
.contact-channel-card p {
    font-size: 1rem;
    color: var(--color-brand-text-primary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.contact-channel-card p:last-child {
    margin-bottom: 0;
}

/* Listas dentro dos cards */
.contact-channel-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.75rem;
}

.contact-channel-card ul li {
    margin-bottom: 0.25rem;
    font-size: 1rem;
    color: var(--color-brand-text-primary);
    line-height: 1.7;
}

/* Botão do WhatsApp */
.btn-whatsapp {
    background-color: #25D366;
    color: white !important;
    padding: 0.8rem 1.75rem;
    text-transform: none;
    display: inline-block;
    margin-top: 0.5rem;
    border-radius: var(--border-radius-buttons);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
}

.btn-whatsapp:hover {
    background-color: #1DAE54;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Ícones das redes sociais na seção de contato */
.contact-social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.75rem;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-brand-text-primary);
    transition: all 0.3s ease;
    background-color: var(--color-brand-card-bg);
}

.contact-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.contact-social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: currentColor;
}

.contact-social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Estilo específico para Instagram na seção de contato */
.contact-social-link[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: #bc1888;
}

/* Estilo específico para Facebook na seção de contato */
.contact-social-link[href*="facebook"]:hover {
    background-color: #1877F2;
    color: white;
    border-color: #1877F2;
}

/* Responsividade para cards de contato */
@media (max-width: 768px) {
    .contact-channel-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-channel-card h3 {
        font-size: 1.1rem;
        gap: 0.5rem;
    }
    
    .contact-icon {
        font-size: 1.2rem;
        width: 24px;
        height: 24px;
    }
    
    /* Ícones de redes sociais responsivos */
    .contact-social-icons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .contact-social-link {
        justify-content: center;
        padding: 0.75rem 1rem;
        text-align: center;
    }
}