/* ===========================
   DESIGN TOKENS — IDV Dark-dominant Theme
=========================== */
:root {
    /* === BRAND === */
    --color-brand-orange:       #fb7c2a;
    --color-brand-orange-hover: #ff9046;
    --color-brand-orange-light: rgba(251, 124, 42, 0.14);
    --color-brand-orange-soft:  rgba(251, 124, 42, 0.06);

    /* === DARK BACKGROUNDS === */
    --color-bg-base:     #0a0a0a;
    --color-bg-section:  #111111;
    --color-bg-elevated: #161616;
    --color-bg-card:     #161616;
    --color-bg-card-2:   #1c1c1c;
    --color-bg-card-3:   #222222;

    /* Light "relief" surfaces — usadas pontualmente */
    --color-bg-light:    #fafaf8;
    --color-bg-paper:    #ffffff;

    /* === BORDERS === */
    --color-border:      rgba(255, 255, 255, 0.08);
    --color-border-2:    rgba(255, 255, 255, 0.14);
    --color-border-strong: rgba(255, 255, 255, 0.22);

    /* === TEXT (on dark) === */
    --color-text-primary:   #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.82);
    --color-text-muted:     rgba(255, 255, 255, 0.62);
    --color-text-faint:     rgba(255, 255, 255, 0.42);
    --color-text-on-dark:   #ffffff;
    --color-text-on-orange: #ffffff;

    /* On light surfaces (relief) */
    --color-text-on-light:        #0a0a0a;
    --color-text-on-light-muted:  #555555;

    /* === TYPO === */
    --font-family: 'Gantari', system-ui, sans-serif;
    --font-mono:   'JetBrains Mono', 'Courier New', monospace;

    --font-size-xs:  0.75rem;
    --font-size-sm:  0.875rem;
    --font-size-md:  1rem;
    --font-size-lg:  1.125rem;
    --font-size-xl:  1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;

    /* === SPACING === */
    --space-1:  0.25rem;
    --space-2:  0.5rem;
    --space-3:  0.75rem;
    --space-4:  1rem;
    --space-5:  1.25rem;
    --space-6:  1.5rem;
    --space-8:  2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* === RADIUS === */
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   12px;
    --radius-xl:   16px;
    --radius-2xl:  24px;
    --radius-full: 9999px;

    /* === SHADOWS === */
    --shadow-sm:     0 1px 3px rgba(0,0,0,0.4);
    --shadow-md:     0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg:     0 12px 30px rgba(0,0,0,0.5);
    --shadow-xl:     0 24px 60px rgba(0,0,0,0.55);
    --shadow-orange: 0 4px 24px rgba(251, 124, 42, 0.45);

    /* === MISC === */
    --transition-fast:   0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow:   0.5s ease;

    --container-max: 1250px;
    --container-pad: clamp(1.25rem, 4vw, 2rem);
}

/* ===========================
   RESET / BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    background: var(--color-bg-base);
}
body {
    font-family: var(--font-family);
    background-color: var(--color-bg-base);
    color: var(--color-text-primary);
    line-height: 1.55;
    font-size: var(--font-size-md);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ===========================
   CONTAINER (1140px max)
=========================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}

/* ===========================
   URGENCY BAR + NAVBAR
=========================== */
.urgency-bar {
    background: var(--color-brand-orange);
    color: var(--color-text-on-orange);
    text-align: center;
    padding: 10px 16px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.urgency-bar strong {
    color: #0a0a0a;
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid transparent;
    z-index: 100;
    transition: background var(--transition-normal), border-color var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    border-bottom-color: var(--color-border);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}

.navbar-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.navbar-logo-text {
    font-weight: 800;
    font-size: var(--font-size-lg);
    letter-spacing: -0.02em;
    color: var(--color-text-on-dark);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
}

.navbar-links a {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.navbar-links a:hover {
    color: var(--color-brand-orange);
}

.navbar-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--color-brand-orange);
    transition: width var(--transition-normal);
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar-cta { flex-shrink: 0; }

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--color-text-on-dark);
}

