/* ============================================
   PROTOCOLO 10X - LANDING PAGE
   Refatorado: Código limpo e manutenível
   ============================================ */

/* ===========================================
   1. DESIGN TOKENS (Variáveis)
   =========================================== */
:root {
    /* Cores - Primárias */
    --c-black: #000;
    --c-white: #fff;
    --c-yellow: #facc15;
    --c-yellow-dark: #ca8a04;
    --c-green: #4ade80;
    --c-green-hover: #3ecf73;
    
    /* Cores - Feedback */
    --c-red: #dc2626;
    --c-red-light: #ef4444;
    --c-red-dark: #991b1b;
    --c-red-soft: #f87171;
    --c-orange: #db6e00;
    
    /* Cores - Neutras */
    --c-gray-100: #f3f4f6;
    --c-gray-200: #e5e7eb;
    --c-gray-300: #d1d5db;
    --c-gray-400: #9ca3af;
    --c-gray-500: #6b7280;
    --c-gray-600: #4b5563;
    --c-gray-700: #374151;
    
    /* Tipografia */
    --ff-primary: 'Roboto', sans-serif;
    --ff-secondary: 'Inter', sans-serif;
    
    /* Escala de Fonte (Desktop) */
    --fs-xs: 12px;
    --fs-sm: 14px;
    --fs-base: 16px;
    --fs-lg: 18px;
    --fs-xl: 20px;
    --fs-2xl: 24px;
    --fs-3xl: 32px;
    --fs-4xl: 36px;
    --fs-5xl: 40px;
    --fs-6xl: 48px;
    --fs-7xl: 50px;
    --fs-8xl: 64px;
    --fs-9xl: 96px;
    
    /* Espaçamento (Múltiplos de 4px) */
    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-8: 32px;
    --sp-10: 40px;
    --sp-12: 48px;
    --sp-16: 64px;
    --sp-20: 80px;
    
    /* Border Radius */
    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-2xl: 30px;
    --r-full: 9999px;
    
    /* Sombras */
    --shadow-sm: 0 4px 6px -4px rgba(0,0,0,.1), 0 10px 15px -3px rgba(0,0,0,.1);
    --shadow-md: 0 10px 30px rgba(0,0,0,.2);
    --shadow-lg: 0 25px 50px -12px rgba(0,0,0,.25);
    --shadow-xl: 0 25px 60px rgba(0,0,0,.35);
    --shadow-glow-green: 0 10px 30px rgba(74,222,128,.4);
    --shadow-glow-yellow: 0 25px 60px rgba(250,204,21,.15);
    
    /* Layout */
    --max-w: 1440px;
    --content-w: 1280px;
    
    /* Transições */
    --transition: .3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--ff-primary);
    font-size: var(--fs-base);
    line-height: 1.5;
    color: var(--c-black);
    background: var(--c-white);
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ===========================================
   3. UTILITIES (Classes Reutilizáveis)
   =========================================== */
/* Cores de texto */
.text-yellow { color: var(--c-yellow); }
.text-yellow-bold { color: var(--c-yellow); font-weight: 700; }
.text-gold { color: var(--c-yellow-dark); }
.text-gold-bold { color: var(--c-yellow-dark); font-weight: 700; }
.text-red { color: var(--c-red-soft); font-weight: 800; }
.text-dark-red { color: var(--c-red-dark); font-weight: 800; }

/* Containers reutilizáveis */
.container {
    max-width: var(--content-w);
    margin: 0 auto;
}

/* Flexbox helpers */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Text alignment */
.text-center { text-align: center; }

/* ===========================================
   4. COMPONENTES GLOBAIS
   =========================================== */

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    justify-content: center;
    padding: var(--sp-10) 0;
    animation: bounce 2s infinite;
}

.scroll-indicator svg { transform: rotate(180deg); }

/* GIF/Media Component */
.gif-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    display: block;
    transition: transform var(--transition), box-shadow var(--transition);
}

.gif-media:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,.4);
}

/* Placeholder Fallback */
.gif-placeholder {
    background: var(--c-white);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.gif-placeholder span {
    font-family: var(--ff-secondary);
    font-weight: 600;
    font-size: var(--fs-lg);
    color: var(--c-gray-400);
}

.gif-placeholder.gif-yellow {
    background: linear-gradient(145deg, rgba(250,204,21,.4), rgba(250,204,21,.5));
}

/* ===========================================
   5. SECTIONS
   =========================================== */

/* --- HERO --- */
.section-hero {
    background: var(--c-black);
    min-height: 1024px;
    padding: var(--sp-20);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: var(--content-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-10);
    padding-top: 150px;
}

.hero-text { max-width: 730px; }

.hero-title {
    font-weight: 700;
    font-size: 75px;
    line-height: 75px;
    color: var(--c-white);
    margin-bottom: var(--sp-6);
}

.hero-subtitle {
    font-size: 52px;
    line-height: 75px;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: var(--sp-6);
}

.hero-description {
    font-weight: 500;
    font-size: var(--fs-3xl);
    line-height: 32px;
    color: var(--c-gray-300);
    margin-bottom: var(--sp-6);
}

.hero-paragraph {
    font-size: var(--fs-2xl);
    line-height: 29px;
    color: var(--c-gray-400);
    margin-bottom: var(--sp-4);
}

.hero-media {
    width: 380px;
    height: 500px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--r-xl);
}

.hero-media .gif-media {
    height: 500px;
    object-position: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.hero-media .gif-placeholder { height: 500px; }

/* --- PROPOSTA --- */
.section-proposta {
    background: var(--c-white);
    padding: var(--sp-12) var(--sp-20);
    min-height: 502px;
}

.proposta-container {
    max-width: var(--content-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-16);
}

.proposta-media {
    width: 340px;
    height: 420px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--r-2xl);
}

