/* ============================================================================
 * SSCoworkings — Landing comercial de vendas (redesign 2026-05-26)
 * Aesthetic: Editorial maximalismo refinado.
 * Tipografia: Fraunces (display) + Familjen Grotesk (UI) + Newsreader (body)
 *             + JetBrains Mono (numérico).
 * Paleta: dark-first, alternância dark <-> cream entre seções.
 * Convenção: classes prefixadas .vd- (vendas redesign) para não colidir com
 * o ".v-" do layout anterior (mantido em backup).
 * ========================================================================== */

:root {
    --ink-abyss:   #0A0E12;
    --ink-deep:    #131820;
    --ink-mid:     #1E2530;
    --ink-soft:    #2A3340;
    --cream:       #F7F2E9;
    --cream-warm:  #EDE5D2;
    --cream-line:  #DFD6BF;
    --teal:        #2DA89B;
    --teal-deep:   #1F8A7F;
    --teal-glow:   rgba(45, 168, 155, 0.35);
    --teal-soft:   rgba(45, 168, 155, 0.12);
    --gold:        #C9A35C;
    --gold-soft:   rgba(201, 163, 92, 0.16);
    --rose:        #E89B8A;
    --rose-soft:   rgba(232, 155, 138, 0.18);
    --shadow-card: 0 30px 60px -30px rgba(0,0,0,0.55), 0 8px 24px -12px rgba(0,0,0,0.35);
    --font-display: 'Fraunces', 'Times New Roman', serif;
    --font-ui:      'Familjen Grotesk', system-ui, -apple-system, sans-serif;
    --font-body:    'Newsreader', Georgia, serif;
    --font-mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;
    --max-w:        1240px;
    --gutter:       clamp(20px, 4vw, 64px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.55;
    color: var(--cream);
    background: var(--ink-abyss);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }

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

/* Cursor custom — desktop */
@media (hover: hover) and (pointer: fine) {
    body.vd-cursor-on { cursor: none; }
    body.vd-cursor-on a, body.vd-cursor-on button, body.vd-cursor-on input,
    body.vd-cursor-on textarea, body.vd-cursor-on select, body.vd-cursor-on summary { cursor: none; }
    .vd-cursor {
        position: fixed; top: 0; left: 0;
        width: 16px; height: 16px;
        border-radius: 50%;
        background: var(--cream);
        mix-blend-mode: difference;
        pointer-events: none;
        z-index: 9999;
        transform: translate3d(-100px, -100px, 0);
        transition: width 180ms ease, height 180ms ease, background 180ms ease;
        will-change: transform;
    }
    .vd-cursor.is-hot {
        width: 38px; height: 38px;
        background: var(--teal);
    }
}
@media (hover: none), (pointer: coarse) {
    .vd-cursor { display: none !important; }
}

/* ---------------------------------------------------------------------------
 * Wrapper utilitário
 * ------------------------------------------------------------------------ */
.vd-wrap {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
}

/* ---------------------------------------------------------------------------
 * Nav fixa
 * ------------------------------------------------------------------------ */
.vd-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 18px 0;
    background: rgba(10, 14, 18, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(247, 242, 233, 0.06);
    transition: background 240ms ease, padding 240ms ease;
}
.vd-nav.is-scrolled { padding: 12px 0; background: rgba(10, 14, 18, 0.92); }
.vd-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.vd-mark {
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--cream);
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}
.vd-mark::after {
    content: '';
    width: 6px; height: 6px;
    background: var(--teal);
    border-radius: 50%;
    transform: translateY(-2px);
}
.vd-nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.vd-nav-links a {
    color: rgba(247, 242, 233, 0.72);
    transition: color 200ms ease;
    position: relative;
}
.vd-nav-links a:not(.vd-cta-sm)::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    height: 1px;
    width: 0;
    background: var(--teal);
    transition: width 240ms ease;
}
.vd-nav-links a:hover { color: var(--cream); }
.vd-nav-links a:not(.vd-cta-sm):hover::after { width: 100%; }
.vd-cta-sm {
    padding: 10px 18px;
    border: 1px solid rgba(247, 242, 233, 0.28);
    border-radius: 999px;
    color: var(--cream) !important;
    transition: border-color 240ms ease, background 240ms ease, color 240ms ease;
}
.vd-cta-sm:hover { background: var(--teal); border-color: var(--teal); color: var(--ink-abyss) !important; }
.vd-nav-burger {
    display: none;
    background: none;
    border: 0;
    color: var(--cream);
    font-family: var(--font-ui);
    font-size: 22px;
    cursor: pointer;
}

/* ---------------------------------------------------------------------------
 * Hero
 * ------------------------------------------------------------------------ */
.vd-hero {
    min-height: 100vh;
    padding: 160px 0 80px;
    position: relative;
    background:
        radial-gradient(120% 80% at 80% 10%, rgba(45,168,155,0.18) 0%, transparent 55%),
        radial-gradient(80% 60% at 0% 100%, rgba(232,155,138,0.10) 0%, transparent 60%),
        var(--ink-abyss);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.vd-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: end;
}
.vd-hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
}
.vd-hero-eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--teal);
}
.vd-hero-headline {
    font-family: var(--font-display);
    font-weight: 900;
    font-style: italic;
    font-variation-settings: 'opsz' 144, 'SOFT' 100;
    font-size: clamp(48px, 9.5vw, 132px);
    line-height: 0.92;
    letter-spacing: -0.035em;
    color: var(--cream);
    margin-bottom: 40px;
    max-width: 14ch;
}
.vd-hero-headline .vd-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
}
.vd-hero-headline .vd-word.is-in { opacity: 1; transform: translateY(0); }
.vd-hero-headline em {
    font-style: italic;
    color: var(--teal);
    font-weight: 900;
}
.vd-hero-sub {
    font-family: var(--font-body);
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.5;
    color: rgba(247, 242, 233, 0.78);
    max-width: 540px;
    margin-bottom: 44px;
    font-weight: 400;
}
.vd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.vd-hero-meta {
    margin-top: 56px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 56px;
    align-items: baseline;
    border-top: 1px solid rgba(247, 242, 233, 0.08);
    padding-top: 32px;
}
.vd-hero-meta-item { font-family: var(--font-ui); }
.vd-hero-meta-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    font-size: 48px;
    line-height: 1;
    color: var(--cream);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.vd-hero-meta-label {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(247, 242, 233, 0.55);
}