.navbar-toggle svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 28px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--color-brand-orange);
    color: var(--color-text-on-orange);
    border-color: var(--color-brand-orange);
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
    background: var(--color-brand-orange-hover);
    border-color: var(--color-brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(251, 124, 42, 0.55);
}

.btn-dark {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
}
.btn-dark:hover {
    background: var(--color-brand-orange);
    color: white;
    border-color: var(--color-brand-orange);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-on-dark);
    border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
    background: white;
    color: #0a0a0a;
    border-color: white;
}

.btn-outline-orange {
    background: transparent;
    color: var(--color-brand-orange);
    border-color: var(--color-brand-orange);
}
.btn-outline-orange:hover {
    background: var(--color-brand-orange);
    color: var(--color-text-on-orange);
}

.btn-lg  { padding: 18px 36px; font-size: var(--font-size-md); }
.btn-xl  { padding: 22px 44px; font-size: var(--font-size-lg); }

.btn-arrow { transition: transform var(--transition-normal); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.cta-microcopy {
    display: block;
    margin-top: var(--space-3);
    font-size: var(--font-size-xs);
    color: var(--color-text-faint);
    font-style: italic;
}

/* ===========================
   SECTION GENERIC
=========================== */
section {
    padding: var(--space-24) 0;
    position: relative;
}

@media (max-width: 768px) {
    section { padding: var(--space-16) 0; }
}

.section-bg-soft     { background: var(--color-bg-section); }
.section-bg-elevated { background: var(--color-bg-elevated); }
.section-bg-base     { background: var(--color-bg-base); }

/* Section dividers — sutil orange line */
.section-bg-soft + .section-bg-soft,
.section-bg-base + .section-bg-base {
    border-top: 1px solid var(--color-border);
}

.section-eyebrow {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-brand-orange);
    margin-bottom: var(--space-4);
    padding: 6px 14px;
    background: var(--color-brand-orange-light);
    border: 1px solid rgba(251,124,42,0.3);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(1.875rem, 4vw, var(--font-size-5xl));
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-5);
    color: var(--color-text-primary);
}
.section-title em,
.section-title .accent {
    color: var(--color-brand-orange);
    font-style: normal;
}

.section-lede {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    line-height: 1.65;
    max-width: 720px;
    margin-bottom: var(--space-10);
}

.section-header { margin-bottom: var(--space-12); }
.section-header.center { text-align: center; }
.section-header.center .section-lede { margin-left: auto; margin-right: auto; }

/* ===========================
   HERO — content left, photo on bg right
=========================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: var(--space-16) 0 var(--space-20);
    overflow: hidden;
    background-image: url('assets/bg 1 desknovo.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: var(--color-text-on-dark);
    display: flex;
    align-items: center;
}

/* Subtle gradient overlay so text reads on photo edges */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(10,10,10,0.85) 0%,
        rgba(10,10,10,0.7) 35%,
        rgba(10,10,10,0.25) 60%,
        rgba(10,10,10,0) 80%);
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 640px;
}

@media (max-width: 768px) {
    .hero {
        background-image: url('assets/bg 1 mobnovo.png');
        background-position: center top;
        min-height: auto;
        padding: var(--space-12) 0 var(--space-16);
        align-items: flex-start;
    }
    .hero::before {
        background: linear-gradient(180deg,
            rgba(10,10,10,0) 0%,
            rgba(10,10,10,0) 35%,
            rgba(10,10,10,0.7) 55%,
            rgba(10,10,10,0.95) 80%,
            rgba(10,10,10,1) 100%);
    }
    .hero-content {
        max-width: 100%;
        padding-top: 45vh;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-mono);
    font-size: var(--font-size-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-brand-orange);
    margin-bottom: var(--space-6);
    padding: 8px 14px;
    background: rgba(251, 124, 42, 0.12);
    border: 1px solid rgba(251, 124, 42, 0.4);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.hero-eyebrow .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--color-brand-orange);
    box-shadow: 0 0 10px var(--color-brand-orange);
    animation: glowPulse 2s infinite;
}

.hero-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    color: var(--color-text-on-dark);
    margin-bottom: var(--space-8);
}

.hero-title em {
    color: var(--color-brand-orange);
    font-style: normal;
    font-weight: 800;
}

