/* ==========================================================================
   DESIGN SYSTEM - BRAND OS & PRD - DIREÇÃO SEGURA® | VSL + OFERTA
   Mobile First (375px / 390px / 412px → 768px → 1024px+)
   ========================================================================== */

:root {
    /* Color Tokens (Conforme PRD item 49 & Brand OS) */
    --color-bg-dark: #0B1224;          /* Background principal hero/escuro */
    --color-bg-dark-card: #131E36;     /* Card em fundo escuro */
    --color-bg-light: #F7F8FA;         /* Background secundário claro */
    --color-card-light: #FFFFFF;       /* Card em fundo claro */
    
    --color-text-light: #FFFFFF;       /* Texto em fundo escuro */
    --color-text-dark: #111827;        /* Texto em fundo claro */
    --color-text-muted: #6B7280;       /* Texto secundário */
    --color-text-subtle: #9CA3AF;      /* Texto de apoio */
    
    --color-brand-blue: #1E3A5F;       /* Azul institucional Método CM */
    --color-brand-teal: #2D5C73;       /* Azul petróleo */
    
    --color-cta-green: #10B981;        /* Verde forte CTA principal */
    --color-cta-green-hover: #059669;  /* Verde hover */
    --color-cta-glow: rgba(16, 185, 129, 0.25);
    
    --color-accent-rose: #F43F5E;       /* Destaque sutil rosa/magenta */
    --color-accent-gold: #D4AF37;       /* Destaque sutil dourado */
    --color-border-subtle: rgba(255, 255, 255, 0.1);
    --color-border-light: rgba(17, 24, 39, 0.08);

    /* Tipografia */
    --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing & Geometry */
    --spacing-section: 48px;
    --radius-button: 10px;
    --radius-card: 16px;
    --radius-vsl: 18px;
    
    /* Shadows & Animations */
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 10px 35px rgba(0, 0, 0, 0.08);
    --shadow-vsl: 0 20px 50px rgba(0, 0, 0, 0.5);
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
    :root {
        --spacing-section: 80px;
    }
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem; /* 16px base */
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    body {
        font-size: 1.125rem; /* 18px base desktop */
    }
}

/* Tipografia Mobile First */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.875rem; /* 30px mobile */
    font-weight: 800;
    letter-spacing: -0.02em;
}
@media (min-width: 768px) {
    h1 { font-size: 2.5rem; } /* 40px desktop */
}
@media (min-width: 1024px) {
    h1 { font-size: 2.875rem; } /* 46px desktop grande */
}

h2 {
    font-size: 1.5rem; /* 24px mobile */
    font-weight: 700;
    letter-spacing: -0.01em;
}
@media (min-width: 768px) {
    h2 { font-size: 2rem; } /* 32px desktop */
}

h3 {
    font-size: 1.25rem; /* 20px mobile */
    font-weight: 600;
}
@media (min-width: 768px) {
    h3 { font-size: 1.5rem; }
}

p {
    margin-bottom: 1rem;
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
}

section {
    padding: var(--spacing-section) 0;
    position: relative;
}

.bg-dark { background-color: var(--color-bg-dark); color: var(--color-text-light); }
.bg-light { background-color: var(--color-bg-light); color: var(--color-text-dark); }
.bg-white { background-color: var(--color-card-light); color: var(--color-text-dark); }

.text-white { color: var(--color-text-light) !important; }
.text-dark { color: var(--color-text-dark) !important; }
.text-muted { color: var(--color-text-muted) !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

/* Botão Padrão do Sistema (Componente Único - PRD Item 47) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 420px;
    height: 56px;
    padding: 0 24px;
    border-radius: var(--radius-button);
    font-family: var(--font-heading);
    font-size: 1.125rem; /* 18px */
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
    box-sizing: border-box;
}

.btn-primary {
    background-color: var(--color-cta-green);
    color: var(--color-text-light);
    box-shadow: 0 6px 20px var(--color-cta-glow);
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--color-cta-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--color-cta-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-brand-blue);
    border: 2px solid var(--color-brand-blue);
}
.btn-secondary:hover {
    background-color: rgba(30, 58, 95, 0.05);
    transform: translateY(-2px);
}

