/* =================================
   RESET E VARIÁVEIS
   ================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores base - novo sistema */
    --bg1: #061a2f;         /* azul profundo */
    --bg2: #08294a;
    --card: rgba(255,255,255,.06);
    --card2: rgba(255,255,255,.08);
    --stroke: rgba(255,255,255,.10);
    --text: rgba(255,255,255,.92);
    --muted: rgba(255,255,255,.70);
    --accent: #ff8a1e;      /* laranja */
    --accent2: #ffb04a;
    --shadow: 0 18px 50px rgba(0,0,0,.35);
    --radius: 18px;
    --max: 1100px;
    
    /* Cores legadas (manter compatibilidade) */
    --blue-dark: #001d3a;
    --blue-medium: #00234d;
    --blue-deep: #0c223b;
    --orange-primary: #FF6F00;
    --orange-glow: #ff6600;
    --purple-accent: #6B4EFF;
    --white: #FFFFFF;
    
    /* Tipografia */
    --font-primary: system-ui, -apple-system, Segoe UI, Inter, Roboto, Arial, sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.75rem;
    --spacing-sm: 1.25rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4.5rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    background:
        radial-gradient(1200px 700px at 20% 0%, rgba(0,140,255,.18), transparent 55%),
        radial-gradient(900px 600px at 80% 20%, rgba(255,138,30,.12), transparent 60%),
        linear-gradient(180deg, var(--bg2), var(--bg1));
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 32px);
    }
}

/* =================================
   TIPOGRAFIA
   ================================= */

h1, h2, h3 {
    letter-spacing: -.02em;
    margin: 0 0 14px;
    line-height: 1.1;
}

p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.6;
    text-wrap: pretty;
    overflow-wrap: break-word;
    hyphens: manual;
}

h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
    overflow-wrap: break-word;
}

/* Tipografia aprimorada para elementos específicos */
.headline,
.section-title,
.subheadline,
.support-text,
.section-text,
.product-description,
.context-text,
.comparison-intro,
.reinforcement-text,
.enemy-text,
.logic-proof,
.credibility-text,
.execution-reinforcement,
.consistency-phrase,
.transition-text,
.statement-text,
.objection-text,
.checkout-subtitle,
.checkout-value-statement,
.checkout-reinforcement {
    text-wrap: pretty;
    overflow-wrap: break-word;
    hyphens: manual;
}

.small {
    font-size: .92rem;
    color: var(--muted);
}

.headline {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 2rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -.02em;
}