.hero-promises {
    list-style: none;
    margin-bottom: var(--space-10);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    max-width: 600px;
}

.hero-promise {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--font-size-md);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
}

.hero-promise .check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--color-brand-orange);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 0 12px rgba(251, 124, 42, 0.6);
}

.hero-promise .check svg {
    width: 12px; height: 12px;
    stroke: currentColor;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-cta-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--space-10);
}

.hero-cta-microcopy {
    margin-top: var(--space-3);
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,0.68);
    font-style: italic;
}

/* ===========================
   TICKBAR — card flutuante entre hero e stats-band
=========================== */
.tickbar-section {
    padding: 0;
    background: transparent;
    border: none;
    margin-top: -70px;
    margin-bottom: -40px;
    position: relative;
    z-index: 5;
}

.tickbar-grid {
    position: relative;
    background: #000000;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-6) var(--space-8);
    box-shadow:
        0 24px 60px rgba(0,0,0,0.7),
        0 0 0 1px rgba(251,124,42,0.06);
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: var(--space-6);
    align-items: center;
    justify-items: center;
    text-align: center;
}

.tickbar-grid::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(251,124,42,0.5) 50%,
        transparent 100%);
}

.tick-divider {
    width: 1px;
    height: 56px;
    background: linear-gradient(180deg,
        transparent 0%,
        var(--color-border-strong) 30%,
        var(--color-border-strong) 70%,
        transparent 100%);
}

.tick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) 0;
}

.tick-item .tick-num {
    font-size: clamp(1.875rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--color-brand-orange);
    line-height: 1;
    letter-spacing: -0.04em;
    text-shadow: 0 0 28px rgba(251, 124, 42, 0.35);
}

.tick-item .tick-label {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    line-height: 1.35;
    max-width: 180px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .tickbar-section {
        margin-top: -40px;
        margin-bottom: -24px;
    }

    .tickbar-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding: var(--space-6) var(--space-5);
    }

    .tick-divider {
        width: 50%;
        height: 1px;
        background: linear-gradient(90deg,
            transparent 0%,
            var(--color-border-strong) 30%,
            var(--color-border-strong) 70%,
            transparent 100%);
    }

    .tick-item .tick-num { font-size: 2rem; }
    .tick-item .tick-label { max-width: 240px; font-size: var(--font-size-xs); }
}

/* ===========================
   STATS BAND (post-hero) — Resultados auditáveis
=========================== */
.stats-band {
    padding: calc(var(--space-20) + var(--space-6)) 0 var(--space-20);
    background: var(--color-bg-base);
}

.stats-band .stats-header {
    margin: 0 auto var(--space-12);
    max-width: 720px;
    text-align: center;
}

.stats-band .stats-eyebrow {
    font-family: var(--font-mono);
    font-size: var(--font-size-xs);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-brand-orange);
    margin-bottom: var(--space-3);
    font-weight: 700;
}

.stats-band .stats-title {
    font-size: clamp(1.75rem, 3.5vw, var(--font-size-4xl));
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--color-text-on-dark);
    margin-bottom: var(--space-3);
}

.stats-band .stats-title em {
    color: var(--color-brand-orange);
    font-style: normal;
}

.stats-band .stats-desc {
    font-size: var(--font-size-md);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

@media (max-width: 960px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--color-brand-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.stat-card:hover {
    border-color: var(--color-brand-orange);
    transform: translateY(-6px);
    box-shadow: var(--shadow-orange);
}

.stat-card:hover::before { transform: scaleX(1); }

.stat-card .stat-num {
    font-size: var(--font-size-5xl);
    font-weight: 900;
    color: var(--color-brand-orange);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-3);
}

.stat-card .stat-name {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-text-on-dark);
    margin-bottom: var(--space-2);
}