/* Ornamento geométrico no canto do hero */
.vd-hero-ornament {
    position: absolute;
    top: 140px; right: var(--gutter);
    width: 220px; height: 220px;
    opacity: 0.85;
    pointer-events: none;
}
.vd-hero-ornament svg { width: 100%; height: 100%; }
@media (max-width: 900px) { .vd-hero-ornament { display: none; } }

/* ---------------------------------------------------------------------------
 * Botões / CTAs
 * ------------------------------------------------------------------------ */
.vd-btn {
    font-family: var(--font-ui);
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 15px;
    padding: 18px 32px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--teal);
    color: var(--ink-abyss);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 240ms cubic-bezier(.2,.7,.2,1), background 240ms ease;
}
.vd-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx,50%) var(--my,50%), var(--teal-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 240ms ease;
    z-index: -1;
}
.vd-btn:hover { transform: scale(1.02); }
.vd-btn:hover::before { opacity: 1; }
.vd-btn .vd-arrow {
    width: 16px; height: 16px;
    transition: transform 240ms ease;
}
.vd-btn:hover .vd-arrow { transform: translateX(4px); }

.vd-btn-ghost {
    background: transparent;
    color: var(--cream);
    border-color: rgba(247, 242, 233, 0.3);
}
.vd-btn-ghost:hover { border-color: var(--cream); background: rgba(247, 242, 233, 0.06); }

.vd-btn-dark {
    background: var(--ink-abyss);
    color: var(--cream);
}
.vd-btn-dark:hover { background: var(--ink-mid); }

.vd-btn-block { width: 100%; justify-content: center; }

.vd-btn[aria-busy="true"] { opacity: 0.85; pointer-events: none; }
.vd-spinner {
    width: 16px; height: 16px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: vdSpin 700ms linear infinite;
    display: inline-block;
}
@keyframes vdSpin { to { transform: rotate(360deg); } }

/* ---------------------------------------------------------------------------
 * Strip social proof (marquee)
 * ------------------------------------------------------------------------ */
.vd-strip {
    background: var(--ink-deep);
    padding: 36px 0;
    border-top: 1px solid rgba(247,242,233,0.05);
    border-bottom: 1px solid rgba(247,242,233,0.05);
    overflow: hidden;
    position: relative;
}
.vd-strip-label {
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247,242,233,0.4);
}
.vd-marquee {
    display: flex;
    width: max-content;
    gap: 80px;
    animation: vdMarquee 40s linear infinite;
    padding-top: 18px;
}
@keyframes vdMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.vd-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    color: rgba(247, 242, 233, 0.6);
    white-space: nowrap;
}
.vd-marquee-item::after {
    content: '';
    width: 6px; height: 6px;
    background: var(--teal);
    border-radius: 50%;
    margin-left: 14px;
}

/* ---------------------------------------------------------------------------
 * Seções genéricas
 * ------------------------------------------------------------------------ */
.vd-section {
    padding: clamp(80px, 11vw, 160px) 0;
    position: relative;
}
.vd-section.is-dark { background: var(--ink-deep); color: var(--cream); }
.vd-section.is-mid  { background: var(--ink-abyss); color: var(--cream); }
.vd-section.is-cream { background: var(--cream); color: var(--ink-abyss); }

.vd-section-head {
    max-width: 760px;
    margin: 0 0 80px;
    position: relative;
    z-index: 2;
}
.vd-section.is-cream .vd-section-head { color: var(--ink-abyss); }
.vd-section-eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-deep);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}
.vd-section.is-dark .vd-section-eyebrow,
.vd-section.is-mid  .vd-section-eyebrow { color: var(--teal); }
.vd-section-eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: currentColor;
}
.vd-section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-style: italic;
    font-size: clamp(36px, 5.6vw, 76px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}
.vd-section-sub {
    font-family: var(--font-body);
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.55;
    color: rgba(247, 242, 233, 0.72);
    max-width: 560px;
}
.vd-section.is-cream .vd-section-sub { color: rgba(10, 14, 18, 0.7); }

/* Marca d'água numérica de fundo */
.vd-watermark {
    position: absolute;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(220px, 32vw, 420px);
    line-height: 0.8;
    color: var(--ink-deep);
    opacity: 0.18;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    letter-spacing: -0.05em;
    top: 40px; right: -20px;
}
.vd-section.is-cream .vd-watermark { color: var(--cream-line); opacity: 0.55; }

/* Divisor decorativo entre seções */
.vd-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--teal) 50%, transparent 100%);
    margin: 0 auto;
    max-width: 720px;
    position: relative;
}
.vd-divider::after {
    content: '';
    width: 8px; height: 8px;
    background: var(--teal);
    transform: rotate(45deg);
    position: absolute;
}

/* ---------------------------------------------------------------------------
 * Features (asymmetric editorial)
 * ------------------------------------------------------------------------ */
.vd-features { display: grid; gap: 120px; position: relative; z-index: 2; }
.vd-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.vd-feature:nth-child(even) .vd-feature-body { order: 2; }
.vd-feature:nth-child(even) .vd-feature-visual { order: 1; }