.proposta-media .gif-media {
    object-position: center;
    border-radius: var(--r-2xl);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.proposta-media .gif-placeholder { height: 300px; }

.proposta-text {
    flex: 1;
    max-width: 600px;
}

.proposta-title {
    font-weight: 700;
    font-size: var(--fs-5xl);
    line-height: 40px;
    color: var(--c-black);
    margin-bottom: var(--sp-6);
}

.proposta-secret {
    font-weight: 500;
    font-size: 25px;
    line-height: 30px;
    color: var(--c-yellow-dark);
}

.proposta-question {
    font-weight: 700;
    font-size: var(--fs-3xl);
    line-height: 35px;
    color: var(--c-black);
    text-align: center;
    margin-top: var(--sp-10);
}

/* --- DEPOIMENTOS --- */
.section-depoimentos {
    background: var(--c-black);
    padding: var(--sp-16) var(--sp-20);
    min-height: 882px;
}

.depoimentos-title {
    font-weight: 700;
    font-size: var(--fs-4xl);
    line-height: 40px;
    color: var(--c-white);
    text-align: center;
    margin-bottom: var(--sp-16);
}

.depoimentos-grid {
    max-width: var(--content-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-8);
}

.depoimento-card {
    background: var(--c-gray-200);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.depoimento-image {
    position: relative;
    width: 100%;
    height: 480px;
    background: var(--c-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.depoimento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
    transition: transform var(--transition);
}

.depoimento-card:first-child .depoimento-image img { object-position: center 75%; }
.depoimento-card:hover .depoimento-image img { transform: scale(1.03); }

.badge-resultado {
    position: absolute;
    top: var(--sp-4);
    left: var(--sp-4);
    background: var(--c-red);
    color: var(--c-gray-200);
    font-family: var(--ff-secondary);
    font-weight: 700;
    font-size: var(--fs-sm);
    line-height: 20px;
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--r-full);
}

.depoimento-content { padding: var(--sp-4) var(--sp-5); }

.depoimento-nome {
    font-family: var(--ff-secondary);
    font-weight: 700;
    font-size: var(--fs-lg);
    line-height: 24px;
    color: var(--c-black);
    margin-bottom: var(--sp-1);
}

.depoimento-texto {
    font-family: var(--ff-secondary);
    font-size: var(--fs-sm);
    line-height: 20px;
    color: var(--c-gray-600);
}

/* --- PROBLEMA --- */
.section-problema {
    background: var(--c-white);
    padding: var(--sp-16) var(--sp-20);
}

.problema-title {
    font-weight: 700;
    font-size: var(--fs-7xl);
    line-height: 50px;
    color: var(--c-black);
    text-align: center;
    margin-bottom: var(--sp-6);
}

.problema-alert {
    font-weight: 700;
    font-size: var(--fs-2xl);
    line-height: 20px;
    color: var(--c-red);
    text-align: center;
    margin-bottom: var(--sp-10);
}

.problema-porque {
    font-weight: 700;
    font-size: var(--fs-5xl);
    line-height: 35px;
    color: var(--c-black);
    text-align: center;
    margin-bottom: var(--sp-4);
}

.problema-unica {
    font-size: var(--fs-5xl);
    line-height: 35px;
    color: var(--c-black);
    text-align: center;
    margin-bottom: var(--sp-12);
}

/* Lista do Problema */
.problema-lista {
    max-width: 900px;
    margin: 0 auto var(--sp-12);
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.problema-lista li {
    display: flex;
    align-items: center;
    gap: var(--sp-5);
    background: var(--c-black);
    border-radius: var(--r-lg);
    padding: var(--sp-5) var(--sp-6);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.problema-lista li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.problema-numero {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--c-yellow);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--fs-xl);
    color: var(--c-black);
}

.problema-texto {
    font-size: var(--fs-xl);
    line-height: 28px;
    color: var(--c-white);
}

.problema-texto strong {
    color: var(--c-yellow);
    font-weight: 700;
}

/* Timeline (deprecated - mantido por compatibilidade) */
.problema-timeline {
    max-width: 900px;
    margin: 0 auto var(--sp-12);
    display: grid;
    grid-template-columns: 340px 50px 1fr;
    gap: var(--sp-4);
}

.timeline-left {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.timeline-card {
    background: var(--c-black);
    border-radius: var(--r-md);
    padding: var(--sp-6);
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    box-shadow: var(--shadow-sm);
}

.timeline-number {
    width: 48px;
    height: 48px;
    background: var(--c-yellow);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--fs-xl);
    color: var(--c-black);
    flex-shrink: 0;
}

.timeline-card span {
    font-weight: 700;
    font-size: var(--fs-lg);
    color: var(--c-white);
}

.timeline-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-6) 0;
    position: relative;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: var(--c-yellow);
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: var(--c-yellow);
    border: 4px solid var(--c-white);
    border-radius: var(--r-full);
    position: relative;
    z-index: 1;
}

.timeline-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--sp-6) 0;
}

.timeline-right p {
    font-weight: 700;
    font-size: var(--fs-xl);
    line-height: 28px;
    color: var(--c-black);
}

.problema-descoberta {
    font-weight: 700;
    font-size: var(--fs-3xl);
    line-height: 35px;
    color: var(--c-black);
    text-align: center;
    margin-bottom: var(--sp-8);
}

.destaque-amarelo {
    background: var(--c-yellow);
    padding: var(--sp-8) var(--sp-10);
    margin-bottom: var(--sp-10);
}

.destaque-texto {
    font-family: var(--ff-secondary);
    font-weight: 700;
    font-size: var(--fs-4xl);
    line-height: 36px;
    color: var(--c-black);
    text-align: center;
}

.problema-conclusao {
    font-weight: 700;
    font-size: var(--fs-4xl);
    line-height: 35px;
    color: var(--c-black);
    text-align: center;
    max-width: 1162px;
    margin: 0 auto var(--sp-10);
}

/* --- PROTOCOLO (Apresentação) --- */
.section-protocolo {
    background: var(--c-black);
    padding: 0;
    text-align: center;
    min-height: 448px;
    position: relative;
}

.protocolo-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 70px 80px 0;
    position: relative;
}

.protocolo-intro {
    font-weight: 800;
    font-size: 32px;
    line-height: 60px;
    color: var(--c-yellow);
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.protocolo-logo {
    margin: 0 auto;
    position: relative;
    height: 212px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.protocolo-logo img {
    max-width: 765px;
    height: auto;
    margin: 0 auto;
}

.protocolo-title-text {
    font-weight: 900;
    font-size: 80px;
    line-height: 80px;
    color: var(--c-yellow);
    text-shadow: 2px 2px 4px rgba(0,0,0,.3);
}

.protocolo-subtitle {
    font-size: 24px;
    line-height: 32px;
    color: var(--c-gray-300);
    margin-bottom: 14px;
}

.protocolo-fases {
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
    color: var(--c-yellow);
    margin-bottom: 24px;
}

/* Scroll indicator em fundos claros */
.section-proposta .scroll-indicator svg path,
.section-problema .scroll-indicator svg path,
.section-fases .scroll-indicator svg path,
.section-imagine .scroll-indicator svg path,
.section-preco .scroll-indicator svg path,
.section-escolha .scroll-indicator svg path {
    stroke: var(--c-yellow-dark);
}

.section-protocolo .scroll-indicator {
    padding-top: 0;
    padding-bottom: 32px;
}

/* --- FASES DO PROTOCOLO --- */
.section-fases {
    background: var(--c-white);
    padding: var(--sp-20);
}

.fases-timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-left: 100px;
}

.fases-line {
    position: absolute;
    left: 42px;
    top: 0;
    bottom: 60px;
    width: 4px;
    background: var(--c-yellow);
}

.fase-item {
    position: relative;
    margin-bottom: var(--sp-10);
}

.fase-dot {
    position: absolute;
    left: -79px;
    top: 0;
    width: 42px;
    height: 42px;
    background: var(--c-yellow);
    border: 4px solid var(--c-white);
    border-radius: var(--r-full);
    z-index: 1;
}

.fase-card {
    background: var(--c-black);
    border-radius: var(--r-md);
    padding: var(--sp-6) var(--sp-8);
    box-shadow: var(--shadow-sm);
}

.fase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--sp-4);
}

.fase-info { flex: 1; }

.fase-label {
    font-weight: 700;
    font-size: var(--fs-sm);
    line-height: 20px;
    color: var(--c-yellow);
    display: block;
    margin-bottom: var(--sp-1);
}

.fase-titulo {
    font-weight: 700;
    font-size: var(--fs-xl);
    line-height: 32px;
    color: var(--c-white);
}

.fase-destaque-red {
    font-weight: 700;
    font-size: var(--fs-sm);
    line-height: 32px;
    color: var(--c-red);
    display: block;
}

.fase-destaque-yellow {
    font-weight: 700;
    font-size: var(--fs-sm);
    line-height: 32px;
    color: var(--c-yellow);
    display: block;
}

.fase-preco {
    font-weight: 700;
    font-size: var(--fs-xl);
    line-height: 28px;
    color: var(--c-yellow);
    flex-shrink: 0;
}

.fase-lista {
    list-style: disc;
    padding-left: var(--sp-8);
}

.fase-lista li {
    font-size: var(--fs-xl);
    line-height: 24px;
    color: var(--c-gray-300);
    margin-bottom: var(--sp-2);
}

.fase-lista li strong { font-weight: 900; }

.fase-quote {
    font-weight: 700;
    font-size: var(--fs-xl);
    line-height: 32px;
    color: var(--c-yellow);
    margin-top: var(--sp-4);
}