.support-text {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.subheadline {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -.02em;
}

.section-text {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.highlight {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 138, 30, 0.5);
}

/* =================================
   SECTIONS E ESPAÇAMENTO
   ================================= */

section {
    padding: 56px 0;
}

@media (max-width: 640px) {
    .hero {
        padding: 48px 0 24px;
    }
    
    section {
        padding: 28px 0;
    }
}

/* =================================
   GLASS MORPHISM CARDS E UTILITÁRIOS
   ================================= */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: var(--card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card {
    background: linear-gradient(180deg, var(--card2), var(--card));
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card p,
.card h3,
.card h4,
.card li {
    text-wrap: pretty;
    overflow-wrap: break-word;
}

.grid {
    display: grid;
    gap: 18px;
}

.glass-card {
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.glass-card p,
.glass-card h3,
.glass-card h4,
.glass-card li {
    text-wrap: pretty;
    overflow-wrap: break-word;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius);
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 138, 30, 0.6), rgba(255, 176, 74, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

/* =================================
   SEÇÃO 1 - HERO
   ================================= */

.hero {
    background: transparent;
    color: var(--white);
    padding: 100px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Glow central pulsante */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 138, 30, 0.2) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

/* =================================
   BLOCO DE IMPACTO - APÓS HERO
   ================================= */

.impact-block {
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, 
        rgba(255, 111, 0, 0.15) 0%, 
        rgba(107, 78, 255, 0.12) 100%
    );
    border-top: 3px solid rgba(255, 138, 30, 0.5);
    border-bottom: 3px solid rgba(107, 78, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.impact-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 138, 30, 0.2), transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(107, 78, 255, 0.15), transparent 40%);
    pointer-events: none;
    animation: glow-shift 6s ease-in-out infinite alternate;
}

@keyframes glow-shift {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.impact-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 48px 24px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.impact-text .no-break {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .impact-block {
        border-width: 2px;
    }
    
    .impact-text {
        font-size: 1.25rem;
        padding: 36px 20px;
        line-height: 1.6;
    }
}

@media (max-width: 520px) {
    .impact-text {
        font-size: 1.125rem;
        padding: 32px 18px;
        font-weight: 600;
    }
}

/* =================================
   SEÇÃO PRODUTO SHOWCASE
   ================================= */

.product-showcase {
    padding: 32px 0 24px;
    background: transparent;
    text-align: center;
}

.context-text {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.product-mockup {
    max-width: 800px;
    margin: 0 auto 48px;
    padding: 0 20px;
    position: relative;
}

.digital-icon {
    position: absolute;
    bottom: 25px;
    right: 45px;
    width: 48px;
    height: 48px;
    color: #ff8a1e;
    opacity: 0.85;
    filter: drop-shadow(0 4px 12px rgba(255, 138, 30, 0.6));
    animation: pulse-digital 2.5s ease-in-out infinite;
}

@keyframes pulse-digital {
    0%, 100% {
        opacity: 0.85;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@media (max-width: 768px) {
    .digital-icon {
        width: 36px;
        height: 36px;
        bottom: 20px;
        right: 30px;
        opacity: 0.9;
    }
}

.format-info {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 32px;
    padding: 0 20px;
}

.mockup-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    will-change: transform;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@media (min-width: 769px) {
    .product-mockup {
        max-width: 750px;
    }
}

.product-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.product-description {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
    max-width: 680px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.logic-proof {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-style: italic;
    max-width: 680px;
    margin: 1.5rem auto;
    padding: 0 20px;
}

.break-desktop {
    display: none;
}

@media (min-width: 769px) {
    .break-desktop {
        display: inline;
    }
}

.product-tagline {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--accent);
    margin: 0;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .product-showcase {
        padding: 20px 0 20px;
    }
    
    .product-mockup {
        margin-bottom: 24px;
        padding: 0 8px;
    }

    .mockup-image {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .product-title {
        font-size: 1.625rem;
        margin-bottom: 16px;
    }
    
    .product-description {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 14px;
        padding: 0 16px;
    }
    
    .product-tagline {
        font-size: 1.125rem;
    }

    /* Layout dos bullets 30/30/15min - Mobile */
    .features-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 400px;
    }

    .feature-item:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 180px;
        margin: 0 auto;
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.4; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1); 
        opacity: 0.7; 
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero .headline {
    color: var(--white);
    text-shadow: 0 0 30px rgba(255, 138, 30, 0.3);
}

.hero .subheadline {
    color: rgba(255, 255, 255, 0.9);
}

.bullet-box {
    background: var(--card2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid var(--stroke);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow);
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bullet-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius);
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 138, 30, 0.8), rgba(255, 176, 74, 0.6));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    text-align: left;
    color: var(--text);
}

.bullet-item:last-child {
    margin-bottom: 0;
}

.bullet-icon {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(255, 138, 30, 0.6));
}

/* =================================
   BOTÕES CTA
   ================================= */

.btn,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    color: #0a1a2c;
    font-size: 1.125rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(180deg, var(--accent2), var(--accent));
    box-shadow: 0 16px 40px rgba(255,138,30,.25);
    transition: transform .12s ease, filter .12s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -.02em;
    position: relative;
    overflow: hidden;
}

.btn::before,
.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover,
.cta-button:hover {
    transform: translateY(-1px);
    filter: saturate(1.05);
}

.btn:hover::before,
.cta-button:hover::before {
    opacity: 1;
}

.btn:active,
.cta-button:active {
    transform: translateY(0px);
}

.cta-large {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

/* =================================
   BLOCO DE TRANSIÇÃO
   ================================= */

.transition-block {
    padding: 4.5rem 0;
    background: rgba(12, 34, 59, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 2px solid rgba(255, 138, 30, 0.4);
    border-bottom: 2px solid rgba(255, 138, 30, 0.4);
    text-align: center;
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.2);
}

.transition-text {
    font-size: 1.625rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 700;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 24px;
    letter-spacing: -0.015em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .transition-block {
        padding: 3rem 0;
    }
    
    .transition-text {
        font-size: 1.25rem;
        line-height: 1.5;
        padding: 0 20px;
    }
}

/* =================================
   SEÇÃO 2 - PROBLEMA REAL
   ================================= */

.problem {
    padding: var(--spacing-lg) 0;
    background: transparent;
    position: relative;
}

.comparison-intro {
    font-size: 1.125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-style: italic;
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 0 20px;
    text-align: center;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 2.5rem;
}

.comparison-card {
    background: linear-gradient(180deg, var(--card2), var(--card));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--stroke);
    border-radius: var(--radius);
    padding: var(--spacing-md);
    text-align: left;
    box-shadow: var(--shadow);
    color: var(--text);
    position: relative;
}

/* Micro-rótulos */
.comparison-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

/* Ajuste sutil de contraste entre cards */
.comparison-card.negative {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.comparison-card.negative .comparison-label {
    color: rgba(255, 255, 255, 0.5);
}

.comparison-card.positive {
    background: linear-gradient(180deg, rgba(255,138,30,.12), rgba(255,138,30,.06));
    border: 2px solid rgba(255, 138, 30, 0.4);
    box-shadow: 
        var(--shadow),
        0 0 30px rgba(255, 138, 30, 0.2);
}

.comparison-card.positive .comparison-label {
    color: rgba(255, 176, 74, 0.9);
}

.comparison-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: -.02em;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card ul li {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--muted);
    text-wrap: pretty;
    overflow-wrap: break-word;
}

.comparison-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--muted);
}