.vd-feature-num {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 200;
    font-size: clamp(72px, 9vw, 120px);
    line-height: 1;
    color: var(--teal);
    margin-bottom: 28px;
    letter-spacing: -0.04em;
}
.vd-feature-title {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.vd-feature-desc {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: rgba(247, 242, 233, 0.74);
    max-width: 480px;
    margin-bottom: 24px;
}
.vd-feature-list {
    list-style: none;
    margin-top: 24px;
    display: grid;
    gap: 12px;
}
.vd-feature-list li {
    font-family: var(--font-ui);
    font-size: 14px;
    color: rgba(247, 242, 233, 0.85);
    padding-left: 22px;
    position: relative;
}
.vd-feature-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 8px; height: 1px;
    background: var(--teal);
}

/* Visual: frame duplo */
.vd-feature-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    padding: 14px;
    border: 1px solid rgba(247, 242, 233, 0.12);
    border-radius: 4px;
}
.vd-feature-visual::after {
    content: '';
    position: absolute;
    inset: -14px;
    border: 1px solid rgba(247, 242, 233, 0.05);
    border-radius: 6px;
    pointer-events: none;
}
.vd-feature-canvas {
    width: 100%; height: 100%;
    background: var(--ink-mid);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vd-feature-canvas svg { width: 80%; height: 80%; }
.vd-feature-tag {
    position: absolute;
    top: -1px; left: -1px;
    background: var(--teal);
    color: var(--ink-abyss);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px 0 4px 0;
}

/* ---------------------------------------------------------------------------
 * Steps (como funciona)
 * ------------------------------------------------------------------------ */
.vd-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}
.vd-steps::before {
    content: '';
    position: absolute;
    top: 32px; left: 5%; right: 5%;
    height: 1px;
    background-image: linear-gradient(to right, var(--teal) 50%, transparent 50%);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    z-index: 0;
}
.vd-step {
    position: relative;
    z-index: 1;
    text-align: left;
}
.vd-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: var(--cream);
    color: var(--ink-abyss);
    border-radius: 50%;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--cream-line);
}
.vd-section.is-dark .vd-step-num,
.vd-section.is-mid  .vd-step-num {
    background: var(--ink-abyss);
    color: var(--cream);
    border-color: rgba(247,242,233,0.2);
}
.vd-step-title {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 10px;
    letter-spacing: -0.005em;
}
.vd-step-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: rgba(10, 14, 18, 0.7);
}
.vd-section.is-dark .vd-step-desc,
.vd-section.is-mid  .vd-step-desc { color: rgba(247, 242, 233, 0.65); }

/* ---------------------------------------------------------------------------
 * Pricing
 * ------------------------------------------------------------------------ */
.vd-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
    align-items: stretch;
}
.vd-plan {
    background: var(--cream-warm);
    border: 1px solid var(--cream-line);
    padding: 44px 36px 36px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms ease;
}
.vd-plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.vd-plan.is-featured {
    background: var(--ink-abyss);
    color: var(--cream);
    border: 2px solid var(--teal);
    transform: scale(1.03);
    z-index: 2;
}
.vd-plan.is-featured:hover { transform: scale(1.03) translateY(-6px); }
.vd-plan-tag {
    position: absolute;
    top: -14px; left: 36px;
    background: var(--gold);
    color: var(--ink-abyss);
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
}
.vd-plan-name {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--teal-deep);
}
.vd-plan.is-featured .vd-plan-name { color: var(--teal); }
.vd-plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}
.vd-plan-currency {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 22px;
    color: rgba(10, 14, 18, 0.65);
}
.vd-plan.is-featured .vd-plan-currency { color: rgba(247,242,233,0.6); }
.vd-plan-value {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 84px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
    font-feature-settings: 'tnum' 1;
}
.vd-plan.is-featured .vd-plan-value { color: var(--cream); }
.vd-plan-period {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 15px;
    color: rgba(10, 14, 18, 0.55);
}
.vd-plan.is-featured .vd-plan-period { color: rgba(247,242,233,0.55); }
.vd-plan-tag-line {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 15px;
    color: rgba(10, 14, 18, 0.65);
    margin: 14px 0 28px;
    min-height: 22px;
}
.vd-plan.is-featured .vd-plan-tag-line { color: rgba(247,242,233,0.7); }
.vd-plan-feats {
    list-style: none;
    margin: 0 0 32px;
    display: grid;
    gap: 12px;
    flex-grow: 1;
}
.vd-plan-feats li {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    color: rgba(10, 14, 18, 0.82);
    padding-left: 26px;
    position: relative;
}
.vd-plan.is-featured .vd-plan-feats li { color: rgba(247,242,233,0.88); }
.vd-plan-feats li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 14px; height: 8px;
    border-left: 2px solid var(--teal);
    border-bottom: 2px solid var(--teal);
    transform: rotate(-45deg);
}
.vd-plan .vd-btn { width: 100%; justify-content: center; }
.vd-plan:not(.is-featured) .vd-btn {
    background: var(--ink-abyss);
    color: var(--cream);
}
.vd-plan:not(.is-featured) .vd-btn:hover { background: var(--ink-mid); }

.vd-pricing-note {
    margin-top: 40px;
    text-align: center;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 16px;
    color: rgba(10, 14, 18, 0.62);
    position: relative; z-index: 2;
}

/* ---------------------------------------------------------------------------
 * Testimonial / case A Soma
 * ------------------------------------------------------------------------ */