.stat-card .stat-desc {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* ===========================
   SECTION 01 — CUSTO DE IMPROVISAR
=========================== */
.custo-content {
    text-align: center;
}

.custo-content .section-header { margin-bottom: var(--space-10); }

.section-cost-block {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-brand-orange);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.section-cost-block p {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: var(--space-5);
}

.section-cost-block p:last-child { margin-bottom: 0; }

.section-cost-block strong {
    color: var(--color-brand-orange);
    font-weight: 800;
}

.section-cost-cta-wrap {
    margin-top: var(--space-10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

/* ===========================
   SECTION 02 — DELIVERABLES
=========================== */
.deliverables-cta-row {
    margin-top: var(--space-12);
    display: flex;
    justify-content: center;
}

.deliverables-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-6);
}

.deliverables-grid .deliverable-card {
    flex: 1 1 280px;
    max-width: calc((100% - var(--space-6) * 2) / 3);
}

@media (max-width: 960px) {
    .deliverables-grid .deliverable-card {
        max-width: calc((100% - var(--space-6)) / 2);
    }
}

@media (max-width: 600px) {
    .deliverables-grid .deliverable-card {
        max-width: 100%;
    }
}

.deliverable-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.deliverable-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--color-brand-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.deliverable-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-brand-orange);
    background: var(--color-bg-card-2);
    box-shadow: var(--shadow-orange);
}

.deliverable-card:hover::before { transform: scaleX(1); }

.deliverable-card .card-num {
    font-family: var(--font-mono);
    font-size: var(--font-size-xs);
    color: var(--color-brand-orange);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.deliverable-card .card-icon {
    width: 56px; height: 56px;
    background: var(--color-brand-orange-light);
    color: var(--color-brand-orange);
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    border: 1px solid rgba(251,124,42,0.3);
}

.deliverable-card .card-icon svg {
    width: 26px; height: 26px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.deliverable-card .card-title {
    font-size: var(--font-size-lg);
    font-weight: 800;
    margin-bottom: var(--space-3);
    line-height: 1.25;
    color: var(--color-text-on-dark);
}

.deliverable-card .card-name {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-3);
}

.deliverable-card .card-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ===========================
   COMPARATIVO TABLE
=========================== */
.compare-wrap {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-size-sm);
}

.compare-table thead th {
    text-align: left;
    padding: var(--space-5) var(--space-6);
    background: var(--color-bg-card-2);
    font-size: var(--font-size-xs);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border);
}

.compare-table thead th:last-child {
    background: var(--color-brand-orange);
    color: white;
}

.compare-table tbody td {
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-muted);
    line-height: 1.55;
    vertical-align: top;
}

.compare-table tbody td:first-child {
    font-weight: 700;
    color: var(--color-text-on-dark);
    width: 22%;
}

.compare-table tbody td:last-child {
    font-weight: 600;
    color: var(--color-text-on-dark);
    background: rgba(251, 124, 42, 0.08);
    border-left: 3px solid var(--color-brand-orange);
}

.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-table tbody tr:hover td {
    background: rgba(251, 124, 42, 0.04);
}

.compare-table tbody tr:hover td:last-child {
    background: rgba(251, 124, 42, 0.18);
}

@media (max-width: 768px) {
    .compare-wrap { overflow-x: auto; }
    .compare-table { min-width: 720px; }
}

