﻿/* ==========================================================================
   1. VARIÁVEIS E RESET (Partilhado por todas as páginas)
   ========================================================================== */
:root {
    --primary-color: #8DC63F;
    --primary-dark: #76a832;
    --text-color: #2c3e50;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --white: #ffffff;
    --font-main: 'Roboto', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-table: 0 20px 50px rgba(0,0,0,0.08);
    --shadow-premium: 0 4px 12px rgba(141, 198, 63, 0.3);
    --nav-h: 80px; /* Variável auxiliar para o menu mobile */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.7;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   2. LAYOUT E UTILITÁRIOS
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-gray);
}

.bg-green {
    background-color: var(--primary-color);
}

.text-white {
    color: var(--white) !important;
}

.text-center {
    text-align: center;
}

.text-small {
    font-size: 0.85rem;
    color: #777;
    margin-top: 15px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #1a252f;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title-white {
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    color: #555;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* Split Content */
.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

    .split-content > div {
        flex: 1;
        min-width: 300px;
    }

    .split-content .text h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        color: #1a252f;
        font-weight: 700;
        text-align: left;
    }

    .split-content .image img {
        width: 100%;
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
    }

/* ==========================================================================
   3. NAVEGAÇÃO (Navbar & Mobile Menu)
   ========================================================================== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

    .navbar.scrolled {
        padding: 8px 0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        background-color: rgba(255, 255, 255, 0.98);
    }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

    .nav-links a {
        font-weight: 500;
        font-size: 0.95rem;
        color: #555;
    }

        .nav-links a.active, .nav-links a:hover {
            color: var(--primary-color);
        }

        /* Botão Simule Já (Navbar Premium) */
        .nav-links a.btn {
            background-color: var(--primary-color) !important;
            color: var(--white) !important;
            padding: 10px 24px !important;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: var(--shadow-premium);
            transition: all 0.3s ease;
        }

            .nav-links a.btn:hover {
                background-color: var(--primary-dark) !important;
                transform: translateY(-2px);
                box-shadow: 0 6px 16px rgba(141, 198, 63, 0.4);
            }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.lang-switch {
    display: flex;
    gap: 8px;
    margin-left: 20px;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

.lang-btn {
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    color: #888;
    padding: 4px 8px;
    border-radius: 4px;
    transition: 0.3s;
}

    .lang-btn:hover {
        color: var(--primary-color);
    }

    .lang-btn.active {
        color: var(--white);
        background-color: var(--primary-color);
    }

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.40);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: 999;
}

    .mobile-nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

body.mobile-nav-open {
    overflow: hidden;
}

/* ==========================================================================
   4. BOTÕES
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

    .btn-primary:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

    .btn-outline:hover {
        background: var(--primary-color);
        color: var(--white);
        transform: translateY(-2px);
    }

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: bold;
    box-shadow: var(--shadow-md);
}

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 35px;
    font-size: 1.2rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* ==========================================================================
   5. COMPONENTES DE PÁGINA (HERO E INDEX CARDS)
   ========================================================================== */
.page-header {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    }

    .page-header .container {
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2.8rem;
        text-shadow: 0 2px 8px rgba(0,0,0,0.4);
        font-weight: 700;
    }

    .page-header p {
        font-size: 1.4rem;
        margin-top: 10px;
        opacity: 0.95;
        text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        font-weight: 300;
    }