.vd-case {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.vd-case-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(28px, 4.2vw, 56px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin: 0 auto 48px;
    position: relative;
}
.vd-case-quote::before, .vd-case-quote::after {
    content: '"';
    color: var(--teal);
    font-size: 1.4em;
    font-weight: 700;
    line-height: 0;
    vertical-align: -0.18em;
}
.vd-case-quote::before { margin-right: 8px; }
.vd-case-quote::after  { margin-left: 8px; }
.vd-case-author {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.vd-case-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    color: var(--ink-abyss);
    font-size: 30px;
}
.vd-case-name {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 16px;
    color: var(--cream);
    letter-spacing: 0.02em;
}
.vd-case-role {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 14px;
    color: rgba(247, 242, 233, 0.55);
    margin-top: 4px;
}

/* ---------------------------------------------------------------------------
 * FAQ accordion
 * ------------------------------------------------------------------------ */
.vd-faq {
    max-width: 820px;
    position: relative;
    z-index: 2;
}
.vd-faq-item {
    border-bottom: 1px solid rgba(10, 14, 18, 0.1);
    padding: 4px 0;
}
.vd-section.is-dark .vd-faq-item,
.vd-section.is-mid  .vd-faq-item { border-color: rgba(247, 242, 233, 0.08); }
.vd-faq-item summary {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 20px;
    padding: 22px 48px 22px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color 200ms ease;
    color: var(--ink-abyss);
}
.vd-section.is-dark .vd-faq-item summary,
.vd-section.is-mid  .vd-faq-item summary { color: var(--cream); }
.vd-faq-item summary::-webkit-details-marker { display: none; }
.vd-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 4px; top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-weight: 200;
    font-size: 32px;
    color: var(--teal);
    transition: transform 280ms cubic-bezier(.2,.7,.2,1);
    line-height: 1;
}
.vd-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.vd-faq-item p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: rgba(10, 14, 18, 0.74);
    padding: 4px 60px 26px 0;
}
.vd-section.is-dark .vd-faq-item p,
.vd-section.is-mid  .vd-faq-item p { color: rgba(247, 242, 233, 0.7); }

/* ---------------------------------------------------------------------------
 * Lead form CTA final
 * ------------------------------------------------------------------------ */
.vd-cta-wrap {
    background: var(--cream);
    color: var(--ink-abyss);
    padding: clamp(80px, 11vw, 140px) 0;
    position: relative;
    overflow: hidden;
}
.vd-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}
.vd-cta-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
}
.vd-cta-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.55;
    color: rgba(10, 14, 18, 0.72);
    max-width: 480px;
    margin-bottom: 32px;
}
.vd-cta-bullets {
    list-style: none;
    display: grid;
    gap: 18px;
    margin-top: 32px;
}
.vd-cta-bullets li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-family: var(--font-ui);
    font-size: 15px;
    color: rgba(10, 14, 18, 0.82);
    line-height: 1.5;
}
.vd-cta-bullets li::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--teal);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}
.vd-cta-bullets li b { font-weight: 700; color: var(--ink-abyss); }

.vd-form {
    background: var(--ink-abyss);
    color: var(--cream);
    padding: 44px;
    border-radius: 6px;
    box-shadow: 0 40px 80px -30px rgba(0,0,0,0.25);
}
.vd-form-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--cream);
}
.vd-form-sub {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(247, 242, 233, 0.65);
    margin-bottom: 28px;
}
.vd-fg {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.vd-fg label {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(247, 242, 233, 0.6);
}
.vd-fg input, .vd-fg select, .vd-fg textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(247, 242, 233, 0.18);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 17px;
    padding: 10px 0;
    outline: none;
    width: 100%;
    transition: border-color 200ms ease;
}
.vd-fg input:focus, .vd-fg select:focus, .vd-fg textarea:focus {
    border-color: var(--teal);
}
.vd-fg select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--teal) 50%),
                      linear-gradient(135deg, var(--teal) 50%, transparent 50%);
    background-position: calc(100% - 12px) 18px, calc(100% - 7px) 18px;
    background-size: 5px 5px;
    background-repeat: no-repeat;
    padding-right: 24px;
    color: var(--cream);
}
.vd-fg select option { background: var(--ink-abyss); color: var(--cream); }
.vd-fg textarea { resize: vertical; min-height: 80px; }
.vd-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.vd-msg {
    display: block;
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: 14px;
    min-height: 20px;
}
.vd-msg.is-ok    { color: var(--teal); }
.vd-msg.is-err   { color: var(--rose); }
.vd-msg.is-info  { color: rgba(247, 242, 233, 0.55); }

.vd-form .vd-btn { margin-top: 12px; background: var(--teal); color: var(--ink-abyss); }
.vd-form-fineprint {
    margin-top: 16px;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 13px;
    color: rgba(247, 242, 233, 0.5);
    text-align: center;
}

/* ---------------------------------------------------------------------------
 * Footer
 * ------------------------------------------------------------------------ */
.vd-foot {
    background: var(--ink-abyss);
    color: var(--cream);
    padding: 80px 0 36px;
    position: relative;
    border-top: 1px solid rgba(247, 242, 233, 0.06);
}
.vd-foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 60px;
}
.vd-foot-brand {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 28px;
    color: var(--cream);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}
.vd-foot-brand::after {
    content: '';
    width: 8px; height: 8px;
    background: var(--teal);
    border-radius: 50%;
    transform: translateY(-3px);
}
.vd-foot-tagline {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    color: rgba(247, 242, 233, 0.6);
    max-width: 380px;
    margin-bottom: 24px;
}
.vd-foot-col h4 {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
}
.vd-foot-col ul { list-style: none; display: grid; gap: 10px; }
.vd-foot-col a {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(247, 242, 233, 0.72);
    transition: color 200ms ease;
}
.vd-foot-col a:hover { color: var(--cream); }