/* ===========================
   CASES
=========================== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

@media (max-width: 768px) { .cases-grid { grid-template-columns: 1fr; } }

.case-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-brand-orange);
    box-shadow: var(--shadow-lg);
}

.case-card-header {
    padding: var(--space-8);
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: var(--color-text-on-dark);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.case-card-header::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(251,124,42,0.32) 0%, transparent 70%);
    pointer-events: none;
}

.case-segment {
    font-family: var(--font-mono);
    font-size: var(--font-size-xs);
    color: var(--color-brand-orange);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-3);
    position: relative;
}

.case-result {
    font-size: var(--font-size-5xl);
    font-weight: 900;
    color: var(--color-brand-orange);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-3);
    position: relative;
}

.case-name {
    font-size: var(--font-size-xl);
    font-weight: 800;
    margin-bottom: var(--space-2);
    color: var(--color-text-on-dark);
    position: relative;
}

.case-headline {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    position: relative;
}

.case-card-body {
    padding: var(--space-6) var(--space-8);
    flex: 1;
    background: var(--color-bg-card-2);
}

.case-row {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.case-row:last-child { border-bottom: none; }

.case-row .label {
    display: block;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-brand-orange);
    margin-bottom: 4px;
}

.case-row .value {
    color: var(--color-text-secondary);
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-6);
}

.testimonials-grid .testimonial {
    flex: 1 1 320px;
    max-width: calc((100% - var(--space-6) * 2) / 3);
}

@media (max-width: 960px) {
    .testimonials-grid .testimonial {
        max-width: calc((100% - var(--space-6)) / 2);
    }
}

@media (max-width: 600px) {
    .testimonials-grid .testimonial {
        max-width: 100%;
    }
}

.testimonial {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    position: relative;
    transition: all var(--transition-normal);
}

.testimonial:hover {
    border-color: var(--color-brand-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: var(--space-3);
    left: var(--space-6);
    font-size: 6rem;
    line-height: 1;
    color: var(--color-brand-orange);
    opacity: 0.3;
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-text {
    font-size: var(--font-size-md);
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: var(--space-6);
    padding-top: var(--space-8);
    position: relative;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--color-brand-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--font-size-sm);
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

.testimonial-name {
    font-weight: 800;
    font-size: var(--font-size-sm);
    color: var(--color-text-on-dark);
    line-height: 1.3;
}

.testimonial-role {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    line-height: 1.3;
}

/* ===========================
   PROCESS — Como funciona
=========================== */
.process-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--space-12);
    align-items: flex-start;
}

@media (max-width: 960px) {
    .process-grid { grid-template-columns: 1fr; gap: var(--space-10); }
}

.process-sticky {
    position: sticky;
    top: 100px;
    background: #ffffff;
    color: #0a0a0a;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 12px 36px rgba(10, 10, 10, 0.18);
}

.process-sticky::before {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(251, 124, 42, 0.16) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.process-sticky h3 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: var(--space-4);
    color: #0a0a0a;
}

.process-sticky p {
    font-size: var(--font-size-sm);
    color: rgba(10, 10, 10, 0.72);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.process-sticky .cta-microcopy {
    color: rgba(10, 10, 10, 0.55) !important;
}

.process-sticky .btn {
    background: var(--color-brand-orange);
    color: #ffffff;
    border-color: var(--color-brand-orange);
    box-shadow: 0 4px 18px rgba(251, 124, 42, 0.35);
}
.process-sticky .btn:hover {
    background: var(--color-brand-orange-hover);
    color: #ffffff;
    border-color: var(--color-brand-orange-hover);
}

@media (max-width: 960px) {
    .process-sticky {
        position: static;
        top: auto;
    }
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.process-step {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: var(--space-6);
    align-items: flex-start;
    transition: all var(--transition-normal);
}

.process-step:hover {
    border-color: var(--color-brand-orange);
    transform: translateX(8px);
    background: var(--color-bg-card-2);
    box-shadow: var(--shadow-md);
}

.process-step .step-num {
    width: 56px; height: 56px;
    background: var(--color-brand-orange);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: var(--font-size-xl);
    box-shadow: var(--shadow-orange);
    flex-shrink: 0;
}

.process-step .step-title {
    font-size: var(--font-size-lg);
    font-weight: 800;
    margin-bottom: var(--space-2);
    color: var(--color-text-on-dark);
}

.process-step .step-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ===========================
   PRICING / VALOR
=========================== */
.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
}

@media (max-width: 960px) { .value-grid { grid-template-columns: 1fr; } }

.value-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.value-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.value-row:hover {
    border-color: var(--color-brand-orange);
    transform: translateX(6px);
    background: var(--color-bg-card-2);
}

.value-row .value-name {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-on-dark);
}

.value-row .value-price {
    font-family: var(--font-mono);
    font-size: var(--font-size-md);
    font-weight: 800;
    color: var(--color-text-secondary);
}

.value-sum {
    margin-top: var(--space-4);
    padding: var(--space-6);
    background: #ffffff;
    color: #0a0a0a;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

.value-sum-label {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #555;
}

.value-sum-price {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--color-brand-orange);
    letter-spacing: -0.03em;
}