.comparison-card.negative ul li:before {
    color: rgba(255, 255, 255, 0.3);
}

.comparison-card.positive {
    background: linear-gradient(180deg, rgba(255,138,30,.12), rgba(255,138,30,.06));
    border: 2px solid rgba(255, 138, 30, 0.4);
    box-shadow: 
        var(--shadow),
        0 0 30px rgba(255, 138, 30, 0.2);
}

.comparison-card.positive::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius);
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 138, 30, 0.8), rgba(255, 176, 74, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
}

.comparison-card.positive h3 {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 138, 30, 0.5);
}

.comparison-card.positive ul li:before {
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(255, 138, 30, 0.6));
}

/* =================================
   SEÇÃO 3 - SOLUÇÃO
   ================================= */

.solution {
    padding: var(--spacing-xl) 0;
    background: #FFFFFF;
    color: #000000;
    position: relative;
}

.solution .section-title {
    color: #000000;
    text-shadow: none;
}

.solution .section-text {
    color: #000000;
}

.solution .section-text strong {
    color: #000000;
}

.solution .highlight {
    color: #061a2f;
    text-shadow: none;
}

.enemy-text {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #000000;
    font-weight: 500;
    max-width: 680px;
    margin: 1.5rem auto;
    padding: 0 20px;
    text-align: center;
}

.reinforcement-text {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #000000;
    font-weight: 500;
    font-style: italic;
    max-width: 680px;
    margin: 1.5rem auto;
    padding: 0 20px;
    text-align: center;
}

.features-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 650px;
    margin: 0 auto;
    margin-top: 2.5rem;
}