.vd-foot-bottom {
    border-top: 1px solid rgba(247, 242, 233, 0.06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(247, 242, 233, 0.45);
    text-transform: uppercase;
}
.vd-foot-socials {
    display: flex;
    gap: 16px;
}
.vd-foot-socials a {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(247, 242, 233, 0.18);
    border-radius: 50%;
    color: rgba(247, 242, 233, 0.72);
    transition: all 200ms ease;
}
.vd-foot-socials a:hover {
    background: var(--teal);
    color: var(--ink-abyss);
    border-color: var(--teal);
}
.vd-foot-socials svg { width: 14px; height: 14px; }

/* ---------------------------------------------------------------------------
 * Reveal on scroll
 * ------------------------------------------------------------------------ */
.vd-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
    will-change: opacity, transform;
}
.vd-reveal.is-in { opacity: 1; transform: translateY(0); }
.vd-reveal[data-delay="1"] { transition-delay: 80ms; }
.vd-reveal[data-delay="2"] { transition-delay: 160ms; }
.vd-reveal[data-delay="3"] { transition-delay: 240ms; }
.vd-reveal[data-delay="4"] { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
    .vd-reveal { opacity: 1 !important; transform: none !important; }
    .vd-marquee { animation: none !important; }
    .vd-hero-headline .vd-word { opacity: 1 !important; transform: none !important; }
    .vd-cursor { display: none !important; }
}

/* ---------------------------------------------------------------------------
 * Responsivo
 * ------------------------------------------------------------------------ */
@media (max-width: 1100px) {
    .vd-feature { gap: 56px; }
    .vd-feature-visual { aspect-ratio: 4 / 3; }
}
@media (max-width: 900px) {
    .vd-nav-links { display: none; }
    .vd-nav-burger { display: inline-flex; }
    .vd-nav.is-open .vd-nav-links {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: var(--ink-abyss);
        padding: 28px var(--gutter);
        gap: 20px;
        border-bottom: 1px solid rgba(247,242,233,0.08);
    }
    .vd-feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .vd-feature:nth-child(even) .vd-feature-body { order: 1; }
    .vd-feature:nth-child(even) .vd-feature-visual { order: 2; }
    .vd-steps { grid-template-columns: 1fr 1fr; }
    .vd-steps::before { display: none; }
    .vd-pricing { grid-template-columns: 1fr; }
    .vd-plan.is-featured { transform: none; }
    .vd-plan.is-featured:hover { transform: translateY(-6px); }
    .vd-cta-grid { grid-template-columns: 1fr; gap: 48px; }
    .vd-foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .vd-form { padding: 32px 24px; }
    .vd-form-row { grid-template-columns: 1fr; gap: 0; }
    .vd-hero-meta { gap: 32px; }
    .vd-hero-meta-num { font-size: 36px; }
}
@media (max-width: 560px) {
    .vd-hero { padding: 130px 0 60px; }
    .vd-hero-actions { width: 100%; }
    .vd-hero-actions .vd-btn { width: 100%; justify-content: center; }
    .vd-steps { grid-template-columns: 1fr; gap: 32px; }
    .vd-foot-grid { grid-template-columns: 1fr; }
    .vd-foot-bottom { font-size: 10px; }
    .vd-section-head { margin-bottom: 56px; }
    .vd-watermark { font-size: 180px; }
}

/* ---------------------------------------------------------------------------
 * Cross-cutting QA 2026-05-26 (agente revisor):
 * skip link, focus-visible global, selection editorial e print stylesheet.
 * ------------------------------------------------------------------------ */
.vd-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    padding: 12px 18px;
    background: var(--teal);
    color: var(--ink-abyss);
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 0 0 8px 0;
    z-index: 10000;
    text-decoration: none;
}
.vd-skip:focus { left: 0; outline: 2px solid var(--gold); outline-offset: 3px; }

::selection {
    background: var(--teal-soft);
    color: var(--cream);
}

*:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
    border-radius: 4px;
}
a:focus-visible, button:focus-visible, .vd-btn:focus-visible, .vd-input:focus-visible {
    outline-offset: 4px;
}

