/*
Theme Name: Valduga
Theme URI: https://github.com/darlanpz/gapz-wp
Author: Gapz
Description: Tema Valduga construído sobre o plugin Gapz (motor no-code de CRUD). Arquitetura config-driven com fundação de design tokens e biblioteca de componentes base. Nesta fase o tema é independente do plugin.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
Text Domain: valduga
*/

/* ============================================================================
   TOKENS — fundação de design (Valduga Concretos). Ajuste para reskin global.
   Extraídos do design de referência no Figma.
   ============================================================================ */
:root {
	/* Cores — marca / ação */
	--vld-blue:        #2a45cf; /* azul de ação (primária) */
	--vld-blue-2:      #1f37b0; /* hover do azul */
	--vld-navy:        #19297c; /* navy — títulos/marca sobre claro */
	--vld-navy-deep:   #0d153f; /* navy profundo — fundos escuros / texto forte */
	--vld-ink:         #171b2f; /* superfície escura alternativa (glass/cards) */
	--vld-lavender:    #d4daf5; /* lavanda — superfície de hover */
	--vld-lavender-2:  #eaedfa; /* lavanda clara — losango de icon-badge */

	/* Cores — superfícies */
	--vld-bg:          #fbfbfe; /* fundo do site (claro) */
	--vld-bg-alt:      #f1f3fb; /* seções claras alternadas */
	--vld-surface:     #ffffff; /* cards / blocos claros */
	--vld-surface-2:   var(--vld-navy-deep); /* superfície escura */

	/* Aliases semânticos */
	--vld-primary:     var(--vld-blue);
	--vld-primary-2:   var(--vld-blue-2);
	--vld-accent:      var(--vld-navy);

	/* Cores — texto */
	--vld-text:         rgba(0,0,0,.85);   /* texto principal sobre claro */
	--vld-text-muted:   rgba(0,0,0,.7);    /* texto secundário sobre claro */
	--vld-text-invert:  #ffffff;           /* texto sobre escuro */
	--vld-text-invert-2: rgba(255,255,255,.8); /* texto secundário sobre escuro */

	/* Cores — utilidade */
	--vld-border:      #e3e7ef;
	--vld-border-2:    #cfd5e1;
	--vld-success:     #1f8a4c;
	--vld-warning:     #c8870f;
	--vld-danger:      #c0392b;
	--vld-info:        var(--vld-blue);

	/* Tipografia — toda a marca usa Archivo */
	--vld-font-head: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
	--vld-font-body: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
	--vld-font-ui:   "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;

	/* Escala tipográfica utilitária (rem) */
	--vld-fs-xs:  0.75rem;   /* 12 */
	--vld-fs-sm:  0.875rem;  /* 14 */
	--vld-fs-md:  1rem;      /* 16 */
	--vld-fs-lg:  1.25rem;   /* 20 */
	--vld-fs-xl:  1.5rem;    /* 24 */
	--vld-fs-2xl: 2rem;      /* 32 */
	--vld-fs-3xl: 2.75rem;   /* 44 */
	--vld-fs-4xl: clamp(2.5rem, 5vw, 4rem);

	/* Escala de marca (px + line-height + tracking) — fiel ao Figma */
	--vld-display:      48px; --vld-display-lh:   60px; /* hero / títulos de seção */
	--vld-title:        36px; --vld-title-lh:     44px; /* títulos de card / stats */
	--vld-subtitle:     32px; --vld-subtitle-lh:  40px; /* features / colunas de rodapé */
	--vld-body-lg:      24px; --vld-body-lg-lh:   40px; /* parágrafo de destaque */
	--vld-body:         20px; --vld-body-lh:      32px; /* corpo padrão */
	--vld-body-sm:      16px; --vld-body-sm-lh:   28px; /* corpo pequeno / legendas */
	--vld-ui:           18px;                           /* botões / nav */
	--vld-track-tight:  -0.02em;                        /* tracking de títulos grandes */

	/* Espaçamento (escala 4px) */
	--vld-sp-1: 4px;  --vld-sp-2: 8px;  --vld-sp-3: 12px; --vld-sp-4: 16px;
	--vld-sp-5: 24px; --vld-sp-6: 32px; --vld-sp-7: 48px; --vld-sp-8: 64px;
	--vld-sp-9: 80px; --vld-sp-10: 120px;

	/* Layout */
	--vld-container: 1280px;  /* conteúdo */
	--vld-gutter:    80px;    /* margem lateral do container */

	/* Raios (o design usa 2 / 4 / 8) */
	--vld-radius-2:  2px;   /* botões, losangos */
	--vld-radius-4:  4px;   /* glass card */
	--vld-radius-8:  8px;   /* imagens, cards */
	--vld-radius-pill: 999px;
	/* compat. com componentes base anteriores */
	--vld-radius-sm: var(--vld-radius-8);
	--vld-radius:    var(--vld-radius-8);
	--vld-radius-lg: 24px;

	/* Sombras */
	--vld-shadow-sm: 0 1px 2px rgba(13,21,63,.06), 0 1px 3px rgba(13,21,63,.10);
	--vld-shadow:    0 8px 24px rgba(13,21,63,.10);
	--vld-shadow-lg: 0 20px 48px rgba(13,21,63,.16);

	/* Transições */
	--vld-trans: .2s ease;
	--vld-ease-soft: cubic-bezier(.42, 0, .58, 1); /* ease-in-out suave (Figma "Slow") */
	--vld-arrow-dur: .5s;                          /* deslize da seta (Arrow-icon standalone) */
	--vld-btn-dur: .2s;                            /* hover do botão (mais rápido) */
}

/* ============================================================================
   RESET LEVE + BASE
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--vld-header-h, 110px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	font-family: var(--vld-font-body);
	font-size: var(--vld-fs-md);
	color: var(--vld-text);
	/* Fundo geral do site navy profundo; cada seção mantém seu próprio fundo. */
	background: var(--vld-navy-deep);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--vld-font-head);
	line-height: 1.15;
	margin: 0 0 .5em;
	font-weight: 700;
	color: var(--vld-navy);
	letter-spacing: var(--vld-track-tight);
}
h1 { font-size: var(--vld-display);  line-height: var(--vld-display-lh); }
h2 { font-size: var(--vld-title);    line-height: var(--vld-title-lh); }
h3 { font-size: var(--vld-subtitle); line-height: var(--vld-subtitle-lh); }
h4 { font-size: var(--vld-body-lg);  line-height: var(--vld-body-lg-lh); }

p { margin: 0 0 1em; }

a { color: var(--vld-primary); text-decoration: none; transition: color var(--vld-trans); }
a:hover { color: var(--vld-primary-2); }

img { max-width: 100%; height: auto; display: block; }

hr { border: 0; border-top: 1px solid var(--vld-border); margin: var(--vld-sp-6) 0; }

code, pre {
	font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: .9em;
}
code { background: var(--vld-bg-alt); padding: 2px 6px; border-radius: 6px; }

/* ============================================================================
   LAYOUT
   ============================================================================ */
.vld-container {
	max-width: var(--vld-container);
	margin: 0 auto;
	padding: 0 var(--vld-sp-5);
}

.vld-section { padding: var(--vld-sp-8) 0; }
.vld-section--alt { background: var(--vld-bg-alt); }
.vld-section--dark { background: var(--vld-surface-2); color: var(--vld-text-invert); }

/* ============================================================================
   BOTÕES
   ============================================================================ */
