/* =====================================================
   FONTES LOCAIS (Self-Hosted)
   ===================================================== */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/inter-v14-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/inter-v14-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/inter-v14-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/inter-v14-latin-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/outfit-v11-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/outfit-v11-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/outfit-v11-latin-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('fonts/outfit-v11-latin-800.woff2') format('woff2');
}

/* =====================================================
   KIT ADOLESCÊNCIA COM PROPÓSITO - CSS OTIMIZADO
   Landing Page de Alta Conversão
   ===================================================== */

:root {
    /* Paleta Principal - Azul Profundo + Dourado */
    --primary-color: #0d1b2a;
    --secondary-color: #1b263b;
    --accent-color: #f59e0b;
    --accent-hover: #d97706;
    
    /* Cores de Texto */
    --text-color: #1f2937;
    --text-light: #6b7280;
    --light-text: #f3f4f6;
    
    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-cream: #fffbeb;
    --bg-dark: #050910;
    
    /* Feedback */
    --success-color: #059669;
    --error-color: #dc2626;
    
    /* Tipografia */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Layout */
    --container-width: 1100px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
    --shadow-gold: 0 8px 24px rgba(245,158,11,0.35);
}

/* =====================================================
   RESET E BASE
   ===================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-color);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* =====================================================
   LAYOUT CONTAINER
   ===================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   UTILITÁRIOS
   ===================================================== */
.text-center { text-align: center; }
.bold { font-weight: 700; }

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.strike {
    text-decoration: line-through;
    opacity: 0.6;
}

/* =====================================================
   TÍTULOS DE SEÇÃO
   ===================================================== */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 48px;
}

/* =====================================================
   BOTÕES CTA
   ===================================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 18px 36px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(245,158,11,0.45);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: var(--shadow-gold);
}

/* Animação Pulse */
.pulse {
    animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: var(--shadow-gold); }
    50% { box-shadow: 0 8px 40px rgba(245,158,11,0.55); }
}