.value-punchline {
    background: #ffffff;
    color: #0a0a0a;
    padding: var(--space-10);
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: var(--radius-2xl);
    box-shadow: 0 12px 36px rgba(10, 10, 10, 0.18);
    position: relative;
    overflow: hidden;
}

.value-punchline::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(251, 124, 42, 0.16) 0%, transparent 70%);
    pointer-events: none;
}

.value-punchline-eyebrow {
    font-family: var(--font-mono);
    font-size: var(--font-size-xs);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-brand-orange);
    margin-bottom: var(--space-3);
    position: relative;
}

.value-punchline-text {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-8);
    color: #0a0a0a;
    position: relative;
}

.value-punchline .btn {
    position: relative;
    background: var(--color-brand-orange);
    color: #ffffff;
    border-color: var(--color-brand-orange);
    box-shadow: 0 4px 18px rgba(251, 124, 42, 0.35);
}

.value-punchline .btn:hover {
    background: var(--color-brand-orange-hover);
    color: #ffffff;
    border-color: var(--color-brand-orange-hover);
}

.value-punchline-microcopy {
    margin-top: var(--space-3);
    font-size: var(--font-size-xs);
    color: rgba(10, 10, 10, 0.6);
    font-style: italic;
    position: relative;
}

/* ===========================
   GARANTIA — protagonist
=========================== */
.guarantee {
    background:
        radial-gradient(ellipse at center, rgba(251,124,42,0.12) 0%, transparent 60%),
        var(--color-bg-base);
    color: var(--color-text-on-dark);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.guarantee-grid {
    position: relative;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid { grid-template-columns: 1fr; gap: var(--space-8); text-align: left; }
}

.guarantee-seal {
    width: 240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-seal img {
    width: 100%;
    height: auto;
    display: block;
}

.guarantee-content p {
    font-size: var(--font-size-md);
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.guarantee-content p strong {
    color: var(--color-brand-orange);
    font-weight: 700;
}

.guarantee-cta-wrap { margin-top: var(--space-8); }

.guarantee-cta-wrap .cta-microcopy {
    color: rgba(255,255,255,0.55);
}

/* ===========================
   FAQ
=========================== */
.faq-microcopy {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-10);
    font-style: italic;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    max-width: 880px;
    margin: 0 auto;
}

.faq-cta-wrap {
    margin-top: var(--space-12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.faq-item.open {
    border-color: var(--color-brand-orange);
    background: var(--color-bg-card-2);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: var(--space-5) var(--space-6);
    font-family: inherit;
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--color-text-on-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    line-height: 1.4;
    transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--color-brand-orange); }

.faq-question .faq-num {
    font-family: var(--font-mono);
    font-size: var(--font-size-xs);
    color: var(--color-brand-orange);
    margin-right: var(--space-3);
    font-weight: 700;
}

.faq-question .faq-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--color-brand-orange-light);
    color: var(--color-brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition-normal), background var(--transition-fast);
    border: 1px solid rgba(251,124,42,0.3);
}

.faq-question .faq-icon svg {
    width: 16px; height: 16px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
}

.faq-item.open .faq-question .faq-icon {
    background: var(--color-brand-orange);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer-inner {
    padding: 0 var(--space-6) var(--space-6);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ===========================
   FINAL CTA — 2 caminhos
=========================== */
.paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-16);
}

@media (max-width: 768px) { .paths-grid { grid-template-columns: 1fr; } }

.path-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    transition: all var(--transition-normal);
}

.path-card.path-bad {
    background: var(--color-bg-card-2);
    opacity: 0.78;
}

.path-card.path-good {
    background: linear-gradient(135deg, var(--color-brand-orange) 0%, #ff9046 100%);
    color: white;
    border-color: var(--color-brand-orange);
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: hidden;
}

.path-card.path-good::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.path-eyebrow {
    font-family: var(--font-mono);
    font-size: var(--font-size-xs);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
    font-weight: 700;
    position: relative;
}

.path-bad .path-eyebrow { color: var(--color-text-muted); }
.path-good .path-eyebrow { color: rgba(255,255,255,0.85); }

.path-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-6);
    position: relative;
}

.path-bad h3 { color: var(--color-text-secondary); }
.path-good h3 { color: white; }