.microcopy {
    font-size: 0.875rem; /* 14px */
    color: var(--color-text-muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* ==========================================================================
   DOBRA 1: VSL HERO (PRD SEÇÃO 10 & 11)
   ========================================================================== */
.section-vsl-hero {
    padding-top: 36px;
    padding-bottom: 48px;
    background: radial-gradient(circle at top center, #172646 0%, #0B1224 70%);
    text-align: center;
}

.vsl-hero-header {
    max-width: 840px;
    margin: 0 auto 28px;
}

.vsl-hero-headline {
    color: var(--color-text-light);
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}

.vsl-hero-subheadline {
    color: #D1D5DB;
    font-size: 1.0625rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
}

.vsl-hero-text-above {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #9CA3AF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* Componente de Vídeo VSL Responsivo 16:9 (PRD Seção 12) */
.vsl-player-wrapper {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
    border-radius: var(--radius-vsl);
    overflow: hidden;
    box-shadow: var(--shadow-vsl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.vsl-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vsl-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0B1224;
    background-image: linear-gradient(180deg, rgba(11, 18, 36, 0.35) 0%, rgba(11, 18, 36, 0.75) 100%), url('assets/img/vsl_cover.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: opacity 0.3s ease;
}

.vsl-cover-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.95);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, background 0.3s ease;
    user-select: none;
}

.vsl-player-wrapper:hover .vsl-cover-badge {
    transform: translateY(-2px);
    background: var(--color-cta-green);
}

@keyframes vslPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 24px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.vsl-play-btn {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background-color: var(--color-cta-green);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    cursor: pointer;
    animation: vslPulse 2s infinite;
    transition: transform 0.3s ease, background-color 0.3s ease;
    padding-left: 6px; /* Alinhamento óptico do ícone play */
}

.vsl-player-wrapper:hover .vsl-play-btn {
    transform: scale(1.12);
    background-color: var(--color-cta-green-hover);
}

.vsl-hero-text-below {
    color: var(--color-text-subtle);
    font-size: 0.875rem;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==========================================================================
   ESTADO OCULTO / REVELAÇÃO DA PÁGINA PÓS-VSL (PRD SEÇÃO 10 & 14)
   ========================================================================== */
.vsl-hidden {
    display: none !important;
}

.vsl-revealed {
    display: block !important;
    animation: fadeInPage 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* ==========================================================================
   SEÇÃO 16 & 17: PROVA SOCIAL (DEPOIMENTOS)
   ========================================================================== */
.section-testimonials {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.testimonial-category-tag {
    align-self: flex-start;
    display: inline-block;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
    background-color: rgba(30, 58, 95, 0.08);
    color: var(--color-brand-blue);
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 12px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
    }
}

.testimonial-card-text {
    background-color: var(--color-card-light);
    padding: 24px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--color-text-dark);
    font-style: italic;
    margin-bottom: 16px;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #E5E7EB;
}

.testimonial-author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-brand-blue);
}

.testimonial-author-context {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* Carrossel 3D de Depoimentos */
.carousel-3d-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 24px auto 36px;
    padding: 10px 0;
    overflow: hidden;
}

.carousel-3d-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 420px;
    perspective: 1000px;
    transform-style: preserve-3d;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

@media (max-width: 480px) {
    .carousel-3d-wrapper {
        height: 370px;
    }
}

.carousel-3d-wrapper:active {
    cursor: grabbing;
}

.carousel-3d-slide {
    position: absolute;
    width: 70%;
    max-width: 260px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, z-index 0.4s ease;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    z-index: 0;
    transform: scale(0.8) translateX(0);
    cursor: pointer;
}

@media (max-width: 480px) {
    .carousel-3d-slide {
        max-width: 210px;
    }
}

.carousel-3d-slide img {
    width: 100%;
    max-height: 390px;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: contain;
    pointer-events: none;
}

@media (max-width: 480px) {
    .carousel-3d-slide img {
        max-height: 340px;
    }
}

.carousel-3d-slide.active {
    opacity: 1;
    z-index: 3;
    transform: scale(1) translateX(0);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.carousel-3d-slide.left-1 {
    opacity: 0.65;
    z-index: 2;
    transform: scale(0.85) translateX(-50%);
}

.carousel-3d-slide.right-1 {
    opacity: 0.65;
    z-index: 2;
    transform: scale(0.85) translateX(50%);
}

.carousel-3d-controls {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
    position: relative;
    z-index: 20; /* Garante ficar SEMPRE sobreposto/acima dos cards 3D */
}

.carousel-3d-btn {
    background-color: var(--color-brand-blue);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(30, 58, 95, 0.3);
    transition: var(--transition-smooth);
}

.carousel-3d-btn:hover {
    background-color: #172646;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.4);
}

.carousel-3d-btn:active {
    transform: scale(0.95);
}

.carousel-hint {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #4B5563;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Video Cards Facade */
.video-card {
    background: #000;
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    width: 100%;
    align-self: stretch;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    box-shadow: var(--shadow-subtle);
    cursor: pointer;
}

.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-cta-green);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    padding-left: 4px;
}

/* ==========================================================================
   SEÇÃO 19 - 30: O QUE VOCÊ VAI RECEBER / 10 MÓDULOS (ACCORDION)
   ========================================================================== */
.section-modules {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.modules-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 36px auto 0;
}

.module-card {
    background-color: var(--color-bg-dark-card);
    border-radius: 12px;
    border: 1px solid var(--color-border-subtle);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.module-card.active {
    border-color: var(--color-cta-green);
}

.module-header {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
}

.module-title-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.module-badge {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--color-cta-green);
    font-size: 0.875rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 8px;
    min-width: 40px;
    text-align: center;
}

.module-title {
    font-size: 1.0625rem;
    font-weight: 700;
}

.module-chevron {
    color: var(--color-text-muted);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.module-card.active .module-chevron {
    transform: rotate(180deg);
    color: var(--color-cta-green);
}

.module-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.module-body-inner {
    padding: 0 20px 20px 74px; /* Recuo para alinhar com o título */
    color: #D1D5DB;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .module-body-inner {
        padding-left: 20px; /* Em telas muito pequenas sem recuo excessivo */
    }
}

/* ==========================================================================
   SEÇÃO 31: COMUNIDADE
   ========================================================================== */
.section-community {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.community-card {
    background-color: var(--color-card-light);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

@media (min-width: 768px) {
    .community-card {
        flex-direction: row;
        padding: 48px;
        gap: 48px;
    }
}

.community-content {
    flex: 1;
}

.community-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
}

.community-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(30, 58, 95, 0.08);
    color: var(--color-brand-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 16px;
}

/* ==========================================================================
   SEÇÃO 32: COMO VOCÊ VAI ACESSAR (CARDS)
   ========================================================================== */
.access-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .access-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.access-card {
    background-color: var(--color-card-light);
    padding: 24px 20px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-border-light);
    text-align: center;
}

.access-icon {
    font-size: 2rem;
    color: var(--color-brand-blue);
    margin-bottom: 12px;
}

.access-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.access-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   SEÇÃO 33 - 36: BÔNUS EXCLUSIVOS
   ========================================================================== */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.bonus-card {
    background-color: var(--color-bg-dark-card);
    padding: 28px 24px;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border-subtle);
    position: relative;
    display: flex;
    flex-direction: column;
}

.bonus-tag {
    align-self: flex-start;
    background-color: rgba(244, 63, 94, 0.15);
    color: var(--color-accent-rose);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.bonus-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.bonus-desc {
    font-size: 0.9375rem;
    color: #D1D5DB;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ==========================================================================
   SEÇÃO 37 - 39: STACK DA OFERTA & PREÇO (#oferta)
   ========================================================================== */
.section-offer {
    background: radial-gradient(circle at center, #172646 0%, #0B1224 100%);
    padding: 64px 0;
}

.offer-card {
    background-color: var(--color-card-light);
    color: var(--color-text-dark);
    border-radius: var(--radius-card);
    padding: 36px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 620px;
    margin: 32px auto 0;
    text-align: center;
    border: 3px solid var(--color-cta-green);
    position: relative;
}

@media (min-width: 768px) {
    .offer-card {
        padding: 48px;
    }
}

.offer-badge-header {
    background-color: var(--color-brand-blue);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-product-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-brand-blue);
    margin-bottom: 8px;
}

.offer-checklist {
    list-style: none;
    text-align: left;
    margin: 24px 0 20px;
    padding: 20px 0 8px;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.offer-checklist li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

@media (max-width: 480px) {
    .offer-checklist li {
        font-size: 0.875rem;
    }
}

.offer-checklist li .item-label {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.offer-checklist li .item-label i {
    color: var(--color-cta-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.value-original {
    color: #8892b0;
    text-decoration: line-through;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.value-badge {
    background-color: rgba(16, 185, 129, 0.12);
    color: var(--color-cta-green);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 10px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.total-anchor-box {
    margin-bottom: 24px;
    padding: 10px 16px;
    background-color: var(--color-bg-light);
    border-radius: 10px;
    display: inline-block;
}

.total-anchor-label {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    font-weight: 600;
}

.total-strike {
    color: #d9381e;
    font-weight: 700;
    font-size: 1.1rem;
}

.offer-pricing-block {
    margin-bottom: 28px;
}

.offer-price-anchor {
    font-size: 1rem;
    color: var(--color-text-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.offer-price-main {
    font-size: 2.75rem; /* 44px */
    font-weight: 800;
    color: var(--color-brand-blue);
    line-height: 1;
    margin-bottom: 6px;
}

.offer-price-installments {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-cta-green);
}

/* ==========================================================================
   SEÇÃO 40 & 41: GARANTIA
   ========================================================================== */
.section-guarantee {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.guarantee-box {
    background-color: var(--color-card-light);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .guarantee-box {
        flex-direction: row;
        text-align: left;
        padding: 40px;
    }
}

.guarantee-seal {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.guarantee-seal-number {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.guarantee-seal-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.guarantee-content {
    flex: 1;
}

/* ==========================================================================
   SEÇÃO 42: QUEM É CARLOS NOGUEIRA
   ========================================================================== */
.section-author {
    background-color: var(--color-card-light);
    color: var(--color-text-dark);
}

.author-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .author-layout {
        flex-direction: row;
        gap: 48px;
    }
}

.author-visual {
    flex: 1;
    max-width: 380px;
    width: 100%;
}

.author-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.author-content {
    flex: 1.2;
}

.author-credentials {
    list-style: none;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.author-credentials li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-brand-blue);
}

.author-credentials i {
    color: var(--color-cta-green);
}

/* ==========================================================================
   SEÇÃO 43: MANIFESTO
   ========================================================================== */
.section-manifesto {
    background-color: var(--color-brand-blue);
    color: var(--color-text-light);
    text-align: center;
}

.manifesto-quote {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .manifesto-quote {
        font-size: 2rem;
    }
}

/* ==========================================================================
   SEÇÃO 44: FAQ (ACCORDION 11 PERGUNTAS)
   ========================================================================== */
.section-faq {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.faq-list {
    max-width: 800px;
    margin: 32px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--color-card-light);
    border-radius: 12px;
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

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

.faq-question i {
    color: var(--color-brand-blue);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================================================
   SEÇÃO 45 & 46: CTA FINAL & FOOTER
   ========================================================================== */
.section-final-cta {
    background: radial-gradient(circle at center, #172646 0%, #0B1224 100%);
    color: var(--color-text-light);
    text-align: center;
    padding: 64px 0;
}

.footer {
    background-color: #060B17;
    color: var(--color-text-subtle);
    padding: 32px 0;
    font-size: 0.875rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
}

.footer-links a {
    color: var(--color-text-subtle);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--color-text-light);
}

/* ==========================================================================
   SEÇÃO 48: STICKY CTA MOBILE (PRD SEÇÃO 48)
   ========================================================================== */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0B1224;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    z-index: 999;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sticky-cta-info {
    display: flex;
    flex-direction: column;
}

.sticky-cta-title {
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.2;
}

.sticky-cta-price {
    color: var(--color-cta-green);
    font-size: 0.875rem;
    font-weight: 800;
}

.sticky-mobile-cta .btn {
    height: 46px;
    font-size: 0.9375rem;
    max-width: 180px;
}

@media (min-width: 768px) {
    .sticky-mobile-cta {
        display: none !important; /* Esconder no desktop */
    }
}