/* --- COMPARATIVO --- */
.section-comparativo {
    background: var(--c-black);
    padding: 80px 0 60px;
    min-height: 1996px;
}

.comparativo-title {
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    color: var(--c-yellow);
    text-align: center;
    margin-bottom: 16px;
}

.comparativo-subtitle {
    font-size: 36px;
    line-height: 50px;
    color: var(--c-white);
    text-align: center;
    margin-bottom: 48px;
}

/* Headers */
.comparativo-headers {
    max-width: 1200px;
    margin: 0 auto 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 0 80px;
}

.comparativo-header-left,
.comparativo-header-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.comparativo-header-title {
    font-weight: 700;
    font-size: 32px;
    color: var(--c-yellow);
    margin-bottom: 20px;
    text-align: center;
}

.comparativo-logo-wrapper {
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparativo-logo-desafio {
    max-width: 330px;
    max-height: 94px;
    height: auto;
}

.comparativo-logo-protocolo {
    max-width: 60%;
    height: auto;
}

.logo-fallback {
    font-weight: 900;
    font-size: 24px;
    color: var(--c-yellow);
}

.comparativo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 364px 50px 364px;
    gap: 32px;
    justify-content: center;
    padding: 0 80px;
}

.comparativo-column {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.comparativo-card {
    border-radius: var(--r-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    height: 152px;
    width: 364px;
    position: relative;
}

.desafio-card {
    background: var(--c-white);
    border: 2px solid var(--c-orange);
}

.protocolo-card {
    background: linear-gradient(157deg, var(--c-yellow), var(--c-yellow-dark));
    border: 2px solid var(--c-yellow);
}

.comparativo-label {
    font-family: var(--ff-secondary);
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    display: block;
    margin-bottom: 8px;
}

.desafio-card .comparativo-label { color: var(--c-orange); }
.protocolo-card .comparativo-label { color: var(--c-black); }

.comparativo-value {
    font-family: var(--ff-secondary);
    font-weight: 900;
    font-size: 48px;
    line-height: 24px;
    display: block;
    margin-top: 16px;
}

.desafio-card .comparativo-value { color: var(--c-gray-700); }
.protocolo-card .comparativo-value { color: rgba(104,68,0,.61); }

/* Timeline Central */
.comparativo-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
}

.comparativo-line {
    position: absolute;
    top: 56px;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: var(--c-yellow);
}

.comparativo-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 1;
}

.comparativo-dot {
    width: 42px;
    height: 39px;
    background: var(--c-yellow);
    border: 4px solid var(--c-white);
    border-radius: var(--r-full);
    flex-shrink: 0;
}

.comparativo-dots .comparativo-dot:not(:last-child) { margin-bottom: 193px; }

/* --- IMAGINE --- */
.section-imagine {
    background: var(--c-white);
    padding: var(--sp-20);
}

.imagine-container {
    max-width: var(--content-w);
    margin: 0 auto;
    display: flex;
    gap: var(--sp-12);
    align-items: flex-start;
}

.imagine-media {
    width: 380px;
    height: auto;
    flex-shrink: 0;
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
}

.imagine-media .gif-media {
    height: auto;
    width: 87%;
    object-fit: contain;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.imagine-media .gif-placeholder { height: 400px; }

.imagine-content { flex: 1; }

.imagine-title {
    font-weight: 700;
    font-size: var(--fs-8xl);
    line-height: 60px;
    color: var(--c-black);
    margin-bottom: var(--sp-6);
}

.imagine-lista { margin-bottom: var(--sp-8); }

.imagine-lista li {
    font-size: var(--fs-lg);
    line-height: 28px;
    color: var(--c-gray-700);
    margin-bottom: var(--sp-4);
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
}

.imagine-lista .check {
    color: var(--c-yellow-dark);
    font-size: var(--fs-2xl);
}

.imagine-lista strong { color: var(--c-black); }

.imagine-destaque {
    background: var(--c-yellow);
    border-left: 4px solid var(--c-yellow);
    border-radius: var(--r-md);
    padding: var(--sp-6);
}

.imagine-destaque-titulo {
    font-weight: 700;
    font-size: 30px;
    line-height: 32px;
    color: var(--c-black);
    margin-bottom: var(--sp-2);
}

.imagine-destaque-texto {
    font-weight: 900;
    font-size: var(--fs-lg);
    line-height: 28px;
    color: var(--c-gray-700);
}

/* --- INVESTIMENTO --- */
.section-investimento {
    background: var(--c-black);
    padding: var(--sp-16) var(--sp-20);
}

.investimento-title {
    font-weight: 700;
    font-size: var(--fs-4xl);
    line-height: 40px;
    color: var(--c-yellow);
    text-align: center;
    margin-bottom: var(--sp-10);
}

.investimento-tabela {
    max-width: 896px;
    margin: 0 auto var(--sp-8);
}

.investimento-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--sp-4);
}

.investimento-item {
    background: var(--c-white);
    border-radius: var(--r-md);
    padding: var(--sp-4) var(--sp-6);
    font-family: var(--ff-secondary);
    font-weight: 700;
    font-size: var(--fs-2xl);
    line-height: 28px;
    color: var(--c-black);
    flex: 1;
    margin-right: var(--sp-4);
}

.investimento-valor {
    background: var(--c-yellow);
    border: 5px solid var(--c-black);
    border-radius: var(--r-md);
    padding: var(--sp-2) var(--sp-6);
    font-family: var(--ff-secondary);
    font-weight: 900;
    font-size: var(--fs-4xl);
    line-height: 42px;
    color: rgba(5,5,5,.47);
    text-align: center;
    min-width: 200px;
}

.investimento-total {
    background: var(--c-yellow);
    border-radius: var(--r-md);
    padding: var(--sp-6);
    max-width: 1079px;
    margin: 0 auto var(--sp-8);
    text-align: center;
}

.investimento-total p {
    font-weight: 900;
    font-size: var(--fs-6xl);
    line-height: 28px;
    color: var(--c-black);
}

.investimento-mensagem {
    font-weight: 900;
    font-size: 52px;
    line-height: 28px;
    color: var(--c-white);
    text-align: center;
    margin-bottom: var(--sp-10);
}

/* --- PREÇO FINAL --- */
.section-preco {
    background: var(--c-white);
    padding: var(--sp-16) var(--sp-20);
    text-align: center;
}

.preco-titulo {
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    color: var(--c-black);
    margin-bottom: var(--sp-6);
}

.preco-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--sp-4);
    margin-bottom: var(--sp-4);
}

.preco-parcelas {
    font-weight: 900;
    font-size: var(--fs-8xl);
    line-height: 96px;
    color: var(--c-green);
}

.preco-valor {
    font-weight: 900;
    font-size: var(--fs-9xl);
    line-height: 96px;
    color: var(--c-green);
}

.preco-avista {
    font-size: var(--fs-4xl);
    line-height: 32px;
    color: var(--c-gray-600);
    margin-bottom: var(--sp-8);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--c-green);
    color: var(--c-white);
    font-weight: 700;
    font-size: var(--fs-4xl);
    line-height: 32px;
    padding: var(--sp-10) var(--sp-12);
    border-radius: var(--r-md);
    transition: all var(--transition);
    text-align: center;
}

.cta-button:hover {
    background: var(--c-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-green);
}

/* --- GARANTIA --- */
.section-garantia {
    background: var(--c-black);
    padding: var(--sp-16) var(--sp-20);
}

.garantia-container {
    max-width: var(--content-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--sp-12);
}

.garantia-selo {
    width: 490px;
    height: 490px;
    flex-shrink: 0;
}