.hero-banner {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content-section {
    padding: 80px 0;
    text-align: center;
    background: var(--white);
}

    .hero-content-section h1 {
        font-size: 3rem;
        margin-bottom: 25px;
        line-height: 1.2;
        font-weight: 700;
        color: #1a252f;
    }

    .hero-content-section .subtitle {
        font-size: 1.4rem;
        margin-bottom: 30px;
        color: #555;
        max-width: 900px;
        margin-inline: auto;
        font-weight: 300;
    }

.hero-video-block {
    max-width: 900px;
    margin: 10px auto 60px;
    padding: 0 10px;
}

.hero-video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #000;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

    .hero-video-frame video {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        background: #000;
    }

.hero-video-intro {
    text-align: center;
    margin-bottom: 18px;
}

    .hero-video-intro h3 {
        margin: 0 0 8px;
        font-size: 1.5rem;
        font-weight: 700;
        color: #1f2937;
    }

    .hero-video-intro p {
        margin: 0;
        font-size: 1rem;
        color: #6b7280;
    }



.video-highlight-section {
    padding: 20px 0 70px;
    background: transparent;
}

.video-highlight-intro {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
}

    .video-highlight-intro h2 {
        margin: 0 0 10px;
        font-size: 2rem;
        font-weight: 700;
        color: #1f2937;
    }

    .video-highlight-intro p {
        margin: 0;
        font-size: 1rem;
        line-height: 1.6;
        color: #6b7280;
    }

.video-highlight-frame {
    max-width: 940px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: #000;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

    .video-highlight-frame video {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        background: #000;
    }

@media (max-width: 768px) {
    .video-highlight-section {
        padding: 10px 0 50px;
    }

    .video-highlight-intro {
        margin-bottom: 18px;
        padding: 0 16px;
    }

        .video-highlight-intro h2 {
            font-size: 1.4rem;
        }

        .video-highlight-intro p {
            font-size: 0.95rem;
        }

    .video-highlight-frame {
        max-width: calc(100% - 24px);
        border-radius: 14px;
    }
}


/* Cards Genéricos (Página O Que Oferecemos) */
.card-icon {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid transparent;
}

    .card-icon:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(141, 198, 63, 0.2);
    }

    .card-icon i {
        font-size: 3.5rem;
        color: var(--primary-color);
        margin-bottom: 25px;
    }

    .card-icon h3 {
        font-size: 1.25rem;
        margin-bottom: 15px;
        color: #1a252f;
    }

/* ==========================================================================
   6. CRIOESTAMINAL - IMPACTO, TIMELINE E LISTAS (RESTAURADO DA IMG 1)
   ========================================================================== */

/* Impacto Real na Saúde (Cards brancos com números verdes) */
.stats-grid .stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f5f5f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .stats-grid .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

.stats-grid .number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stats-grid .label {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a252f;
    margin-bottom: 10px;
}

.stats-grid small {
    display: block;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Checklist Elegibilidade (Cards brancos translúcidos) */
.check-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

    .check-list li {
        font-size: 1.15rem;
        margin-bottom: 20px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        background: rgba(255, 255, 255, 0.12);
        padding: 20px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

        .check-list li i {
            color: #fff;
            font-size: 1.3rem;
            margin-top: 4px;
            flex-shrink: 0;
        }

/* Timeline (Como Funciona) */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

    .timeline::after {
        content: '';
        position: absolute;
        width: 4px;
        background-color: #e0e0e0;
        top: 0;
        bottom: 0;
        left: 20px;
        border-radius: 2px;
    }

.timeline-item {
    padding: 15px 60px;
    position: relative;
    margin-bottom: 30px;
}

    .timeline-item::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 24px;
        left: 10px;
        background-color: var(--white);
        border: 5px solid var(--primary-color);
        border-radius: 50%;
        top: 20px;
        z-index: 1;
        box-shadow: 0 0 0 4px #fff;
    }

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

/* Features List (Aplicações / Utilização pelo Próprio) */
.features-list {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
}

    .feature-item i {
        font-size: 2.2rem;
        color: var(--primary-color);
        margin-top: 5px;
        flex-shrink: 0;
    }

    .feature-item h3 {
        font-size: 1.2rem;
        color: #1a252f;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .feature-item p {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.6;
        margin: 0;
    }

.alert-box {
    background: #eef7e3;
    color: #2e4a1a;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    border-left: 5px solid var(--primary-color);
}

/* ==========================================================================
   7. BENEFÍCIOS, SERVIÇOS, CAIXAS INDIVIDUAIS E TABELA (SEGURO MGEN)
   ========================================================================== */

/* Benefícios (Sem limite idade, etc) */
.benefit-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s;
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

    .benefit-item i {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .benefit-item span {
        font-weight: 700;
        font-size: 1.1rem;
        color: #1a252f;
        margin-bottom: 5px;
    }

    .benefit-item p {
        font-size: 0.9rem;
        color: #666;
        margin-top: auto;
    }

/* Serviços Incluídos (Saúde Digital, etc) */
.service-card-group {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .service-card-group:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        transform: translateY(-5px);
        border-color: rgba(141, 198, 63, 0.3);
    }

.service-header {
    background: #fff;
    padding: 25px 30px;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .service-header i {
        color: var(--primary-color);
        font-size: 2rem;
        background: #f0fdf4;
        padding: 12px;
        border-radius: 12px;
    }

    .service-header h3 {
        margin: 0;
        font-size: 1.3rem;
        color: #1a252f;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.service-body {
    padding: 30px;
    flex-grow: 1;
}

    .service-body > p {
        font-size: 1rem;
        color: #666;
        margin-bottom: 25px;
        font-style: italic;
        border-left: 3px solid var(--primary-color);
        padding-left: 15px;
    }

    .service-body li {
        margin-bottom: 25px;
        font-size: 0.95rem;
        color: #555;
        position: relative;
        padding-left: 25px;
    }

        .service-body li::before {
            content: '\f058';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--primary-color);
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 1rem;
        }

        .service-body li.program-header {
            padding-left: 0;
            margin-bottom: 10px;
        }

            .service-body li.program-header::before {
                content: none;
            }

    .service-body strong {
        color: #2c3e50;
        font-weight: 700;
        display: block;
        margin-bottom: 5px;
        font-size: 1.05rem;
    }

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.program-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

    .program-item:hover {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    .program-item i {
        color: var(--primary-color);
    }

/* Caixinhas Individuais (Médico ao Domicílio, etc) */
.box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.box-item {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    transition: 0.3s;
}

    .box-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: rgba(141, 198, 63, 0.4);
    }

    .box-item h4 {
        color: #1a252f;
        font-size: 1.15rem;
        margin-bottom: 15px;
        font-weight: 700;
        text-transform: uppercase;
        border-bottom: 2px solid var(--primary-color);
        display: inline-block;
        padding-bottom: 5px;
    }

    .box-item p {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.6;
        margin: 0;
    }

/* Tabela de Preços e Coberturas Melhorada (Premium e Responsiva) */
.table-wrapper {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 2px;
    margin-top: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    text-align: center;
    background: var(--white);
}

    .pricing-table thead th {
        background: #fcfcfc;
        padding: 25px 15px;
        color: #1a252f;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.95rem;
        border-bottom: 3px solid var(--primary-color);
    }

    .pricing-table td {
        padding: 20px 15px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1rem;
    }

    .pricing-table tbody tr:hover {
        background-color: #f9fdf5;
    }

    .pricing-table td strong {
        color: #1a252f;
    }

/* Network Stats */
.network-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
    margin-top: 30px;
}

.stat-box {
    padding: 25px;
    background: white;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
}

    .stat-box strong {
        font-size: 2.5rem;
        color: var(--primary-color);
        display: block;
        margin-bottom: 8px;
        font-weight: 800;
    }

    .stat-box span {
        font-size: 0.9rem;
        font-weight: 600;
        color: #555;
        text-transform: uppercase;
    }

/* ==========================================================================
   8. CTAs PREMIUM E PARCERIA
   ========================================================================== */
.cta-premium-box, .cta-premium-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, #76a832 100%);
    border-radius: 24px;
    padding: 70px 40px;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 40px rgba(141, 198, 63, 0.25);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

    .cta-premium-box::before, .cta-premium-wrapper::before {
        content: '';
        position: absolute;
        top: -50px;
        left: -50px;
        width: 200px;
        height: 200px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
        pointer-events: none;
    }

    .cta-premium-box h2, .cta-premium-wrapper h2 {
        color: #ffffff !important;
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 15px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .cta-premium-box p, .cta-premium-wrapper p {
        color: rgba(255,255,255,0.95) !important;
        font-size: 1.2rem;
    }

.btn-cta-white, .btn-premium-simulate {
    background: #ffffff;
    color: var(--primary-color);
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    display: inline-block;
}

    .btn-cta-white:hover, .btn-premium-simulate:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.25);
        background: #f8fff4;
    }

/* Lista da Parceria Crioestaminal */
.partner-features-premium {
    text-align: left;
    margin: 0 auto 30px;
    max-width: 850px;
}

    .partner-features-premium li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
        font-size: 1rem;
    }

        .partner-features-premium li i {
            color: #fff;
            font-size: 1.1rem;
            margin-top: 5px;
            flex-shrink: 0;
        }