.path-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    position: relative;
}

.path-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--font-size-md);
    line-height: 1.5;
}

.path-bad .path-list li { color: var(--color-text-muted); }
.path-good .path-list li { color: rgba(255,255,255,0.95); }

.path-list .icon-mark {
    width: 22px; height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.path-bad .icon-mark {
    background: var(--color-bg-card);
    color: #ff5a5a;
    border: 1px solid var(--color-border-2);
}

.path-good .icon-mark {
    background: white;
    color: var(--color-brand-orange);
}

.path-list svg {
    width: 12px; height: 12px;
    stroke: currentColor;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.final-cta {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.final-cta .section-title { color: var(--color-text-on-dark); }

.final-cta .final-sub {
    font-size: var(--font-size-lg);
    color: rgba(255,255,255,0.78);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.final-cta .final-guarantee {
    font-size: var(--font-size-md);
    color: var(--color-brand-orange);
    margin-bottom: var(--space-8);
    font-style: italic;
    font-weight: 500;
}

.final-cta .cta-microcopy { color: rgba(255,255,255,0.55); }

.final-signoff {
    margin-top: var(--space-16);
    padding-top: var(--space-10);
    border-top: 1px solid var(--color-border);
    text-align: center;
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.5);
    font-style: italic;
    letter-spacing: 0.04em;
}

/* ===========================
   FOOTER
=========================== */
footer {
    background: #050505;
    color: rgba(255,255,255,0.65);
    padding: var(--space-12) 0 var(--space-8);
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-text-on-dark);
    font-weight: 800;
    font-size: var(--font-size-lg);
}

.footer-logo img { width: 28px; height: 28px; object-fit: contain; }

.footer-copy {
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
}

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal[data-delay="1"].active { transition-delay: 0.1s; }
.reveal[data-delay="2"].active { transition-delay: 0.2s; }
.reveal[data-delay="3"].active { transition-delay: 0.3s; }
.reveal[data-delay="4"].active { transition-delay: 0.4s; }
.reveal[data-delay="5"].active { transition-delay: 0.5s; }

/* ===========================
   MOBILE NAV
=========================== */
@media (max-width: 900px) {
    .navbar-links,
    .navbar-cta { display: none; }
    .navbar-toggle { display: inline-flex; }

    .navbar.open .navbar-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg-elevated);
        padding: var(--space-6) var(--container-pad);
        gap: var(--space-4);
        align-items: flex-start;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
    }

    .navbar.open .navbar-cta {
        display: inline-flex;
        position: absolute;
        top: calc(100% + 220px);
        left: var(--container-pad);
        right: var(--container-pad);
    }
}

/* ===========================
   RESPONSIVE TWEAKS
=========================== */
@media (max-width: 768px) {
    .deliverable-card,
    .process-step,
    .testimonial,
    .path-card,
    .stat-card { padding: var(--space-6); }

    .process-step { grid-template-columns: 48px 1fr; gap: var(--space-4); }
    .process-step .step-num { width: 48px; height: 48px; font-size: var(--font-size-lg); }

    .case-card-header { padding: var(--space-6); }
    .case-card-body { padding: var(--space-5) var(--space-6); }

    .case-result { font-size: var(--font-size-4xl); }

    .value-sum { flex-direction: column; align-items: flex-start; gap: var(--space-2); }
    .value-punchline { padding: var(--space-8); }
    .value-punchline-text { font-size: var(--font-size-2xl); }

    .guarantee-seal { width: 180px; }

    .section-cost-block { padding: var(--space-6); }
    .section-cost-block p { font-size: var(--font-size-md); }

    .stat-card .stat-num { font-size: var(--font-size-4xl); }
}

/* ===========================
   ANIMATION HELPERS
=========================== */
.float-anim { animation: floatY 6s ease-in-out infinite; }

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

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 0 rgba(251, 124, 42, 0); }
    50% { box-shadow: 0 0 24px rgba(251, 124, 42, 0.6); }
}

/* ===========================
   SELECTION + SCROLLBAR (dark)
=========================== */
::selection {
    background: var(--color-brand-orange);
    color: white;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--color-brand-orange); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}