.big-cta {
    font-size: 1.15rem;
    padding: 22px 48px;
    width: 100%;
    max-width: 100%;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--bg-dark) 100%);
    color: #fff;
    padding: 80px 0 100px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, transparent 0%, rgba(5,9,16,0.6) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.headline {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.headline .highlight {
    display: block;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 40px;
    opacity: 0.92;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-media {
    margin: 40px 0;
}

.hero-image-wrapper {
    max-width: 850px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.01);
}

/* =====================================================
   VISUAL PRESENTATION
   ===================================================== */
.visual-presentation {
    background: var(--bg-white);
    padding: 100px 0;
}

.visual-presentation .row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.visual-presentation .col-text {
    flex: 1.1;
}

.visual-presentation .col-image {
    flex: 0.9;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 28px 0 32px;
    padding: 20px 24px;
    background: var(--bg-cream);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.mockup-img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    transition: var(--transition);
}

.mockup-img:hover {
    transform: translateY(-8px) scale(1.02);
}

/* =====================================================
   PAIN AGITATION (Dores)
   ===================================================== */
.pain-agitation {
    background: var(--bg-light);
    padding: 100px 0;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.pain-card {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.icon-box {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.icon-box.error {
    background: #fef2f2;
    color: var(--error-color);
}

.pain-card p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.65;
}

.transition-copy {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.transition-copy p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.transition-copy p:last-child {
    margin-bottom: 0;
}

.transition-copy .bold {
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* =====================================================
   SOLUTION SECTION
   ===================================================== */
.solution-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.old-way {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
}

.old-way p {
    margin-bottom: 24px;
    color: var(--text-color);
}

.fail-list {
    display: inline-block;
    text-align: left;
    margin-bottom: 24px;
}

.fail-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--text-color);
}

.fail-list li span {
    color: var(--error-color);
}

.fail-result {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--error-color);
}

.new-way {
    max-width: 850px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(245,158,11,0.2);
}

.new-way h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.method-name {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.success-list {
    margin-bottom: 32px;
}

.success-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 1.02rem;
}

.success-list li > span:first-child {
    color: var(--success-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.final-statement {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 28px;
}

.new-way .cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* =====================================================
   OBJECTION HANDLING
   ===================================================== */
.objection-handling {
    background: var(--bg-light);
    padding: 100px 0;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 48px;
}

.text-block {
    flex: 1;
}

.text-block > p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.feature-list {
    margin: 28px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.feature-list li > span:first-child {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.cta-wrapper {
    margin-top: 32px;
}

.image-block {
    flex: 0.85;
}

.context-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* =====================================================
   BENEFITS SECTION
   ===================================================== */
.benefits-section {
    background: var(--bg-white);
    padding: 100px 0;
}

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

.benefit-item {
    background: var(--bg-light);
    padding: 32px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.benefit-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-item > span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.benefit-item h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* =====================================================
   TRANSFORMATION SHOWCASE
   ===================================================== */
.transformation-showcase {
    background: var(--bg-light);
    padding: 100px 0;
}

.showcase-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 48px;
}

.showcase-visual {
    flex: 0.9;
}

.showcase-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.showcase-features {
    flex: 1.1;
}

.showcase-features > p:first-child {
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.showcase-features ul {
    margin-bottom: 28px;
}

.showcase-features li {
    margin-bottom: 18px;
    padding-left: 8px;
    font-size: 1rem;
    line-height: 1.6;
}

.showcase-features li strong {
    color: var(--primary-color);
}

.showcase-features .highlight {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    display: block;
}

/* =====================================================
   VALUE STACK
   ===================================================== */
.value-stack {
    background: var(--bg-white);
    padding: 100px 0;
}

.stack-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 48px;
    border-radius: var(--radius-lg);
    color: #fff;
    box-shadow: var(--shadow-xl);
}

.stack-image {
    flex: 0.8;
}

.stack-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.stack-details {
    flex: 1.2;
}

.stack-details h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.stack-desc {
    opacity: 0.85;
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.modules-list {
    background: rgba(255,255,255,0.08);
    padding: 28px;
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    max-height: 380px;
    overflow-y: auto;
}

.modules-list h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.modules-list ol {
    list-style: decimal;
    padding-left: 20px;
}

.modules-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.includes-box {
    background: rgba(255,255,255,0.08);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 28px;
}

.includes-box p {
    margin-bottom: 12px;
    font-weight: 600;
}

.includes-box ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.includes-box li {
    font-size: 0.9rem;
    opacity: 0.9;
}

.price-box {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.old-price {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 8px;
}

.new-price {
    font-size: 1.3rem;
}

.new-price strong {
    color: var(--accent-color);
    font-size: 1.6rem;
}

/* =====================================================
   BONUSES SECTION
   ===================================================== */
.bonuses-section {
    background: var(--bg-cream);
    padding: 100px 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.bonus-card {
    background: var(--bg-white);
    padding: 32px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition);
}

.bonus-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.bonus-card h3 {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.bonus-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.bonus-value {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.bonus-value strong {
    color: var(--success-color);
}

.bonus-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

.summary-table {
    max-width: 600px;
    margin: 48px auto;
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.summary-table h3 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.summary-table table {
    width: 100%;
    border-collapse: collapse;
}

.summary-table th,
.summary-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.summary-table th {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 600;
}

.summary-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.total-row {
    background: var(--bg-light);
}

.total-row td {
    font-weight: 700;
}

.final-price-row {
    background: var(--success-color);
    color: #fff;
}

.final-price-row td {
    font-size: 1.1rem;
    font-weight: 700;
}

.bonuses-section > .container > .cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

/* =====================================================
   SOCIAL PROOF
   ===================================================== */
.social-proof {
    background: var(--bg-white);
    padding: 100px 0;
}

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

.testimonial-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   OFFER SECTION
   ===================================================== */
.offer-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 100px 0;
}

.offer-box {
    max-width: 700px;
    margin: 48px auto 0;
    background: var(--bg-white);
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--accent-color);
}

.offer-questions {
    margin-bottom: 32px;
}

.offer-questions p {
    margin-bottom: 16px;
    font-weight: 500;
}

.offer-questions ul {
    padding-left: 8px;
}

.offer-questions li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-color);
}

.price-anchor {
    text-align: center;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.price-anchor p {
    margin-bottom: 8px;
}

.final-price-box {
    text-align: center;
    margin-bottom: 28px;
}

.final-price-box h3 {
    color: var(--success-color);
    margin-bottom: 16px;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.price-display .old {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.2rem;
}

.price-display .current {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--success-color);
    letter-spacing: -2px;
}

.installments {
    font-size: 1.05rem;
    color: var(--text-light);
}

.comparisons {
    text-align: center;
    margin-bottom: 32px;
}

.comparisons > p {
    font-weight: 500;
    margin-bottom: 12px;
}

.comparison-items {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.comparison-items span {
    background: var(--bg-light);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

.guarantee-box i {
    font-size: 3rem;
}

.guarantee-box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.guarantee-box p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.secure-payment {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* =====================================================
   FINAL URGENCY
   ===================================================== */
.final-urgency {
    background: var(--bg-white);
    padding: 100px 0;
}

.urgency-box {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(245,158,11,0.25);
}

.urgency-verse {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 32px;
    color: var(--primary-color);
    line-height: 1.6;
}

.urgency-verse span {
    display: block;
    font-size: 0.9rem;
    margin-top: 8px;
    opacity: 0.75;
    font-style: normal;
}

.urgency-box > p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.urgency-strong {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 20px 0 28px !important;
}

.urgency-cta {
    max-width: 450px;
    margin: 0 auto;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: var(--transition-fast);
}

.faq-item summary:hover {
    background: rgba(245,158,11,0.05);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: "−";
    color: var(--primary-color);
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--text-color);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.6);
    padding: 48px 0;
    text-align: center;
}

.footer-content p {
    font-size: 0.9rem;
}

/* =====================================================
   RESPONSIVO
   ===================================================== */
@media (max-width: 992px) {
    .visual-presentation .row,
    .showcase-content,
    .stack-container,
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .visual-presentation .col-image,
    .showcase-visual,
    .stack-image,
    .image-block {
        order: -1;
    }
    
    .stack-container {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .hero-section {
        padding: 60px 0 80px;
    }
    
    .headline {
        font-size: 1.6rem;
    }
    
    .subheadline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .visual-presentation,
    .pain-agitation,
    .solution-section,
    .objection-handling,
    .benefits-section,
    .transformation-showcase,
    .value-stack,
    .bonuses-section,
    .social-proof,
    .offer-section,
    .final-urgency,
    .faq-section {
        padding: 70px 0;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 16px 28px;
    }
    
    .big-cta {
        font-size: 1rem;
        padding: 18px 32px;
    }
    
    .pain-grid,
    .benefits-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .offer-box {
        padding: 32px 24px;
    }
    
    .price-display .current {
        font-size: 2.8rem;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    
    .transition-copy {
        padding: 32px 24px;
    }
    
    .new-way {
        padding: 32px;
    }
    
    .urgency-box {
        padding: 36px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-items {
        flex-direction: column;
        gap: 10px;
    }
    
    .price-display {
        flex-direction: column;
        gap: 12px;
    }
}

/* =====================================================
   SCROLLBAR PERSONALIZADA
   ===================================================== */
.modules-list::-webkit-scrollbar {
    width: 6px;
}

.modules-list::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 3px;
}

.modules-list::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

/* =====================================================
   PERFORMANCE - CONTENÇÃO DE LAYOUT
   ===================================================== */
.hero-section,
.visual-presentation,
.pain-agitation,
.solution-section,
.objection-handling,
.benefits-section,
.transformation-showcase,
.value-stack,
.bonuses-section,
.social-proof,
.offer-section,
.final-urgency,
.faq-section {
    contain: layout style;
}