@media print {
    .vd-nav, .vd-cursor, .vd-marquee, .vd-watermark,
    .vd-form, .vd-hero-actions, .vd-nav-burger, button { display: none !important; }
    body {
        background: #fff !important;
        color: #000 !important;
        font-size: 12pt;
    }
    .vd-hero, .vd-section, .vd-feature, .vd-plan, .vd-foot {
        background: #fff !important;
        color: #000 !important;
        box-shadow: none !important;
        page-break-inside: avoid;
    }
    .vd-hero-headline, .vd-section-title, h1, h2, h3 { color: #000 !important; }
    a { color: #000 !important; text-decoration: underline; }
    .vd-reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* =============================================================================
 * EXTENSÕES 2026-05-26: hero loop SVG, marquee 12 logos, toggle anual,
 * ROI calc, FAQ inline plano destacado, mini-quotes, footer 4 cols, Turnstile.
 * Também: páginas auxiliares (404/500/privacidade/termos/contato).
 * ========================================================================== */

/* Hero loop SVG ------------------------------------------------------------- */
.vd-hero-loop {
    position: absolute;
    right: var(--gutter);
    bottom: 80px;
    width: 220px;
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
}
.vd-hero-loop svg { width: 100%; height: auto; }
.vd-hero-loop .lp-cell { animation: vdLoopFill 8s ease-in-out infinite; transform-origin: center; }
.vd-hero-loop .lp-c2 { animation-delay: 0.6s; }
.vd-hero-loop .lp-c3 { animation-delay: 1.2s; }
.vd-hero-loop .lp-c4 { animation-delay: 1.8s; }
.vd-hero-loop .lp-c5 { animation-delay: 2.4s; }
.vd-hero-loop .lp-c6 { animation-delay: 3.0s; }
@keyframes vdLoopFill {
    0%, 100% { opacity: 0.18; }
    50%      { opacity: 0.9; }
}
@media (max-width: 900px) { .vd-hero-loop { display: none; } }

/* CTA tilt no hero --------------------------------------------------------- */
.vd-btn.vd-btn-tilt { transform-style: preserve-3d; will-change: transform; }
.vd-btn.vd-btn-tilt:hover { transform: scale(1.02) rotateX(2deg); }

/* Marquee de logos SVG (12 coworkings fictícios) -------------------------- */
.vd-logos-strip {
    background: var(--ink-deep);
    padding: 44px 0 36px;
    border-top: 1px solid rgba(247,242,233,0.05);
    border-bottom: 1px solid rgba(247,242,233,0.05);
    overflow: hidden;
    position: relative;
}
.vd-logos-label {
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247,242,233,0.42);
}
.vd-logos-track {
    display: flex;
    width: max-content;
    gap: 64px;
    align-items: center;
    animation: vdMarquee 50s linear infinite;
    padding-top: 22px;
}
.vd-logos-track:hover { animation-play-state: paused; }
.vd-logo-item {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    height: 56px;
    padding: 0 10px;
    color: rgba(247,242,233,0.62);
    transition: color 240ms ease, opacity 240ms ease;
    opacity: 0.85;
    filter: grayscale(1);
}
.vd-logo-item:hover { color: var(--cream); opacity: 1; filter: grayscale(0); }
.vd-logo-item svg { height: 36px; width: auto; display: block; }

/* Feature scroll-in lateral ----------------------------------------------- */
.vd-feature.vd-reveal:nth-child(odd):not(.is-in) { transform: translateX(-40px); }
.vd-feature.vd-reveal:nth-child(even):not(.is-in) { transform: translateX(40px); }
.vd-feature.vd-reveal { transition: opacity 800ms cubic-bezier(.2,.7,.2,1), transform 800ms cubic-bezier(.2,.7,.2,1); }

/* Steps: linha conectora animada (dash) ----------------------------------- */
.vd-steps::before { background: none !important; }
.vd-steps-line {
    position: absolute;
    left: 5%; right: 5%;
    top: 32px;
    height: 2px;
    z-index: 0;
    pointer-events: none;
}
.vd-steps-line svg { width: 100%; height: 100%; display: block; overflow: visible; }
.vd-steps-line path {
    stroke: var(--teal);
    stroke-width: 1.5;
    fill: none;
    stroke-dasharray: 4 6;
    animation: vdStepDash 12s linear infinite;
}
@keyframes vdStepDash { to { stroke-dashoffset: -100; } }

.vd-step-tip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    background: var(--ink-deep);
    color: var(--cream);
    font-family: var(--font-ui);
    font-size: 11.5px;
    letter-spacing: 0.04em;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid rgba(247,242,233,0.12);
    width: 220px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
    z-index: 5;
}
.vd-step:hover .vd-step-tip { opacity: 1; }
.vd-section.is-cream .vd-step-tip {
    background: var(--ink-abyss);
    border-color: rgba(247,242,233,0.18);
}

/* Pricing: toggle mensal / anual ----------------------------------------- */
.vd-pricing-toggle-wrap { text-align: center; margin-bottom: 36px; position: relative; z-index: 3; }
.vd-pricing-toggle {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    border: 1px solid var(--cream-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
}
.vd-pricing-toggle button {
    background: transparent;
    border: 0;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(10,14,18,0.6);
    cursor: pointer;
    padding: 9px 18px;
    border-radius: 999px;
    transition: background 240ms ease, color 240ms ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.vd-pricing-toggle button[aria-pressed="true"] {
    background: var(--ink-abyss);
    color: var(--cream);
}
.vd-discount-pill {
    background: var(--gold);
    color: var(--ink-abyss);
    font-size: 9.5px;
    padding: 2px 7px;
    border-radius: 999px;
    letter-spacing: 0.1em;
}
.vd-plan-price-anual {
    display: none;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}
.vd-pricing.is-annual .vd-plan-price { display: none; }
.vd-pricing.is-annual .vd-plan-price-anual { display: flex; }
.vd-plan-discount {
    display: block;
    margin: 6px 0 0;
    font-family: var(--font-ui);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* FAQ inline no plano destacado */
.vd-plan-featured-faq {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(247, 242, 233, 0.18);
}
.vd-plan-featured-faq summary {
    cursor: pointer;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 13px;
    color: var(--teal);
    list-style: none;
    padding: 4px 0;
    position: relative;
}
.vd-plan-featured-faq summary::-webkit-details-marker { display: none; }
.vd-plan-featured-faq summary::after {
    content: '+';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    color: var(--teal);
    font-size: 18px;
    transition: transform 220ms ease;
}
.vd-plan-featured-faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.vd-plan-featured-faq ul {
    margin-top: 10px;
    list-style: none;
    display: grid;
    gap: 8px;
}
.vd-plan-featured-faq ul li {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(247, 242, 233, 0.78);
    padding-left: 16px;
    position: relative;
}
.vd-plan-featured-faq ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Pulse no plano destacado */
.vd-plan.is-featured { animation: vdPulsePricing 4s ease-in-out infinite; }
@keyframes vdPulsePricing {
    0%, 100% { box-shadow: 0 0 0 0 rgba(45, 168, 155, 0.0), 0 30px 60px -30px rgba(0,0,0,0.55); }
    50%      { box-shadow: 0 0 0 6px rgba(45, 168, 155, 0.10), 0 30px 60px -30px rgba(0,0,0,0.55); }
}

/* ROI calc ---------------------------------------------------------------- */
.vd-roi {
    margin-top: 64px;
    padding: 36px 40px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--cream-line);
    border-radius: 6px;
    position: relative;
    z-index: 3;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 40px -20px rgba(10, 14, 18, 0.1);
}
.vd-roi-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.vd-roi-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 26px;
    color: var(--ink-abyss);
}
.vd-roi-sub {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 14px;
    color: rgba(10,14,18,0.62);
    max-width: 380px;
}
.vd-roi-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}
.vd-roi-range { display: flex; flex-direction: column; gap: 12px; }
.vd-roi-range label {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(10,14,18,0.7);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.vd-roi-range label .vd-roi-val {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 24px;
    color: var(--teal-deep);
    letter-spacing: -0.01em;
}
.vd-roi-range input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    background: transparent;
}
.vd-roi-range input[type=range]::-webkit-slider-runnable-track {
    height: 4px;
    background: var(--cream-line);
    border-radius: 2px;
}
.vd-roi-range input[type=range]::-moz-range-track {
    height: 4px;
    background: var(--cream-line);
    border-radius: 2px;
}
.vd-roi-range input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px; height: 18px;
    margin-top: -7px;
    background: var(--ink-abyss);
    border: 3px solid var(--teal);
    border-radius: 50%;
    cursor: pointer;
}
.vd-roi-range input[type=range]::-moz-range-thumb {
    width: 18px; height: 18px;
    background: var(--ink-abyss);
    border: 3px solid var(--teal);
    border-radius: 50%;
    cursor: pointer;
}
.vd-roi-out { text-align: right; }
.vd-roi-out-num {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: 56px;
    line-height: 1;
    color: var(--ink-abyss);
    letter-spacing: -0.025em;
}
.vd-roi-out-num .curr {
    font-size: 22px;
    color: var(--teal-deep);
    font-style: italic;
    margin-right: 4px;
}
.vd-roi-out-label {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10,14,18,0.7);
    margin-top: 6px;
}
.vd-roi-foot {
    margin-top: 22px;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 13.5px;
    color: rgba(10, 14, 18, 0.58);
    text-align: center;
}