.feature-item {
    background: #FFFFFF;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 2px solid #08294a;
    border-radius: var(--radius);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: 0 4px 16px rgba(8, 41, 74, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.feature-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    box-shadow: 0 0 30px rgba(8, 41, 74, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(8, 41, 74, 0.25);
}

.feature-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #061a2f;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.feature-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
}

/* =================================
   SEÇÃO 4 - COMO FUNCIONA
   ================================= */

.how-it-works {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    background: transparent;
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(12, 34, 59, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 138, 30, 0.5);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 
        0 8px 32px rgba(255, 138, 30, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 
        0 8px 32px rgba(255, 138, 30, 0.4),
        0 0 20px rgba(255, 138, 30, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(255, 138, 30, 0.6);
}

.step-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    flex: 1;
    text-wrap: pretty;
    overflow-wrap: break-word;
}

.consistency-phrase {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFFFFF !important;
    margin: 2.5rem auto 0;
    padding: 0 20px;
    max-width: 800px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.9),
        0 0 30px rgba(255, 255, 255, 0.6),
        0 0 50px rgba(255, 255, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.credibility-text {
    max-width: 680px;
    margin: 1.75rem auto 0;
    padding: 0 24px;
    text-align: center;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.execution-reinforcement {
    max-width: 680px;
    margin: 1.5rem auto 0;
    padding: 0 24px;
    text-align: center;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-style: italic;
}

@media (max-width: 768px) {
    .consistency-phrase {
        font-size: 1.125rem;
        letter-spacing: 0.05em;
        margin-top: 2rem;
    }
    
    .credibility-text {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-top: 1.5rem;
        padding: 0 20px;
    }
    
    .execution-reinforcement {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-top: 1.25rem;
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .how-it-works {
        padding: var(--spacing-lg) 0 var(--spacing-sm);
    }
}

/* =================================
   SEÇÃO 5 - PARA QUEM É
   ================================= */

.target-audience {
    padding: var(--spacing-md) 0 var(--spacing-xl);
    background: transparent;
    color: var(--white);
}

.target-audience .section-title {
    color: var(--white);
}

@media (max-width: 640px) {
    .target-audience {
        padding: var(--spacing-sm) 0 var(--spacing-xl);
    }
}

.checklist {
    max-width: 550px;
    margin: 0 auto;
    margin-bottom: 2.5rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(12, 34, 59, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 138, 30, 0.4);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 
        0 4px 16px rgba(255, 138, 30, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-wrap: pretty;
    overflow-wrap: break-word;
}

.check-item span:not(.check-icon) {
    text-wrap: pretty;
    overflow-wrap: break-word;
}

.check-item:hover {
    transform: translateX(10px);
    box-shadow: 
        0 8px 32px rgba(255, 138, 30, 0.4),
        0 0 20px rgba(255, 138, 30, 0.3);
}

.check-icon {
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 138, 30, 0.6);
}

.not-for {
    background: rgba(12, 34, 59, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 138, 30, 0.8);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 
        0 8px 32px rgba(255, 138, 30, 0.4),
        0 0 30px rgba(255, 138, 30, 0.3);
}

.not-for p {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

/* =================================
   SUBSEÇÃO - VALIDAÇÃO VISUAL
   ================================= */

.visual-validation {
    background: linear-gradient(180deg, 
        rgba(6, 26, 47, 0.4) 0%,
        rgba(8, 41, 74, 0.6) 50%,
        rgba(6, 26, 47, 0.4) 100%
    );
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

/* Fade lateral discreto premium */
.visual-validation::before,
.visual-validation::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    pointer-events: none;
    z-index: 3;
}

.visual-validation::before {
    left: 0;
    background: linear-gradient(90deg, 
        #061a2f 0%, 
        rgba(6, 26, 47, 0.85) 20%,
        rgba(6, 26, 47, 0.4) 60%, 
        rgba(6, 26, 47, 0) 100%);
}

.visual-validation::after {
    right: 0;
    background: linear-gradient(270deg, 
        #061a2f 0%, 
        rgba(6, 26, 47, 0.85) 20%,
        rgba(6, 26, 47, 0.4) 60%, 
        rgba(6, 26, 47, 0) 100%);
}

.validation-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.validation-subtext {
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Container do carrossel horizontal */
.validation-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0 8rem 1rem 8rem;
    position: relative;
    z-index: 1;
}

/* Ocultar scrollbar mas manter funcionalidade */
.validation-grid::-webkit-scrollbar {
    height: 0;
    width: 0;
    display: none;
}

.validation-grid {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Imagens do carrossel */
.validation-image {
    position: relative;
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 320px;
    max-width: 380px;
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(12, 34, 59, 0.3);
}

.validation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.validation-image:hover img {
    transform: scale(1.02);
}

/* =================================
   SEÇÃO 6 - O QUE VOCÊ RECEBE
   ================================= */

/* =================================
   DIVISOR DE SEÇÃO
   ================================= */

.section-divider {
    width: 100%;
    max-width: 800px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 138, 30, 0.6) 20%,
        rgba(255, 138, 30, 0.6) 80%,
        transparent 100%
    );
    margin: 0 auto 2.5rem;
    box-shadow: 0 0 20px rgba(255, 138, 30, 0.4);
}

@media (max-width: 768px) {
    .section-divider {
        margin: 0 auto 2rem;
        max-width: 90%;
    }
}

/* =================================
   SEÇÃO 6 - O QUE VOCÊ RECEBE
   ================================= */

.what-you-get {
    padding: 5rem 0 var(--spacing-xl);
    background: linear-gradient(180deg, 
        rgba(12, 34, 59, 0.2) 0%, 
        transparent 100%
    );
    border-top: 1px solid rgba(255, 138, 30, 0.15);
    position: relative;
}

.what-you-get::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, 
        rgba(255, 138, 30, 0.08) 0%, 
        transparent 100%
    );
    pointer-events: none;
}

@media (max-width: 768px) {
    .what-you-get {
        padding: 3.5rem 0 2.5rem;
    }
    
    .what-you-get::before {
        height: 60px;
    }
}

.deliverables {
    max-width: 600px;
    margin: 0 auto;
}

.deliverable-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(12, 34, 59, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 138, 30, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 
        0 4px 16px rgba(255, 138, 30, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.deliverable-item:hover {
    transform: translateX(10px);
    box-shadow: 
        0 8px 32px rgba(255, 138, 30, 0.4),
        0 0 20px rgba(255, 138, 30, 0.3);
}

.deliverable-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(255, 138, 30, 0.4));
}

/* =================================
   QUEBRA DE OBJEÇÃO
   ================================= */

.objection-breaker {
    padding: 4rem 0;
    background: transparent;
    text-align: center;
}

.objection-title {
    font-size: 2.25rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 800;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 24px;
    text-transform: none;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

@media (max-width: 768px) {
    .objection-breaker {
        padding: 3rem 0;
    }
    
    .objection-title {
        font-size: 1.5rem;
        line-height: 1.35;
        padding: 0 20px;
    }
}

.checkout-reinforcement {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 400;
    font-style: italic;
    max-width: 520px;
    margin: 1.5rem auto 2rem;
    padding: 0 20px;
    text-align: center;
}

.checkout-digital-note {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #6c757d;
    font-weight: 500;
    text-align: center;
    max-width: 400px;
    margin: 1rem auto 1.5rem;
    padding: 0 20px;
}

.checkout-value-statement {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 400;
    max-width: 480px;
    margin: 1.25rem auto 0;
    padding: 0 20px;
    text-align: center;
}

/* =================================
   SEÇÃO 7 - OFERTA
   ================================= */

.offer {
    padding: var(--spacing-xl) 0;
    background: transparent;
    color: var(--white);
    text-align: center;
    position: relative;
}

.offer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 138, 30, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.offer .container {
    position: relative;
    z-index: 1;
}

.offer .section-title {
    color: var(--white);
}

.offer-text {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.9);
}

.price-box {
    margin: var(--spacing-md) 0;
    background: rgba(12, 34, 59, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 3px solid var(--accent);
    border-radius: 24px;
    padding: var(--spacing-sm);
    display: inline-block;
    box-shadow: 
        0 8px 32px rgba(255, 138, 30, 0.5),
        0 0 50px rgba(255, 138, 30, 0.4);
}

.currency {
    font-size: 2rem;
    font-weight: 600;
    vertical-align: super;
    color: var(--white);
}

.price {
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 138, 30, 0.7);
}

.guarantee {
    margin-top: var(--spacing-sm);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* =================================
   SEÇÃO 8 - RODAPÉ
   ================================= */

.footer {
    padding: 48px 0 32px;
    background: #061a2f;
    color: rgba(255, 255, 255, 0.9);
    border-top: none;
}

.footer .container {
    max-width: 1100px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 16px;
    display: block;
}

.footer-company {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 8px 0;
    letter-spacing: 0.01em;
}

.footer-cnpj {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    font-weight: 400;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact:hover {
    color: rgba(255, 255, 255, 0.95);
}

.footer-contact svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 32px 0 24px;
}

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

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 12px 0;
    font-weight: 400;
}

.footer-disclaimer {
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .steps {
        max-width: 100%;
        gap: 1rem;
    }
    
    .step {
        padding: 1.25rem 1.5rem;
        gap: 1.25rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-text {
        font-size: 1rem;
    }
    
    .footer {
        padding: 40px 0 28px;
    }
    
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
        margin-bottom: 28px;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .footer-logo {
        width: 140px;
        margin-bottom: 12px;
    }
    
    .footer-divider {
        margin: 24px 0 20px;
    }
    
    .footer-company {
        font-size: 0.9375rem;
    }
    
    .footer-cnpj,
    .footer-contact {
        font-size: 0.8125rem;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .footer-disclaimer {
        font-size: 0.6875rem;
    }
}

/* =================================
/* =================================
   BOX DE SUGESTÃO
   ================================= */

.suggestion-box {
    background: #f8f9fa;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 2px solid #dee2e6;
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.suggestion-box .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: none;
}

.suggestion-box .label {
    color: #061a2f;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suggestion-box .text {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* =================================
   BLOCO DE DECLARAÇÃO OPERACIONAL
   ================================= */

.operational-statement {
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 111, 0, 0.12) 0%, 
        rgba(12, 34, 59, 0.5) 50%,
        rgba(107, 78, 255, 0.1) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 3px solid rgba(255, 138, 30, 0.6);
    border-bottom: 3px solid rgba(255, 138, 30, 0.6);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.operational-statement::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 138, 30, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.statement-text {
    font-size: 1.625rem;
    line-height: 1.55;
    color: #ffffff;
    font-weight: 800;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
    letter-spacing: -0.02em;
    text-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 138, 30, 0.3);
    position: relative;
    z-index: 1;
}

.statement-highlight {
    color: #ffb04a;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 
        0 0 25px rgba(255, 138, 30, 0.8),
        0 3px 12px rgba(0, 0, 0, 0.5);
    display: inline-block;
}

@media (max-width: 768px) {
    .operational-statement {
        padding: 3rem 0;
        border-width: 2px;
    }
    
    .statement-text {
        font-size: 1.25rem;
        line-height: 1.6;
        padding: 0 20px;
        font-weight: 700;
    }
    
    .statement-highlight {
        font-size: 1.125rem;
    }
}

@media (max-width: 520px) {
    .operational-statement {
        padding: 2.5rem 0;
    }
    
    .statement-text {
        font-size: 1.125rem;
        line-height: 1.65;
        padding: 0 18px;
        font-weight: 700;
    }
}

/* =================================
   RESPONSIVIDADE - TABLET
   ================================= */

@media (min-width: 768px) {
    :root {
        --spacing-xs: 2rem;
        --spacing-sm: 2rem;
        --spacing-md: 3rem;
        --spacing-lg: 5rem;
        --spacing-xl: 8rem;
    }
    
    .headline {
        font-size: 3.25rem;
        margin-bottom: 2rem;
    }
    
    .subheadline {
        font-size: 1.1875rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1.75rem;
    }
    
    .comparison {
        grid-template-columns: 1fr 1fr;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Tipografia aprimorada tablet */
    .transition-text,
    .statement-text,
    .comparison-intro {
        max-width: 750px;
    }
}

/* =================================
   RESPONSIVIDADE - DESKTOP
   ================================= */

@media (min-width: 1024px) {
    .headline {
        font-size: 4rem;
        letter-spacing: -.02em;
        margin-bottom: 2.5rem;
        margin-top: 2rem;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .subheadline {
        font-size: 1.25rem;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 3rem;
        letter-spacing: -.02em;
        margin-bottom: 2rem;
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-text {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .bullet-item {
        font-size: 1.125rem;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 900px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1rem;
    }
    
    .step:hover {
        transform: translateY(-10px);
    }
    
    .step-text {
        font-size: 1.0625rem;
    }
}

/* =================================
   CORREÇÕES MOBILE - PALAVRAS ÓRFÃS E QUEBRAS
   ================================= */

@media (max-width: 640px) {
    /* Helpers de quebra */
    .hide-mobile {
        display: none;
    }
    
    /* Tipografia aprimorada mobile */
    p, h1, h2, h3, h4, h5, h6,
    .headline,
    .section-title,
    .subheadline,
    .support-text,
    .section-text,
    .product-description,
    .context-text,
    .comparison-intro,
    .reinforcement-text,
    .enemy-text,
    .logic-proof,
    .credibility-text,
    .execution-reinforcement,
    .consistency-phrase,
    .transition-text,
    .statement-text,
    .objection-text,
    .checkout-subtitle,
    .checkout-value-statement,
    .checkout-reinforcement {
        text-wrap: pretty;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: manual;
        -webkit-hyphens: manual;
        -moz-hyphens: manual;
    }
    
    /* Bullets com melhor quebra */
    .bullet-item span {
        text-wrap: pretty;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .break-desktop {
        display: none;
    }
    
    /* Prevenir palavras órfãs globalmente */
    p, h1, h2, h3, h4, h5, h6, .headline, .subheadline {
        text-wrap: balance;
        -webkit-hyphens: auto;
        hyphens: auto;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Hero - Headlines */
    .headline {
        font-size: 1.75rem;
        line-height: 1.2;
        max-width: 100%;
        hyphens: none;
        padding: 0 20px;
        margin-bottom: 1.25rem;
        margin-top: 1rem;
    }
    
    .subheadline {
        font-size: 0.9375rem;
        line-height: 1.6;
        max-width: 100%;
        padding: 0 20px;
        margin-bottom: 1.5rem;
    }
    
    .subheadline br {
        display: none;
    }
    
    /* Bullets do hero */
    .bullet-item {
        padding: 10px 18px;
        margin-bottom: 10px;
    }
    
    .bullet-item span {
        display: block;
        word-break: keep-all;
        hyphens: none;
        font-size: 0.9375rem;
        line-height: 1.5;
        padding-left: 4px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0 20px;
        word-break: keep-all;
        margin-bottom: 1.25rem;
    }
    
    .section-text {
        font-size: 0.9375rem;
        line-height: 1.65;
        padding: 0 20px;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .section-text br {
        display: none;
    }
    
    /* Product showcase - Mockup ajustado */
    .product-mockup {
        margin-bottom: 24px;
        padding: 0 8px;
    }
    
    .mockup-image {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }
    
    .product-title {
        font-size: 1.625rem;
        line-height: 1.2;
        padding: 0 24px;
        margin-bottom: 16px;
    }
    
    .product-description {
        font-size: 0.9375rem;
        line-height: 1.6;
        padding: 0 24px;
        max-width: 100%;
    }
    
    /* Ocultar segunda descrição do produto no mobile (redundante) */
    .product-description + .product-description {
        display: none;
    }
    
    .product-tagline {
        font-size: 1rem;
        padding: 0 24px;
        word-break: keep-all;
        line-height: 1.4;
    }
    
    /* Como funciona - Ocultar intro no mobile */
    .funciona-intro {
        display: none;
    }
    
    /* Validação Visual Mobile - Carrossel Horizontal */
    .visual-validation {
        padding: 2rem 0;
    }
    
    .visual-validation::before,
    .visual-validation::after {
        width: 50px;
    }
    
    .validation-title {
        font-size: 1.125rem;
        padding: 0 1rem;
        margin-bottom: 0.5rem;
    }
    
    .validation-subtext {
        font-size: 0.875rem;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .validation-grid {
        padding: 0 3rem 1rem 3rem;
        gap: 1rem;
    }
    
    .validation-image {
        flex: 0 0 82%;
        min-width: 280px;
        max-width: 340px;
        border-radius: 8px;
    }
    
    /* Como funciona cards */
    }
    
    /* Como funciona cards */
    .func-card {
        padding: 1.25rem 1rem;
    }
    
    .func-card-title {
        font-size: 0.875rem;
        line-height: 1.3;
        word-break: keep-all;
    }
    
    .func-card-list li {
        font-size: 0.8125rem;
        line-height: 1.65;
        padding-left: 1.25rem;
    }
    
    /* Steps */
    .steps {
        gap: 1rem;
        margin-bottom: 1.75rem;
        padding: 0 16px;
    }
    
    .step {
        padding: 1rem 1.125rem;
        gap: 1rem;
    }
    
    .step-text {
        font-size: 0.9375rem;
        line-height: 1.5;
        word-break: keep-all;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    /* Consistency phrase */
    .consistency-phrase {
        font-size: 1rem;
        line-height: 1.4;
        padding: 0 20px;
        word-break: keep-all;
        margin-top: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    /* Credibility e execution texts */
    .credibility-text,
    .execution-reinforcement {
        font-size: 0.9375rem;
        line-height: 1.65;
        padding: 0 24px;
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    /* Blocos de impacto - Transition block */
    .transition-block {
        padding: 2rem 0;
    }
    
    .impact-block {
        border-width: 2px;
    }
    
    .impact-text {
        font-size: 1.125rem;
        padding: 32px 20px;
        line-height: 1.6;
    }
    
    .transition-text {
        font-size: 1.0625rem;
        line-height: 1.6;
        padding: 0 24px;
        max-width: 100%;
        word-break: keep-all;
    }
    
    /* Bloco de declaração operacional */
    .operational-statement {
        padding: 2rem 0;
    }
    
    .statement-text {
        font-size: 1rem;
        line-height: 1.65;
        padding: 0 24px;
        max-width: 100%;
    }
    
    /* Objection title */
    .objection-title {
        font-size: 1.375rem;
        line-height: 1.4;
        padding: 0 24px;
        max-width: 100%;
        word-break: keep-all;
    }
    
    /* Comparison intro */
    .comparison-intro {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 24px;
        margin: 1.25rem auto 0;
    }
    
    /* Comparison grid - garantir 1 coluna */
    .comparison {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.5rem;
        padding: 0 16px;
    }
    
    .comparison-card {
        padding: 1.25rem 1.5rem;
    }
    
    /* Enemy text e reinforcement text */
    .enemy-text,
    .reinforcement-text {
        font-size: 0.9375rem;
        line-height: 1.65;
        padding: 0 24px;
        margin: 1.25rem auto;
    }
    
    /* Context text */
    .context-text {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 24px;
        margin-bottom: 2rem;
    }
    
    /* Logic proof */
    .logic-proof {
        font-size: 0.9375rem;
        line-height: 1.6;
        padding: 0 24px;
        margin: 1.25rem auto;
    }
    
    /* Format info */
    .format-info {
        font-size: 0.875rem;
        padding: 0 24px;
        margin-bottom: 1.5rem;
    }
    
    /* Support text */
    .support-text {
        font-size: 0.9375rem;
        line-height: 1.6;
        padding: 0 20px;
        margin-bottom: 1.5rem;
    }
    
    /* Espaçamento vertical entre seções */
    section {
        padding: 2.5rem 0;
    }
    
    .hero {
        padding: 3rem 0 2rem;
    }
    
    .product-showcase {
        padding: 2rem 0 2.5rem;
    }
    
    .solution {
        padding: 2.5rem 0;
    }
    
    /* Check items */
    .check-item {
        font-size: 0.9375rem;
        padding: 0.875rem 1rem;
        line-height: 1.55;
        gap: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .check-item span {
        word-break: keep-all;
    }
    
    .check-icon {
        width: 28px;
        height: 28px;
        font-size: 1.125rem;
        flex-shrink: 0;
    }
    
    /* Deliverable items */
    .deliverables {
        padding: 0 16px;
    }
    
    .deliverable-item {
        font-size: 0.9375rem;
        padding: 1rem 1.125rem;
        line-height: 1.55;
        gap: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .deliverable-icon {
        font-size: 1.75rem;
        flex-shrink: 0;
    }
    
    /* Comparison cards */
    .comparison-card {
        padding: 1.25rem;
    }
    
    .comparison-card h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .comparison-card ul li {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 0.625rem;
    }
    
    /* Checkout elements */
    .checkout-subtitle {
        font-size: 0.9375rem;
        line-height: 1.6;
        padding: 0 24px;
        margin-bottom: 1.5rem;
    }
    
    .checkout-value-statement {
        font-size: 0.875rem;
        line-height: 1.65;
        padding: 0 24px;
        margin: 1rem auto;
    }
    
    .checkout-reinforcement {
        font-size: 0.875rem;
        line-height: 1.65;
        padding: 0 24px;
        margin: 1.25rem auto 1.75rem;
    }
    
    .digital-format-info {
        font-size: 0.875rem;
        line-height: 1.6;
        padding: 0 24px;
        margin: 1rem auto;
    }
    
    .cta-microtext {
        font-size: 0.75rem;
        line-height: 1.5;
        padding: 0 24px;
        margin-top: 1rem;
    }
    
    .credibility-text {
        font-size: 0.875rem;
        line-height: 1.65;
        padding: 0 24px;
        max-width: 100%;
    }
    
    /* Checklist items */
    .check-item {
        padding: 12px 16px;
    }
    
    .check-item span {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    /* CTA buttons */
    .cta-button, .cta-btn {
        font-size: 0.9375rem;
        padding: 16px 24px;
        min-height: 50px;
        line-height: 1.3;
        word-break: keep-all;
        white-space: normal;
        max-width: calc(100% - 32px);
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Comparison labels mobile */
    .comparison-label {
        font-size: 0.625rem;
        margin-bottom: 0.625rem;
        letter-spacing: 0.06em;
    }
    
    .comparison-card h3 {
        font-size: 1.125rem;
    }
    
    .comparison-card ul li {
        font-size: 0.9375rem;
    }
    
    /* Offer section mobile */
    .offer {
        padding: 2.5rem 0;
    }
    
    /* Checkout card */
    .checkout-card {
        margin: 0 12px;
        border-radius: 18px;
        padding: 24px 0 32px 0;
    }
    
    .checkout-title {
        font-size: 1.375rem;
        line-height: 1.3;
        padding: 0 20px;
        margin-top: 16px;
        margin-bottom: 8px;
    }
    
    .checkout-subtitle {
        font-size: 0.875rem;
        line-height: 1.55;
        padding: 0 20px;
        margin-bottom: 16px;
    }
    
    .checkout-benefits {
        padding: 0 28px 0 28px;
        margin-bottom: 12px;
    }
    
    .checkout-benefits li {
        font-size: 0.875rem;
        line-height: 1.65;
        padding: 5px 0;
        margin-bottom: 8px;
        text-wrap: pretty;
        overflow-wrap: break-word;
        word-break: keep-all;
    }
    
    .checkout-benefits li span {
        text-wrap: pretty;
        overflow-wrap: break-word;
    }
    
    .checkout-digital-note {
        font-size: 0.75rem;
        line-height: 1.5;
        padding: 0 20px;
        margin: 12px auto 16px;
    }
    
    /* Botão CTA - garantir que não quebra */
    .checkout-card .cta-btn {
        font-size: 0.8125rem;
        padding: 15px 20px;
        min-height: 50px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: calc(100% - 48px);
        margin: 16px auto 24px;
    }
    
    .checkout-card .cta-text {
        white-space: normal;
        word-break: keep-all;
        line-height: 1.3;
    }
    
    /* Footer */
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
    
    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        width: 140px;
        margin-bottom: 12px;
    }
    
    .footer-company,
    .footer-cnpj,
    .footer-contact {
        word-break: keep-all;
        font-size: 0.875rem;
        text-align: center;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .footer-disclaimer {
        font-size: 0.75rem;
        line-height: 1.65;
        padding: 0 16px;
        text-align: center;
    }
    
    /* Prevenir overflow horizontal */
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .container {
        overflow-x: hidden;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    /* Ajuste de imagens */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Tabelas e elementos largos */
    table {
        display: block;
        overflow-x: auto;
    }
    
    /* Remover CTA fixo completamente */
    .fixed-cta {
        display: none !important;
    }
}


/* =================================
   RESPONSIVIDADE - MOBILE
   ================================= */

@media (max-width: 767px) {
    body {
        font-size: 16px;
        padding-bottom: 80px;
    }
    
    .headline {
        font-size: 2rem;
        letter-spacing: -.02em;
        margin-bottom: 1.5rem;
        margin-top: 1rem;
    }
    
    .subheadline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        letter-spacing: -.02em;
        margin-bottom: 1.25rem;
    }
    
    .section-text {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }
    
    .bullet-item {
        font-size: 0.9375rem;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 1rem 2rem;
        width: 100%;
    }
    
    .cta-large {
        font-size: 1rem;
        padding: 1.25rem 2rem;
    }
    
    .price {
        font-size: 4rem;
    }
    
    .fixed-cta {
        display: block;
    }
    
    .hero .cta-button {
        display: none;
    }
    
    .hero {
        padding: 60px 0 50px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .check-item:hover,
    .step:hover,
    .deliverable-item:hover {
        transform: translateX(5px);
    }
}

/* =================================
   TABLET (641px - 1024px)
   ================================= */

@media (min-width: 641px) and (max-width: 1024px) {
    .validation-grid {
        padding: 0 5rem 1rem 5rem;
    }
    
    .validation-image {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 280px;
        max-width: 400px;
    }
}

/* =================================
   MOBILE EXTRA PEQUENO (<480px)
   ================================= */

@media (max-width: 480px) {
    .validation-grid {
        padding: 0 2rem 1rem 2rem;
    }
    
    .validation-image {
        flex: 0 0 85%;
        min-width: 260px;
    }
    
    .visual-validation::before,
    .visual-validation::after {
        width: 40px;
    }
}

/* =================================
   ANIMAÇÕES
   ================================= */

@media (prefers-reduced-motion: no-preference) {
    .cta-button,
    .step,
    .check-item,
    .deliverable-item,
    .comparison-card,
    .feature-item {
        transition: all 0.3s ease;
    }
}

/* =================================
   SMOOTH SCROLL
   ================================= */

html {
    scroll-behavior: smooth;
}

/* =================================
   WHATSAPP FLOATING BUTTON
   ================================= */

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border: 1px solid #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-button:hover {
    background-color: transparent;
    box-shadow: 0 12px 32px transparent;
}

.whatsapp-button:hover i {
    color: #1ebd56;
}

.whatsapp-button:active {
    transform: scale(0.95);
}

/* Animação de pulsar do WhatsApp */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

/* Animação de escala mais pronunciada */
@keyframes whatsappScalePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7),
                    0 8px 24px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0),
                    0 8px 24px rgba(37, 211, 102, 0.4);
        transform: scale(1.08);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0),
                    0 8px 24px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 70px;
        height: 70px;
        font-size: 32px;
        bottom: 20px;
        right: 20px;
    }
}

/* Animação alternativa - mais suave e profissional */
.whatsapp-button.professional-pulse {
    animation: professionalWhatsappPulse 3s ease-in-out infinite;
}

@keyframes professionalWhatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
        transform: scale(1.06);
    }
}