.vld-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--vld-sp-2);
	background: var(--vld-primary);
	color: #fff;
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: var(--vld-radius-sm);
	font-family: var(--vld-font-body);
	font-size: var(--vld-fs-md);
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: background var(--vld-trans), color var(--vld-trans), border-color var(--vld-trans), transform var(--vld-trans);
}
.vld-btn:hover { background: var(--vld-primary-2); color: #fff; }
.vld-btn:active { transform: translateY(1px); }
.vld-btn:focus-visible { outline: 2px solid var(--vld-accent); outline-offset: 2px; }

.vld-btn--ghost { background: transparent; color: var(--vld-text); border-color: var(--vld-border-2); }
.vld-btn--ghost:hover { background: var(--vld-bg-alt); color: var(--vld-text); }

.vld-btn--accent { background: var(--vld-accent); color: #1a1407; }
.vld-btn--accent:hover { background: #b8923f; color: #1a1407; }

.vld-btn--sm { padding: 8px 16px; font-size: var(--vld-fs-sm); }
.vld-btn--lg { padding: 16px 32px; font-size: var(--vld-fs-lg); }
.vld-btn--block { display: flex; width: 100%; }
.vld-btn[disabled], .vld-btn:disabled { opacity: .5; cursor: not-allowed; }

/* ============================================================================
   BADGES / PILLS
   ============================================================================ */
.vld-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: var(--vld-radius-pill);
	font-size: var(--vld-fs-xs);
	font-weight: 600;
	background: var(--vld-bg-alt);
	color: var(--vld-text);
}
.vld-badge--primary { background: var(--vld-primary); color: #fff; }
.vld-badge--accent  { background: var(--vld-accent); color: #1a1407; }
.vld-badge--success { background: rgba(31,138,76,.12); color: var(--vld-success); }
.vld-badge--warning { background: rgba(200,135,15,.14); color: var(--vld-warning); }
.vld-badge--danger  { background: rgba(192,57,43,.12); color: var(--vld-danger); }

/* ============================================================================
   FORMULÁRIOS
   ============================================================================ */
.vld-field { margin-bottom: var(--vld-sp-4); }
.vld-label {
	display: block;
	font-size: var(--vld-fs-sm);
	font-weight: 600;
	color: var(--vld-text);
	margin-bottom: 6px;
}
.vld-input, .vld-select, .vld-textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--vld-border-2);
	border-radius: var(--vld-radius-sm);
	background: #fff;
	font-family: var(--vld-font-body);
	font-size: var(--vld-fs-md);
	color: var(--vld-text);
	transition: border-color var(--vld-trans), box-shadow var(--vld-trans);
}
.vld-input:focus, .vld-select:focus, .vld-textarea:focus {
	outline: none;
	border-color: var(--vld-primary);
	box-shadow: 0 0 0 3px rgba(42,69,207,.15);
}
.vld-textarea { min-height: 120px; resize: vertical; }
.vld-input::placeholder, .vld-textarea::placeholder { color: var(--vld-text-muted); }
.vld-help { font-size: var(--vld-fs-xs); color: var(--vld-text-muted); margin-top: 6px; }

.vld-checkline { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: var(--vld-fs-sm); }
.vld-checkline input { width: auto; }

/* ============================================================================
   CARDS
   ============================================================================ */
.vld-card {
	background: var(--vld-surface);
	border: 1px solid var(--vld-border);
	border-radius: var(--vld-radius);
	box-shadow: var(--vld-shadow-sm);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform var(--vld-trans), box-shadow var(--vld-trans);
}
.vld-card:hover { transform: translateY(-3px); box-shadow: var(--vld-shadow); }
.vld-card-media { aspect-ratio: 16/10; background: linear-gradient(135deg, #e8ebf2, #d6dbe6); }
.vld-card-media img { width: 100%; height: 100%; object-fit: cover; }
.vld-card-body { padding: var(--vld-sp-5); display: flex; flex-direction: column; gap: var(--vld-sp-2); flex: 1; }
.vld-card-title { font-size: var(--vld-fs-lg); margin: 0; }
.vld-card-text { color: var(--vld-text-muted); font-size: var(--vld-fs-sm); margin: 0; }
.vld-card-foot { margin-top: auto; padding-top: var(--vld-sp-3); }

/* ============================================================================
   ALERTAS
   ============================================================================ */
.vld-alert {
	padding: var(--vld-sp-4) var(--vld-sp-5);
	border-radius: var(--vld-radius-sm);
	border-left: 4px solid var(--vld-info);
	background: rgba(37,99,235,.06);
	font-size: var(--vld-fs-sm);
	margin-bottom: var(--vld-sp-3);
}
.vld-alert--success { border-color: var(--vld-success); background: rgba(31,138,76,.07); }
.vld-alert--warning { border-color: var(--vld-warning); background: rgba(200,135,15,.08); }
.vld-alert--danger  { border-color: var(--vld-danger);  background: rgba(192,57,43,.07); }

/* ============================================================================
   GRID UTILITÁRIO
   ============================================================================ */
.vld-grid { display: grid; gap: var(--vld-sp-5); }
.vld-grid--2 { grid-template-columns: repeat(2, 1fr); }
.vld-grid--3 { grid-template-columns: repeat(3, 1fr); }
.vld-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .vld-grid--3, .vld-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vld-grid--2, .vld-grid--3, .vld-grid--4 { grid-template-columns: 1fr; } }

/* ============================================================================
   HEADER
   ============================================================================ */
.vld-site-header { background: var(--vld-bg); border-bottom: 1px solid var(--vld-border); }
.vld-site-header-inner {
	display: flex; align-items: center; justify-content: space-between; gap: var(--vld-sp-5);
	padding: var(--vld-sp-4) var(--vld-sp-5);
}
.vld-logo { display: inline-flex; align-items: center; }
.vld-logo-img { max-height: 52px; width: auto; }
.vld-logo-text { font-family: var(--vld-font-head); font-weight: 600; font-size: var(--vld-fs-xl); color: var(--vld-text); letter-spacing: .01em; }
.vld-menu { list-style: none; display: flex; gap: var(--vld-sp-5); margin: 0; padding: 0; }
.vld-menu a { color: var(--vld-text); font-size: var(--vld-fs-sm); font-weight: 500; }
.vld-menu a:hover { color: var(--vld-primary); }
@media (max-width: 782px) { .vld-menu { gap: var(--vld-sp-3); flex-wrap: wrap; } }

/* ============================================================================
   FOOTER
   ============================================================================ */
.vld-site-footer { background: var(--vld-surface-2); color: var(--vld-text-invert); padding: var(--vld-sp-8) 0 var(--vld-sp-5); }
.vld-site-footer a { color: #c7cedd; }
.vld-site-footer a:hover { color: #fff; }
.vld-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--vld-sp-7); }
.vld-footer-logo { font-family: var(--vld-font-head); font-weight: 600; font-size: var(--vld-fs-xl); color: #fff; margin-bottom: var(--vld-sp-3); }
.vld-footer-muted { color: #9aa3b2; font-size: var(--vld-fs-sm); }
.vld-footer-h { color: #fff; font-size: var(--vld-fs-md); margin: 0 0 var(--vld-sp-3); }
.vld-footer-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.vld-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: var(--vld-sp-7); padding-top: var(--vld-sp-4); font-size: var(--vld-fs-xs); color: #9aa3b2; }
@media (max-width: 800px) { .vld-footer-grid { grid-template-columns: 1fr; gap: var(--vld-sp-5); } }

/* ============================================================================
   PÁGINA PADRÃO
   ============================================================================ */
.vld-page { background: #fff; padding: calc( var(--vld-header-h, 110px) + 32px ) 0 var(--vld-sp-8); }
.vld-page-inner { max-width: 820px; }
.vld-page-title { font-size: var(--vld-fs-3xl); margin: 0 0 var(--vld-sp-5); color: var(--vld-navy-deep, #0D153F); }
.vld-page-content { line-height: 1.75; color: var(--vld-text, #1a1a1a); }
.vld-page-content h2 { margin-top: var(--vld-sp-6); font-size: var(--vld-fs-xl, 1.5rem); }
.vld-page-content h3 { margin-top: var(--vld-sp-5); font-size: var(--vld-fs-lg, 1.2rem); }
.vld-page-content p { margin: 0 0 1rem; }
.vld-page-content ul, .vld-page-content ol { margin: 0 0 1rem; padding-left: 1.4rem; }
.vld-page-content li { margin: 0 0 .4rem; }
.vld-page-content a { color: var(--vld-blue, #2d5bff); text-decoration: underline; }
.vld-page-content strong { font-weight: 600; }
.vld-page-content .vld-legal-updated { color: #666; font-size: var(--vld-fs-sm, .9rem); margin-bottom: var(--vld-sp-5); }

/* ============================================================================
   PLAYGROUND — biblioteca viva de componentes e estilos
   ============================================================================ */
.vld-pg { padding: var(--vld-sp-7) 0 var(--vld-sp-8); }
.vld-pg-header { margin-bottom: var(--vld-sp-7); }
.vld-pg-header h1 { font-size: var(--vld-fs-4xl); margin: 0 0 var(--vld-sp-2); }
.vld-pg-header p { color: var(--vld-text-muted); font-size: var(--vld-fs-lg); max-width: 640px; }

.vld-pg-block { margin-bottom: var(--vld-sp-8); scroll-margin-top: 24px; }
.vld-pg-block > h2 {
	font-size: var(--vld-fs-xl);
	padding-bottom: var(--vld-sp-3);
	margin-bottom: var(--vld-sp-5);
	border-bottom: 2px solid var(--vld-border);
	display: flex; align-items: baseline; gap: var(--vld-sp-3);
}
.vld-pg-block > h2 small { font-family: var(--vld-font-body); font-size: var(--vld-fs-sm); font-weight: 400; color: var(--vld-text-muted); }

.vld-pg-row { display: flex; flex-wrap: wrap; gap: var(--vld-sp-4); align-items: center; }
.vld-pg-stack { display: flex; flex-direction: column; gap: var(--vld-sp-3); max-width: 480px; }

/* Navegação lateral do playground */
.vld-pg-layout { display: grid; grid-template-columns: 220px 1fr; gap: var(--vld-sp-7); align-items: start; }
.vld-pg-nav { position: sticky; top: 24px; }
.vld-pg-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.vld-pg-nav a { display: block; padding: 8px 12px; border-radius: var(--vld-radius-sm); font-size: var(--vld-fs-sm); color: var(--vld-text-muted); font-weight: 500; }
.vld-pg-nav a:hover { background: var(--vld-bg-alt); color: var(--vld-text); }
@media (max-width: 860px) { .vld-pg-layout { grid-template-columns: 1fr; } .vld-pg-nav { position: static; } .vld-pg-nav ul { flex-direction: row; flex-wrap: wrap; } }

/* Swatches de cor */
.vld-swatches { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--vld-sp-4); }
.vld-swatch { border: 1px solid var(--vld-border); border-radius: var(--vld-radius-sm); overflow: hidden; }
.vld-swatch-color { height: 72px; }
.vld-swatch-meta { padding: 8px 10px; font-size: var(--vld-fs-xs); }
.vld-swatch-meta b { display: block; font-size: var(--vld-fs-sm); }
.vld-swatch-meta code { background: none; padding: 0; color: var(--vld-text-muted); }

/* Escala tipográfica */
.vld-type-row { display: flex; align-items: baseline; gap: var(--vld-sp-5); padding: var(--vld-sp-3) 0; border-bottom: 1px dashed var(--vld-border); }
.vld-type-row .vld-type-tag { flex: 0 0 60px; font-size: var(--vld-fs-xs); color: var(--vld-text-muted); font-family: var(--vld-font-body); }

/* Caixa demonstrativa de espaçamento */
.vld-space-row { display: flex; align-items: center; gap: var(--vld-sp-4); margin-bottom: var(--vld-sp-2); font-size: var(--vld-fs-sm); }
.vld-space-bar { height: 16px; background: var(--vld-primary); border-radius: 4px; }

/* Tabela base */
.vld-table { width: 100%; border-collapse: collapse; font-size: var(--vld-fs-sm); }
.vld-table th, .vld-table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--vld-border); }
.vld-table th { font-family: var(--vld-font-body); color: var(--vld-text-muted); font-weight: 600; text-transform: uppercase; font-size: var(--vld-fs-xs); letter-spacing: .04em; }
.vld-table tbody tr:hover { background: var(--vld-bg-alt); }

/* ============================================================================
   COMPONENTE — LOGO (marca Valduga)
   SVG inline com `currentColor`: recolore via a propriedade `color`.
   ============================================================================ */
.vld-logo { display: inline-block; line-height: 0; color: var(--vld-navy); }
.vld-logo svg { display: block; height: 44px; width: auto; }
.vld-logo path { fill: currentColor; }
.vld-logo--light { color: #fff; }          /* sobre superfícies escuras */
.vld-logo--sm svg { height: 32px; }
.vld-logo--lg svg { height: 56px; }

/* ============================================================================
   COMPONENTE — ARROW-ICON
   Losango (quadrado girado 45°) + seta ↗ rotacionada por direção.
   Estado "ativo" desliza a seta para fora, no sentido para onde aponta.
   Disparo do estado ativo:
     - .is-active            → controle explícito (JS/PHP)
     - .vld-arrow-hover:hover → ao passar o mouse num elemento PAI
   A transição é suave (ease-in-out, ~0.5s) tal qual o "Slow" do Figma.
   ============================================================================ */
.vld-arrow {
	--vld-arrow-rot: 0deg;   /* rotação da seta por direção */
	--vld-arrow-tx: 5px;     /* deslocamento X no estado ativo */
	--vld-arrow-ty: -5px;    /* deslocamento Y no estado ativo */
	--vld-arrow-diamond: var(--vld-blue);
	--vld-arrow-glyph: #fff;
	position: relative;
	display: inline-block;
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	vertical-align: middle;
}
.vld-arrow--secondary { --vld-arrow-diamond: #fff; --vld-arrow-glyph: var(--vld-blue); }

.vld-arrow-diamond {
	position: absolute;
	left: 50%; top: 50%;
	width: 28px; height: 28px;
	border-radius: 2px;
	background: var(--vld-arrow-diamond);
	transform: translate(-50%, -50%) rotate(45deg);
}
.vld-arrow-glyph {
	position: absolute;
	left: 50%; top: 50%;
	width: 20px; height: 20px;
	color: var(--vld-arrow-glyph);
	transform: translate(-50%, -50%);
	transition: transform var(--vld-arrow-dur) var(--vld-ease-soft);
	will-change: transform;
}
.vld-arrow-glyph svg { display: block; width: 100%; height: 100%; transform: rotate(var(--vld-arrow-rot)); }

/* Direções (a seta-base aponta para cima-direita ↗) */
.vld-arrow--top        { --vld-arrow-rot: -45deg; --vld-arrow-tx: 0px;  --vld-arrow-ty: -12px; }
.vld-arrow--top-right  { --vld-arrow-rot: 0deg;   --vld-arrow-tx: 5px;  --vld-arrow-ty: -5px; }
.vld-arrow--right      { --vld-arrow-rot: 45deg;  --vld-arrow-tx: 12px; --vld-arrow-ty: 0px; }
.vld-arrow--down-right { --vld-arrow-rot: 90deg;  --vld-arrow-tx: 5px;  --vld-arrow-ty: 5px; }
.vld-arrow--down       { --vld-arrow-rot: 135deg; --vld-arrow-tx: 0px;  --vld-arrow-ty: 12px; }

/* Estado ativo: a seta desliza para fora */
.vld-arrow.is-active > .vld-arrow-glyph,
.vld-arrow-hover:hover .vld-arrow > .vld-arrow-glyph {
	transform: translate(calc(-50% + var(--vld-arrow-tx)), calc(-50% + var(--vld-arrow-ty)));
}

@media (prefers-reduced-motion: reduce) {
	.vld-arrow-glyph { transition: none; }
}

/* ============================================================================
   COMPONENTE — BUTTON
   Usa exclusivamente o Arrow-icon (direção top-right). No hover muda a
   superfície e ativa o deslize da seta (.vld-arrow-hover).
   ============================================================================ */
.vld-button {
	/* Dentro do botão a seta acompanha o ritmo (mais rápido) do hover. */
	--vld-arrow-dur: var(--vld-btn-dur);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 12px 12px 12px 16px;
	border: 0;
	border-radius: 2px;
	background: #fff;
	color: var(--vld-navy);
	font-family: var(--vld-font-ui);
	font-weight: 500;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	text-decoration: none;
	transition: background var(--vld-btn-dur) var(--vld-ease-soft), color var(--vld-btn-dur) var(--vld-ease-soft);
}
.vld-button-label { white-space: nowrap; }
.vld-button:hover { background: var(--vld-lavender); color: var(--vld-navy); }
.vld-button:focus-visible { outline: 2px solid var(--vld-blue); outline-offset: 2px; }

/* Variante secundária — superfície translúcida (sobre fundos escuros) */
.vld-button--secondary { background: rgba(255,255,255,.1); color: #fff; }
.vld-button--secondary:hover { background: var(--vld-lavender); color: var(--vld-navy); }

/* Variante subtle — sobre fundos claros (usada nos cards) */
.vld-button--subtle {
	background: rgba(0,0,0,.05);
	color: var(--vld-navy-deep);
	border: 1px solid rgba(0,0,0,.1);
}
.vld-button--subtle:hover { background: var(--vld-lavender); color: var(--vld-navy-deep); border-color: transparent; }

/* Variante azul — botão de ação primário em azul (ex.: enviar formulário) */
.vld-button--blue { background: var(--vld-blue); color: #fff; }
.vld-button--blue:hover { background: var(--vld-blue-2); color: #fff; }
/* A seta dentro do botão azul inverte: losango branco, glifo azul. */
.vld-button--blue .vld-arrow { --vld-arrow-diamond: #fff; --vld-arrow-glyph: var(--vld-blue); }

/* Modificador largura total (CTAs de card) */
.vld-button--block { display: flex; width: 100%; }

/* ============================================================================
   PADRÕES DE LAYOUT — extraídos do design da home
   ============================================================================ */
/* Container do site: 1280px com 80px de margem lateral */
.vld-shell { max-width: calc(var(--vld-container) + var(--vld-gutter) * 2); margin: 0 auto; padding: 0 var(--vld-gutter); }
@media (max-width: 1024px) { .vld-shell { padding: 0 24px; } }
@media (max-width: 560px)  { .vld-shell { padding: 0 16px; } }

/* Variantes de fundo de seção */
.vld-section--blue { background: var(--vld-navy); color: var(--vld-text-invert); }
.vld-section--deep { background: var(--vld-navy-deep); color: var(--vld-text-invert); }
.vld-section--light { background: var(--vld-bg); }
.vld-section--blue :is(h1,h2,h3,h4),
.vld-section--deep :is(h1,h2,h3,h4) { color: #fff; }

/* ============================================================================
   TIPOGRAFIA — heading de display com peso misto (bold + regular)
   Padrão do hero: ênfase em <strong>, continuação em peso normal.
   ============================================================================ */
.vld-display {
	font-family: var(--vld-font-head);
	font-size: var(--vld-display);
	line-height: var(--vld-display-lh);
	letter-spacing: var(--vld-track-tight);
	font-weight: 400;
	color: var(--vld-navy);
	margin: 0;
}
.vld-display strong, .vld-display b { font-weight: 700; }
.vld-section--blue .vld-display,
.vld-section--deep .vld-display { color: #fff; }

/* Parágrafo de destaque (Body Lg) */
.vld-lead {
	font-size: var(--vld-body-lg);
	line-height: var(--vld-body-lg-lh);
	letter-spacing: -.019em;
	color: var(--vld-text-muted);
	margin: 0;
}
.vld-section--blue .vld-lead,
.vld-section--deep .vld-lead { color: var(--vld-text-invert-2); }

/* ============================================================================
   COMPONENTE — ICON-BADGE
   Losango (igual ao Arrow-icon) com ícone lucide. Estático.
   Padrão: losango lavanda-clara + ícone navy. Variante azul disponível.
   ============================================================================ */
.vld-icon-badge {
	position: relative;
	display: inline-block;
	width: 68px; height: 68px;
	flex: 0 0 auto;
	vertical-align: middle;
}
.vld-icon-badge-diamond {
	position: absolute; left: 50%; top: 50%;
	width: 48px; height: 48px;            /* lado = container / √2 */
	border-radius: 2px;
	background: var(--vld-lavender-2);
	transform: translate(-50%, -50%) rotate(45deg);
}
.vld-icon-badge-glyph {
	position: absolute; left: 50%; top: 50%;
	width: 32px; height: 32px;
	color: var(--vld-navy);
	transform: translate(-50%, -50%);
}
.vld-icon-badge-glyph svg { display: block; width: 100%; height: 100%; }
/* Ícone enviado (imagem/SVG via CPT): preenche o glifo e fica um pouco maior. */
.vld-icon-badge-glyph img { display: block; width: 100%; height: 100%; object-fit: contain; }
.vld-icon-badge-glyph:has(img) { width: 40px; height: 40px; }
.vld-icon-badge--blue .vld-icon-badge-diamond { background: var(--vld-blue); }
.vld-icon-badge--blue .vld-icon-badge-glyph   { color: #fff; }
.vld-icon-badge--sm { width: 38px; height: 38px; }
.vld-icon-badge--sm .vld-icon-badge-diamond { width: 28px; height: 28px; }
.vld-icon-badge--sm .vld-icon-badge-glyph   { width: 20px; height: 20px; }

/* ============================================================================
   COMPONENTE — STAT (número grande + descrição)
   ============================================================================ */
.vld-stat { max-width: 266px; }
.vld-stat-num {
	font-family: var(--vld-font-head);
	font-weight: 700;
	font-size: var(--vld-display);
	line-height: 1;
	letter-spacing: var(--vld-track-tight);
	color: var(--vld-blue);
	margin: 0 0 var(--vld-sp-5);
}
.vld-stat-label {
	font-size: var(--vld-body-sm);
	line-height: var(--vld-body-sm-lh);
	color: var(--vld-text-muted);
	margin: 0;
}
.vld-section--blue .vld-stat-num,
.vld-section--deep .vld-stat-num { color: #fff; }
.vld-section--blue .vld-stat-label,
.vld-section--deep .vld-stat-label { color: var(--vld-text-invert-2); }

/* ============================================================================
   UTILITÁRIO — GLASS CARD (vidro fosco), como o bloco de stat do hero
   ============================================================================ */
.vld-glass {
	position: relative;
	background: rgba(23,27,47,.7);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-radius: var(--vld-radius-4);
	padding: var(--vld-sp-6);
	color: var(--vld-text-invert-2);
}
/* Borda em gradiente linear (conforme o Figma): branca/forte no topo-esq.,
   esmaecendo até quase transparente no canto inferior-dir. Máscara para
   pintar somente a faixa de 1px, respeitando o raio e o backdrop-blur. */
.vld-glass::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(180deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,.25) 45%, rgba(255,255,255,.06) 100%);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	        mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	        mask-composite: exclude;
	pointer-events: none;
}
.vld-glass .vld-stat-num { color: #fff; font-size: var(--vld-title); }
.vld-glass .vld-stat-label { color: var(--vld-text-invert-2); }

/* ============================================================================
   UTILITÁRIO — barra de destaque (eyebrow/accent) usada no topo das seções
   ============================================================================ */
.vld-accent-bar { width: 240px; height: 24px; border-radius: var(--vld-radius-pill); background: var(--vld-lavender); }
.vld-accent-bar--blue { background: var(--vld-blue); }

/* ============================================================================
   UTILITÁRIO — imagem com tint azul da marca (overlay), raio 8px
   ============================================================================ */
.vld-media { position: relative; border-radius: var(--vld-radius-8); overflow: hidden; }
.vld-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.vld-media::after {
	content: ""; position: absolute; inset: 0;
	background: rgba(42,69,207,.2);
	mix-blend-mode: overlay;
	pointer-events: none;
}

/* ============================================================================
   HEADER do site (navy, sobre o hero) + navegação + CTA Contato
   ============================================================================ */
/* Sobre a hero: fundo igual ao da hero (navy), até chegar na próxima seção */
.vld-header { position: sticky; top: 0; z-index: 60; background: var(--vld-navy-deep); transition: background .35s var(--vld-ease-soft), backdrop-filter .35s var(--vld-ease-soft), transform .4s var(--vld-ease-soft); }
.vld-header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--vld-sp-5); padding-top: 48px; padding-bottom: 0; transition: padding .35s var(--vld-ease-soft); }

/* Ao passar da hero: fundo de vidro (branco 10% + blur) e padding vertical reduzido (12px) */
.vld-header.is-stuck { background: rgba(255,255,255,.22); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.vld-header.is-stuck .vld-header-inner { padding-top: 12px; padding-bottom: 12px; }

/* CTA mais compacto quando o header encolhe (ocupa menos altura na tela) */
.vld-header-cta { transition: background var(--vld-btn-dur) var(--vld-ease-soft), color var(--vld-btn-dur) var(--vld-ease-soft), padding .35s var(--vld-ease-soft); }
.vld-header-cta .vld-arrow { transition: width .35s var(--vld-ease-soft), height .35s var(--vld-ease-soft); }
.vld-header.is-stuck .vld-header-cta { padding-top: 6px; padding-bottom: 6px; }
.vld-header.is-stuck .vld-header-cta .vld-arrow { width: 30px; height: 30px; }
.vld-header.is-stuck .vld-header-cta .vld-arrow-diamond { width: 22px; height: 22px; }
.vld-header.is-stuck .vld-header-cta .vld-arrow-glyph { width: 16px; height: 16px; }

/* Esconde o header (desliza para cima) ao rolar para baixo; reaparece ao rolar para cima */
.vld-header.is-hidden { transform: translateY(-100%); }

/* Tema escuro (sobre fundo escuro): conteúdo branco */
.vld-header .vld-logo { color: #fff; }

/* Tema claro (sobre seção de fundo claro): logo/menu navy, CTA azul */
.vld-header.is-on-light .vld-logo { color: var(--vld-navy-deep); }
.vld-header.is-on-light .vld-menu a { color: var(--vld-navy); }
.vld-header.is-on-light .vld-menu a:hover { color: var(--vld-blue); }
.vld-header.is-on-light .vld-header-cta { background: var(--vld-blue); color: #fff; }
.vld-header.is-on-light .vld-header-cta:hover { background: var(--vld-blue-2); color: #fff; }
.vld-header.is-on-light .vld-header-cta .vld-arrow { --vld-arrow-diamond: #fff; --vld-arrow-glyph: var(--vld-blue); }
.vld-header.is-on-light .vld-menu-toggle-diamond { background: var(--vld-navy-deep); }
.vld-header.is-on-light .vld-menu-toggle-bars span { background: #fff; }
.vld-header-nav { display: flex; align-items: center; gap: var(--vld-sp-5); }
.vld-menu { list-style: none; display: flex; align-items: center; gap: 0; margin: 0; padding: 0; }
.vld-menu a { display: block; padding: 12px 20px; color: #fff; font-weight: 500; font-size: var(--vld-ui); transition: color var(--vld-trans); }
.vld-menu a:hover { color: var(--vld-lavender); }

/* Botão de menu (mobile) — losango branco + barras que viram X */
.vld-menu-toggle { display: none; position: relative; width: 48px; height: 48px; padding: 0; border: 0; background: none; cursor: pointer; }
.vld-menu-toggle-diamond { position: absolute; left: 50%; top: 50%; width: 34px; height: 34px; background: #fff; border-radius: 2px; transform: translate(-50%, -50%) rotate(45deg); }
.vld-menu-toggle-bars { position: absolute; left: 50%; top: 50%; width: 22px; height: 16px; transform: translate(-50%, -50%); }
.vld-menu-toggle-bars span { position: absolute; left: 0; right: 0; height: 2.5px; border-radius: 2px; background: var(--vld-blue); transition: transform .35s var(--vld-ease-soft), opacity .2s ease, top .35s var(--vld-ease-soft); }
.vld-menu-toggle-bars span:nth-child(1) { top: 0; }
.vld-menu-toggle-bars span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.vld-menu-toggle-bars span:nth-child(3) { top: 100%; transform: translateY(-100%); }
body.vld-menu-open .vld-menu-toggle-bars span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
body.vld-menu-open .vld-menu-toggle-bars span:nth-child(2) { opacity: 0; }
body.vld-menu-open .vld-menu-toggle-bars span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* Drawer mobile — desliza da direita, altura total */
.vld-drawer {
	position: fixed; top: 0; right: 0; bottom: 0;
	width: min(100%, 420px);
	background: var(--vld-navy-deep);
	z-index: 50;
	display: flex; flex-direction: column;
	/* Acompanha a altura real do header (var. setada via JS) + folga, para os itens nunca ficarem cobertos. */
	padding: calc(var(--vld-header-h, 110px) + 32px) 24px 32px;
	overflow-y: auto;
	transform: translateX(100%);
	visibility: hidden;
	transition: transform .4s var(--vld-ease-soft), visibility 0s linear .4s;
}
body.vld-menu-open .vld-drawer { transform: translateX(0); visibility: visible; transition: transform .4s var(--vld-ease-soft); }
body.vld-menu-open { overflow: hidden; }

/* Backdrop atrás do drawer (escurece o conteúdo; fecha ao clicar) */
.vld-drawer-backdrop { position: fixed; inset: 0; z-index: 49; background: rgba(13,21,63,.6); opacity: 0; visibility: hidden; transition: opacity .4s var(--vld-ease-soft), visibility 0s linear .4s; }
body.vld-menu-open .vld-drawer-backdrop { opacity: 1; visibility: visible; transition: opacity .4s var(--vld-ease-soft); }
.vld-drawer-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.vld-drawer-menu a { display: block; padding: 8px 0; color: #fff; font-size: 24px; line-height: 36px; letter-spacing: var(--vld-track-tight); }
.vld-drawer-menu a:hover { color: var(--vld-lavender); }
.vld-drawer-cta { margin-top: auto; padding-top: 24px; }

/* ---- Dropdown "Produtos" (desktop): painel que abre no hover/foco ---- */
.vld-menu .menu-item-has-children { position: relative; }
.vld-menu .menu-item-has-children > a { display: inline-flex; align-items: center; gap: 8px; }
.vld-menu .menu-item-has-children > a::after {
	content: ""; width: 7px; height: 7px;
	border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform .3s var(--vld-ease-soft);
}
.vld-menu .menu-item-has-children:hover > a::after,
.vld-menu .menu-item-has-children:focus-within > a::after { transform: translateY(1px) rotate(-135deg); }
.vld-menu .sub-menu {
	list-style: none; margin: 0; padding: 8px;
	position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px;
	background: var(--vld-navy-deep);
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 14px;
	box-shadow: 0 20px 44px rgba(13,21,63,.40);
	display: flex; flex-direction: column; gap: 2px;
	opacity: 0; visibility: hidden; transform: translateY(8px); pointer-events: none;
	transition: opacity .25s var(--vld-ease-soft), transform .25s var(--vld-ease-soft), visibility 0s linear .25s;
	z-index: 70;
}
.vld-menu .menu-item-has-children:hover > .sub-menu,
.vld-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
	transition: opacity .25s var(--vld-ease-soft), transform .25s var(--vld-ease-soft);
}
.vld-menu .sub-menu a {
	padding: 10px 14px; border-radius: 9px; color: #fff; white-space: nowrap;
	font-size: var(--vld-ui); font-weight: 500;
	transition: background .2s ease, color .2s ease;
}
.vld-menu .sub-menu a:hover { background: rgba(255,255,255,.08); color: var(--vld-lavender); }
/* Mesmo sobre seção clara, o painel é navy → texto branco (não herda o tema claro) */
.vld-header.is-on-light .vld-menu .sub-menu a { color: #fff; }
.vld-header.is-on-light .vld-menu .sub-menu a:hover { color: var(--vld-lavender); }

@media (max-width: 1024px) {
	.vld-header-inner { padding-top: 18px; padding-bottom: 18px; }
	.vld-header-nav { display: none; }
	.vld-menu-toggle { display: inline-block; }
}

/* ---- Grupo "Produtos" no drawer (mobile): expande/colapsa ---- */
.vld-drawer-menu .menu-item-has-children { position: relative; }
.vld-drawer-sub-toggle {
	position: absolute; top: 4px; right: 0;
	width: 40px; height: 40px; padding: 0;
	border: 0; background: none; cursor: pointer;
}
.vld-drawer-sub-toggle::before {
	content: ""; position: absolute; left: 50%; top: 50%;
	width: 10px; height: 10px; margin: -7px 0 0 -5px;
	border-right: 2.5px solid #fff; border-bottom: 2.5px solid #fff;
	transform: rotate(45deg);
	transition: transform .3s var(--vld-ease-soft);
}
.vld-drawer-menu .menu-item-has-children.is-open > .vld-drawer-sub-toggle::before { transform: rotate(-135deg); margin-top: -3px; }
.vld-drawer-menu .sub-menu {
	list-style: none; margin: 0; padding: 0 0 0 14px;
	overflow: hidden; max-height: 0;
	transition: max-height .4s var(--vld-ease-soft);
}
.vld-drawer-menu .menu-item-has-children.is-open > .sub-menu { max-height: 60vh; }
.vld-drawer-menu .sub-menu a { font-size: 18px; line-height: 32px; color: var(--vld-lavender); }
.vld-drawer-menu .sub-menu a:hover { color: #fff; }

/* ============================================================================
   CURSOR DOTS (estilo Google Stitch) — malha de pontinhos revelada num círculo
   que segue o cursor, nas seções de fundo navy profundo. Camada SOBRE o
   conteúdo, pointer-events:none. Ativada por JS só em dispositivos com cursor.
   ============================================================================ */
.vld-hero, .vld-section--deep, .vld-spotlight, .vld-qualidade, .vld-footer, .vld-cta-card { position: relative; isolation: isolate; }
.vld-footer { overflow: hidden; }
.vld-hero::after,
.vld-section--deep::after,
.vld-spotlight::after,
.vld-qualidade::after,
.vld-footer::after,
.vld-cta-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 50;
	pointer-events: none;
	background-image: radial-gradient(circle, rgba(255,255,255,.55) 1px, transparent 1.6px);
	background-size: 22px 22px;
	-webkit-mask: radial-gradient(240px circle at var(--mx, 50%) var(--my, -30%), #000 0%, rgba(0,0,0,.35) 50%, transparent 72%);
	        mask: radial-gradient(240px circle at var(--mx, 50%) var(--my, -30%), #000 0%, rgba(0,0,0,.35) 50%, transparent 72%);
	opacity: 0;
	transition: opacity .45s var(--vld-ease-soft);
}
.vld-hero.is-glowing::after,
.vld-section--deep.is-glowing::after,
.vld-spotlight.is-glowing::after,
.vld-qualidade.is-glowing::after,
.vld-footer.is-glowing::after,
.vld-cta-card.is-glowing::before { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
	.vld-hero::after, .vld-section--deep::after, .vld-spotlight::after,
	.vld-qualidade::after, .vld-footer::after, .vld-cta-card::before { display: none; }
}

/* ============================================================================
   SEÇÃO HERO
   ============================================================================ */
.vld-hero {
	position: relative;
	overflow: hidden;
	background: var(--vld-navy-deep);
	padding: 48px 0 80px;
	display: flex;
	align-items: center;
	/* Ocupa ao menos a altura disponível (viewport − header) e centraliza o conteúdo */
	min-height: calc(100vh - var(--vld-header-h, 110px));
	min-height: calc(100svh - var(--vld-header-h, 110px));
}
.vld-hero-inner { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: minmax(0, 480px) 1fr; gap: 48px; align-items: center; }
.vld-hero-text { display: flex; flex-direction: column; gap: 24px; }
.vld-hero-title { color: #fff; margin: 0; }
.vld-hero-sub { max-width: 480px; font-size: var(--vld-body); line-height: var(--vld-body-lh); }
.vld-hero-cta { padding-top: 12px; }

/* Detalhe de fundo (símbolo da logo) com parallax */
.vld-hero-forma { position: absolute; z-index: 1; top: 37%; left: 64%; right: auto; width: 73%; color: #fff; opacity: .18; pointer-events: none; will-change: transform; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-hero-forma svg { display: block; width: 100%; height: auto; }

/* Imagem + recortes (notches) */
.vld-hero-media-wrap { position: relative; }
/* Altura dinâmica: cabe na tela visível (viewport − header − padding do hero),
   limitada a 600px nas telas grandes e a 320px no piso. */
.vld-hero-media {
	position: relative; margin: 0; width: 100%;
	height: clamp(320px, calc(100svh - var(--vld-header-h, 110px) - 128px), 600px);
	border-radius: 8px; overflow: hidden;
	border: 6px solid var(--vld-navy-deep);
	background: linear-gradient(135deg, #1d2a57, var(--vld-navy-deep));
}
.vld-hero-media img { position: absolute; left: 0; top: -20%; width: 100%; height: 120%; object-fit: cover; object-position: center; display: block; will-change: transform; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-hero-media::after { content: ""; position: absolute; inset: 0; background: rgba(42,69,207,.2); mix-blend-mode: overlay; pointer-events: none; }

/* z-index acima do tint azul (::after) para casar exatamente com o fundo da seção.
   Ancoragem vertical via `top` (transicionável) → permite a animação contínua. */
.vld-hero-notch {
	position: absolute; z-index: 2;
	width: 60px; height: 180px;
	background: var(--vld-navy-deep);
	box-shadow: 0 0 0 1px var(--vld-navy-deep);
	transition: top .9s var(--vld-ease-soft), border-radius .9s var(--vld-ease-soft);
}
/* Posições de repouso (top:0 = borda superior · calc(100% - 180px) = borda inferior) */
.vld-hero-notch--a { left: 0;                 top: calc(100% - 180px); border-radius: 0 8px 0 0; }
.vld-hero-notch--b { right: calc(50% + 6px);  top: 0;                  border-radius: 0 0 0 8px; }
.vld-hero-notch--c { left: calc(50% + 6px);   top: calc(100% - 180px); border-radius: 0 8px 0 0; }
.vld-hero-notch--e { right: 0;                top: 0;                  border-radius: 0 0 0 8px; }

/* Estado "virado": vai para a borda oposta (sobe/desce) com o canto arredondado correto */
.vld-hero-notch--a.is-flipped { top: 0;                  border-radius: 0 0 8px 0; }
.vld-hero-notch--b.is-flipped { top: calc(100% - 180px); border-radius: 8px 0 0 0; }
.vld-hero-notch--c.is-flipped { top: 0;                  border-radius: 0 0 8px 0; }
.vld-hero-notch--e.is-flipped { top: calc(100% - 180px); border-radius: 8px 0 0 0; }

/* Divisor central — fixo, ocupa toda a altura, não anima */
.vld-hero-notch--divider { top: 0; bottom: 0; left: calc(50% - 6px); width: 12px; height: auto; border-radius: 0; transition: none; }

/* Card flutuante (vidro) */
/* Wrapper posicionado que recebe o PARALLAX (transform); o card interno mantém o reveal */
.vld-hero-card-wrap { position: absolute; right: 24px; bottom: 24px; width: 320px; z-index: 3; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-hero-card { display: flex; flex-direction: column; gap: 16px; text-align: left; border-radius: 4px; }
.vld-hero-card-title { font-family: var(--vld-font-head); font-weight: 700; font-size: 36px; line-height: 1; letter-spacing: var(--vld-track-tight); color: #fff; margin: 0; }
.vld-hero-card-desc { font-size: 16px; line-height: 28px; color: var(--vld-text-invert-2); margin: 0; }

@media (max-width: 1024px) {
	.vld-hero { padding: 48px 0 96px; }
	/* Forma centralizada e mais embaixo (como no Figma), atrás de todos os elementos */
	.vld-hero-forma {
		z-index: 0;
		top: auto; bottom: -18%;
		left: 50%; right: auto;
		width: 150%; max-width: none;
		transform: translate3d(-50%, var(--parallax-y, 0px), 0);
	}
	.vld-hero-inner { grid-template-columns: 1fr; grid-template-rows: auto; gap: 48px; }
	.vld-hero-title { font-size: 40px; line-height: 52px; }
	.vld-hero-sub { max-width: none; }
	.vld-hero-cta .vld-button { width: 100%; }
	.vld-hero-media { height: 320px; min-height: 0; max-height: none; }
	.vld-hero-notch--b, .vld-hero-notch--c, .vld-hero-notch--divider { display: none; }
	.vld-hero-notch--a { width: 48px; height: 96px; top: calc(100% - 96px); }
	.vld-hero-notch--e { width: 48px; height: 96px; top: 0; }
	.vld-hero-card-wrap { left: 12px; right: 12px; bottom: 12px; width: auto; }
	.vld-hero-card { text-align: center; align-items: center; padding: 16px 24px; }
	.vld-hero-card-title { font-size: 24px; }
	.vld-hero-card-desc { font-size: 15px; }
}

/* ============================================================================
   SEÇÃO PRODUTOS — 3 cards sobre fundo claro + barra de destaque navy
   ============================================================================ */
.vld-produtos { position: relative; z-index: 1; overflow: hidden; background: var(--vld-bg); padding: 120px 0; margin-top: -1px; }
.vld-produtos-bar { position: absolute; top: 0; left: 0; width: 240px; height: 24px; background: var(--vld-navy-deep); border-bottom-right-radius: 2px; }
.vld-produtos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; align-items: start; }
.vld-produtos-grid > .vld-reveal { min-width: 0; }

/* Card de produto */
.vld-product-card { display: flex; flex-direction: column; gap: 24px; height: 100%; }
.vld-product-media { position: relative; height: 320px; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, #1d2a57, var(--vld-navy-deep)); }
/* Imagem maior que o container + deslocamento por parallax (composto via --parallax-y) */
.vld-product-media img { position: absolute; left: 0; top: -20%; width: 100%; height: 120%; object-fit: cover; display: block; will-change: transform; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-product-media::after { content: ""; position: absolute; inset: 0; background: rgba(42,69,207,.2); mix-blend-mode: overlay; pointer-events: none; }
.vld-product-notch { position: absolute; right: 0; bottom: 0; width: 96px; height: 24px; background: var(--vld-bg); box-shadow: 0 0 0 1px var(--vld-bg); border-top-left-radius: 8px; }
.vld-product-text { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.vld-product-title { font-size: 36px; line-height: 44px; letter-spacing: var(--vld-track-tight); color: var(--vld-navy); margin: 0; }
.vld-product-desc { font-size: 20px; line-height: 32px; color: var(--vld-text-muted); margin: 0; }
.vld-product-card .vld-button { margin-top: auto; }

/* Navegação do carrossel (mobile) */
.vld-carousel-nav { display: none; align-items: center; justify-content: space-between; gap: 16px; margin-top: 24px; padding-top: 12px; }
.vld-carousel-btn { position: relative; width: 48px; height: 48px; padding: 0; border: 0; background: none; cursor: pointer; flex: 0 0 auto; transition: opacity .2s var(--vld-ease-soft); }
.vld-carousel-btn.is-disabled { opacity: .4; pointer-events: none; }
.vld-carousel-btn-diamond { position: absolute; left: 50%; top: 50%; width: 34px; height: 34px; transform: translate(-50%, -50%) rotate(45deg); background: #eeeef1; border: 1px solid rgba(0,0,0,.1); border-radius: 2px; }
.vld-carousel-btn-glyph { position: absolute; left: 50%; top: 50%; width: 20px; height: 20px; transform: translate(-50%, -50%); color: var(--vld-navy-deep); }
.vld-carousel-btn-glyph svg { display: block; width: 100%; height: 100%; }
.vld-carousel-dots { display: flex; align-items: center; gap: 12px; }
.vld-carousel-dot { width: 12px; height: 12px; padding: 0; border: 0; border-radius: 2px; background: #eeeef1; transform: rotate(45deg); cursor: pointer; transition: background .2s var(--vld-ease-soft); }
.vld-carousel-dot.is-active { background: var(--vld-blue); }

@media (max-width: 980px) {
	.vld-produtos { padding: 72px 0; }
	/* Grade vira carrossel horizontal com scroll-snap */
	.vld-produtos-grid {
		display: flex;
		gap: 24px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.vld-produtos-grid::-webkit-scrollbar { display: none; }
	.vld-produtos-grid > .vld-reveal { flex: 0 0 100%; min-width: 0; scroll-snap-align: start; }
	.vld-carousel-nav { display: flex; }
	.vld-product-card { gap: 16px; }
	.vld-product-title { font-size: 24px; line-height: 32px; }
	.vld-product-desc { font-size: 16px; line-height: 28px; }
}

/* ============================================================================
   FAIXA DE ESTATÍSTICAS — números (contador) sobre fundo lavanda
   ============================================================================ */
.vld-stats { background: var(--vld-lavender-2); padding: 120px 0; }
.vld-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 72px; }
.vld-stats .vld-stat { max-width: none; }
.vld-stats .vld-stat-num { font-size: 64px; line-height: 1; letter-spacing: -0.019em; color: var(--vld-blue); margin: 0 0 24px; font-variant-numeric: tabular-nums; }
.vld-stats .vld-stat-label { font-size: 20px; line-height: 32px; color: var(--vld-text-muted); }

@media (max-width: 900px) {
	.vld-stats { padding: 96px 0; }
	.vld-stats-grid { grid-template-columns: repeat(2, 1fr); column-gap: 16px; row-gap: 32px; }
	.vld-stats .vld-stat-num { font-size: 40px; margin-bottom: 12px; }
	.vld-stats .vld-stat-label { font-size: 16px; line-height: 28px; }
}

/* ============================================================================
   SEÇÃO "QUALIDADE TÉCNICA" (diferenciais) — fundo azul + forma com parallax
   ============================================================================ */
.vld-qualidade { position: relative; overflow: hidden; padding: 120px 0; }
.vld-qualidade-inner { position: relative; z-index: 1; }
.vld-qualidade-head { max-width: 768px; display: flex; flex-direction: column; gap: 24px; margin-bottom: 64px; }
.vld-qualidade-head .vld-lead { color: var(--vld-text-invert-2); }

/* Barras de destaque (tabs que conectam às seções adjacentes) */
.vld-accent-bar--tl { position: absolute; z-index: 1; top: 0; left: 0; width: 240px; height: 24px; border-radius: 0 0 2px 0; background: var(--vld-lavender-2); }
.vld-accent-bar--br { position: absolute; z-index: 1; bottom: 0; right: 0; width: 240px; height: 24px; border-radius: 2px 0 0 0; background: var(--vld-bg); }

/* Forma da logo (topo-direita) com parallax forte */
.vld-qualidade-forma { position: absolute; z-index: 0; top: -52%; left: 44%; width: 70%; color: #fff; opacity: .16; pointer-events: none; will-change: transform; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-qualidade-forma svg { display: block; width: 100%; height: auto; }

/* Grade de diferenciais */
.vld-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; align-items: start; }
.vld-feature-grid > .vld-reveal { min-width: 0; }
.vld-feature { display: flex; flex-direction: column; gap: 24px; height: 100%; }
.vld-feature-text { display: flex; flex-direction: column; gap: 12px; }
.vld-feature-title { font-size: 32px; line-height: 40px; letter-spacing: var(--vld-track-tight); color: #fff; margin: 0; }
.vld-feature-desc { font-size: 20px; line-height: 32px; color: var(--vld-text-invert-2); margin: 0; }

.vld-qualidade-cta { display: flex; justify-content: center; margin-top: 56px; }

@media (max-width: 980px) {
	.vld-qualidade { padding: 240px 0 96px; }
	.vld-qualidade-head { margin-bottom: 48px; }
	.vld-qualidade-head .vld-display { font-size: 36px; line-height: 48px; }
	.vld-qualidade-head .vld-lead { font-size: 16px; line-height: 28px; }
	.vld-qualidade-forma { top: -8%; left: 50%; width: 150%; transform: translate3d(-50%, var(--parallax-y, 0px), 0); }
	.vld-feature-grid { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
	.vld-feature-grid::-webkit-scrollbar { display: none; }
	.vld-feature-grid > .vld-reveal { flex: 0 0 100%; scroll-snap-align: start; }
	.vld-qualidade-cta { margin-top: 12px; }
	.vld-qualidade-cta .vld-button { width: 100%; }
}

/* ============================================================================
   SEÇÃO CLIENTES / LOGOS — grade de logos + "mostrar mais"
   ============================================================================ */
.vld-clientes { background: var(--vld-bg); padding: 120px 0; }
.vld-clientes-head { max-width: 628px; margin: 0 auto 48px; text-align: center; display: flex; flex-direction: column; gap: 24px; }
.vld-clientes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vld-clientes-grid .is-hidden { display: none; }
.vld-client-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; height: 100%; background: #fff; border: 1.5px solid rgba(0,0,0,.1); border-radius: 4px; padding: 24px; box-shadow: var(--vld-shadow-sm); }
.vld-client-logo { display: flex; align-items: center; justify-content: center; width: 100%; height: 80px; }
.vld-client-logo img { height: 80px; max-width: 100%; width: auto; object-fit: contain; }
.vld-client-name { font-size: 16px; line-height: 24px; color: var(--vld-text-muted); text-align: center; margin: 0; }
.vld-clientes-cta { display: flex; justify-content: center; margin-top: 48px; }

@media (max-width: 900px) {
	.vld-clientes { padding: 72px 0; }
	.vld-clientes-head .vld-display { font-size: 36px; line-height: 48px; }
	.vld-clientes-head .vld-lead { font-size: 16px; line-height: 28px; }
	.vld-clientes-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.vld-clientes-cta { margin-top: 32px; }
	.vld-clientes-cta .vld-button { width: 100%; }
}

/* ============================================================================
   SEÇÃO SOBRE — imagem (2 notches animados + box parallax) + texto
   ============================================================================ */
.vld-sobre { position: relative; overflow: hidden; padding: 120px 0; }
.vld-sobre-inner { display: flex; gap: 48px; align-items: center; }
.vld-accent-bar--br-top { position: absolute; z-index: 1; top: 0; right: 0; width: 240px; height: 24px; border-radius: 0 0 0 2px; background: var(--vld-bg); }

.vld-sobre-media { position: relative; flex: 1; min-width: 0; height: 680px; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, #2a3358, var(--vld-navy-deep)); }
.vld-sobre-media > img { position: absolute; left: 0; top: -20%; width: 100%; height: 120%; object-fit: cover; object-position: bottom; will-change: transform; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-sobre-media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(42,69,207,.2); mix-blend-mode: overlay; pointer-events: none; }
.vld-sobre-box-wrap { position: absolute; left: 24px; bottom: 24px; z-index: 3; width: 280px; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-sobre-box { text-align: left; }
.vld-sobre-box p { font-size: 24px; line-height: 32px; letter-spacing: -.019em; color: var(--vld-text-invert-2); margin: 0; font-weight: 400; }
.vld-sobre-box strong { font-weight: 700; color: #fff; }

.vld-sobre-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 24px; }
.vld-sobre-text .vld-lead { color: var(--vld-text-invert-2); }
.vld-sobre-cta { padding-top: 12px; }

@media (max-width: 900px) {
	.vld-sobre { padding: 72px 0; }
	/* No mobile o hero volta ao fluxo natural (sem forçar altura cheia) e a mídia fica fixa. */
	.vld-sobrehero { display: block; min-height: 0; padding: 32px 0 72px; }
	.vld-sobre-inner { flex-direction: column; gap: 40px; }
	.vld-sobre-media,
	.vld-sobrehero .vld-sobre-media { width: 100%; height: 420px; }
	.vld-sobre-text .vld-display { font-size: 36px; line-height: 48px; }
	.vld-sobre-text .vld-lead { font-size: 16px; line-height: 28px; }
	.vld-sobre-box-wrap { width: auto; left: 12px; right: 12px; }
	.vld-sobre-box p { font-size: 18px; }
	.vld-sobre-cta .vld-button { width: 100%; }
}

/* ============================================================================
   NOTCH GENÉRICO (reutilizável) — recorte animado nos cantos das imagens.
   Tamanho/cor via variáveis: --notch-w, --notch-h, --notch-color.
   ============================================================================ */
.vld-notch { position: absolute; z-index: 2; width: var(--notch-w, 60px); height: var(--notch-h, 180px); background: var(--notch-color, var(--vld-navy-deep)); box-shadow: 0 0 0 1px var(--notch-color, var(--vld-navy-deep)); transition: top .9s var(--vld-ease-soft), border-radius .9s var(--vld-ease-soft); }
.vld-notch--a { left: 0; top: calc(100% - var(--notch-h, 180px)); border-radius: 0 8px 0 0; }
.vld-notch--e { right: 0; top: 0; border-radius: 0 0 0 8px; }
.vld-notch--a.is-flipped { top: 0; border-radius: 0 0 8px 0; }
.vld-notch--e.is-flipped { top: calc(100% - var(--notch-h, 180px)); border-radius: 8px 0 0 0; }

/* ============================================================================
   SEÇÃO "OBRAS REAIS" — galeria bento + formas com parallax
   ============================================================================ */
.vld-obra { position: relative; overflow: hidden; background: var(--vld-lavender-2); padding: 120px 0; }
.vld-obra-inner { position: relative; z-index: 1; }
.vld-obra-forma { position: absolute; z-index: 0; width: 730px; max-width: 90%; color: var(--vld-navy); opacity: .06; pointer-events: none; will-change: transform; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-obra-forma svg { display: block; width: 100%; height: auto; }
.vld-obra-forma--l { top: -22%; left: -42%; }
.vld-obra-forma--r { top: 16%; right: -42%; }
.vld-obra-head { max-width: 768px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; gap: 12px; }
.vld-obra-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.vld-obra-grid > .vld-reveal { min-width: 0; }
.vld-obra-grid > .is-big { grid-column: span 2; }
.vld-obra-tile { position: relative; height: 380px; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, #cdd3ee, var(--vld-lavender-2)); --notch-w: 96px; --notch-h: 48px; --notch-color: var(--vld-lavender-2); }
/* Estado inicial dos dois recortes: 1º (esquerda) em cima, 2º (direita) em baixo. */
.vld-obra-tile .vld-notch--a { top: 0; border-radius: 0 0 8px 0; }
.vld-obra-tile .vld-notch--a.is-flipped { top: calc(100% - var(--notch-h, 48px)); border-radius: 0 8px 0 0; }
.vld-obra-tile .vld-notch--e { top: calc(100% - var(--notch-h, 48px)); border-radius: 8px 0 0 0; }
.vld-obra-tile .vld-notch--e.is-flipped { top: 0; border-radius: 0 0 0 8px; }
.vld-obra-tile > img { position: absolute; left: 0; top: -20%; width: 100%; height: 120%; object-fit: cover; will-change: transform; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-obra-tile::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(42,69,207,.2); mix-blend-mode: overlay; pointer-events: none; }
.vld-obra-box { position: absolute; left: 24px; bottom: 24px; z-index: 3; max-width: 300px; padding: 24px; }
.vld-obra-box p { font-size: 18px; line-height: 26px; color: var(--vld-text-invert-2); margin: 0; }

@media (max-width: 900px) {
	.vld-obra { padding: 72px 0; }
	.vld-obra-head .vld-display { font-size: 36px; line-height: 48px; }
	.vld-obra-head .vld-lead { font-size: 16px; line-height: 28px; }
	.vld-obra-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
	.vld-obra-tile { height: 240px; --notch-w: 72px; --notch-h: 36px; }
	/* Mobile: esconde o recorte da direita e reduz o da esquerda à metade da altura. */
	.vld-obra-tile .vld-notch--e { display: none; }
	.vld-obra-tile .vld-notch--a { --notch-h: 18px; }
	.vld-obra-box { left: 12px; bottom: 12px; right: 12px; padding: 16px; max-width: none; }
	.vld-obra-box p { font-size: 15px; line-height: 22px; }
}

/* ============================================================================
   SEÇÃO BLOG / NOTÍCIAS — header 2 colunas + 3 cards + forma no rodapé
   ============================================================================ */
.vld-blog { position: relative; overflow: hidden; background: var(--vld-bg); padding: 120px 0; }
.vld-blog-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 48px; }
.vld-blog-forma { position: absolute; z-index: 0; bottom: -42%; left: 0; width: 595px; max-width: 58%; color: var(--vld-navy); opacity: .06; pointer-events: none; will-change: transform; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-blog-forma svg { display: block; width: 100%; height: auto; }
.vld-blog-head { display: flex; gap: 48px; align-items: center; }
.vld-blog-head > * { flex: 1; min-width: 0; }
.vld-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.vld-blog-grid > .vld-reveal { min-width: 0; }
.vld-post-card { display: flex; flex-direction: column; gap: 24px; height: 100%; }
.vld-post-media { position: relative; display: block; height: 320px; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, #dfe3f3, #fff); }
.vld-post-media img { position: absolute; left: 0; top: -20%; width: 100%; height: 120%; object-fit: cover; will-change: transform; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-post-media::after { content: ""; position: absolute; inset: 0; background: rgba(42,69,207,.2); mix-blend-mode: overlay; pointer-events: none; }
.vld-post-notch { position: absolute; top: 0; left: 0; z-index: 2; width: 96px; height: 24px; background: var(--vld-bg); box-shadow: 0 0 0 1px var(--vld-bg); border-bottom-right-radius: 8px; }
.vld-post-title { font-size: 20px; line-height: 32px; font-weight: 400; letter-spacing: var(--vld-track-tight); color: rgba(0,0,0,.8); margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.vld-post-title a { color: inherit; }
.vld-post-title a:hover { color: var(--vld-blue); }
.vld-post-card .vld-button { margin-top: auto; align-self: flex-start; }
.vld-blog-cta { display: flex; justify-content: flex-end; }

/* Grade vira carrossel horizontal no mobile (mesma estrutura dos produtos) */
@media (max-width: 980px) {
	.vld-blog-grid { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
	.vld-blog-grid::-webkit-scrollbar { display: none; }
	.vld-blog-grid > .vld-reveal { flex: 0 0 100%; min-width: 0; scroll-snap-align: start; }
}

@media (max-width: 900px) {
	.vld-blog { padding: 72px 0; }
	.vld-blog-head { flex-direction: column; align-items: flex-start; gap: 16px; }
	.vld-blog-head .vld-display { font-size: 36px; line-height: 48px; }
	.vld-blog-head .vld-lead { font-size: 16px; line-height: 28px; }
	.vld-blog-cta { justify-content: stretch; }
	.vld-blog-cta .vld-button { width: 100%; }
}

/* ============================================================================
   SEÇÃO CTA (orçamento) — card com imagem (parallax) + box de texto + notches
   ============================================================================ */
.vld-cta { padding: 120px 0; }
.vld-cta-card { position: relative; overflow: hidden; border-radius: 8px; height: 620px; --notch-w: 60px; --notch-h: 180px; --notch-color: var(--vld-navy); background: var(--vld-navy); }
/* Desktop: o wrapper não gera caixa — imagem e notches seguem posicionados pelo card. */
.vld-cta-media { display: contents; }
.vld-cta-img { position: absolute; left: 0; top: -20%; width: 100%; height: 120%; object-fit: cover; will-change: transform; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-cta-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(42,69,207,.2); mix-blend-mode: overlay; pointer-events: none; }
.vld-cta-card .vld-notch--a { left: min(480px, 42%); }
.vld-cta-box { position: absolute; z-index: 3; left: 0; top: 0; bottom: 0; width: min(480px, 42%); background: var(--vld-navy); display: flex; flex-direction: column; justify-content: center; gap: 24px; padding: 48px; }
.vld-cta-box .vld-display { color: #fff; }
.vld-cta-box .vld-lead { color: var(--vld-text-invert-2); }
.vld-cta-btn { position: absolute; z-index: 3; right: 24px; bottom: 24px; }

@media (max-width: 900px) {
	/* Mobile: fluxo natural empilhado — texto ANTES da imagem (sem sobrepor),
	   imagem 40% mais baixa com os recortes (notches) ancorados a ela, botão full-width. */
	.vld-cta { padding: 72px 0; }
	.vld-cta-card { height: auto; overflow: visible; display: flex; flex-direction: column; gap: 24px; background: transparent; --notch-color: var(--vld-navy); --notch-w: 60px; --notch-h: 88px; }
	.vld-cta-card::after { display: none; }
	.vld-cta-box { position: static; order: 1; width: 100%; transform: none; padding: 0; gap: 12px; justify-content: flex-start; }
	.vld-cta-box .vld-display { font-size: 36px; line-height: 48px; }
	.vld-cta-box .vld-lead { font-size: 16px; line-height: 28px; }
	/* Wrapper da imagem volta a gerar caixa: contém imagem + notches. */
	.vld-cta-media { display: block; position: relative; order: 2; width: 100%; height: 240px; border-radius: 8px; overflow: hidden; }
	.vld-cta-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 8px; transform: none; }
	.vld-cta-card .vld-notch { display: block; }
	.vld-cta-card .vld-notch--a { left: 0; }
	.vld-cta-card .vld-notch--e { right: 0; }
	.vld-cta-btn { position: static; order: 3; }
	.vld-cta-btn .vld-button { width: 100%; }
}

/* ============================================================================
   PÁGINA SOBRE
   ============================================================================ */
/* Hero das páginas internas (Sobre/Produto): mesmas regras da hero da home —
   ocupa a altura disponível da tela, conteúdo centralizado na vertical e
   imagem com altura dinâmica (preenche a tela, até 600px). */
.vld-sobrehero {
	display: flex;
	align-items: center;
	padding: 48px 0 80px;
	min-height: calc(100vh - var(--vld-header-h, 110px));
	min-height: calc(100svh - var(--vld-header-h, 110px));
}
.vld-sobrehero > .vld-shell { width: 100%; }
.vld-sobrehero .vld-sobre-media { height: clamp(320px, calc(100svh - var(--vld-header-h, 110px) - 128px), 600px); }
.vld-breadcrumb { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; font-size: 16px; color: var(--vld-text-invert-2); }
.vld-breadcrumb a { color: var(--vld-text-invert-2); }
.vld-breadcrumb a:hover { color: #fff; }
.vld-breadcrumb svg { width: 20px; height: 20px; opacity: .6; }
.vld-breadcrumb [aria-current] { color: #fff; }
.vld-scroll-ind { position: relative; display: inline-block; width: 48px; height: 48px; margin-top: 24px; }
.vld-scroll-ind::before { content: ""; position: absolute; left: 50%; top: 50%; width: 34px; height: 34px; transform: translate(-50%, -50%) rotate(45deg); background: rgba(255,255,255,.2); border-radius: 2px; transition: background .2s; }
.vld-scroll-ind:hover::before { background: rgba(255,255,255,.32); }
.vld-scroll-ind svg { position: absolute; left: 50%; top: 50%; width: 24px; height: 24px; transform: translate(-50%, -50%); color: #fff; }

/* §2 Empresa — bento de imagens + texto */
.vld-emp { background: var(--vld-bg); padding: 120px 0; position: relative; }
.vld-emp-head { display: flex; gap: 48px; align-items: flex-start; margin-bottom: 48px; }
.vld-emp-head > * { flex: 1; min-width: 0; }
.vld-emp-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 380px; gap: 24px; }
.vld-emp-tile { position: relative; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, #cdd3ee, var(--vld-lavender-2)); --notch-w: 96px; --notch-h: 48px; --notch-color: var(--vld-bg); }
.vld-emp-tile > img { position: absolute; left: 0; top: -20%; width: 100%; height: 120%; object-fit: cover; will-change: transform; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-emp-tile::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(42,69,207,.2); mix-blend-mode: overlay; pointer-events: none; }
.vld-emp-tile--wide { grid-column: span 2; }
.vld-emp-text { grid-column: span 1; align-self: center; }
.vld-emp-text p { font-size: 20px; line-height: 32px; color: var(--vld-text-muted); margin: 0; }
@media (max-width: 900px) {
	.vld-emp { padding: 72px 0; }
	.vld-emp-head { flex-direction: column; gap: 16px; }
	.vld-emp-head .vld-display { font-size: 36px; line-height: 48px; }
	.vld-emp-head .vld-lead { font-size: 16px; line-height: 28px; }
	.vld-emp-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; gap: 16px; }
	.vld-emp-tile--wide, .vld-emp-text { grid-column: span 2; }
	.vld-emp-text { grid-row: auto; }
	/* Mobile: esconde o recorte da direita e reduz o da esquerda à metade (como nas Obras da home). */
	.vld-emp-tile .vld-notch--e { display: none; }
	.vld-emp-tile .vld-notch--a { --notch-h: 24px; }
}

/* §3 Números — header + stats (fundo claro, conforme Figma). Mesmo tratamento da home. */
.vld-numeros { background: var(--vld-lavender-2); padding: 120px 0; }
.vld-numeros-head { display: flex; gap: 48px; align-items: center; margin-bottom: 48px; }
.vld-numeros-head > * { flex: 1; min-width: 0; }
.vld-numeros-head .vld-display { color: var(--vld-navy); }
.vld-numeros-head .vld-lead { color: var(--vld-text-muted); }
.vld-numeros-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 72px; }
.vld-numeros .vld-stat { max-width: none; }
.vld-numeros .vld-stat-num { font-size: 64px; line-height: 1; letter-spacing: var(--vld-track-tight); color: var(--vld-blue); margin: 0 0 24px; font-variant-numeric: tabular-nums; }
.vld-numeros .vld-stat-label { font-size: 20px; line-height: 32px; color: var(--vld-text-muted); }
@media (max-width: 900px) {
	.vld-numeros { padding: 72px 0; }
	.vld-numeros-head { flex-direction: column; align-items: flex-start; gap: 12px; }
	.vld-numeros-head .vld-display { font-size: 36px; line-height: 48px; }
	.vld-numeros-head .vld-lead { font-size: 16px; line-height: 28px; }
	.vld-numeros-grid { grid-template-columns: repeat(2, 1fr); column-gap: 16px; row-gap: 32px; }
	.vld-numeros .vld-stat-num { font-size: 40px; margin-bottom: 12px; }
	.vld-numeros .vld-stat-label { font-size: 16px; line-height: 28px; }
}

/* §4 Linha do tempo (fundo navy #19297c, conforme Figma) */
.vld-tl { position: relative; overflow: hidden; background: var(--vld-navy); padding: 120px 0; }
.vld-tl-inner { position: relative; z-index: 1; }
.vld-tl-forma { position: absolute; z-index: 0; top: -46%; left: 38%; width: 70%; color: #fff; opacity: .14; pointer-events: none; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-tl-forma svg { display: block; width: 100%; height: auto; }
.vld-tl-head { max-width: 768px; margin-bottom: 56px; }
.vld-tl-head .vld-display { color: #fff; }
.vld-tl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
/* Espaçamento entre colunas vai nos textos, para a linha cruzar a coluna inteira (continuidade). */
.vld-tl-step { padding-right: 0; }
.vld-tl-mark { position: relative; height: 48px; margin-bottom: 24px; }
/* Losango: 34px num "slot" de 48px → pontas em 0 e 48px (cola na linha anterior e na própria linha). */
.vld-tl-mark::before { content: ""; position: absolute; left: 7px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 34px; height: 34px; box-sizing: border-box; border: 2px solid #fff; background: #fff; border-radius: 2px; transition: background-color .25s var(--vld-ease-soft); z-index: 1; }
/* Linha: começa colada à ponta direita do losango (47px) e vai até a borda da coluna,
   onde encosta na ponta esquerda do próximo losango. Gradiente horizontal. */
.vld-tl-mark::after { content: ""; position: absolute; left: 47px; right: 0; top: 50%; transform: translateY(-50%); height: 2px; background: linear-gradient(90deg, rgba(255,255,255,.85), rgba(255,255,255,.12)); }
/* Estado "só contorno" (animação alternada via JS). */
.vld-tl-mark.is-outline::before { background: transparent; }
.vld-tl-year { font-family: var(--vld-font-head); font-weight: 700; font-size: 32px; line-height: 40px; color: #fff; margin: 0 0 12px; padding-right: 24px; }
.vld-tl-text { font-size: 20px; line-height: 32px; color: var(--vld-text-invert-2); margin: 0; padding-right: 24px; }
/* Mobile/tablet: linha do tempo vira carrossel horizontal (um marco por vez). */
@media (max-width: 980px) {
	.vld-tl-grid { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
	.vld-tl-grid::-webkit-scrollbar { display: none; }
	.vld-tl-step { flex: 0 0 100%; min-width: 0; scroll-snap-align: start; padding-right: 0; }
	.vld-tl-mark::after { right: 0; }
	/* Sem animação dos losangos no mobile: marco sempre preenchido. */
	.vld-tl-mark.is-outline::before { background: #fff; }
}
@media (max-width: 900px) {
	.vld-tl { padding: 72px 0; }
	.vld-tl-head .vld-display { font-size: 36px; line-height: 48px; }
}

/* §5 Missão / Visão / Valores */
.vld-mvv { position: relative; overflow: hidden; background: var(--vld-bg); padding: 120px 0; }
.vld-mvv-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 96px; }
.vld-mvv-forma { position: absolute; z-index: 0; color: var(--vld-navy); opacity: .05; pointer-events: none; width: 1000px; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-mvv-forma svg { width: 100%; height: auto; display: block; }
.vld-mvv-block { max-width: 640px; display: flex; flex-direction: column; gap: 24px; }
.vld-mvv-block .vld-lead { color: var(--vld-text-muted); }
/* "Por que existimos" — card com gradiente, forma e efeito de pontinhos (Figma 52:5203). */
.vld-mvv-mission { max-width: none; position: relative; overflow: hidden; border-radius: 8px; background: linear-gradient(to left, #201d9a, #2f2bd0); padding: 96px; isolation: isolate; }
.vld-mvv-mission .vld-mvv-mission-text { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 24px; max-width: 640px; }
.vld-mvv-mission .vld-display { color: #fff; }
.vld-mvv-mission .vld-lead { color: var(--vld-text-invert-2); }
.vld-mvv-mission-forma { position: absolute; z-index: 0; top: 50%; right: -50px; width: 532px; color: #fff; opacity: .12; pointer-events: none; will-change: transform; transform: translate3d(0, calc(-50% + var(--parallax-y, 0px)), 0); }
.vld-mvv-mission-forma svg { display: block; width: 100%; height: auto; }
@media (max-width: 900px) {
	.vld-mvv-mission { padding: 40px 24px; }
	.vld-mvv-mission-forma { width: 360px; right: -120px; }
}
/* "Para onde vamos" — imagem à esquerda + texto à direita (Figma 52:5220). */
.vld-mvv-vision { display: flex; gap: 48px; align-items: center; max-width: none; }
.vld-mvv-vision > * { flex: 1; min-width: 0; }
.vld-mvv-vision-media { position: relative; height: 512px; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, #cdd3ee, var(--vld-lavender-2)); --notch-w: 60px; --notch-h: 180px; --notch-color: var(--vld-bg); }
.vld-mvv-vision-media > img { position: absolute; left: 0; top: -20%; width: 100%; height: 120%; object-fit: cover; will-change: transform; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-mvv-vision-media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(42,69,207,.2); mix-blend-mode: overlay; pointer-events: none; }
/* Recortes nos cantos opostos do Figma: superior-esquerdo e inferior-direito. */
.vld-mvv-vision-media .vld-notch--a { left: auto; right: 0; top: calc(100% - var(--notch-h, 180px)); border-radius: 8px 0 0 0; }
.vld-mvv-vision-media .vld-notch--a.is-flipped { top: 0; border-radius: 0 0 0 8px; }
.vld-mvv-vision-media .vld-notch--e { right: auto; left: 0; top: 0; border-radius: 0 0 8px 0; }
.vld-mvv-vision-media .vld-notch--e.is-flipped { top: calc(100% - var(--notch-h, 180px)); border-radius: 0 8px 0 0; }
.vld-mvv-vision-text { display: flex; flex-direction: column; gap: 24px; }
.vld-mvv-vision-text .vld-lead { color: var(--vld-text-muted); }
/* "O que nos guia" — grid 3 colunas; o título é a 1ª célula (col1/row1),
   alinhado à direita; cards brancos (conforme Figma 52:5284). */
.vld-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.vld-values-head { display: flex; flex-direction: column; justify-content: center; }
.vld-values-head .vld-display { color: var(--vld-navy); text-align: right; margin: 0; }
.vld-value-card { background: #fff; border: 1.5px solid rgba(0,0,0,.1); border-radius: 4px; padding: 24px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--vld-shadow-sm); }
.vld-value-card .vld-value-ico { width: 32px; height: 32px; color: var(--vld-navy); flex: 0 0 auto; }
.vld-value-card h3 { font-size: 24px; line-height: 32px; font-weight: 400; letter-spacing: var(--vld-track-tight); color: rgba(0,0,0,.8); margin: 0; }
.vld-value-card p { font-size: 16px; line-height: 24px; color: var(--vld-text-muted); margin: 0; }
@media (max-width: 900px) {
	.vld-mvv { padding: 72px 0; }
	.vld-mvv-inner { gap: 56px; }
	.vld-mvv-block .vld-display, .vld-mvv-vision .vld-display { font-size: 32px; line-height: 42px; }
	.vld-mvv-vision { flex-direction: column; gap: 32px; align-items: stretch; }
	.vld-mvv-vision-media { height: 320px; }
	.vld-values-grid { grid-template-columns: 1fr; }
	.vld-values-head .vld-display { text-align: left; }
}

/* §6 Diferenciais — linhas alternadas imagem/texto */
/* "O que nos diferencia" — fundo lavanda clara (conforme Figma 52:5328). */
.vld-dif { background: var(--vld-lavender-2); padding: 120px 0; position: relative; }
.vld-dif-head { text-align: center; max-width: 900px; margin: 0 auto 56px; }
.vld-dif-head .vld-display { color: var(--vld-navy); }
.vld-dif-rows { display: flex; flex-direction: column; gap: 48px; }
.vld-dif-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.vld-dif-row--rev .vld-dif-media { order: 2; }
.vld-dif-media { position: relative; height: 380px; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, #cdd3ee, var(--vld-lavender-2)); --notch-w: 96px; --notch-h: 48px; --notch-color: var(--vld-lavender-2); }
.vld-dif-media > img { position: absolute; left: 0; top: -20%; width: 100%; height: 120%; object-fit: cover; will-change: transform; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-dif-media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(42,69,207,.2); mix-blend-mode: overlay; pointer-events: none; }
.vld-dif-text h3 { font-size: 28px; line-height: 36px; color: var(--vld-navy); margin: 0 0 16px; }
.vld-dif-text p { font-size: 18px; line-height: 28px; color: var(--vld-text-muted); margin: 0; }
@media (max-width: 900px) {
	.vld-dif { padding: 72px 0; }
	.vld-dif-head .vld-display { font-size: 36px; line-height: 48px; }
	.vld-dif-rows { gap: 40px; }
	.vld-dif-row { grid-template-columns: 1fr; gap: 24px; }
	.vld-dif-row--rev .vld-dif-media { order: 0; }
	.vld-dif-media { height: 240px; }
	/* Mobile: esconde o recorte da direita, mantém só o da esquerda. */
	.vld-dif-media .vld-notch--e { display: none; }
}

/* §7 Localização — mapa de fundo (pin no endereço) + box de vidro (Figma 52:5389). */
.vld-loc { position: relative; height: 620px; overflow: hidden; background: #e5e7ef; }
/* Wrapper do mapa: permite recortar/deslocar o iframe para centralizar o pin. */
.vld-loc-mapwrap { position: absolute; inset: 0; overflow: hidden; }
/* Tema claro aproximado do Figma: leve desaturação + brilho. O embed já fixa o pin. */
.vld-loc-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.55) contrast(.92) brightness(1.05); }
.vld-loc-inner { position: relative; z-index: 1; height: 100%; display: flex; align-items: center; pointer-events: none; }
.vld-loc-box { width: 360px; pointer-events: auto; }
.vld-loc-title { font-family: var(--vld-font-head); font-size: 24px; line-height: 36px; font-weight: 700; letter-spacing: var(--vld-track-tight); color: #fff; margin: 0 0 16px; }
.vld-loc-desc { font-size: 16px; line-height: 28px; color: var(--vld-text-invert-2); margin: 0; }
.vld-loc-cta { margin-top: 24px; }
@media (max-width: 900px) {
	.vld-loc { height: 560px; }
	/* Mapa ocupa toda a altura por trás do box; alarga e centraliza o iframe
	   para o pin ficar centralizado horizontalmente sem arrastar o mapa. */
	.vld-loc-mapwrap { inset: 0; }
	.vld-loc-frame { width: 160%; left: 50%; transform: translateX(-50%); }
	/* Box compacto, largura total, colado no rodapé — ocupa o mínimo possível. */
	.vld-loc-inner { align-items: flex-end; padding: 0; }
	.vld-shell.vld-loc-inner { padding-left: 0; padding-right: 0; }
	.vld-loc-box { width: 100%; padding: 16px; border-radius: 0; }
	.vld-loc-title { font-size: 16px; line-height: 24px; margin-bottom: 4px; }
	.vld-loc-desc { font-size: 14px; line-height: 20px; }
	.vld-loc-cta { margin-top: 12px; }
	.vld-loc-cta .vld-button { width: 100%; padding-top: 8px; padding-bottom: 8px; }
	.vld-loc-cta .vld-arrow { width: 30px; height: 30px; }
}

/* ============================================================================
   PÁGINA PRODUTO
   ============================================================================ */
/* §2 Destaques */
.vld-pd-feat { background: var(--vld-bg); padding: 120px 0; position: relative; overflow: hidden; }
.vld-pd-feat-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 48px; align-items: center; }
.vld-pd-feat-head { text-align: center; max-width: 768px; }
.vld-pd-feat-head .vld-display { color: var(--vld-navy); }
/* Forma da logo ao fundo, centralizada, com parallax. */
.vld-pd-feat-forma { position: absolute; z-index: 0; top: 50%; left: 50%; width: 1138px; max-width: 110%; color: var(--vld-navy); opacity: .06; pointer-events: none; will-change: transform; transform: translate3d(-50%, calc(-50% + var(--parallax-y, 0px)), 0); }
.vld-pd-feat-forma svg { display: block; width: 100%; height: auto; }
/* Grid: palavra-chave | imagem (2 linhas) | palavra-chave */
.vld-pd-feat-grid { width: 100%; display: grid; grid-template-columns: 1fr auto 1fr; grid-template-rows: auto auto; gap: 24px; align-items: center; justify-items: stretch; }
.vld-pd-feat-kw { margin: 0; font-family: var(--vld-font-head); font-weight: 700; font-size: 32px; line-height: 40px; letter-spacing: var(--vld-track-tight); color: rgba(0,0,0,.8); padding: 24px; }
.vld-pd-feat-kw--a { grid-column: 1; grid-row: 1; text-align: right; }
.vld-pd-feat-kw--b { grid-column: 3; grid-row: 1; text-align: left; }
.vld-pd-feat-kw--c { grid-column: 1; grid-row: 2; text-align: right; }
.vld-pd-feat-kw--d { grid-column: 3; grid-row: 2; text-align: left; }
.vld-pd-feat-media { grid-column: 2; grid-row: 1 / span 2; width: 411px; max-width: 100%; justify-self: center; }
.vld-pd-feat-media > img { display: block; width: 100%; height: auto; }
@media (max-width: 900px) {
	.vld-pd-feat { padding: 72px 0; }
	.vld-pd-feat-head .vld-display { font-size: 32px; line-height: 42px; }
	/* Mobile: imagem no topo, palavras-chave empilhadas e centralizadas. */
	.vld-pd-feat-grid { display: flex; flex-direction: column; align-items: center; gap: 24px; }
	.vld-pd-feat-media { order: -1; width: 280px; }
	.vld-pd-feat-kw { font-size: 24px; line-height: 32px; text-align: center !important; padding: 0; }
	.vld-pd-feat-forma { width: 150%; }
}

/* §3 Aplicações (fundo navy) */
/* §3 Aplicações — fundo lavanda claro + cards brancos com ícone (Figma 57:180). */
.vld-pd-app { background: var(--vld-lavender-2); padding: 120px 0; position: relative; }
.vld-pd-app-head { text-align: center; max-width: 768px; margin: 0 auto 48px; }
.vld-pd-app-head .vld-display { color: var(--vld-navy); }
.vld-pd-app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vld-pd-app-card { display: flex; flex-direction: column; gap: 12px; min-height: 160px; background: #fff; border: 1.5px solid rgba(0,0,0,.1); border-radius: 4px; padding: 24px; box-shadow: var(--vld-shadow-sm); }
.vld-pd-app-card .vld-pd-app-ico { width: 32px; height: 32px; color: var(--vld-navy); flex: 0 0 auto; }
.vld-pd-app-card p { margin: 0; font-size: 24px; line-height: 36px; font-weight: 500; letter-spacing: var(--vld-track-tight); color: rgba(0,0,0,.8); }
@media (max-width: 900px) {
	.vld-pd-app { padding: 72px 0; }
	.vld-pd-app-head .vld-display { font-size: 32px; line-height: 42px; }
	.vld-pd-app-grid { grid-template-columns: 1fr; }
	.vld-pd-app-card { min-height: 0; }
	.vld-pd-app-card p { font-size: 20px; line-height: 30px; }
}

/* §4 Especificações */
.vld-pd-spec { background: var(--vld-bg); padding: 120px 0; position: relative; }
.vld-pd-spec-headw { text-align: center; max-width: 768px; margin: 0 auto 48px; }
.vld-pd-spec-inner { display: grid; grid-template-columns: 488px 1fr; gap: 48px; align-items: center; }
/* Ilustração wireframe transparente (sem fundo/notch/animação).
   O SVG não tem proporção intrínseca confiável → fixamos o aspect-ratio do viewBox. */
.vld-pd-spec-media { width: 488px; max-width: 100%; }
.vld-pd-spec-media > img { display: block; width: 100%; height: auto; aspect-ratio: 460.386 / 338.62; object-fit: contain; }
.vld-pd-spec-list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.vld-pd-spec-list li { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 20px; line-height: 28px; letter-spacing: var(--vld-track-tight); color: var(--vld-text-muted); }
.vld-pd-spec-ico { width: 24px; height: 24px; color: var(--vld-text-muted); flex: 0 0 auto; }
.vld-pd-spec-k { font-weight: 700; color: var(--vld-text-muted); }
.vld-pd-spec-v { color: var(--vld-text-muted); }
.vld-pd-spec-note { font-size: 24px; line-height: 40px; letter-spacing: var(--vld-track-tight); color: var(--vld-text-muted); margin: 0 0 24px; }
@media (max-width: 900px) {
	.vld-pd-spec { padding: 72px 0; }
	.vld-pd-spec-headw .vld-display { font-size: 32px; line-height: 42px; }
	.vld-pd-spec-inner { grid-template-columns: 1fr; gap: 32px; }
	.vld-pd-spec-media { width: 300px; justify-self: center; }
	.vld-pd-spec-list li { font-size: 18px; }
	.vld-pd-spec-note { font-size: 18px; line-height: 30px; }
}

/* §5 FAQ — fundo navy, texto branco (Figma 58:1274). */
.vld-pd-faq { background: var(--vld-navy); padding: 120px 0; position: relative; }
.vld-pd-faq-head { margin-bottom: 48px; }
.vld-pd-faq-head .vld-display { color: #fff; }
.vld-pd-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.vld-pd-faq-item h3 { font-size: 24px; line-height: 32px; font-weight: 500; letter-spacing: var(--vld-track-tight); color: var(--vld-text-invert-2); margin: 0 0 16px; }
.vld-pd-faq-item p { font-size: 20px; line-height: 28px; letter-spacing: var(--vld-track-tight); color: rgba(255,255,255,.7); margin: 0; }
@media (max-width: 900px) { .vld-pd-faq { padding: 72px 0; } .vld-pd-faq-head .vld-display { font-size: 32px; line-height: 42px; } .vld-pd-faq-grid { grid-template-columns: 1fr; gap: 32px; } .vld-pd-faq-item h3 { font-size: 20px; line-height: 28px; } .vld-pd-faq-item p { font-size: 18px; } }

/* §6 Cross-sell — grid de 3 colunas alinhado à esquerda (Figma 58:1583);
   com 2 itens, a 3ª coluna fica vazia à direita. */
.vld-pd-cross { background: var(--vld-bg); padding: 120px 0; position: relative; }
.vld-pd-cross-head { text-align: center; max-width: 768px; margin: 0 auto 48px; }
.vld-pd-cross-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.vld-pd-cross-grid > .vld-reveal { min-width: 0; }
/* Mobile/tablet: vira carrossel horizontal (um card por vez). */
@media (max-width: 980px) {
	.vld-pd-cross-grid { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
	.vld-pd-cross-grid::-webkit-scrollbar { display: none; }
	.vld-pd-cross-grid > .vld-reveal { flex: 0 0 100%; min-width: 0; scroll-snap-align: start; }
}
@media (max-width: 900px) { .vld-pd-cross { padding: 72px 0; } .vld-pd-cross-head .vld-display { font-size: 32px; line-height: 42px; } }

/* ============================================================================
   PÁGINA CONTATO
   ============================================================================ */
.vld-ct-hero { padding: 48px 0 96px; }
.vld-ct-hero-grid { display: flex; gap: 48px; align-items: center; }
.vld-ct-hero-grid > * { flex: 1; min-width: 0; }
.vld-ct-hero-grid .vld-lead { color: var(--vld-text-invert-2); }

.vld-ct-canais { background: var(--vld-lavender-2); padding: 120px 0; position: relative; }
.vld-ct-canais-head { display: flex; gap: 48px; align-items: center; margin-bottom: 48px; }
.vld-ct-canais-head > * { flex: 1; min-width: 0; }
.vld-ct-canais-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vld-ct-card { background: #fff; border: 1.5px solid rgba(0,0,0,.1); border-radius: 4px; padding: 24px; display: flex; flex-direction: column; gap: 24px; align-items: flex-start; box-shadow: var(--vld-shadow-sm); }
.vld-ct-card-ico { width: 32px; height: 32px; color: var(--vld-blue); flex: 0 0 auto; }
.vld-ct-card-info { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.vld-ct-card-k { font-size: 24px; line-height: 36px; font-weight: 500; color: rgba(0,0,0,.8); margin: 0; }
.vld-ct-card-v { font-size: 20px; line-height: 28px; color: var(--vld-text-muted); margin: 0; word-break: break-word; }
/* "Clique para copiar" — respeita o layout (texto muted) + ícone que aparece no hover. */
.vld-copy { position: relative; display: inline-flex; align-items: center; gap: 8px; max-width: 100%; margin: 0; padding: 2px 0; border: 0; background: none; cursor: pointer; font: inherit; font-size: 20px; line-height: 28px; color: var(--vld-text-muted); text-align: left; word-break: break-word; transition: color var(--vld-trans); }
.vld-copy:hover, .vld-copy:focus-visible { color: var(--vld-blue); outline: none; }
.vld-copy-ico { display: inline-flex; flex: 0 0 auto; opacity: .5; transition: opacity var(--vld-trans); }
.vld-copy:hover .vld-copy-ico, .vld-copy:focus-visible .vld-copy-ico { opacity: 1; }
.vld-copy-ico svg { width: 18px; height: 18px; }
.vld-copy-ico-check { display: none; }
.vld-copy-feedback { position: absolute; left: 0; bottom: calc(100% + 6px); padding: 4px 10px; border-radius: 4px; background: var(--vld-navy-deep); color: #fff; font-size: 13px; line-height: 1; white-space: nowrap; opacity: 0; transform: translateY(4px); pointer-events: none; transition: opacity var(--vld-trans), transform var(--vld-trans); }
.vld-copy.is-copied { color: var(--vld-blue); }
.vld-copy.is-copied .vld-copy-ico-copy { display: none; }
.vld-copy.is-copied .vld-copy-ico-check { display: inline-flex; }
.vld-copy.is-copied .vld-copy-feedback { opacity: 1; transform: translateY(0); }

.vld-ct-form { background: var(--vld-bg); padding: 120px 0; position: relative; }
.vld-ct-form-head { display: flex; gap: 48px; align-items: center; margin-bottom: 48px; }
.vld-ct-form-head > * { flex: 1; min-width: 0; }
.vld-ct-form-ok, .vld-ct-form-err { width: 100%; margin: 0 0 24px; padding: 16px 20px; border-radius: 8px; font-weight: 500; text-align: center; }
.vld-ct-form-ok { background: #e6f4ea; color: #1a7f37; }
.vld-ct-form-err { background: #fcebea; color: #b32d2e; }
.vld-ct-form-card { background: #fff; border: 1.5px solid rgba(0,0,0,.1); border-radius: 4px; padding: 48px; box-shadow: var(--vld-shadow-sm); display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.vld-ct-form-card .vld-col-2 { grid-column: span 2; }
.vld-ct-form-card .vld-col-4 { grid-column: span 4; }
.vld-ct-form-card .vld-field { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.vld-ct-form-card .vld-label { font-size: 20px; line-height: 20px; font-weight: 400; letter-spacing: var(--vld-track-tight); color: rgba(0,0,0,.7); margin: 0; }
/* Campos conforme Figma (altura 48px, borda suave, placeholder claro). */
.vld-ct-form-card .vld-input,
.vld-ct-form-card .vld-select,
.vld-ct-form-card .vld-textarea { height: 48px; padding: 12px 16px; border: 1px solid rgba(0,0,0,.2); border-radius: 4px; font-size: 16px; line-height: 16px; letter-spacing: var(--vld-track-tight); color: rgba(0,0,0,.8); box-shadow: none; }
.vld-ct-form-card .vld-input::placeholder,
.vld-ct-form-card .vld-textarea::placeholder { color: rgba(0,0,0,.4); }
.vld-ct-form-card .vld-input:focus,
.vld-ct-form-card .vld-select:focus,
.vld-ct-form-card .vld-textarea:focus { border-color: var(--vld-blue); box-shadow: 0 0 0 3px rgba(42,69,207,.12); }
.vld-ct-form-card .vld-textarea { height: 120px; min-height: 120px; padding: 12px; line-height: 22px; }
/* Select com chevron próprio (oculta a seta nativa) — fallback sem JS. */
.vld-select-wrap { position: relative; }
.vld-select-wrap .vld-select { width: 100%; appearance: none; -webkit-appearance: none; -moz-appearance: none; padding-right: 48px; color: rgba(0,0,0,.4); cursor: pointer; }
.vld-select-wrap .vld-select:valid,
.vld-select-wrap .vld-select option { color: rgba(0,0,0,.8); }
.vld-select-chevron { position: absolute; right: 16px; top: 50%; width: 20px; height: 20px; transform: translateY(-50%) rotate(90deg); color: rgba(0,0,0,.5); pointer-events: none; }
/* Com JS: esconde o select nativo + chevron-fallback e usa o dropdown custom. */
.vld-select-wrap.has-cselect .vld-select,
.vld-select-wrap.has-cselect .vld-select-chevron { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }

/* Dropdown estilizado (animações suaves). */
.vld-cselect { position: relative; }
.vld-cselect-trigger { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; height: 48px; padding: 12px 16px; border: 1px solid rgba(0,0,0,.2); border-radius: 4px; background: #fff; font-family: var(--vld-font-body); font-size: 16px; line-height: 16px; letter-spacing: var(--vld-track-tight); color: rgba(0,0,0,.8); text-align: left; cursor: pointer; transition: border-color var(--vld-trans), box-shadow var(--vld-trans); }
.vld-cselect-trigger::after { content: ""; flex: 0 0 auto; width: 10px; height: 10px; border-right: 2px solid rgba(0,0,0,.5); border-bottom: 2px solid rgba(0,0,0,.5); transform: rotate(45deg) translate(-2px,-2px); transition: transform .25s var(--vld-ease-soft); }
.vld-cselect.is-placeholder .vld-cselect-trigger { color: rgba(0,0,0,.4); }
.vld-cselect-trigger:hover { border-color: rgba(0,0,0,.35); }
.vld-cselect-trigger:focus-visible { outline: none; border-color: var(--vld-blue); box-shadow: 0 0 0 3px rgba(42,69,207,.12); }
.vld-cselect.is-open .vld-cselect-trigger { border-color: var(--vld-blue); box-shadow: 0 0 0 3px rgba(42,69,207,.12); }
.vld-cselect.is-open .vld-cselect-trigger::after { transform: rotate(225deg) translate(-2px,-2px); }
.vld-cselect-menu { position: absolute; z-index: 20; top: calc(100% + 6px); left: 0; right: 0; margin: 0; padding: 6px; list-style: none; background: #fff; border: 1px solid rgba(0,0,0,.1); border-radius: 4px; box-shadow: 0 12px 32px rgba(13,21,63,.12); opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity .2s var(--vld-ease-soft), transform .2s var(--vld-ease-soft); }
.vld-cselect.is-open .vld-cselect-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.vld-cselect-opt { padding: 10px 12px; border-radius: 4px; font-size: 16px; line-height: 20px; color: rgba(0,0,0,.8); cursor: pointer; transition: background var(--vld-trans), color var(--vld-trans); }
.vld-cselect-opt:hover { background: var(--vld-lavender-2); }
.vld-cselect-opt[aria-selected="true"] { background: var(--vld-lavender-2); color: var(--vld-blue); font-weight: 500; }
@media (prefers-reduced-motion: reduce) {
	.vld-cselect-trigger::after, .vld-cselect-menu { transition: none; }
}
.vld-ct-form-foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.vld-ct-form-priv { font-size: 16px; line-height: 16px; color: rgba(0,0,0,.7); margin: 0; max-width: 480px; }

.vld-ct-map { position: relative; height: 620px; overflow: hidden; }
.vld-ct-map-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.25); }
.vld-ct-map-inner { position: relative; z-index: 1; height: 100%; display: flex; align-items: center; pointer-events: none; }
.vld-ct-map-box { width: 320px; pointer-events: auto; }
.vld-ct-map-title { font-size: 24px; line-height: 32px; font-weight: 700; color: #fff; margin: 0 0 8px; font-family: var(--vld-font-head); }
.vld-ct-map-desc { font-size: 16px; line-height: 24px; color: var(--vld-text-invert-2); margin: 0; }

@media (max-width: 900px) {
	.vld-ct-hero-grid, .vld-ct-canais-head, .vld-ct-form-head { flex-direction: column; align-items: flex-start; gap: 16px; }
	.vld-ct-hero-grid .vld-display, .vld-ct-canais-head .vld-display, .vld-ct-form-head .vld-display { font-size: 36px; line-height: 48px; }
	.vld-ct-hero-grid .vld-lead, .vld-ct-canais-head .vld-lead, .vld-ct-form-head .vld-lead { font-size: 16px; line-height: 28px; }
	.vld-ct-canais, .vld-ct-form { padding: 72px 0; }
	.vld-ct-canais-grid { grid-template-columns: 1fr; }
	.vld-ct-form-card { padding: 24px; grid-template-columns: 1fr; gap: 20px; }
	.vld-ct-form-card .vld-col-2, .vld-ct-form-card .vld-col-4 { grid-column: span 1; }
	.vld-ct-form-foot { flex-direction: column; align-items: stretch; }
	.vld-ct-form-foot .vld-button { width: 100%; }
	.vld-ct-map { height: 420px; }
	.vld-ct-map-box { width: auto; }
}

/* ============================================================================
   PÁGINA NOTÍCIAS
   ============================================================================ */
.vld-nt-hero { padding: 48px 0 96px; }
.vld-nt-hero-grid { display: flex; gap: 48px; align-items: center; }
.vld-nt-hero-grid > * { flex: 1; min-width: 0; }
.vld-nt-hero-grid .vld-lead { color: var(--vld-text-invert-2); }

.vld-nt-ultimas { background: var(--vld-bg); padding: 120px 0; position: relative; overflow: hidden; }
.vld-nt-ultimas-inner { position: relative; z-index: 1; }
.vld-nt-forma { position: absolute; z-index: 0; bottom: -30%; left: 0; width: 595px; max-width: 55%; color: var(--vld-navy); opacity: .06; pointer-events: none; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-nt-forma svg { width: 100%; height: auto; display: block; }
.vld-nt-ultimas-head { margin-bottom: 48px; }
.vld-nt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }

.vld-nt-cat { background: var(--vld-lavender-2); padding: 120px 0; position: relative; }
.vld-nt-cat-head { margin-bottom: 48px; }
.vld-nt-cat-head .vld-display { color: var(--vld-navy); }
.vld-nt-cat-layout { display: grid; grid-template-columns: 320px 1fr; gap: 24px; align-items: start; }
.vld-nt-cats { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 120px; }
/* Categorias = sem preenchimento (conforme Figma); só a cor do texto muda. */
.vld-nt-cat-btn { display: block; width: 100%; text-align: left; padding: 16px; border: 0; border-radius: 4px; background: none; font-family: var(--vld-font-ui); font-size: 20px; font-weight: 500; letter-spacing: var(--vld-track-tight); color: rgba(0,0,0,.5); cursor: pointer; transition: color .2s; }
.vld-nt-cat-btn:hover { color: rgba(0,0,0,.8); }
.vld-nt-cat-btn.is-active { color: rgba(0,0,0,.8); }
.vld-nt-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.vld-nt-cat-item.is-hidden { display: none; }

/* Variante compacta do card de notícia (imagem 230px) — usada na grade de categorias.
   O recorte sobre a imagem assume a cor do fundo da seção (lavanda). */
.vld-post-card--compact { gap: 16px; }
.vld-post-card--compact .vld-post-media { height: 230px; }
.vld-post-card--compact .vld-post-notch { background: var(--vld-lavender-2); box-shadow: 0 0 0 1px var(--vld-lavender-2); }
.vld-post-card--compact .vld-post-title { -webkit-line-clamp: 2; }

@media (max-width: 900px) {
	.vld-nt-hero-grid { flex-direction: column; align-items: flex-start; gap: 12px; }
	.vld-nt-hero-grid .vld-display { font-size: 36px; line-height: 48px; }
	.vld-nt-hero-grid .vld-lead { font-size: 16px; line-height: 28px; }
	.vld-nt-ultimas, .vld-nt-cat { padding: 72px 0; }
	.vld-nt-ultimas-head .vld-display, .vld-nt-cat-head .vld-display { font-size: 36px; line-height: 48px; }
	.vld-nt-grid { grid-template-columns: 1fr; gap: 40px; }
	.vld-nt-cat-layout { grid-template-columns: 1fr; gap: 24px; }
	/* Mobile: categorias viram uma faixa de scroll horizontal acima das notícias. */
	.vld-nt-cats { position: static; flex-direction: row; flex-wrap: nowrap; gap: 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin: 0 -24px; padding: 4px 24px; }
	.vld-nt-cats::-webkit-scrollbar { display: none; }
	.vld-nt-cat-btn { flex: 0 0 auto; width: auto; white-space: nowrap; padding: 10px 16px; font-size: 16px; }
	.vld-nt-cat-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================================
   PÁGINA 404 — box "404" com notches + texto/CTA + forma decorativa
   ============================================================================ */
/* Desktop: mesmas regras da hero da home — ocupa a altura disponível da tela,
   conteúdo centralizado na vertical; o box "404" tem altura dinâmica (preenche). */
.vld-404 {
	position: relative; overflow: hidden;
	display: flex; align-items: center;
	padding: 48px 0 80px;
	min-height: calc(100vh - var(--vld-header-h, 110px));
	min-height: calc(100svh - var(--vld-header-h, 110px));
}
.vld-404-forma { position: absolute; z-index: 0; right: -18%; bottom: -8%; width: 720px; max-width: 64%; color: #fff; opacity: .07; pointer-events: none; will-change: transform; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.vld-404-forma svg { display: block; width: 100%; height: auto; }
.vld-404-grid { position: relative; z-index: 1; width: 100%; display: flex; align-items: center; gap: 48px; }
.vld-404-grid > * { flex: 1; min-width: 0; }
.vld-404-box { position: relative; height: clamp(320px, calc(100svh - var(--vld-header-h, 110px) - 128px), 600px); border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.06); --notch-color: var(--vld-navy-deep); }
.vld-404-num { font-family: var(--vld-font); font-weight: 700; font-size: 120px; line-height: 1; color: rgba(255,255,255,.8); letter-spacing: -.02em; }
.vld-404-text { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.vld-404-text .vld-display { color: #fff; }
.vld-404-text .vld-lead { color: var(--vld-text-invert-2); }
.vld-404-cta { padding-top: 12px; }

@media (max-width: 900px) {
	/* Mobile (Figma 52:6760): box "404" com 320px, notches 48×120, forma da
	   logo grande no canto inferior-esquerdo, atrás do conteúdo. */
	.vld-404 { display: block; min-height: 0; padding: 48px 0 64px; }
	.vld-404-grid { flex-direction: column; align-items: stretch; gap: 48px; }
	/* Reseta o flex:1 (flex-basis:0) p/ a altura do box valer no eixo coluna. */
	.vld-404-grid > * { flex: 0 0 auto; }
	.vld-404-box { height: 320px; --notch-w: 48px; --notch-h: 120px; }
	.vld-404-num { font-size: 96px; }
	.vld-404-forma { right: auto; bottom: -8%; left: -33px; width: 1050px; max-width: none; opacity: .08; }
	.vld-404-text .vld-display { font-size: 36px; line-height: 48px; }
	.vld-404-text .vld-lead { font-size: 16px; line-height: 28px; }
	.vld-404-cta .vld-button { width: 100%; }
}

/* ============================================================================
   NOTÍCIA — SINGLE (detalhe da postagem)
   ============================================================================ */
/* Hero: eyebrow "Notícia" + título da notícia (mesmo fundo navy da listagem). */
.vld-single-hero-grid { display: flex; flex-direction: column; gap: 16px; max-width: 960px; }
.vld-single-eyebrow { font-size: 16px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--vld-lavender); margin: 0; }
.vld-single-hero-grid .vld-display { color: #fff; }

/* Layout 70/30 */
.vld-single-body { background: var(--vld-bg); padding: 80px 0 120px; }
.vld-single-layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 3fr); gap: 64px; align-items: start; }
.vld-single-main { min-width: 0; }

/* Imagem de destaque + legenda (alt) */
.vld-single-figure { margin: 0 0 12px; }
.vld-single-img { display: block; width: 100%; height: auto; border-radius: 8px; }
.vld-single-caption { margin-top: 12px; font-size: 14px; line-height: 20px; color: var(--vld-text-muted); }

/* Rich text da notícia */
.vld-richtext { margin-top: 32px; color: var(--vld-text); }
.vld-richtext > * + * { margin-top: 24px; }
.vld-richtext p { font-size: 18px; line-height: 32px; color: rgba(0,0,0,.75); margin: 0; }
.vld-richtext h2 { font-family: var(--vld-font-head); font-size: 28px; line-height: 36px; font-weight: 700; letter-spacing: var(--vld-track-tight); color: var(--vld-navy); margin: 40px 0 0; }
.vld-richtext h3 { font-family: var(--vld-font-head); font-size: 22px; line-height: 30px; font-weight: 700; color: var(--vld-navy); margin: 32px 0 0; }
.vld-richtext ul, .vld-richtext ol { margin: 0; padding-left: 24px; }
.vld-richtext li { font-size: 18px; line-height: 32px; color: rgba(0,0,0,.75); }
.vld-richtext li + li { margin-top: 8px; }
.vld-richtext a { color: var(--vld-blue); text-decoration: underline; }
.vld-richtext blockquote { margin: 0; padding: 16px 24px; border-left: 3px solid var(--vld-blue); background: var(--vld-lavender-2); border-radius: 0 4px 4px 0; font-size: 20px; line-height: 32px; color: var(--vld-navy); }
.vld-richtext img { max-width: 100%; height: auto; border-radius: 8px; }

/* Compartilhar */
.vld-single-share { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--vld-border); }
.vld-single-share-label { font-size: 16px; font-weight: 600; color: var(--vld-navy); }
.vld-single-share-list { display: flex; gap: 12px; }
.vld-single-share-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 4px; background: rgba(0,0,0,.05); border: 1px solid rgba(0,0,0,.1); color: var(--vld-navy); transition: background var(--vld-trans), color var(--vld-trans), border-color var(--vld-trans); }
.vld-single-share-btn:hover { background: var(--vld-blue); border-color: var(--vld-blue); color: #fff; }
.vld-single-share-btn svg { width: 20px; height: 20px; }

/* Coluna lateral (anúncio + mais lidas) */
.vld-single-side { display: flex; flex-direction: column; gap: 48px; position: sticky; top: 120px; }
.vld-single-ad { display: flex; align-items: center; justify-content: center; min-height: 360px; border: 1px dashed var(--vld-border-2); border-radius: 8px; background: var(--vld-lavender-2); }
.vld-single-ad-label { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--vld-text-muted); }
/* Bloco preenchido com um anúncio real (imagem + link) */
.vld-single-ad--filled { display: block; min-height: 0; border: 0; background: transparent; border-radius: 0; }
.vld-single-ad--filled .vld-single-ad-label { display: block; margin-bottom: 8px; }
.vld-single-ad--filled a { display: block; }
.vld-single-ad--filled img { display: block; width: 100%; height: auto; border-radius: 8px; }
.vld-single-side-title { font-family: var(--vld-font-head); font-size: 24px; line-height: 32px; font-weight: 700; letter-spacing: var(--vld-track-tight); color: var(--vld-navy); margin: 0 0 8px; padding-bottom: 16px; border-bottom: 2px solid var(--vld-navy); }
.vld-single-mostread-list { display: flex; flex-direction: column; }

/* Card de notícia SÓ TEXTO (mais lidas) */
.vld-post-text { display: flex; gap: 16px; align-items: baseline; padding: 20px 0; border-bottom: 1px solid var(--vld-border); }
.vld-post-text:last-child { border-bottom: 0; }
.vld-post-text-num { font-family: var(--vld-font-head); font-size: 28px; line-height: 1; font-weight: 700; color: var(--vld-lavender); flex: 0 0 auto; }
.vld-post-text-body { min-width: 0; }
.vld-post-text-meta { display: block; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--vld-text-muted); margin-bottom: 4px; }
.vld-post-text-title { font-size: 18px; line-height: 26px; font-weight: 500; letter-spacing: var(--vld-track-tight); color: rgba(0,0,0,.8); margin: 0; }
.vld-post-text-title a { color: inherit; transition: color var(--vld-trans); }
.vld-post-text-title a:hover { color: var(--vld-blue); }

@media (max-width: 1024px) {
	.vld-single-layout { grid-template-columns: 1fr; gap: 56px; }
	.vld-single-side { position: static; }
}
@media (max-width: 900px) {
	.vld-single-body { padding: 56px 0 72px; }
	.vld-single-hero-grid .vld-display { font-size: 32px; line-height: 42px; }
	.vld-richtext p, .vld-richtext li { font-size: 16px; line-height: 28px; }
	.vld-richtext h2 { font-size: 24px; line-height: 32px; }
	.vld-single-ad { min-height: 240px; }
}

/* ============================================================================
   FOOTER do site
   ============================================================================ */
.vld-footer { background: var(--vld-navy-deep); color: var(--vld-text-invert); padding: 120px 0; }
.vld-footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; margin-bottom: 48px; }
.vld-footer-brand { display: flex; flex-direction: column; gap: 12px; padding: 12px 0; }
.vld-footer-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 16px; line-height: 24px; color: var(--vld-text-invert-2); }
.vld-footer-contact a { color: var(--vld-text-invert-2); }
.vld-footer-contact a:hover { color: #fff; }
.vld-footer-tagline { font-family: var(--vld-font-head); font-weight: 700; font-size: 36px; line-height: 48px; letter-spacing: var(--vld-track-tight); color: #fff; margin: 0; text-align: right; }
.vld-footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.vld-footer-h { font-size: 24px; line-height: 32px; color: #fff; margin: 0 0 12px; }
.vld-footer-nav, .vld-footer-social { list-style: none; margin: 0; padding: 0; }
.vld-footer-nav li a { display: block; padding: 12px 0; font-size: 18px; font-weight: 500; color: var(--vld-text-invert-2); }
.vld-footer-nav li a:hover { color: #fff; }
.vld-footer-social li a { display: flex; align-items: center; gap: 12px; padding: 12px 0; font-size: 18px; font-weight: 500; color: var(--vld-text-invert-2); }
.vld-footer-social li a:hover { color: #fff; }
.vld-footer-social svg { width: 24px; height: 24px; flex: 0 0 auto; }

@media (max-width: 900px) {
	.vld-footer { padding: 72px 0; }
	.vld-footer-top { flex-direction: column; gap: 28px; margin-bottom: 40px; }
	.vld-footer-tagline { text-align: left; font-size: 28px; line-height: 36px; }
	.vld-footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
	.vld-footer-cols { grid-template-columns: 1fr; }
}

/* Linha final (copyright) */
.vld-footerbar { background: var(--vld-navy-deep); border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; }
.vld-footerbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.vld-footerbar p { margin: 0; font-size: 14px; color: var(--vld-text-invert-2); }
@media (max-width: 700px) {
	.vld-footerbar-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================================
   REVEAL DE PALAVRAS NO SCROLL — opacidade sobe conforme o usuário rola
   ============================================================================ */
html.vld-js [data-scroll-words] .vld-word { opacity: .22; }
.vld-word { transition: opacity .12s linear; }
.vld-word.is-bold { font-weight: 700; }
@media (prefers-reduced-motion: reduce) {
	html.vld-js [data-scroll-words] .vld-word { opacity: 1; }
}

/* ============================================================================
   ANIMAÇÃO DE ENTRADA (.vld-reveal) — suave, ao carregar a página
   Sem JS o conteúdo aparece normalmente (só anima quando html.vld-js).
   ============================================================================ */
html.vld-js .vld-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity var(--reveal-dur, .7s) var(--vld-ease-soft), transform var(--reveal-dur, .7s) var(--vld-ease-soft);
	transition-delay: var(--reveal-delay, 0s);
	will-change: opacity, transform;
}
html.vld-js .vld-reveal--top { transform: translateY(-28px); }
html.vld-js .vld-reveal.is-revealed { opacity: 1; transform: none; }

/* Forma do hero: aparece por ÚLTIMO e só com fade (preserva o transform do parallax) */
html.vld-js .vld-hero-forma { opacity: 0; transition: opacity 1.2s var(--vld-ease-soft); transition-delay: .7s; }
html.vld-js.vld-ready .vld-hero-forma { opacity: .18; }

@media (prefers-reduced-motion: reduce) {
	html.vld-js .vld-reveal { opacity: 1; transform: none; transition: none; }
	html.vld-js .vld-hero-forma { opacity: .18; transition: none; }
}