/* Mini quotes ------------------------------------------------------------- */
.vd-mini-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}
.vd-mini-quote {
    background: rgba(247, 242, 233, 0.04);
    border: 1px solid rgba(247, 242, 233, 0.08);
    border-radius: 4px;
    padding: 28px 26px 24px;
    text-align: left;
}
.vd-mini-quote-mark {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 48px;
    line-height: 0.4;
    color: var(--teal);
    margin-bottom: 8px;
    display: block;
}
.vd-mini-quote-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.55;
    color: rgba(247, 242, 233, 0.82);
    margin-bottom: 16px;
    font-style: italic;
}
.vd-mini-quote-who {
    font-family: var(--font-ui);
    font-size: 11.5px;
    color: rgba(247, 242, 233, 0.55);
    letter-spacing: 0.06em;
}
.vd-mini-quote-who b { color: var(--cream); font-weight: 700; display: block; margin-bottom: 2px; }

/* Lead form: Turnstile, sucesso e validação ------------------------------- */
.vd-form-turnstile {
    margin: 12px 0 4px;
    min-height: 65px;
    display: flex;
    justify-content: center;
}
.vd-form-success {
    display: none;
    background: rgba(45, 168, 155, 0.12);
    border: 1px solid var(--teal);
    border-radius: 4px;
    padding: 24px 26px;
    text-align: center;
}
.vd-form-success.is-on { display: block; }
.vd-form-success-orn { color: var(--teal); margin-bottom: 14px; display: inline-block; }
.vd-form-success-orn svg { width: 36px; height: 36px; margin: 0 auto; }
.vd-form-success-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 24px;
    color: var(--cream);
    margin-bottom: 8px;
}
.vd-form-success-text {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(247, 242, 233, 0.78);
    line-height: 1.5;
}
.vd-fg.is-invalid input,
.vd-fg.is-invalid select,
.vd-fg.is-invalid textarea {
    border-bottom-color: var(--rose);
}
.vd-fg .vd-fg-err {
    display: none;
    font-family: var(--font-ui);
    font-size: 11.5px;
    color: var(--rose);
    margin-top: 4px;
}
.vd-fg.is-invalid .vd-fg-err { display: block; }

/* =============================================================================
 * PÁGINAS AUXILIARES (404 / 500 / privacidade / termos / contato)
 * ========================================================================== */

/* Error pages (404 + 500) ------------------------------------------------ */
.vd-err {
    min-height: 100vh;
    background: var(--ink-abyss);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px var(--gutter);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.vd-err::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 60% at 50% 0%, rgba(45,168,155,0.18) 0%, transparent 55%),
        radial-gradient(80% 60% at 50% 100%, rgba(232,155,138,0.10) 0%, transparent 60%);
    pointer-events: none;
}
.vd-err-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-style: italic;
    font-variation-settings: 'opsz' 144;
    font-size: clamp(180px, 28vw, 360px);
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--cream);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--cream) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vd-err-eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.vd-err-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 900;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--cream);
    margin-bottom: 22px;
    max-width: 720px;
    position: relative;
    z-index: 1;
}
.vd-err-sub {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.55;
    color: rgba(247, 242, 233, 0.78);
    max-width: 580px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}
.vd-err-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.vd-err-ornament {
    position: absolute;
    bottom: 32px;
    left: 0; right: 0;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    color: rgba(247, 242, 233, 0.32);
    text-transform: uppercase;
    z-index: 1;
}

/* Páginas tipográficas (privacidade, termos) ----------------------------- */
.vd-doc {
    background: var(--cream);
    color: var(--ink-abyss);
    padding: 140px 0 100px;
    min-height: 100vh;
}
.vd-doc-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 64px;
    align-items: flex-start;
}
.vd-doc-toc {
    position: sticky;
    top: 120px;
    align-self: flex-start;
    padding: 18px 20px;
    border-left: 1px solid var(--cream-line);
}
.vd-doc-toc h4 {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(10,14,18,0.55);
    margin-bottom: 14px;
}
.vd-doc-toc ul {
    list-style: none;
    display: grid;
    gap: 10px;
}
.vd-doc-toc a {
    font-family: var(--font-ui);
    font-size: 13.5px;
    color: rgba(10,14,18,0.7);
    transition: color 200ms ease, padding 200ms ease;
}
.vd-doc-toc a:hover { color: var(--teal-deep); padding-left: 4px; }

