/*
 * Landing publica ("/") — ambiente interativo pre-login.
 * Reaproveita os tokens de app.css/login.css (navy + laranja, ver
 * EstiloVorbiELogos/) num layout proprio, full-bleed e orientado a cenas.
 */
:root {
    --vl-navy-950: #050a13;
    --vl-navy-900: #0a1626;
    --vl-navy-850: #0d1f36;
    --vl-line: rgba(255, 255, 255, .08);
    --vl-text: #f3f5f7;
    --vl-text-muted: #93a2b8;
    --vl-orange: #ef6b2b;
    --vl-orange-dark: #e2551a;
}

html { scroll-behavior: smooth; }
.vb-land { box-sizing: border-box; }
.vb-land *, .vb-land *::before, .vb-land *::after { box-sizing: border-box; }

.vb-land {
    margin: 0;
    background: var(--vl-navy-950);
    color: var(--vl-text);
    font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

/* ---------- Topbar ---------- */
.vb-land__topbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 40;
    padding: 18px 6%;
    transition: background .3s ease, backdrop-filter .3s ease;
}
.vb-land__topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vb-land__topbar.is-scrolled {
    background: rgba(6, 12, 22, .82);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--vl-line);
}
.vb-land__logo { height: 44px; display: block; }
.vb-land__navlinks { display: flex; align-items: center; gap: 26px; }
.vb-land__navlinks a { color: #dfe4ea; font-size: 13.5px; font-weight: 500; text-decoration: none; }
.vb-land__navlinks a:hover { color: var(--vl-orange); }
.vb-land__topbar-actions { display: flex; align-items: center; gap: 18px; }
.vb-land__ghost-link { color: #fff; font-size: 14px; text-decoration: none; }
.vb-land__ghost-link:hover { color: #fff; }
.vb-land__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--vl-orange), var(--vl-orange-dark));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: filter .15s ease, transform .15s ease;
}
.vb-land__cta:hover { filter: brightness(1.08); text-decoration: none; color: #fff; transform: translateY(-1px); }
.vb-land__cta--lg { padding: 13px 22px; font-size: 14.5px; }

@media (max-width: 980px) {
    .vb-land__navlinks { display: none; }
}
@media (max-width: 560px) {
    .vb-land__topbar { padding: 14px 16px; }
    .vb-land__logo { height: 32px; }
    .vb-land__ghost-link { display: none; }
    .vb-land__cta { padding: 8px 12px; font-size: 12px; white-space: normal; text-align: center; }
}

/* ---------- Palco cinematico: Hero -> Soluções como uma unica cena continua,
   pinada e conduzida pelo progresso do scroll (GSAP ScrollTrigger).
   Ver assets/js/landing.js (timeline "cineTl"). ---------- */
.vb-cine { position: relative; }
.vb-cine__stage {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--vl-navy-950);
    perspective: 1200px;
}
.vb-cine__layer {
    position: absolute;
    inset: -8%;
    background-size: cover;
    background-position: center 38%;
    background-repeat: no-repeat;
    transform-origin: 50% 62%;
    will-change: transform, opacity, filter;
}
.vb-cine__layer--building { z-index: 1; }
.vb-cine__layer--escritorio { z-index: 2; opacity: 0; }
.vb-cine__layer--lobby { z-index: 3; opacity: 0; inset: 0; background-position: center; }
.vb-cine__layer--roof {
    z-index: 4;
    opacity: 0;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-color: var(--vl-navy-950);
}
.vb-cine__layer--roof::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 10, 19, .12) 0%, rgba(5, 10, 19, .25) 45%, rgba(5, 10, 19, .62) 75%, rgba(5, 10, 19, .8) 100%);
}
.vb-cine__layer--contato {
    z-index: 5;
    opacity: 0;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-color: var(--vl-navy-950);
}
.vb-cine__layer--contato::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 70% at 50% 40%, rgba(5, 10, 19, .3) 0%, rgba(5, 10, 19, .72) 100%),
        linear-gradient(180deg, var(--vl-navy-900) 0%, rgba(10, 22, 38, .35) 18%, rgba(10, 22, 38, .35) 82%, var(--vl-navy-900) 100%);
}

.vb-cine__streaks { position: absolute; inset: 0; z-index: 5; pointer-events: none; opacity: 0; }
.vb-cine__streaks span {
    position: absolute;
    top: var(--sy, 20%);
    left: -25%;
    width: 38%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, rgba(160, 215, 255, .85), transparent);
}
.vb-cine__streaks span:nth-child(1) { --sy: 16%; }
.vb-cine__streaks span:nth-child(2) { --sy: 33%; }
.vb-cine__streaks span:nth-child(3) { --sy: 51%; }
.vb-cine__streaks span:nth-child(4) { --sy: 69%; }
.vb-cine__streaks span:nth-child(5) { --sy: 85%; }