/* ==========================================================================
   9. FORMULÁRIOS E LISTAS INCLUÍDAS
   ========================================================================== */
.form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #444;
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

    .form-group input:focus {
        outline: none;
        border-color: var(--primary-color);
    }

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #666;
}

.btn-submit-container {
    text-align: center;
    margin-top: 30px;
}

    .btn-submit-container .btn {
        min-width: 300px;
    }

.included-list {
    margin-top: 60px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border-left: 6px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

    .included-list h3 {
        color: var(--primary-color);
        margin-bottom: 20px;
        font-size: 1.5rem;
    }

    .included-list ul {
        display: block;
        text-align: left;
    }

    .included-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 1.1rem;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

        .included-list li i {
            color: var(--primary-color);
            margin-top: 6px;
            flex-shrink: 0;
        }


/* ==========================================================================
   10. FAQ E MODAIS
   ========================================================================== */
.faq-modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
}

    .faq-modal-overlay.active {
        display: flex;
    }

body.faq-modal-open {
    overflow: hidden;
}

.faq-modal {
    width: 100%;
    max-width: 920px;
    max-height: 85vh;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}

.faq-modal-header {
    background: var(--primary-color);
    padding: 18px 22px;
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-modal-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.faq-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

    .faq-modal-close:hover {
        background: rgba(255,255,255,0.14);
    }

.faq-modal-body {
    background: rgba(141, 198, 63, 0.06);
    padding: 18px 22px 22px;
    overflow: auto;
    max-height: calc(85vh - 68px);
}

.faq-accordion {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    overflow: hidden;
}

.faq-accordion-item {
    border-bottom: 1px solid #eee;
}

.faq-accordion-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a252f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.faq-accordion-item.is-open .faq-accordion-btn {
    background: rgba(141, 198, 63, 0.08);
}

    .faq-accordion-item.is-open .faq-accordion-btn span {
        color: var(--primary-color);
    }

.faq-accordion-icon {
    color: var(--primary-color);
    transition: transform 0.25s ease;
}

.faq-accordion-item.is-open .faq-accordion-icon {
    transform: rotate(180deg);
}

.faq-accordion-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.faq-accordion-panel-inner {
    padding: 0 18px 18px;
    color: #4b4b4b;
    font-size: 0.97rem;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
footer {
    background: #1a252f;
    color: #95a5a6;
    padding: 60px 0 30px;
    font-size: 0.95rem;
}

.footer-content {
    margin-bottom: 40px;
    border-bottom: 1px solid #2c3e50;
    padding-bottom: 40px;
}

.footer-contact h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-links a {
    color: #95a5a6;
    transition: 0.3s;
}

    .footer-links a:hover {
        color: var(--primary-color);
    }

/* ==========================================================================
   12. RESPONSIVIDADE (MOBILE)
   ========================================================================== */
@media (max-width: 768px) {
    .hero-content-section h1 {
        font-size: 2.2rem;
    }

    .hero-banner, .page-header {
        height: 40vh;
    }

    /* Menu Mobile */
    .mobile-menu-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        border: 1px solid rgba(0,0,0,0.06);
        background: var(--white);
        box-shadow: var(--shadow-sm);
        cursor: pointer;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        position: fixed;
        top: calc(var(--nav-h) + 10px);
        right: 16px;
        width: min(92vw, 360px);
        max-height: calc(100vh - (var(--nav-h) + 28px));
        padding: 14px;
        background: var(--white);
        border-radius: 18px;
        box-shadow: var(--shadow-lg);
        transform: translateX(115%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.24s cubic-bezier(0.4,0,0.2,1), opacity 0.2s ease;
        z-index: 1100;
    }

        .nav-links.active {
            transform: translateX(0);
            opacity: 1;
            pointer-events: auto;
        }

        .nav-links a:not(.btn) {
            padding: 16px 20px;
            font-size: 1.1rem;
            border-bottom: 1px solid #f0f0f0;
            border-radius: 8px;
            width: 100%;
        }

            .nav-links a:not(.btn):last-of-type {
                border-bottom: none;
            }

        .nav-links a.active {
            background: rgba(141, 198, 63, 0.08);
            font-weight: 700;
        }

        .nav-links a.btn {
            width: 100%;
            text-align: center;
            margin-top: 20px;
            padding: 16px !important;
            font-size: 1.15rem;
        }

    .lang-switch {
        margin: 10px 0 0 0;
        padding-top: 10px;
        border-left: none;
        border-top: 1px solid #eee;
        width: 100%;
        justify-content: flex-start;
    }

    /* Layout Ajustes Grids e Componentes */
    .form-wrapper {
        padding: 30px 20px;
    }

    .btn-submit-container .btn {
        min-width: 0;
        width: 100%;
    }

    .form-row, .grid-2, .grid-3, .grid-4, .programs-grid, .box-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .split-content {
        gap: 30px;
    }

        .split-content .text h2 {
            font-size: 1.8rem;
            text-align: center;
        }

    .cta-premium-box, .cta-premium-wrapper {
        padding: 40px 20px;
        border-radius: 15px;
    }

        .cta-premium-box h2, .cta-premium-wrapper h2 {
            font-size: 1.8rem;
        }

    .timeline-item {
        padding-left: 50px;
    }

    .features-list {
        gap: 15px;
    }

    .partner-features-premium li {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .faq-modal-header {
        padding: 16px;
    }

    .faq-modal-body {
        padding: 14px 16px;
    }
}