.vd-doc-body {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-abyss);
    max-width: 720px;
}
.vd-doc-body h1 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.vd-doc-body .vd-doc-lede {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 18px;
    color: rgba(10,14,18,0.6);
    margin-bottom: 48px;
}
.vd-doc-body h2 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.1;
    margin: 48px 0 18px;
    color: var(--ink-abyss);
    letter-spacing: -0.01em;
}
.vd-doc-body h3 {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.02em;
    margin: 26px 0 10px;
}
.vd-doc-body p { margin-bottom: 18px; }
.vd-doc-body ul {
    list-style: none;
    margin: 18px 0;
    padding: 0;
}
.vd-doc-body ul li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 8px;
}
.vd-doc-body ul li::before {
    content: '·';
    position: absolute;
    left: 6px;
    top: -2px;
    color: var(--teal-deep);
    font-weight: 800;
    font-size: 22px;
    line-height: 1;
}
.vd-doc-body strong { font-weight: 700; color: var(--ink-abyss); }
.vd-doc-body em { font-style: italic; }
.vd-doc-body a {
    color: var(--teal-deep);
    border-bottom: 1px solid rgba(45, 168, 155, 0.4);
    transition: border-color 180ms ease;
}
.vd-doc-body a:hover { border-bottom-color: var(--teal-deep); }
.vd-doc-body blockquote {
    border-left: 3px solid var(--teal);
    padding: 6px 0 6px 22px;
    margin: 28px 0;
    font-style: italic;
    font-size: 18px;
    color: rgba(10,14,18,0.7);
}
.vd-doc-foot {
    margin-top: 80px;
    padding-top: 24px;
    border-top: 1px solid var(--cream-line);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(10,14,18,0.55);
}

/* Página de contato ------------------------------------------------------ */
.vd-contact {
    background: var(--cream);
    color: var(--ink-abyss);
    padding: 140px 0 100px;
    min-height: 100vh;
}
.vd-contact-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-start;
}
.vd-contact-head h1 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ink-abyss);
    margin-bottom: 18px;
}
.vd-contact-head p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: rgba(10,14,18,0.66);
    margin-bottom: 36px;
}
.vd-contact-list {
    list-style: none;
    display: grid;
    gap: 22px;
    margin: 0;
    padding: 0;
}
.vd-contact-list li {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 14px;
    align-items: flex-start;
}
.vd-contact-list li::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--teal);
    border-radius: 50%;
    margin-top: 9px;
}
.vd-contact-list b {
    display: block;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-abyss);
    margin-bottom: 4px;
}
.vd-contact-list a {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--teal-deep);
    border-bottom: 1px solid rgba(45,168,155,0.35);
}
.vd-contact-list a:hover { border-bottom-color: var(--teal-deep); }

.vd-contact-form {
    background: var(--ink-abyss);
    color: var(--cream);
    padding: 44px;
    border-radius: 6px;
    box-shadow: 0 40px 80px -30px rgba(0,0,0,0.25);
}

/* Responsivo dos novos blocos --------------------------------------------- */
@media (max-width: 900px) {
    .vd-roi-form { grid-template-columns: 1fr; }
    .vd-roi-out { text-align: left; }
    .vd-mini-quotes { grid-template-columns: 1fr; gap: 16px; }
    .vd-pricing-toggle button { padding: 8px 14px; font-size: 12px; }
    .vd-doc-wrap { grid-template-columns: 1fr; gap: 32px; }
    .vd-doc-toc { position: relative; top: 0; }
    .vd-contact-wrap { grid-template-columns: 1fr; gap: 32px; }
    .vd-contact-form { padding: 32px 24px; }
}
@media (max-width: 560px) {
    .vd-logos-track { gap: 36px; }
    .vd-logo-item svg { height: 26px; }
    .vd-hero-loop { display: none; }
    .vd-roi-out-num { font-size: 42px; }
    .vd-roi { padding: 28px 22px; }
    .vd-err-num { font-size: 140px; }
}

/* =============================================================================
 * PERF & MOBILE 2026-05-26: touch targets WCAG, safe-area iOS, motion-reduce.
 * Camada no final do CSS - sobrescreve sem !important agressivo, exceto onde
 * o reset for indispensavel (motion-reduce na verdade desliga animacao toda).
 * ========================================================================== */
@media (max-width: 900px) {
    /* WCAG 2.5.5: touch target minimo 44x44 CSS px em mobile. */
    .vd-nav-burger, .vd-marquee-item, .vd-mini-quote, .vd-cta-sm {
        min-height: 44px;
    }
    .vd-nav-burger { min-width: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .vd-foot a, .vd-nav-links a { min-height: 36px; display: inline-flex; align-items: center; }
}
/* Safe-area iOS: respeita notch/home indicator. Nav fica abaixo do notch e
 * footer respeita home indicator. viewport-fit=cover ja em vendas/index.php. */
.vd-nav { padding-top: env(safe-area-inset-top); }
.vd-foot-bottom { padding-bottom: max(env(safe-area-inset-bottom), 16px); }
/* CLS: SVGs com viewBox + altura intrinseca implicita. Garante que hero-ornament
 * nao reserva altura indefinida. */
.vd-hero-ornament svg, .vd-hero-loop svg, .vd-feature-canvas svg { display: block; max-width: 100%; height: auto; }
/* Reduce-motion: respeita preferencia do usuario (acessibilidade + perf). */
@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;
    }
    .vd-marquee, .vd-logos-track { animation: none !important; }
}