.vb-cine__vignette {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    background:
        linear-gradient(100deg, var(--vl-navy-950) 0%, rgba(5,10,19,.92) 26%, rgba(5,10,19,.55) 46%, rgba(5,10,19,.16) 64%, rgba(5,10,19,.4) 100%),
        linear-gradient(0deg, rgba(5,10,19,.6) 0%, transparent 24%);
}

.vb-cine__hud { position: absolute; inset: 0; z-index: 6; }
.vb-cine__hud--hero {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    padding: 190px 6% 40px;
}
.vb-cine__hero-copy { max-width: 520px; }
.vb-cine__hero-copy h1 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.12; margin: 0 0 14px; color: #fff; }
.vb-cine__hero-copy > p { font-size: 15px; color: var(--vl-text-muted); line-height: 1.6; max-width: 420px; margin: 0 0 26px; }
#hudKpis { justify-self: end; }
.vb-cine__scroll-hint {
    position: absolute;
    left: 6%;
    bottom: 32px;
    font-size: 12px;
    color: var(--vl-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.vb-cine__scroll-hint span { display: inline-block; animation: vlBob 2s ease-in-out infinite; }

/* Composicao "central de comando": copy+cards ocupando a largura toda da
   cena (sem coluna lateral — os indicadores flutuantes foram removidos e a
   foto do subsolo fica livre por tras do conteudo). */
.vb-cine__hud--solucoes {
    display: flex;
    align-items: center;
    padding: 100px 6% 0;
    text-align: left;
}
.vb-cine__solucoes-copy { max-width: 900px; }
.vb-cine__solucoes-copy .vb-land__eyebrow { justify-content: flex-start; }
.vb-cine__solucoes-copy h2 { font-size: clamp(30px, 4.4vw, 48px); color: #fff; margin: 0 0 14px; text-shadow: 0 2px 20px rgba(0,0,0,.7); }
.vb-cine__solucoes-copy > p { color: var(--vl-text-muted); font-size: 16px; margin: 0 0 36px; max-width: 620px; text-shadow: 0 2px 12px rgba(0,0,0,.7); }
.vb-cine__hud--solucoes .vb-land__cards--scroll { grid-template-columns: repeat(3, minmax(200px, 1fr)); gap: 20px; }

@media (max-width: 980px) {
    .vb-cine__hud--solucoes { padding-top: 90px; }
    .vb-cine__hud--solucoes .vb-land__cards--scroll { grid-template-columns: 1fr; }
}

/* Metodologia (escritorio-hero.jpg): copy centralizada, cinco passos lado a
   lado em cards (com numero, icone, titulo e hover), CTA centralizado abaixo. */
.vb-cine__hud--metodologia {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 6% 30px;
    text-align: center;
    overflow-y: auto;
    background-image: linear-gradient(180deg, rgba(5,10,19,.42) 0%, rgba(5,10,19,.58) 100%);
}
.vb-cine__metodologia-copy { max-width: 1120px; width: 100%; margin: 0 auto; }
.vb-cine__metodologia-copy .vb-land__eyebrow { justify-content: center; }
.vb-cine__metodologia-copy h2 { font-size: clamp(26px, 3.4vw, 38px); color: #fff; margin: 0 0 12px; text-shadow: 0 2px 20px rgba(0,0,0,.7); }
.vb-cine__metodologia-copy > p { color: var(--vl-text-muted); font-size: 15px; margin: 0 auto 32px; max-width: 560px; text-shadow: 0 2px 12px rgba(0,0,0,.7); }
.vb-cine__metodologia-copy .vb-land__step h4 { color: #fff; }
.vb-cine__metodologia-copy > .vb-land__cta { margin-top: 32px; }

.vb-land__steps.vb-land__steps--row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    text-align: left;
}
.vb-land__steps--row .vb-land__step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--vl-line);
    border-radius: 12px;
    padding: 18px;
    transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.vb-land__steps--row .vb-land__step:hover {
    /* !important necessario: a entrada de cada card e animada pelo GSAP
       (autoAlpha + y), que deixa um transform inline no elemento — e
       inline sempre vence uma regra normal de :hover, so nao vence uma
       marcada important. */
    transform: translateY(-4px) !important;
    border-color: rgba(239, 107, 43, .4);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .35);
}
.vb-land__steps--row .vb-land__step:hover .vb-land__step-index {
    background: rgba(239, 107, 43, .26);
    transform: scale(1.06);
}
.vb-land__steps--row .vb-land__step-number {
    display: block;
    color: var(--vl-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 10px;
}
.vb-land__steps--row .vb-land__step-index {
    align-self: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
}
.vb-land__steps--row .vb-land__step-index svg { width: 18px; height: 18px; }
.vb-land__steps--row .vb-land__step:not(:last-child) .vb-land__step-index::after { content: none !important; }
.vb-land__steps--row .vb-land__step-body { padding-top: 0; width: 100%; text-align: center; }
.vb-land__steps--row .vb-land__step-body h4 { font-size: 16px; border: none; text-decoration: none; }
.vb-land__steps--row .vb-land__step-body p { text-align: left; }

@media (max-width: 1180px) {
    .vb-land__steps.vb-land__steps--row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .vb-land__steps.vb-land__steps--row { grid-template-columns: 1fr; }
}
@media (max-height: 820px) {
    .vb-cine__metodologia-copy h2 { margin-bottom: 8px; }
    .vb-cine__metodologia-copy > p { margin-bottom: 20px; }
}

/* Casos (casos-hero.jpg): parede de video da recepcao, mesma logica de
   posicionamento por cover ja usada, so que contra o palco cinematico
   inteiro (ver layoutCasosWall em assets/js/landing.js). */
.vb-cine__hud--casos { background-image: linear-gradient(0deg, rgba(5,10,19,.5) 0%, rgba(5,10,19,.18) 18%, rgba(5,10,19,.18) 82%, rgba(5,10,19,.4) 100%); }

@media (max-width: 980px) {
    .vb-cine__hud--casos .vb-land__video-wall { display: none; }
}

.vb-land__bullet-list { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.vb-land__bullet-list li { display: flex; gap: 12px; align-items: flex-start; }
.vb-land__bullet-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(239, 107, 43, .14);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vb-land__bullet-list strong { display: block; font-size: 14px; color: #fff; margin-bottom: 2px; }
.vb-land__bullet-list span { font-size: 12.5px; color: var(--vl-text-muted); line-height: 1.5; }

.vb-land__kpi-cards { display: flex; flex-direction: column; gap: 12px; width: 300px; }
.vb-land__kpi-card {
    position: relative;
    background: var(--vl-navy-850);
    border: 1px solid var(--vl-line);
    border-radius: 14px;
    padding: 14px 16px 12px;
}
.vb-land__kpi-card-header { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.vb-land__kpi-card-label { font-size: 10.5px; color: var(--vl-text-muted); text-transform: uppercase; letter-spacing: .04em; }
.vb-land__kpi-card-info {
    flex-shrink: 0;
    font-size: 11px;
    color: var(--vl-text-muted);
    opacity: .7;
    cursor: help;
}
.vb-land__kpi-card-info:hover { opacity: 1; color: var(--vl-orange); }
.vb-land__kpi-card-value { display: block; font-size: 24px; color: #fff; font-weight: 700; line-height: 1.15; }
.vb-land__kpi-card-delta { display: block; font-size: 10.5px; margin-top: 2px; }
.vb-land__kpi-card-delta--up { color: #4ade80; }

.vb-land__kpi-chart { display: block; width: 100%; height: 58px; margin-top: 6px; }
.vb-land__kpi-axis { font-size: 8px; fill: var(--vl-text-muted); font-family: inherit; }

.vb-land__kpi-card--donut { padding-bottom: 14px; }
.vb-land__kpi-donut-row { display: flex; align-items: center; gap: 16px; margin-top: 4px; }
.vb-land__kpi-card-radial { width: 64px; height: 64px; flex-shrink: 0; }
.vb-land__kpi-legend { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }
.vb-land__kpi-legend li { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--vl-text-muted); }
.vb-land__kpi-legend-dot { flex-shrink: 0; width: 8px; height: 8px; border-radius: 999px; }
.vb-land__kpi-legend li b { margin-left: auto; color: #fff; font-weight: 600; }

@media (max-width: 1080px) {
    .vb-cine__hud--hero { grid-template-columns: 1fr; }
    #hudKpis { justify-self: start; flex-direction: row; flex-wrap: wrap; margin-top: 20px; width: 100%; }
    #hudKpis > div { flex: 1 1 220px; }
}

/* Notebook: telas largas porem baixas (ex.: 1366x768) — o palco e 100vh com
   overflow:hidden (o scroll move a cena cinematica, nao revela mais conteudo),
   entao aqui a prioridade e encolher o ritmo vertical para tudo caber. */
@media (max-height: 820px) {
    .vb-cine__hud--hero { padding-top: 96px; }
    .vb-cine__hero-copy h1 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 10px; }
    .vb-cine__hero-copy > p { margin-bottom: 16px; }
    .vb-land__bullet-list { gap: 10px; margin-bottom: 18px; }
    .vb-land__bullet-icon { width: 28px; height: 28px; }
    .vb-land__kpi-cards { gap: 8px; }
    .vb-land__kpi-card { padding: 10px 14px 8px; }
    .vb-land__kpi-card-value { font-size: 20px; }
    .vb-land__kpi-chart { height: 42px; margin-top: 4px; }
    .vb-cine__scroll-hint { bottom: 14px; }
}
@media (max-height: 680px) {
    .vb-cine__hud--hero { padding-top: 76px; }
    .vb-land__kpi-cards { width: 250px; }
    .vb-cine__scroll-hint { display: none; }
}

@media (max-width: 640px) {
    .vb-cine__hud--hero { padding: 84px 6% 0; }
    .vb-cine__hero-copy { max-width: none; }
    .vb-cine__hero-copy h1 { font-size: clamp(24px, 7vw, 32px); margin-bottom: 8px; }
    .vb-cine__hero-copy > p { max-width: none; margin-bottom: 16px; }
    .vb-land__bullet-list { gap: 10px; margin-bottom: 16px; }
    #hudKpis { flex-direction: column; flex-wrap: nowrap; gap: 8px; margin-top: 16px; }
    #hudKpis > div { flex: none; }
    .vb-land__kpi-card { padding: 10px 14px 8px; }
    .vb-land__kpi-card-value { font-size: 20px; }
    .vb-land__kpi-chart { height: 40px; margin-top: 4px; }
    .vb-cine__scroll-hint { display: none; }
}

@media (max-height: 820px) {
    .vb-cine__hud--solucoes { padding-top: 70px; gap: 20px; }
    .vb-cine__solucoes-copy h2 { margin-bottom: 8px; }
    .vb-cine__solucoes-copy > p { margin-bottom: 18px; }
    .vb-land__cards--scroll { margin-bottom: 20px; }
    .vb-land__card { padding: 12px; }
}

/* ---------- Rolagem fluida: o palco cinematico (.vb-cine) cobre Hero,
   Solucoes, Metodologia e Casos como uma unica cena pinada e conduzida
   pelo GSAP ScrollTrigger (ver "cineTl" em assets/js/landing.js) — so
   o subsolo (rodape) fica fora do palco, entao e o unico ponto de snap. ---------- */
html { scroll-snap-type: y proximity; }
.vb-land__basement {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.vb-land__cards--scroll { text-align: left; margin-bottom: 34px; }
.vb-land__cards--scroll .vb-land__card {
    background: rgba(5, 10, 19, .68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* left/top/width/height calculados via JS (layoutCasosWall) para casar
   exatamente com a area da imagem renderizada por background-size:cover
   (que preenche o palco inteiro, cortando o excedente) — assim os paineis
   nunca desalinham, seja qual for a proporcao da tela. */
.vb-land__video-wall { position: absolute; pointer-events: none; }
.vb-land__video-panel {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 13%;
    height: 17vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(5, 10, 19, .16);
    border: 1.5px solid rgba(120, 195, 255, .65);
    border-radius: 6px;
    box-shadow: 0 0 14px rgba(90, 170, 255, .35), inset 0 0 22px rgba(90, 170, 255, .12);
    cursor: pointer;
    pointer-events: auto;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.vb-land__video-panel:hover, .vb-land__video-panel:focus-visible {
    background: rgba(5, 10, 19, .55);
    border-color: var(--vl-orange);
    box-shadow: 0 0 18px rgba(239, 107, 43, .45), inset 0 0 22px rgba(239, 107, 43, .12);
}
.vb-land__video-play {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(239, 107, 43, .85);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vb-land__video-label {
    font-size: 10px;
    color: #fff;
    text-align: center;
    padding: 0 6px;
    opacity: 0;
    transition: opacity .2s ease;
    text-shadow: 0 1px 4px rgba(0,0,0,.8);
}
.vb-land__video-panel:hover .vb-land__video-label, .vb-land__video-panel:focus-visible .vb-land__video-label { opacity: 1; }

@media (max-width: 980px) {
    .vb-land__video-wall { display: none; }
}

/* ---------- Player de vídeo dos Casos ---------- */
.vb-land__video-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(3, 6, 12, .85);
    backdrop-filter: blur(4px);
    padding: 24px;
}
.vb-land__video-modal.is-open { display: flex; }
.vb-land__video-modal-inner {
    position: relative;
    width: 100%;
    max-width: 820px;
    background: var(--vl-navy-850);
    border: 1px solid var(--vl-line);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.vb-land__video-modal-title { font-size: 13px; font-weight: 700; color: #fff; margin: 0 40px 12px 4px; }
.vb-land__video-player { display: block; width: 100%; max-height: 68vh; border-radius: 10px; background: #000; }
.vb-land__video-modal-fallback {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    background: rgba(255, 255, 255, .03);
    border: 1px dashed var(--vl-line);
    color: var(--vl-text-muted);
}
.vb-land__video-modal-fallback p { margin: 0; font-size: 13px; }
.vb-land__video-modal-fallback.is-visible { display: flex; }

/* Visitante tentando sair (troca de aba) — cenario comeca a "desmontar" */
.vb-land.is-leaving .vb-cine__stage {
    filter: blur(3px) saturate(.55) brightness(.65);
    transform: scale(.985);
    transition: filter .7s ease, transform .7s ease;
}
.vb-cine__stage { transition: filter .5s ease, transform .5s ease; }

.vb-land__eyebrow { color: var(--vl-orange); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }

.vb-land__startup-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 107, 43, .12);
    border: 1px solid rgba(239, 107, 43, .35);
    color: #ffb787;
    border-radius: 999px;
    padding: 5px 12px 5px 10px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 14px;
}
.vb-land__startup-badge svg { flex-shrink: 0; color: var(--vl-orange); }

@keyframes vlBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Contato (parada final do cinematic — ver landing.js leg 4) ---------- */
.vb-cine__hud--contato {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 6% 30px;
    overflow-y: auto;
}
.vb-land__contato-inner { width: 100%; max-width: 980px; margin: 0 auto; }

.vb-land__contato-head { text-align: center; max-width: 560px; margin: 0 auto 28px; }
.vb-land__contato-head .vb-land__eyebrow { justify-content: center; }
.vb-land__contato-head h2 { font-size: clamp(26px, 3.2vw, 34px); color: #fff; margin: 0 0 10px; text-shadow: 0 2px 20px rgba(0,0,0,.7); }
.vb-land__contato-head p { color: var(--vl-text-muted); font-size: 15px; margin: 0; text-shadow: 0 2px 12px rgba(0,0,0,.7); }

.vb-land__contato-alert {
    max-width: 980px;
    margin: 0 auto 24px;
    padding: 13px 18px;
    border-radius: 10px;
    font-size: 13.5px;
    text-align: center;
}
.vb-land__contato-alert--ok { background: rgba(52, 199, 89, .12); border: 1px solid rgba(52, 199, 89, .35); color: #8fe3a8; }
.vb-land__contato-alert--erro { background: rgba(239, 68, 68, .12); border: 1px solid rgba(239, 68, 68, .35); color: #f5a3a3; }

.vb-land__contato-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 980px;
    margin: 0 auto 22px;
}
.vb-land__contato-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--vl-line);
    border-radius: 12px;
    padding: 18px 20px;
    transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.vb-land__contato-card:hover {
    transform: translateY(-3px);
    border-color: rgba(239, 107, 43, .4);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .35);
}
.vb-land__contato-card-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(239, 107, 43, .16);
    border: 1px solid rgba(239, 107, 43, .35);
    color: var(--vl-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, transform .25s ease;
}
.vb-land__contato-card:hover .vb-land__contato-card-icon { background: rgba(239, 107, 43, .26); transform: scale(1.06); }
.vb-land__contato-card strong { display: block; color: #fff; font-size: 13.5px; margin-bottom: 4px; }
.vb-land__contato-card span, .vb-land__contato-card a { font-size: 12.5px; color: var(--vl-text-muted); text-decoration: none; }
.vb-land__contato-card a:hover { color: var(--vl-orange); }
.vb-land__contato-social { display: flex; gap: 8px; margin-top: 4px; }
.vb-land__contato-social a {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid var(--vl-line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vl-text-muted);
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.vb-land__contato-social a:hover { border-color: var(--vl-orange); color: #fff; background: rgba(239, 107, 43, .14); }

.vb-land__contato-form {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--vl-line);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}
.vb-land__contato-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vb-land__contato-form input[type="text"],
.vb-land__contato-form input[type="email"],
.vb-land__contato-form textarea {
    width: 100%;
    background: rgba(6, 14, 26, .4);
    border: 1px solid var(--vl-line);
    border-radius: 10px;
    padding: 11px 14px;
    color: var(--vl-text);
    font-size: 13.5px;
    font-family: inherit;
    margin-bottom: 12px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.vb-land__contato-form input::placeholder,
.vb-land__contato-form textarea::placeholder { color: var(--vl-text-muted); }
.vb-land__contato-form input:focus,
.vb-land__contato-form textarea:focus {
    outline: none;
    border-color: var(--vl-orange);
    box-shadow: 0 0 0 3px rgba(239, 107, 43, .16);
}
.vb-land__contato-form textarea { resize: vertical; min-height: 80px; }
.vb-land__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.vb-land__contato-submit { display: flex; margin: 4px auto 0; border: none; font-family: inherit; }

@media (max-width: 900px) {
    .vb-land__contato-cards { grid-template-columns: 1fr; }
    .vb-land__contato-row { grid-template-columns: 1fr; }
    .vb-land__contato-form { padding: 22px; }
}

/* ---------- Basement / footer ---------- */
.vb-land__basement {
    position: relative;
    z-index: 6;
    background-color: var(--vl-navy-950);
    border-top: 1px solid var(--vl-line);
    padding: 70px 8% 40px;
}
.vb-land__basement-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; margin-bottom: 40px; }
.vb-land__basement-col h5 { position: relative; color: #fff; font-size: 13px; margin: 0 0 18px; padding-bottom: 10px; }
.vb-land__basement-col h5::after { content: ''; position: absolute; left: 0; bottom: 0; width: 22px; height: 2px; border-radius: 2px; background: var(--vl-orange); }
.vb-land__basement-col a { display: flex; align-items: center; gap: 8px; color: var(--vl-text-muted); font-size: 13px; margin-bottom: 12px; }
.vb-land__basement-col a svg { flex-shrink: 0; opacity: .7; }
.vb-land__basement-col a:hover { color: #fff; }
.vb-land__basement-col a:hover svg { opacity: 1; color: var(--vl-orange); }

.vb-land__basement-col--brand { padding-right: 20px; }
.vb-land__basement-logo { height: 32px; display: block; margin-bottom: 16px; }
.vb-land__basement-tagline { font-size: 12.5px; color: var(--vl-text-muted); line-height: 1.6; max-width: 260px; margin: 0 0 20px; }
.vb-land__basement-social { display: flex; gap: 10px; }
.vb-land__basement-social a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid var(--vl-line);
    background: rgba(255, 255, 255, .03);
    color: var(--vl-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.vb-land__basement-social a:hover { border-color: var(--vl-orange); color: #fff; background: rgba(239, 107, 43, .14); }

@media (max-width: 900px) {
    .vb-land__basement-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
    .vb-land__basement-col--brand { grid-column: 1 / -1; padding-right: 0; }
}

.vb-land__basement-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid var(--vl-line);
}
.vb-land__btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--vl-line);
    background: transparent;
    color: var(--vl-text);
    font-size: 13px;
    cursor: pointer;
}
.vb-land__btn-outline:hover { border-color: var(--vl-orange); color: #fff; }
.vb-land__basement-copy { font-size: 12px; color: var(--vl-text-muted); padding-bottom: 8px; }

/* ---------- Overlay panels ---------- */
.vb-land__overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(3, 6, 12, .72);
    backdrop-filter: blur(4px);
    padding: 24px;
}
.vb-land__overlay.is-open { display: flex; }
.vb-land__overlay-panel {
    width: 100%;
    max-width: 640px;
    max-height: 84vh;
    overflow-y: auto;
    background: var(--vl-navy-850);
    border: 1px solid var(--vl-line);
    border-radius: 16px;
    padding: 30px 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
    animation: vlPanelIn .25s ease;
}
@keyframes vlPanelIn { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
.vb-land__overlay-close {
    float: right;
    background: none;
    border: 1px solid var(--vl-line);
    color: var(--vl-text-muted);
    border-radius: 999px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.vb-land__overlay-close:hover { color: #fff; border-color: var(--vl-orange); }
.vb-land__overlay-eyebrow { color: var(--vl-orange); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.vb-land__overlay-panel h2 { margin: 0 0 18px; font-size: 22px; color: #fff; }
.vb-land__overlay-panel p { color: var(--vl-text-muted); font-size: 14px; line-height: 1.65; margin: 0 0 14px; }

.vb-land__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-top: 8px; }
.vb-land__card { background: rgba(255, 255, 255, .03); border: 1px solid var(--vl-line); border-radius: 12px; padding: 16px; }
.vb-land__card h4 { margin: 0 0 6px; font-size: 13.5px; color: #fff; }
.vb-land__card p { margin: 0; font-size: 12.5px; }
.vb-land__card-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(239, 107, 43, .16);
    border: 1px solid rgba(239, 107, 43, .35);
    color: var(--vl-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.vb-land__steps { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
.vb-land__step { display: flex; gap: 14px; align-items: flex-start; }
.vb-land__step-index {
    position: relative;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(239,107,43,.16);
    border: 1px solid rgba(239,107,43,.35);
    color: var(--vl-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vb-land__step:not(:last-child) .vb-land__step-index::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 14px;
    background: linear-gradient(to bottom, rgba(239,107,43,.45), rgba(239,107,43,.08));
    transform: translateX(-50%);
}
.vb-land__step-body { padding-top: 4px; }
.vb-land__step h4 { margin: 0 0 4px; font-size: 13.5px; color: #fff; }
.vb-land__step p { margin: 0; font-size: 12.5px; }

.vb-land__kpi-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0; }
.vb-land__kpi-preview div { background: rgba(255,255,255,.03); border: 1px solid var(--vl-line); border-radius: 10px; padding: 12px; text-align: center; }
.vb-land__kpi-preview strong { display: block; font-size: 20px; color: #fff; }
.vb-land__kpi-preview span { font-size: 10.5px; color: var(--vl-text-muted); text-transform: uppercase; letter-spacing: .04em; }
.vb-land__disclaimer { font-size: 11px; color: var(--vl-text-muted); opacity: .7; margin-top: 4px; }

/* ---------- Pagina "Valores" ---------- */
.vb-valores-hero {
    position: relative;
    padding: 150px 6% 64px;
    min-height: 460px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center 42%;
}
.vb-valores-hero__inner { position: relative; z-index: 1; max-width: 560px; }
.vb-valores-hero__eyebrow {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
    color: var(--vl-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.vb-valores-hero__eyebrow::after { content: ''; position: absolute; left: 0; bottom: 0; width: 42px; height: 2px; background: var(--vl-orange); }
.vb-valores-hero__inner h1 { margin: 14px 0 18px; font-size: 46px; font-weight: 800; color: #fff; line-height: 1.05; }
.vb-valores-hero__inner p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--vl-text-muted); }
.vb-valores-hero__inner p strong { color: #fff; font-weight: 700; }

.vb-valores-plans {
    position: relative;
    padding: 60px 6% 70px;
    background: radial-gradient(ellipse 900px 460px at 50% 0%, var(--vl-navy-900) 0%, var(--vl-navy-950) 68%);
    border-top: 1px solid var(--vl-line);
}
.vb-valores-plans__grid { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.vb-valores-plan { background: rgba(255, 255, 255, .03); border: 1px solid var(--vl-line); border-radius: 14px; padding: 28px 26px 26px; transition: border-color .2s ease, transform .2s ease; }
.vb-valores-plan:hover { border-color: rgba(239, 107, 43, .35); transform: translateY(-2px); }
.vb-valores-plan__icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 999px; background: rgba(239, 107, 43, .14); color: var(--vl-orange); margin-bottom: 20px; }
.vb-valores-plan h4 { position: relative; margin: 0 0 18px; padding-bottom: 16px; font-size: 15px; font-weight: 700; color: #fff; }
.vb-valores-plan h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background: var(--vl-line); }
.vb-valores-plan strong { display: block; font-size: 27px; font-weight: 800; color: var(--vl-orange); }
.vb-valores-plan__period { display: block; margin-top: 3px; font-size: 11px; font-weight: 700; letter-spacing: .07em; color: var(--vl-text-muted); text-transform: uppercase; }

.vb-valores-plans__disclaimer { display: flex; align-items: flex-start; gap: 10px; max-width: 720px; margin: 28px auto 0; }
.vb-valores-plans__info-icon { flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; border-radius: 999px; border: 1px solid var(--vl-orange); color: var(--vl-orange); display: flex; align-items: center; justify-content: center; }
.vb-valores-plans__disclaimer p { margin: 0; font-size: 12.5px; line-height: 1.6; color: var(--vl-text-muted); }

.vb-valores-plans__cta { text-align: center; margin-top: 28px; }
.vb-valores-plans__btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 26px; border-radius: 999px; background: linear-gradient(90deg, var(--vl-orange), var(--vl-orange-dark)); color: #fff; font-size: 14.5px; font-weight: 600; text-decoration: none; }
.vb-valores-plans__btn:hover { filter: brightness(1.08); color: #fff; text-decoration: none; }

@media (max-width: 760px) {
    .vb-valores-hero { padding: 130px 6% 50px; background-position: center 70%; }
    .vb-valores-hero::before { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(5,10,19,.6) 0%, rgba(5,10,19,.72) 55%, rgba(5,10,19,.9) 100%); }
    .vb-valores-hero__inner { max-width: 100%; }
    .vb-valores-hero__inner h1 { font-size: 34px; }
}

/* ---------- Pagina "Equipe" ---------- */
.vb-equipe-hero {
    position: relative;
    padding: 150px 6% 64px;
    min-height: 420px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center 15%;
}
.vb-equipe-hero__container {
    position: relative;
    z-index: 1;
    align-self: stretch;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.vb-equipe-hero__inner { max-width: 560px; }
.vb-equipe-hero__inner h1 { margin: 14px 0 18px; font-size: 44px; font-weight: 800; color: #fff; line-height: 1.1; }
.vb-equipe-hero__accent { color: var(--vl-orange); }
.vb-equipe-hero__inner p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--vl-text-muted); }

.vb-equipe-list {
    padding: 60px 6% 80px;
    background: radial-gradient(ellipse 900px 460px at 50% 0%, var(--vl-navy-900) 0%, var(--vl-navy-950) 68%);
}
.vb-equipe-grid { max-width: 1240px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.vb-equipe-card { position: relative; flex: 1 1 280px; max-width: 292px; background: rgba(255, 255, 255, .03); border: 1px solid var(--vl-line); border-radius: 16px; padding: 30px 26px; transition: border-color .2s ease, transform .2s ease; }
.vb-equipe-card:hover { border-color: rgba(239, 107, 43, .35); transform: translateY(-2px); }
.vb-equipe-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(239, 107, 43, .12);
    border: 1px solid rgba(239, 107, 43, .3);
    color: var(--vl-orange);
}
.vb-equipe-card__photo {
    display: block;
    width: 74px;
    height: 74px;
    margin-bottom: 20px;
    border-radius: 999px;
    background-size: cover;
    background-position: center;
    border: 1.5px solid rgba(239, 107, 43, .5);
}
.vb-equipe-card__prefix { display: block; font-size: 12px; font-weight: 600; color: var(--vl-orange); margin-bottom: 4px; }
.vb-equipe-card h4 { margin: 0 0 6px; font-size: 16.5px; font-weight: 700; color: #fff; }
.vb-equipe-card__realname { font-size: 19px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 6px; }
.vb-equipe-card__crea { display: block; font-size: 13px; color: var(--vl-text-muted); }
.vb-equipe-card p { margin: 10px 0 16px; font-size: 13px; line-height: 1.65; color: var(--vl-text-muted); }
.vb-equipe-card__linkedin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--vl-text-muted);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
}
.vb-equipe-card__linkedin:hover { color: var(--vl-orange); }
.vb-equipe-card__linkedin--placeholder { opacity: .55; cursor: default; }

@media (max-width: 760px) {
    .vb-equipe-hero { padding: 130px 6% 50px; background-position: center 70%; }
    .vb-equipe-hero::before { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(5,10,19,.6) 0%, rgba(5,10,19,.72) 55%, rgba(5,10,19,.9) 100%); }
    .vb-equipe-hero__inner { max-width: 100%; }
    .vb-equipe-hero__inner h1 { font-size: 32px; }
}

/* ---------- Recap (fim da jornada) ---------- */
.vb-land__recap {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--vl-navy-950);
    padding: 24px;
}
.vb-land__recap.is-open { display: flex; }
.vb-land__recap-box { max-width: 560px; width: 100%; text-align: center; }
.vb-land__recap-box h2 { font-size: 26px; color: #fff; margin: 0 0 8px; }
.vb-land__recap-box > p { color: var(--vl-text-muted); font-size: 14px; margin: 0 0 26px; }
.vb-land__recap-path { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 26px; }
.vb-land__recap-chip { background: rgba(239,107,43,.12); border: 1px solid rgba(239,107,43,.3); color: #ffb787; border-radius: 999px; padding: 6px 14px; font-size: 12.5px; }
.vb-land__recap-empty { color: var(--vl-text-muted); font-size: 13px; margin-bottom: 26px; }
.vb-land__recap-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Toast (retorno / tabs) ---------- */
.vb-land__toast {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 70;
    max-width: 280px;
    background: rgba(13, 27, 46, .92);
    border: 1px solid var(--vl-line);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 12.5px;
    color: var(--vl-text-muted);
    transform: translateX(120%);
    transition: transform .35s ease;
}
.vb-land__toast.is-visible { transform: translateX(0); }
.vb-land__toast strong { color: #fff; }
