/* Design System Minimalista & Senior-Friendly (Acessibilidade + Leitura Fácil) */
:root {
    --primary: #047857;
    --primary-dark: #064e3b;
    --primary-light: #10b981;
    --accent: #d97706;
    --text-dark: #0f172a;       /* Preto de alto contraste para leitura perfeita */
    --text-body: #1e293b;       /* Cinza escuro de alta legibilidade */
    --bg-light: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #042f2e;
    --border-color: #cbd5e1;
    --highlight-bg: #ecfdf5;    /* Verde suave para marcações em negrito */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Reset Estrito */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* Tipografia Senior-Friendly (Fontes Grandes & Alto Contraste) */
body {
    font-family: var(--font-body);
    font-size: 1.15rem; /* ~18.5px base para facilitar a leitura de idosos */
    color: var(--text-body);
    background-color: var(--bg-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

strong, b {
    font-weight: 700;
    color: var(--text-dark);
    background-color: rgba(16, 185, 129, 0.12);
    padding: 2px 5px;
    border-radius: 4px;
}

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

/* Layout Minimalista Limpo */
.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.max-w-800 {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.text-center { text-align: center; }
.margin-top-40 { margin-top: 40px; }

.content-section {
    padding: 65px 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

.hero-section, .top-bar, .site-header {
    content-visibility: visible !important;
}

/* Top Urgency Bar Minimalista */
.top-bar {
    background: #b91c1c;
    color: #ffffff;
    padding: 12px 0;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Site Header */
.site-header {
    background: var(--bg-dark);
    padding: 20px 0;
    border-bottom: 2px solid var(--primary-light);
}

.brand-logo {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo-icon {
    color: var(--primary-light);
    font-size: 1.6rem;
}

/* Hero Section Minimalista com Alto Contraste */
.hero-section {
    background: #ffffff;
    color: var(--text-dark);
    padding: 50px 0 60px;
    border-bottom: 1px solid var(--border-color);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.check-icon {
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-cta-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-microtext {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.hero-media {
    display: flex;
    justify-content: center;
    width: 100%;
}

.mockup-wrapper {
    position: relative;
    max-width: 380px;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Botões Grandes e Fáceis de Clicar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-decoration: none;
    padding: 20px 32px;
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    width: 100%;
}

.btn-primary {
    background: #047857;
    color: #ffffff;
    font-size: 1.25rem;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 18px rgba(4, 120, 87, 0.3);
}

.btn-primary:hover, .btn-primary:focus-visible {
    background: #064e3b;
    transform: translateY(-2px);
    outline: 3px solid var(--accent);
}

.btn-secondary {
    background: #f1f5f9;
    color: var(--text-dark);
    font-size: 1.1rem;
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.btn-large {
    max-width: 520px;
    padding: 22px 32px;
    font-size: 1.3rem;
    margin-left: auto;
    margin-right: auto;
}

/* Seção de Números / Prova Social */
.social-proof-bar {
    background: #f8fafc;
    color: var(--text-dark);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.counter-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.counter-label {
    font-size: 0.95rem;
    color: var(--text-body);
    font-weight: 600;
}

/* Títulos de Seção */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.25;
    margin-bottom: 20px;
}

.section-subtitle, .section-intro {
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 35px;
}

/* Citação Destacada Minimalista */
.quote-box {
    background: #ecfdf5;
    border-left: 5px solid var(--primary);
    padding: 24px 28px;
    border-radius: var(--radius-sm);
    margin: 30px 0;
    text-align: left;
}

.quote-box p {
    font-size: 1.2rem;
    color: var(--primary-dark);
    line-height: 1.6;
}

.quote-author {
    display: block;
    margin-top: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 35px;
}

.info-card {
    background: #ffffff;
    padding: 28px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    text-align: left;
}

.info-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.info-card p {
    font-size: 1.05rem;
    color: var(--text-body);
}

.highlight-banner {
    background: var(--primary-dark);
    color: #ffffff;
    padding: 35px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.highlight-banner h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: #fef08a;
    margin-bottom: 12px;
}

.highlight-banner p {
    font-size: 1.1rem;
    color: #f8fafc;
}

.highlight-banner strong {
    color: #ffffff;
    background-color: rgba(255,255,255,0.2);
}

/* Lista de Benefícios Grandes */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.benefit-card {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--text-dark);
}

.b-icon {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Seção Para Quem É Indicado */
.target-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: flex-start;
}

.symptoms-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 25px 0;
}

.symptoms-list li {
    background: #fef2f2;
    border: 2px solid #fca5a5;
    color: #7f1d1d;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.05rem;
}

.symptoms-list strong {
    color: #7f1d1d;
    background-color: rgba(185, 28, 28, 0.1);
}

.target-conclusion {
    background: #ecfdf5;
    border: 2px solid #6ee7b7;
    padding: 20px;
    border-radius: var(--radius-sm);
    color: var(--primary-dark);
    font-size: 1.15rem;
}

.target-feature-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    overflow: hidden;
}

.feature-header {
    background: var(--primary-dark);
    color: #ffffff;
    padding: 20px 24px;
}

.feature-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.feature-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.f-icon {
    font-size: 1.8rem;
    background: #ecfdf5;
    padding: 10px;
    border-radius: 10px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-body);
}

/* Preview Image */
.preview-media-wrapper {
    max-width: 650px;
    margin: 30px auto 0;
}

.preview-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Seção de Bônus Minimalista */
.bonus-badge {
    background: #fef3c7;
    color: #78350f;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
}

.bonus-warning {
    color: #b91c1c;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.bonus-card {
    background: #ffffff;
    padding: 28px 22px;
    border-radius: var(--radius-md);
    border: 2px dashed var(--primary);
    position: relative;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bonus-tag {
    position: absolute;
    top: -14px;
    left: 20px;
    background: var(--primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 14px;
    border-radius: 4px;
}

.bonus-img-wrapper {
    width: 100%;
    margin: 15px 0;
    display: flex;
    justify-content: center;
}

.bonus-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.bonus-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 10px 0;
    color: var(--primary-dark);
}

.bonus-card p {
    font-size: 1.05rem;
    color: var(--text-body);
}

/* Depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 35px;
}

.testimonial-card {
    background: #ffffff;
    padding: 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 8px;
}

.stars {
    color: #d97706;
    font-size: 1.2rem;
}

.verified-badge {
    background: #ecfdf5;
    color: var(--primary-dark);
    border: 1px solid #a7f3d0;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.v-check {
    color: var(--primary);
    font-weight: 800;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #a7f3d0;
    flex-shrink: 0;
}

.testimonial-user strong {
    display: block;
    font-size: 1rem;
    color: var(--primary-dark);
    background: none;
    padding: 0;
}

.testimonial-user span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Oferta e Preços Grandes */
.pricing-section {
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
}

.price-anchor-text {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.strike-red {
    color: #b91c1c;
    text-decoration: line-through;
    font-weight: 800;
}

.promo-callout {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.urgent-banner-box {
    background: #b91c1c;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    display: inline-block;
    margin: 20px 0 40px;
    font-size: 1.15rem;
}

.pricing-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 30px;
    align-items: center;
    max-width: 950px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    position: relative;
}

.card-featured {
    border: 4px solid var(--primary);
}

.featured-ribbon {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #d97706;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: 50px;
    white-space: nowrap;
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.pay-tag {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 6px;
}

.highlight-tag {
    background: #ecfdf5;
    color: var(--primary-dark);
}

.old-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 15px;
    text-decoration: line-through;
}

.price-box {
    margin: 15px 0 22px;
    color: var(--primary-dark);
}

.price-box .currency {
    font-size: 1.5rem;
    font-weight: 800;
    vertical-align: top;
}

.price-box .price {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
}

.price-box .cents {
    font-size: 1.5rem;
    font-weight: 800;
}

.plan-features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.plan-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.plan-features .check {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
}

.scarcity-notice {
    font-size: 0.85rem;
    color: #b91c1c;
    margin-top: 12px;
    font-weight: 700;
}

/* Garantia Limpa */
.guarantee-box {
    background: #ffffff;
    border: 3px solid #6ee7b7;
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 28px;
    box-shadow: var(--shadow-sm);
}

.guarantee-badge {
    width: 95px;
    height: 95px;
    background: var(--primary-dark);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
}

.g-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fef08a;
    line-height: 1;
}

.g-unit {
    font-size: 0.65rem;
    font-weight: 800;
}

.guarantee-text h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.guarantee-text p {
    font-size: 1.05rem;
    color: var(--text-body);
}

/* FAQ Senior-Friendly */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
}

.faq-item {
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 12px;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 22px;
    display: none;
    font-size: 1.05rem;
    color: var(--text-body);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: #cbd5e1;
    padding: 50px 0;
    font-size: 0.9rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: underline;
    margin: 0 10px;
}

.disclaimer-text {
    max-width: 800px;
    margin: 20px auto;
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
}

.copyright {
    color: #64748b;
}

/* Sales Popups */
.sales-toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    pointer-events: none;
}

.sales-toast {
    pointer-events: auto;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 350px;
    animation: toastSlideIn 0.5s ease forwards;
    border-left: 5px solid var(--primary);
}

.sales-toast.fade-out {
    animation: toastFadeOut 0.5s ease forwards;
}

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

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

.sales-toast-icon {
    font-size: 1.3rem;
}

.sales-toast-text {
    font-size: 0.92rem;
    color: var(--text-dark);
}

.sales-toast-text strong {
    color: var(--primary-dark);
    background: none;
    padding: 0;
}

.sales-toast-time {
    font-size: 0.78rem;
    color: #64748b;
}

/* Responsividade Senior Mobile */
@media (max-width: 992px) {
    .hero-grid, .target-grid, .pricing-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .info-cards-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid, .bonus-grid {
        grid-template-columns: 1fr;
    }
}

/* Antes & Depois Section Minimalista */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 35px;
}

.ba-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 22px;
    border: 3px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.ba-card-before {
    border-color: #fca5a5;
    background: #fff5f5;
}

.ba-card-after {
    border-color: #6ee7b7;
    background: #ecfdf5;
}

.ba-badge {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ba-badge-before {
    background: #b91c1c;
    color: #ffffff;
}

.ba-badge-after {
    background: #047857;
    color: #ffffff;
}

.ba-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid var(--border-color);
}

.ba-desc {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Seção de Fases (Mecanismo 3D / Motor de 3 Fases) */
.phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 35px;
}

.phase-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 28px 22px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    text-align: left;
}

.phase-number-tag {
    background: var(--primary-dark);
    color: #fef08a;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 5px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 14px;
}

.phase-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.phase-card p {
    font-size: 1.02rem;
    color: var(--text-body);
}

/* Seção Comparativa Sem vs Com Protocolo (Estilo Apple) */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 35px;
}

.comp-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    border: 3px solid var(--border-color);
}

.comp-card-without {
    border-color: #fca5a5;
    background: #fff5f5;
}

.comp-card-with {
    border-color: #6ee7b7;
    background: #ecfdf5;
}

.comp-header {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.comp-header-without { color: #b91c1c; }
.comp-header-with { color: #047857; }

.comp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    font-size: 1.05rem;
}

.comp-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.comp-icon-bad {
    color: #dc2626;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.comp-icon-good {
    color: #059669;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Seção CTA Final de Alto Impacto */
.final-cta-section {
    background: var(--bg-dark);
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
    border-top: 4px solid var(--primary-light);
}

.final-cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: #ffffff;
    margin-bottom: 16px;
}

.final-cta-section p {
    font-size: 1.25rem;
    color: #e2e8f0;
    max-width: 750px;
    margin: 0 auto 35px;
}

.final-cta-price-highlight {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #fef08a;
    margin-bottom: 25px;
    font-weight: 800;
}

@media (max-width: 992px) {
    .phases-grid {
        grid-template-columns: 1fr;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}