.garantia-selo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.selo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #ffd700, #b8860b);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 8px solid var(--c-white);
    box-shadow: 0 0 30px rgba(255,215,0,.5);
}

.selo-placeholder span {
    font-weight: 900;
    font-size: 120px;
    color: var(--c-white);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,.3);
}

.selo-placeholder small {
    font-weight: 700;
    font-size: var(--fs-4xl);
    color: var(--c-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,.3);
}

.garantia-content { flex: 1; }

.garantia-titulo {
    font-weight: 700;
    font-size: var(--fs-8xl);
    line-height: 60px;
    color: var(--c-yellow);
    margin-bottom: var(--sp-6);
}

.garantia-subtitulo {
    font-size: var(--fs-4xl);
    line-height: 28px;
    color: var(--c-white);
    margin-bottom: var(--sp-8);
}

.garantia-texto {
    font-size: var(--fs-4xl);
    line-height: 40px;
    color: var(--c-gray-400);
}

/* --- ESCOLHA --- */
.section-escolha {
    background: linear-gradient(180deg, #fafafa, var(--c-white));
    padding: var(--sp-16) var(--sp-10);
}

.escolha-titulo {
    font-weight: 800;
    font-size: var(--fs-4xl);
    line-height: 1.2;
    color: var(--c-black);
    text-align: center;
    margin-bottom: var(--sp-12);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.escolha-container {
    max-width: 800px;
    margin: 0 auto var(--sp-10);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-8);
}

.escolha-opcao {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.escolha-media {
    position: relative;
    border-radius: var(--r-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: var(--sp-4);
}

.escolha-media .gif-media {
    height: 100%;
    width: auto;
    max-width: 100%;
    border-radius: var(--r-lg);
    object-fit: contain;
    transition: transform var(--transition);
}

.escolha-opcao:hover .escolha-media .gif-media { transform: scale(1.03); }

.escolha-media .gif-placeholder {
    height: 260px;
    background: var(--c-gray-200);
    border-radius: var(--r-lg);
}

.escolha-card {
    border-radius: var(--r-xl);
    padding: var(--sp-6);
    flex: 1;
}

.card-ruim {
    background: linear-gradient(180deg, #fef2f2, var(--c-white));
    border: 2px solid rgba(220,38,38,.3);
}

.card-boa {
    background: linear-gradient(180deg, #ecfdf5, var(--c-white));
    border: 2px solid rgba(74,222,128,.5);
    box-shadow: 0 4px 20px rgba(74,222,128,.15);
}

.escolha-card h3 {
    font-weight: 700;
    font-size: var(--fs-xl);
    line-height: 28px;
    text-align: center;
    margin-bottom: var(--sp-5);
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.card-ruim h3 { color: var(--c-gray-600); }
.card-boa h3 { color: var(--c-black); }

.escolha-card ul li {
    font-size: var(--fs-sm);
    line-height: 22px;
    color: var(--c-gray-600);
    margin-bottom: var(--sp-2);
    display: flex;
    align-items: flex-start;
    gap: var(--sp-2);
}

.card-boa ul li {
    color: var(--c-gray-700);
    font-weight: 500;
}

.x-mark {
    color: var(--c-red-dark);
    font-size: var(--fs-sm);
}

.check-mark {
    color: var(--c-green);
    font-size: var(--fs-sm);
    font-weight: 700;
}

.escolha-pergunta {
    font-weight: 700;
    font-size: var(--fs-2xl);
    line-height: 40px;
    color: var(--c-black);
    text-align: center;
}

/* --- BANNER ALERTA --- */
.banner-alerta {
    background: var(--c-red);
    padding: var(--sp-10) var(--sp-12);
    text-align: center;
}

.banner-alerta p {
    font-family: var(--ff-secondary);
    font-weight: 900;
    font-size: var(--fs-5xl);
    line-height: 32px;
    color: var(--c-white);
}

.alerta-icon { color: #fde047; }

/* --- FINAL --- */
.section-final {
    background: var(--c-black);
    padding: var(--sp-16) var(--sp-20);
    text-align: center;
}

.final-titulo {
    font-weight: 700;
    font-size: var(--fs-6xl);
    line-height: 48px;
    color: var(--c-white);
    margin-bottom: var(--sp-4);
}

.final-subtitulo {
    font-weight: 700;
    font-size: var(--fs-6xl);
    line-height: 48px;
    color: var(--c-yellow);
    margin-bottom: var(--sp-6);
}

.final-texto {
    font-size: var(--fs-3xl);
    line-height: 32px;
    color: var(--c-gray-300);
    margin-bottom: var(--sp-4);
}

.final-texto strong { font-weight: 900; }

.final-destaque {
    font-size: var(--fs-6xl);
    line-height: 50px;
    color: var(--c-red);
    margin: var(--sp-12) 0;
}

.final-frase {
    font-weight: 700;
    font-size: var(--fs-4xl);
    line-height: 32px;
    color: var(--c-green);
    margin-top: var(--sp-12);
}

/* --- FOOTER --- */
.footer {
    background: var(--c-black);
    padding: var(--sp-16) var(--sp-20);
    border-top: 1px solid var(--c-gray-700);
}

.footer-container {
    max-width: var(--content-w);
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-12);
    margin-bottom: var(--sp-12);
}

.footer-column h4 {
    font-family: var(--ff-secondary);
    font-weight: 700;
    font-size: var(--fs-lg);
    line-height: 28px;
    color: var(--c-white);
    margin-bottom: var(--sp-6);
}

.footer-column ul li {
    font-family: var(--ff-secondary);
    font-size: var(--fs-sm);
    line-height: 20px;
    color: var(--c-white);
    margin-bottom: var(--sp-3);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.footer-column ul li a {
    color: var(--c-white);
    transition: color var(--transition);
}

.footer-column ul li a:hover { color: var(--c-yellow); }

.footer-column svg { flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid var(--c-gray-700);
    padding-top: var(--sp-8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-8);
}

.footer-logo .logo-text {
    font-weight: 900;
    font-size: var(--fs-2xl);
    color: var(--c-yellow);
}

.footer-copyright {
    font-family: var(--ff-secondary);
    font-size: var(--fs-xs);
    line-height: 16px;
    color: var(--c-gray-400);
    text-align: right;
    max-width: 768px;
}

/* ===========================================
   6. RESPONSIVE DESIGN
   =========================================== */

/* --- TABLET (1024px) --- */
@media (max-width: 1024px) {
    :root {
        --fs-9xl: 72px;
        --fs-8xl: 48px;
        --fs-7xl: 40px;
        --fs-6xl: 36px;
    }

    .hero-content {
        flex-direction: column;
        padding-top: var(--sp-10);
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-title { font-size: 48px; line-height: 52px; }
    .hero-subtitle { font-size: 36px; line-height: 48px; }

    .hero-media {
        width: 100%;
        max-width: 350px;
        height: 400px;
        margin: 0 auto;
    }
    
    .hero-media .gif-media { height: 400px; }

    .proposta-container {
        flex-direction: column;
        align-items: center;
    }

    .proposta-media {
        width: 100%;
        max-width: 448px;
    }

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

    .problema-timeline {
        grid-template-columns: 1fr;
        gap: var(--sp-6);
    }

    .timeline-line { display: none; }
    .timeline-right { padding: 0; }

    .timeline-right p {
        padding: var(--sp-4);
        background: var(--c-gray-100);
        border-radius: var(--r-md);
        margin-bottom: var(--sp-2);
    }

    .comparativo-headers {
        grid-template-columns: 1fr;
        gap: var(--sp-6);
        padding: 0 var(--sp-4);
    }

    .comparativo-container {
        grid-template-columns: 1fr;
        gap: var(--sp-6);
        padding: 0 var(--sp-4);
    }

    .comparativo-column { gap: var(--sp-4); }

    .comparativo-card {
        width: 100%;
        height: auto;
        min-height: 120px;
    }

    .comparativo-timeline { display: none; }

    .section-comparativo {
        min-height: auto;
        padding: var(--sp-10) 0;
    }

    .section-protocolo .protocolo-container { padding: var(--sp-10) var(--sp-4); }
    .protocolo-intro { font-size: var(--fs-2xl); line-height: 36px; }
    .protocolo-logo { height: auto; }

    .imagine-container { flex-direction: column; }

    .imagine-media {
        width: 100%;
        max-width: 448px;
        margin: 0 auto;
    }

    .garantia-container {
        flex-direction: column;
        text-align: center;
    }

    .garantia-selo { width: 300px; height: 300px; }
    .escolha-container { grid-template-columns: 1fr; }
    .footer-columns { grid-template-columns: repeat(2, 1fr); }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .fases-timeline { padding-left: 60px; }
    .fases-line { left: 22px; }
    .fase-dot { left: -59px; width: 32px; height: 32px; }
}

/* --- MOBILE (768px) --- */
@media (max-width: 768px) {
    :root {
        --fs-9xl: 48px;
        --fs-8xl: 40px;
        --fs-7xl: 34px;
        --fs-6xl: 28px;
        --fs-5xl: 24px;
        --fs-4xl: 22px;
        --fs-3xl: 20px;
        --fs-2xl: 18px;
    }

    section {
        padding: var(--sp-12) var(--sp-5);
        overflow-x: hidden;
    }

    /* HERO */
    .section-hero {
        min-height: auto;
        padding: var(--sp-16) var(--sp-5) var(--sp-10);
        background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    }

    .hero-content {
        flex-direction: column;
        padding-top: var(--sp-8);
        gap: var(--sp-10);
        text-align: center;
    }

    .hero-text { max-width: 100%; order: 1; }

    .hero-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: var(--sp-5);
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .hero-title br { display: none; }

    .hero-subtitle {
        font-size: 28px;
        line-height: 36px;
        margin-top: var(--sp-3);
        margin-bottom: var(--sp-6);
    }

    .hero-description {
        font-size: var(--fs-xl);
        line-height: 32px;
        margin-bottom: var(--sp-6);
        font-weight: 600;
    }

    .hero-paragraph {
        font-size: var(--fs-lg);
        line-height: 28px;
        margin-bottom: var(--sp-4);
    }

    .hero-paragraph br { display: none; }

    .hero-media {
        width: 100%;
        height: auto;
        max-width: 90%;
        order: 2;
        border-radius: var(--r-2xl);
        overflow: hidden;
        box-shadow: var(--shadow-glow-yellow);
        margin: 0 auto;
    }

    .hero-media .gif-media {
        height: auto;
        width: 100%;
        object-fit: contain;
        border-radius: var(--r-2xl);
        box-shadow: none;
    }

    .hero-media .gif-placeholder {
        height: 350px;
        background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    }

    .scroll-indicator { padding: var(--sp-8) 0; }
    .scroll-indicator svg { width: 32px; height: 35px; }

    /* === PROPOSTA - Destaque Forte === */
    .section-proposta {
        min-height: auto;
        padding: var(--sp-12) var(--sp-5);
        background: var(--c-white);
    }

    .proposta-container {
        flex-direction: column;
        gap: var(--sp-10);
        align-items: center;
    }

    .proposta-media {
        width: 100%;
        height: auto;
        max-width: 85%;
        border-radius: var(--r-2xl);
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        margin: 0 auto;
    }

    .proposta-media .gif-media {
        height: auto;
        width: 100%;
        object-fit: contain;
        border-radius: var(--r-2xl);
        box-shadow: none;
    }

    .proposta-media .gif-placeholder {
        height: 320px;
        background: linear-gradient(145deg, var(--c-yellow), #e6b800);
    }

    .proposta-text {
        text-align: center;
        padding: 0 var(--sp-2);
    }

    .proposta-title {
        margin-top: var(--sp-6);
        font-size: 26px;
        line-height: 36px;
        color: var(--c-black);
        font-weight: 700;
    }

    .proposta-secret {
        font-size: var(--fs-lg);
        line-height: 28px;
        color: var(--c-yellow-dark);
        margin-top: var(--sp-6);
        padding: var(--sp-4);
        background: rgba(250, 204, 21, 0.1);
        border-radius: var(--r-lg);
        border-left: 4px solid var(--c-yellow-dark);
    }

    .proposta-question {
        font-size: 24px;
        line-height: 32px;
        margin-top: var(--sp-10);
        color: var(--c-black);
        font-weight: 800;
    }

    /* === DEPOIMENTOS - Cards Impactantes === */
    .section-depoimentos {
        min-height: auto;
        padding: var(--sp-12) var(--sp-5);
    }

    .depoimentos-title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: var(--sp-10);
        text-align: center;
        font-weight: 700;
    }

    .depoimentos-title br {
        display: none;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }

    .depoimento-card {
        max-width: 100%;
        border-radius: var(--r-xl);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    }

    .depoimento-image {
        height: 420px;
    }

    .depoimento-image img {
        object-position: center 65%;
    }

    .badge-resultado {
        font-size: var(--fs-base);
        padding: var(--sp-3) var(--sp-5);
        top: var(--sp-5);
        left: var(--sp-5);
    }

    .depoimento-content {
        padding: var(--sp-5);
    }

    .depoimento-nome {
        font-size: var(--fs-xl);
        margin-bottom: var(--sp-2);
    }

    .depoimento-texto {
        font-size: var(--fs-base);
        line-height: 24px;
    }

    /* === PROBLEMA - Urgência e Clareza === */
    .section-problema {
        padding: var(--sp-12) var(--sp-5);
    }

    .problema-title {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: var(--sp-6);
        font-weight: 700;
    }

    .problema-title br {
        display: none;
    }

    .problema-alert {
        font-size: var(--fs-lg);
        line-height: 28px;
        padding: var(--sp-5);
        background: rgba(220, 38, 38, 0.08);
        border-radius: var(--r-lg);
        margin-bottom: var(--sp-8);
        border-left: 4px solid var(--c-red);
    }

    .problema-porque {
        font-size: 28px;
        line-height: 36px;
        font-weight: 800;
        margin-bottom: var(--sp-3);
    }

    .problema-unica {
        font-size: var(--fs-xl);
        line-height: 30px;
        margin-bottom: var(--sp-10);
    }

    /* Lista do Problema - Mobile */
    .problema-lista {
        gap: var(--sp-3);
    }

    .problema-lista li {
        padding: var(--sp-4) var(--sp-5);
        gap: var(--sp-4);
        flex-direction: row;
        align-items: flex-start;
    }

    .problema-numero {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: var(--fs-lg);
    }

    .problema-texto {
        font-size: var(--fs-base);
        line-height: 24px;
    }

    /* Timeline do Problema (deprecated) - Mobile */
    .problema-timeline {
        display: flex;
        flex-direction: column;
        gap: var(--sp-4);
        max-width: 100%;
    }

    .timeline-left,
    .timeline-right {
        display: contents;
    }

    .timeline-line {
        display: none;
    }

    /* Intercalar cards e descrições */
    .timeline-card:nth-child(1) { order: 1; }
    .timeline-right p:nth-child(1) { order: 2; }
    .timeline-card:nth-child(2) { order: 3; }
    .timeline-right p:nth-child(2) { order: 4; }
    .timeline-card:nth-child(3) { order: 5; }
    .timeline-right p:nth-child(3) { order: 6; }
    .timeline-card:nth-child(4) { order: 7; }
    .timeline-right p:nth-child(4) { order: 8; }
    .timeline-card:nth-child(5) { order: 9; }
    .timeline-right p:nth-child(5) { order: 10; }

    .timeline-right p {
        background: linear-gradient(135deg, var(--c-gray-100) 0%, #e8e8e8 100%);
        padding: var(--sp-4) var(--sp-5);
        border-radius: var(--r-lg);
        font-size: var(--fs-base);
        line-height: 24px;
        margin-bottom: var(--sp-3);
        margin-left: var(--sp-6);
        position: relative;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .timeline-right p::before {
        content: '→';
        position: absolute;
        left: -20px;
        color: var(--c-yellow);
        font-weight: bold;
        font-size: var(--fs-lg);
    }

    .timeline-card {
        padding: var(--sp-5);
        border-radius: var(--r-lg);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .timeline-number {
        width: 44px;
        height: 44px;
        font-size: var(--fs-lg);
        font-weight: 800;
    }

    .timeline-card span {
        font-size: var(--fs-lg);
    }

    .problema-descoberta {
        font-size: var(--fs-xl);
        line-height: 30px;
        margin: var(--sp-10) 0 var(--sp-6);
        font-weight: 700;
    }

    .destaque-amarelo {
        padding: var(--sp-6) var(--sp-5);
        margin: var(--sp-8) calc(var(--sp-5) * -1);
        background: linear-gradient(90deg, var(--c-yellow) 0%, #f0c000 100%);
    }

    .destaque-texto {
        font-size: var(--fs-xl);
        line-height: 30px;
        font-weight: 800;
    }

    .problema-conclusao {
        font-size: var(--fs-xl);
        line-height: 30px;
        margin-top: var(--sp-8);
        font-weight: 600;
    }

    /* === PROTOCOLO - Logo Grande e Impactante === */
    .section-protocolo {
        min-height: auto;
        padding-bottom: var(--sp-6);
    }

    .protocolo-container {
        padding: var(--sp-12) var(--sp-5) var(--sp-6);
        text-align: center;
    }

    .protocolo-intro {
        font-size: var(--fs-xl);
        line-height: 30px;
        margin-bottom: var(--sp-4);
    }

    .protocolo-logo {
        height: auto;
        margin: var(--sp-6) auto;
    }

    .protocolo-logo img {
        max-width: 95%;
        margin: -80px auto;
    }

    .protocolo-title-text {
        font-size: 52px;
        line-height: 58px;
    }

    .protocolo-subtitle {
        font-size: var(--fs-lg);
        line-height: 28px;
        margin-bottom: var(--sp-4);
    }

    .protocolo-fases {
        font-size: var(--fs-lg);
        line-height: 28px;
        padding: var(--sp-4);
        background: rgba(250, 204, 21, 0.15);
        border-radius: var(--r-lg);
        display: inline-block;
    }

    /* === FASES - Cards Legíveis e Destacados === */
    .section-fases {
        padding: var(--sp-12) var(--sp-5);
    }

    .fases-timeline {
        padding-left: 45px;
    }

    .fases-line {
        left: 14px;
        width: 4px;
    }

    .fase-item {
        margin-bottom: var(--sp-8);
    }

    .fase-dot {
        left: -43px;
        width: 28px;
        height: 28px;
        border-width: 3px;
    }

    .fase-card {
        padding: var(--sp-6);
        border-radius: var(--r-xl);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .fase-header {
        flex-direction: column;
        gap: var(--sp-3);
    }

    .fase-label {
        font-size: var(--fs-sm);
        letter-spacing: 0.5px;
    }

    .fase-titulo {
        font-size: var(--fs-lg);
        line-height: 26px;
    }

    .fase-destaque-red,
    .fase-destaque-yellow {
        font-size: var(--fs-sm);
        line-height: 22px;
        margin-top: var(--sp-2);
    }

    .fase-preco {
        font-size: var(--fs-lg);
        align-self: flex-start;
        background: rgba(250, 204, 21, 0.2);
        padding: var(--sp-2) var(--sp-4);
        border-radius: var(--r-md);
        margin-top: var(--sp-2);
    }

    .fase-lista {
        padding-left: var(--sp-5);
        margin-top: var(--sp-4);
    }

    .fase-lista li {
        font-size: var(--fs-base);
        line-height: 24px;
        margin-bottom: var(--sp-2);
    }

    .fase-quote {
        font-size: var(--fs-lg);
        line-height: 26px;
        margin-top: var(--sp-5);
        padding: var(--sp-4);
        background: rgba(250, 204, 21, 0.1);
        border-radius: var(--r-md);
    }

    /* === COMPARATIVO - Side by Side Visual === */
    .section-comparativo {
        min-height: auto;
        padding: var(--sp-12) var(--sp-5);
    }

    .comparativo-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: var(--sp-4);
        font-weight: 800;
    }

    .comparativo-subtitle {
        font-size: var(--fs-lg);
        line-height: 28px;
        margin-bottom: var(--sp-8);
    }

    .comparativo-headers {
        grid-template-columns: 1fr;
        gap: var(--sp-6);
        padding: 0;
        margin-bottom: var(--sp-6);
        display: none;
    }

    .comparativo-logo-desafio,
    .comparativo-logo-protocolo {
        max-width: 180px;
        max-height: 50px;
    }

    .comparativo-container {
        grid-template-columns: 1fr;
        gap: var(--sp-10);
        padding: 0;
    }

    .comparativo-column {
        gap: var(--sp-4);
    }

    .comparativo-column.desafio::before {
        content: '❌ Apenas com o Desafio';
        display: block;
        font-family: var(--ff-primary);
        font-weight: 800;
        font-size: var(--fs-xl);
        color: #db6e00;
        text-align: center;
        margin-bottom: var(--sp-5);
        padding: var(--sp-4);
        background: rgba(219, 110, 0, 0.1);
        border-radius: var(--r-lg);
    }

    .comparativo-column.protocolo::before {
        content: '✓ Com Protocolo 10X';
        display: block;
        font-family: var(--ff-primary);
        font-weight: 800;
        font-size: var(--fs-xl);
        color: var(--c-yellow);
        text-align: center;
        margin-bottom: var(--sp-5);
        padding: var(--sp-4);
        background: rgba(250, 204, 21, 0.15);
        border-radius: var(--r-lg);
    }

    .comparativo-card {
        width: 100%;
        height: auto;
        min-height: 100px;
        padding: var(--sp-5);
        border-radius: var(--r-xl);
    }

    .comparativo-label {
        font-size: var(--fs-lg);
        margin-bottom: var(--sp-2);
    }

    .comparativo-value {
        font-size: 28px;
        margin-top: var(--sp-3);
        font-weight: 900;
    }

    .comparativo-timeline {
        display: none;
    }

    /* === IMAGINE - Versão Premium Mobile === */
    .section-imagine {
        padding: var(--sp-16) var(--sp-5);
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #f0f2f5 100%);
        position: relative;
        overflow: hidden;
    }

    /* Decorative element */
    .section-imagine::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--c-yellow), var(--c-green), var(--c-yellow));
    }

    .imagine-container {
        flex-direction: column;
        gap: var(--sp-12);
    }

    .imagine-media {
        width: 100%;
        height: auto;
        max-width: 85%;
        order: 1;
        border-radius: var(--r-2xl);
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        margin: 0 auto;
    }

    .imagine-media .gif-media {
        height: auto;
        width: 100%;
        object-fit: contain;
    }

    .imagine-media .gif-placeholder {
        height: 320px;
        background: linear-gradient(145deg, #fefefe 0%, #f5f5f5 100%);
    }

    .imagine-content {
        order: 2;
        padding: 0;
    }

    .imagine-title {
        font-size: 32px;
        line-height: 42px;
        text-align: center;
        font-weight: 800;
        margin-bottom: var(--sp-10);
        color: var(--c-black);
        letter-spacing: -0.02em;
    }

    .imagine-title .text-gold {
        display: block;
        font-size: 36px;
        margin-top: var(--sp-3);
        background: linear-gradient(135deg, var(--c-yellow) 0%, #e6b800 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .imagine-lista {
        margin-bottom: var(--sp-10);
        padding: 0;
        list-style: none;
    }

    .imagine-lista li {
        font-size: var(--fs-lg);
        line-height: 28px;
        margin-bottom: var(--sp-5);
        padding: var(--sp-5) var(--sp-6);
        background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
        border-radius: var(--r-xl);
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        color: var(--c-gray-700);
        display: block;
        position: relative;
        padding-left: 56px;
    }

    .imagine-lista li strong {
        color: var(--c-black);
        font-weight: 700;
    }

    .imagine-lista .check {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        font-size: 16px;
        background: linear-gradient(135deg, var(--c-green) 0%, #22c55e 100%);
        color: white;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(74, 222, 128, 0.4);
    }

    .imagine-destaque {
        padding: var(--sp-8);
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        border-radius: 24px;
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    }

    .imagine-destaque::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--c-yellow), transparent, var(--c-yellow));
    }

    .imagine-destaque-titulo {
        font-size: var(--fs-xl);
        line-height: 30px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: var(--sp-4);
        font-weight: 500;
    }

    .imagine-destaque-texto {
        font-size: 24px;
        line-height: 32px;
        font-weight: 800;
        background: linear-gradient(135deg, var(--c-yellow) 0%, #ffd700 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* === INVESTIMENTO - Tabela Clara === */
    .section-investimento {
        padding: var(--sp-12) var(--sp-5);
    }

    .investimento-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: var(--sp-8);
    }

    .investimento-tabela {
        margin-bottom: var(--sp-8);
    }

    .investimento-row {
        flex-direction: column;
        gap: var(--sp-2);
        margin-bottom: var(--sp-4);
    }

    .investimento-item {
        margin-right: 0;
        font-size: var(--fs-lg);
        padding: var(--sp-4) var(--sp-5);
        border-radius: var(--r-lg);
    }

    .investimento-valor {
        min-width: auto;
        font-size: 24px;
        line-height: 32px;
        padding: var(--sp-3) var(--sp-5);
        border-radius: var(--r-lg);
    }

    .investimento-total {
        padding: var(--sp-6);
        margin-bottom: var(--sp-8);
        border-radius: var(--r-xl);
    }

    .investimento-total p {
        font-size: 26px;
        line-height: 36px;
    }

    .investimento-mensagem {
        font-size: 26px;
        line-height: 34px;
        font-weight: 900;
    }

    /* === PREÇO - CTA Super Destacado === */
    .section-preco {
        padding: var(--sp-16) var(--sp-5);
        background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .preco-titulo {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: var(--sp-6);
        font-weight: 700;
        text-align: center;
        width: 100%;
    }

    .preco-container {
        flex-direction: column;
        gap: var(--sp-2);
        margin-bottom: var(--sp-5);
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .preco-parcelas {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }

    .preco-valor {
        font-size: 60px;
        line-height: 1.1;
        font-weight: 900;
        text-align: center;
    }

    .preco-avista {
        font-size: var(--fs-xl);
        line-height: 28px;
        margin-bottom: var(--sp-8);
        text-align: center;
        width: 100%;
    }

    .cta-button {
        font-size: var(--fs-xl);
        padding: var(--sp-6) var(--sp-8);
        width: 100%;
        line-height: 30px;
        border-radius: var(--r-xl);
        font-weight: 800;
        box-shadow: 0 8px 30px rgba(74, 222, 128, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* === GARANTIA - Selo Grande e Confiável === */
    .section-garantia {
        padding: var(--sp-12) var(--sp-5);
    }

    .garantia-container {
        flex-direction: column;
        text-align: center;
        gap: var(--sp-8);
    }

    .garantia-selo {
        width: 220px;
        height: 220px;
        margin: 0 auto;
    }

    .selo-placeholder span {
        font-size: 72px;
    }

    .selo-placeholder small {
        font-size: var(--fs-xl);
    }

    .garantia-titulo {
        font-size: 30px;
        line-height: 38px;
    }

    .garantia-subtitulo {
        font-size: var(--fs-xl);
        line-height: 30px;
    }

    .garantia-texto {
        font-size: var(--fs-lg);
        line-height: 28px;
    }

    /* === ESCOLHA - Contraste Máximo === */
    .section-escolha {
        padding: var(--sp-12) var(--sp-5);
    }

    .escolha-titulo {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: var(--sp-10);
        font-weight: 800;
    }

    .escolha-container {
        grid-template-columns: 1fr;
        gap: var(--sp-10);
    }

    .escolha-opcao {
        gap: var(--sp-5);
    }

    .escolha-media {
        border-width: 3px;
        border-radius: var(--r-xl);
        overflow: hidden;
    }

    .escolha-media .gif-media {
        height: auto;
        max-height: 320px;
        object-fit: contain;
    }

    .escolha-media .gif-placeholder {
        height: 280px;
    }

    .escolha-card {
        padding: var(--sp-6);
        border-radius: var(--r-xl);
    }

    .escolha-card h3 {
        font-size: var(--fs-xl);
        line-height: 28px;
        margin-bottom: var(--sp-5);
    }

    .escolha-card ul li {
        font-size: var(--fs-base);
        line-height: 24px;
        margin-bottom: var(--sp-3);
    }

    .x-mark, .check-mark {
        font-size: var(--fs-lg);
    }

    .escolha-pergunta {
        font-size: 24px;
        line-height: 32px;
        margin-top: var(--sp-8);
        font-weight: 800;
    }

    /* === BANNER ALERTA - Urgência === */
    .banner-alerta {
        padding: var(--sp-6) var(--sp-5);
        background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
    }

    .banner-alerta p {
        font-size: var(--fs-xl);
        line-height: 28px;
        font-weight: 900;
    }

    /* === FINAL - Fechamento Emocional === */
    .section-final {
        padding: var(--sp-16) var(--sp-5);
    }

    .final-titulo {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: var(--sp-4);
    }

    .final-subtitulo {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: var(--sp-6);
    }

    .final-texto {
        font-size: var(--fs-lg);
        line-height: 28px;
        margin-bottom: var(--sp-4);
    }

    .final-destaque {
        font-size: 24px;
        line-height: 34px;
        margin: var(--sp-10) 0;
        padding: var(--sp-5);
        background: rgba(220, 38, 38, 0.1);
        border-radius: var(--r-xl);
    }

    .final-frase {
        font-size: var(--fs-xl);
        line-height: 30px;
        margin-top: var(--sp-10);
    }

    /* === FOOTER === */
    .footer {
        padding: var(--sp-12) var(--sp-5);
    }

    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-8);
    }

    .footer-column h4 {
        font-size: var(--fs-base);
        margin-bottom: var(--sp-4);
    }

    .footer-column ul li {
        font-size: var(--fs-base);
        margin-bottom: var(--sp-3);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--sp-6);
        text-align: center;
        margin-top: var(--sp-8);
    }

    .footer-logo .logo-text {
        font-size: 22px;
    }

    .footer-copyright {
        text-align: center;
        font-size: 12px;
        line-height: 20px;
    }

    /* GIF Placeholder */
    .gif-placeholder {
        min-height: 250px;
    }

    .gif-placeholder span {
        font-size: var(--fs-lg);
    }

    /* Touch Interactions - Feedback tátil */
    .cta-button:active {
        transform: scale(0.97);
        box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
    }

    .cta-button {
        animation: pulse-mobile 2.5s infinite;
    }

    @keyframes pulse-mobile {
        0%, 100% { transform: scale(1); box-shadow: 0 8px 30px rgba(74, 222, 128, 0.4); }
        50% { transform: scale(1.02); box-shadow: 0 12px 40px rgba(74, 222, 128, 0.5); }
    }

    /* Prevenção de scroll horizontal */
    html, body {
        overflow-x: hidden;
    }
}

/* ============================================
   SMALL MOBILE (max-width: 480px)
   Mantém impacto visual em telas menores
   ============================================ */
@media (max-width: 480px) {
    section {
        padding: var(--sp-10) var(--sp-4);
    }

    /* === HERO === */
    .hero-title {
        font-size: 30px;
        line-height: 38px;
    }

    .hero-subtitle {
        font-size: 24px;
        line-height: 32px;
    }

    .hero-description {
        font-size: var(--fs-lg);
    }

    .hero-media {
        height: auto;
        max-width: 95%;
    }

    .hero-media .gif-media {
        height: auto;
        width: 100%;
        border-radius: 30px;
    }

    .hero-media .gif-placeholder {
        height: 300px;
    }

    /* === PROPOSTA === */
    .proposta-media {
        max-width: 95%;
        height: auto;
    }

    .proposta-media .gif-media {
        height: auto;
        width: 100%;
    }

    .proposta-title {
        font-size: 24px;
        line-height: 34px;
        color: var(--c-black);
    }

    .proposta-question {
        font-size: 22px;
        color: var(--c-black);
    }

    /* === DEPOIMENTOS === */
    .depoimento-image {
        height: 380px;
    }

    .depoimentos-title {
        font-size: 22px;
        line-height: 32px;
    }

    /* === PROBLEMA === */
    .problema-title {
        font-size: 24px;
        line-height: 34px;
    }

    .problema-porque {
        font-size: 26px;
    }

    .destaque-texto {
        font-size: var(--fs-lg);
        line-height: 28px;
    }

    /* === PROTOCOLO === */
    .protocolo-title-text {
        font-size: 44px;
        line-height: 50px;
    }

    .protocolo-logo img {
        margin: -60px auto;
    }

    /* === FASES === */
    .fase-card {
        padding: var(--sp-5);
    }

    .fase-titulo {
        font-size: var(--fs-base);
    }

    /* === COMPARATIVO === */
    .comparativo-title {
        font-size: 24px;
        line-height: 32px;
    }

    .comparativo-value {
        font-size: 24px;
    }

    /* === IMAGINE === */
    .imagine-media {
        height: auto;
        max-width: 95%;
    }

    .imagine-media .gif-media {
        height: auto;
        width: 100%;
    }

    .imagine-title {
        font-size: 28px;
        line-height: 38px;
    }

    .imagine-title .text-gold {
        font-size: 32px;
    }

    .imagine-destaque-texto {
        font-size: 22px;
    }

    /* === INVESTIMENTO === */
    .investimento-title {
        font-size: 22px;
    }

    .investimento-total p {
        font-size: 24px;
        line-height: 32px;
    }

    .investimento-mensagem {
        font-size: 24px;
        line-height: 32px;
    }

    /* === PREÇO === */
    .preco-titulo {
        font-size: 26px;
        line-height: 34px;
    }

    .preco-valor {
        font-size: 52px;
    }

    /* === GARANTIA === */
    .garantia-selo {
        width: 200px;
        height: 200px;
    }

    .selo-placeholder span {
        font-size: 64px;
    }

    .garantia-titulo {
        font-size: 28px;
        line-height: 36px;
    }

    /* === ESCOLHA === */
    .escolha-titulo {
        font-size: 24px;
    }

    .escolha-media .gif-media {
        height: auto;
        max-height: 280px;
    }

    .escolha-media .gif-placeholder {
        height: 260px;
    }

    .escolha-pergunta {
        font-size: 22px;
    }

    /* === FINAL === */
    .final-titulo {
        font-size: 26px;
    }

    .final-destaque {
        font-size: 22px;
        line-height: 32px;
    }

    /* === CTA === */
    .cta-button {
        font-size: var(--fs-lg);
        padding: var(--sp-5) var(--sp-6);
    }

    /* === FOOTER === */
    .footer-columns {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }
}

/* ============================================
   EXTRA SMALL (max-width: 374px)
   Dispositivos muito pequenos - mantém legibilidade
   ============================================ */
@media (max-width: 374px) {
    section {
        padding: var(--sp-8) var(--sp-3);
    }

    /* === HERO === */
    .hero-title {
        font-size: 26px;
        line-height: 34px;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .hero-description {
        font-size: var(--fs-base);
    }

    .hero-media {
        height: auto;
        max-width: 100%;
    }

    .hero-media .gif-media {
        height: auto;
        width: 100%;
    }

    /* === PROPOSTA === */
    .proposta-title {
        font-size: 22px;
        line-height: 32px;
        color: var(--c-black);
    }

    .proposta-question {
        font-size: 20px;
        color: var(--c-black);
    }

    /* === DEPOIMENTOS === */
    .depoimentos-title {
        font-size: 20px;
        line-height: 30px;
    }

    .depoimento-image {
        height: 340px;
    }

    /* === PROBLEMA === */
    .problema-title {
        font-size: 22px;
        line-height: 32px;
    }

    .problema-porque {
        font-size: 24px;
    }

    .destaque-texto {
        font-size: var(--fs-base);
        line-height: 26px;
    }

    /* === PROTOCOLO === */
    .protocolo-title-text {
        font-size: 38px;
        line-height: 44px;
    }

    .protocolo-intro {
        font-size: var(--fs-lg);
    }

    /* === COMPARATIVO === */
    .comparativo-title {
        font-size: 22px;
    }

    .comparativo-value {
        font-size: 22px;
    }

    /* === IMAGINE === */
    .imagine-title {
        font-size: 26px;
        line-height: 34px;
    }

    .imagine-title .text-gold {
        font-size: 28px;
    }

    .imagine-destaque-texto {
        font-size: 20px;
    }

    /* === INVESTIMENTO === */
    .investimento-total p {
        font-size: 22px;
    }

    .investimento-mensagem {
        font-size: 22px;
    }

    /* === PREÇO === */
    .preco-titulo {
        font-size: 24px;
    }

    .preco-valor {
        font-size: 44px;
    }

    /* === GARANTIA === */
    .garantia-selo {
        width: 180px;
        height: 180px;
    }

    .selo-placeholder span {
        font-size: 56px;
    }

    .garantia-titulo {
        font-size: 26px;
        line-height: 34px;
    }

    /* === ESCOLHA === */
    .escolha-titulo {
        font-size: 22px;
    }

    .escolha-pergunta {
        font-size: 20px;
    }

    /* === FINAL === */
    .final-titulo {
        font-size: 24px;
    }

    .final-destaque {
        font-size: 20px;
        line-height: 30px;
    }

    /* === CTA === */
    .cta-button {
        font-size: var(--fs-base);
        padding: var(--sp-5) var(--sp-4);
    }
}

/* ===========================================
   7. ANIMATIONS
   =========================================== */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse-mobile {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-glow-green); }
    50% { transform: scale(1.02); box-shadow: 0 12px 40px rgba(74,222,128,.5); }
}

/* CTA Animation */
.cta-button { animation: pulse 2s infinite; }
.cta-button:hover { animation: none; }

/* Scroll Reveal */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


