/* =============================================================
   VEGEL PERÚ — Vegel Theme v2
   Sistema de diseño: "Trust & Authority" industrial premium
   Tipografía: Lexend (titulares) · Source Sans 3 (cuerpo)
   Paleta: marino profundo + azul VEGEL #3596C4
   ============================================================= */

:root {
	/* Color */
	--navy-950: #04101E;
	--navy-900: #061A2E;
	--navy-800: #08243F;
	--navy-700: #0C3357;
	--brand: #3596C4;
	--brand-dark: #20719A;
	--brand-light: #7CC5E8;
	--brand-soft: #E3F2F9;
	--bg: #F4F8FB;
	--surface: #FFFFFF;
	--ink: #0A2239;
	--text: #4C5F74;
	--text-dim: #8095A8;
	--line: #DFE9F0;
	--ok: #1E9E6A;
	--ok-dark: #146B48;
	--ok-soft: #E8F7F0;
	--error: #C73A3A;
	--error-dark: #8F2626;
	--error-soft: #FCEEEE;

	/* Tipografía */
	--font-head: 'Lexend', system-ui, sans-serif;
	--font-body: 'Source Sans 3', system-ui, sans-serif;

	/* Espaciado */
	--s1: .5rem;
	--s2: 1rem;
	--s3: 1.5rem;
	--s4: 2.5rem;
	--s5: 4rem;
	--s6: 6.5rem;

	/* Otros */
	--radius: 14px;
	--radius-lg: 22px;
	--shadow-sm: 0 2px 10px rgba(6, 26, 46, .06);
	--shadow-md: 0 12px 34px rgba(6, 26, 46, .12);
	--shadow-lg: 0 24px 60px rgba(6, 26, 46, .18);
	--ease-out: cubic-bezier(.22, 1, .36, 1);
	--header-h: 84px;
	--topbar-h: 42px;
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--text);
	background: var(--surface);
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-dark); text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
	font-family: var(--font-head);
	color: var(--ink);
	line-height: 1.12;
	margin: 0 0 .6em;
	font-weight: 700;
	letter-spacing: -.02em;
}
p { margin: 0 0 1em; }
ul { padding: 0; margin: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(0 0 0 0); white-space: nowrap;
}

.vg-skip {
	position: fixed; top: -100px; left: var(--s2); z-index: 300;
	background: var(--navy-900); color: #fff; padding: .7rem 1.2rem;
	border-radius: 0 0 10px 10px; transition: top .25s;
}
.vg-skip:focus { top: 0; }

.vg-container { width: min(1240px, 100% - 3rem); margin-inline: auto; }

/* Estados iniciales de animación (solo cuando Motion está activo) */
html.vg-motion [data-vg-reveal] { opacity: 0; }
html.vg-motion [data-vg-split] .vg-w { display: inline-block; }

/* ---------- Barra de progreso de scroll ---------- */
.vg-progress {
	position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 260;
	pointer-events: none;
}
.vg-progress__bar {
	display: block; height: 100%; width: 100%;
	background: linear-gradient(90deg, var(--brand), var(--brand-light));
	transform-origin: 0 50%; transform: scaleX(0);
}

/* =============================================================
   HEADER
   ============================================================= */
.vg-header { position: sticky; top: 0; z-index: 250; }

/* Nivel 1 · Top bar */
.vg-topbar {
	background: var(--navy-950); color: #B9CCDD;
	font-size: .85rem; height: var(--topbar-h);
	overflow: hidden;
	transition: height .35s var(--ease-out), opacity .3s;
}
.vg-topbar__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--s2); height: var(--topbar-h);
}
.vg-topbar__data { display: flex; gap: 1.4rem; align-items: center; }
.vg-topbar__item {
	display: inline-flex; align-items: center; gap: .45rem;
	color: #B9CCDD; transition: color .2s;
}
.vg-topbar__item svg { width: 15px; height: 15px; color: var(--brand-light); }
a.vg-topbar__item:hover { color: #fff; }
.vg-topbar__social { display: flex; align-items: center; gap: .9rem; }
.vg-topbar__tag {
	font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
	color: var(--text-dim);
}
.vg-topbar__social a {
	color: #B9CCDD; display: inline-flex;
	transition: color .2s, transform .2s;
}
.vg-topbar__social a:hover { color: var(--brand-light); transform: translateY(-2px); }
.vg-topbar__social svg { width: 16px; height: 16px; }

/* Nivel 2 · Barra principal */
.vg-navbar {
	background: rgba(255, 255, 255, .92);
	-webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: box-shadow .3s, border-color .3s;
}
.vg-navbar__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--s3); height: var(--header-h);
	transition: height .35s var(--ease-out);
}
.vg-brand { display: inline-flex; align-items: center; }
.vg-brand__img { height: 46px; width: auto; transition: height .35s var(--ease-out); }

/* Header compacto al hacer scroll */
.vg-header.is-stuck .vg-topbar { height: 0; opacity: 0; }
.vg-header.is-stuck .vg-navbar { box-shadow: var(--shadow-md); border-color: var(--line); }
.vg-header.is-stuck .vg-navbar__inner { height: 68px; }
.vg-header.is-stuck .vg-brand__img { height: 38px; }

/* Navegación */
.vg-nav__list { display: flex; gap: .4rem; align-items: center; }
.vg-nav__link {
	position: relative; display: block; padding: .55rem .85rem;
	font-family: var(--font-head); font-size: .93rem; font-weight: 500;
	color: var(--ink); overflow: hidden; border-radius: 8px;
}
/* Efecto de volteo del texto: el duplicado espera 0.7rem más abajo
   (fuera del padding del enlace) para no asomarse antes del hover */
.vg-nav__link span { position: relative; display: block; transition: transform .35s var(--ease-out); }
.vg-nav__link span::after {
	content: attr(data-text);
	position: absolute; top: calc(100% + .7rem); left: 0; width: 100%;
	color: var(--brand);
}
.vg-nav__link:hover span { transform: translateY(calc(-100% - .7rem)); }
/* Subrayado activo */
.vg-nav__link::before {
	content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .28rem;
	height: 2px; background: var(--brand);
	transform: scaleX(0); transform-origin: 0 50%;
	transition: transform .35s var(--ease-out);
}
.vg-nav__link:hover::before, .vg-nav__link.is-active::before { transform: scaleX(1); }
.vg-nav__link.is-active { color: var(--brand-dark); }

.vg-navbar__actions { display: flex; align-items: center; gap: var(--s2); }

/* Hamburguesa */
.vg-burger {
	display: none; flex-direction: column; justify-content: center; gap: 5px;
	width: 46px; height: 46px; padding: 11px;
	background: var(--navy-900); border: 0; border-radius: 10px;
}
.vg-burger span {
	display: block; height: 2px; width: 100%; background: #fff;
	border-radius: 2px; transition: transform .35s var(--ease-out), opacity .25s;
	transform-origin: center;
}
.vg-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vg-burger.is-open span:nth-child(2) { opacity: 0; }
.vg-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menú móvil */
.vg-mobile {
	position: fixed; inset: 0; z-index: 240;
	visibility: hidden; pointer-events: none;
}
.vg-mobile.is-open { visibility: visible; pointer-events: auto; }
.vg-mobile__bg {
	position: absolute; inset: 0;
	background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
	opacity: 0; transition: opacity .4s;
}
.vg-mobile.is-open .vg-mobile__bg { opacity: 1; }
.vg-mobile__panel {
	position: relative; height: 100%; display: flex; flex-direction: column;
	justify-content: center; gap: var(--s4);
	padding: calc(var(--header-h) + var(--s3)) var(--s4) var(--s4);
}
.vg-mobile__list { display: flex; flex-direction: column; gap: .35rem; }
.vg-mobile__item {
	opacity: 0; transform: translateY(26px);
	transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
	transition-delay: calc(var(--i) * 60ms + 120ms);
}
.vg-mobile.is-open .vg-mobile__item { opacity: 1; transform: none; }
.vg-mobile__item a {
	display: flex; align-items: baseline; gap: 1rem;
	font-family: var(--font-head); font-weight: 600;
	font-size: clamp(1.6rem, 5.5vw, 2.4rem); color: #fff;
	padding: .35rem 0; transition: color .25s, padding-left .3s var(--ease-out);
}
.vg-mobile__item a:hover, .vg-mobile__item a.is-active { color: var(--brand-light); padding-left: .6rem; }
.vg-mobile__num { font-size: .85rem; font-weight: 400; color: var(--brand); letter-spacing: .1em; }
.vg-mobile__foot {
	display: flex; flex-wrap: wrap; gap: var(--s3); align-items: center;
	color: #B9CCDD; font-size: .95rem;
	opacity: 0; transition: opacity .5s .45s;
}
.vg-mobile.is-open .vg-mobile__foot { opacity: 1; }
.vg-mobile__foot a { display: inline-flex; gap: .5rem; align-items: center; color: #B9CCDD; }
.vg-mobile__foot a:hover { color: #fff; }
.vg-mobile__foot svg { width: 17px; height: 17px; color: var(--brand-light); }
.vg-mobile__social { display: flex; gap: 1rem; }
.vg-mobile__social svg { width: 20px; height: 20px; }

/* =============================================================
   BOTONES
   ============================================================= */
.vg-btn {
	position: relative; display: inline-flex; align-items: center; gap: .6rem;
	padding: 1rem 1.7rem; border: 0; border-radius: 999px;
	background: var(--brand); color: #fff;
	font-family: var(--font-head); font-weight: 600; font-size: .95rem;
	letter-spacing: .01em; overflow: hidden; isolation: isolate;
	transition: transform .25s var(--ease-out), box-shadow .3s;
	box-shadow: 0 6px 18px rgba(53, 150, 196, .35);
}
.vg-btn::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: var(--navy-900);
	transform: translateX(-101%); transition: transform .4s var(--ease-out);
}
.vg-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(6, 26, 46, .3); color: #fff; }
.vg-btn:hover::before { transform: translateX(0); }
.vg-btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease-out); }
.vg-btn:hover svg { transform: translateX(4px); }

.vg-btn--ghost {
	background: transparent; color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .45); box-shadow: none;
}
.vg-btn--ghost::before { background: #fff; }
.vg-btn--ghost:hover { color: var(--navy-900); border-color: #fff; }

.vg-btn--dark { background: var(--navy-900); box-shadow: 0 6px 18px rgba(6, 26, 46, .3); }
.vg-btn--dark::before { background: var(--brand); }

.vg-btn--sm { padding: .68rem 1.25rem; font-size: .88rem; }

/* Texto alternativo corto para celular (se usa en la portada) */
.vg-btn__short { display: none; }

/* =============================================================
   HERO (portada)
   ============================================================= */
.vg-hero {
	position: relative; min-height: calc(100svh - var(--header-h) - var(--topbar-h));
	display: flex; flex-direction: column; justify-content: center;
	background: var(--navy-950); color: #fff; overflow: hidden;
}
.vg-hero__media { position: absolute; inset: 0; }
.vg-hero__bg {
	position: absolute; inset: 0; background-size: cover; background-position: center;
	opacity: 0; transform: scale(1.08);
	transition: opacity 1s var(--ease-out);
}
.vg-hero__bg.is-active { opacity: 1; animation: vg-kenburns 9s var(--ease-out) forwards; }
@keyframes vg-kenburns {
	from { transform: scale(1.14); }
	to { transform: scale(1.02); }
}
.vg-hero__media::after {
	content: ""; position: absolute; inset: 0;
	background:
		linear-gradient(78deg, rgba(4, 16, 30, .94) 22%, rgba(4, 16, 30, .55) 58%, rgba(4, 16, 30, .25) 100%),
		linear-gradient(0deg, rgba(4, 16, 30, .85) 0%, transparent 35%);
}
.vg-hero__content { position: relative; z-index: 2; padding: var(--s6) 0 var(--s5); }
.vg-hero__kicker {
	display: inline-flex; align-items: center; gap: .7rem;
	font-family: var(--font-head); font-size: .82rem; font-weight: 500;
	letter-spacing: .22em; text-transform: uppercase; color: var(--brand-light);
	margin-bottom: var(--s3);
}
.vg-hero__kicker::before { content: ""; width: 42px; height: 2px; background: var(--brand); }
.vg-hero__title {
	color: #fff; font-size: clamp(2.6rem, 6.2vw, 4.9rem);
	font-weight: 700; max-width: 17ch; margin-bottom: var(--s3);
}
.vg-hero__title .vg-rotor {
	display: inline-block; position: relative; color: var(--brand-light);
	white-space: nowrap;
}
.vg-hero__title .vg-rotor::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: .05em; height: .1em;
	background: linear-gradient(90deg, var(--brand), transparent);
}
.vg-hero__text { max-width: 56ch; font-size: 1.18rem; color: #C9D9E6; margin-bottom: var(--s4); }
.vg-hero__actions { display: flex; flex-wrap: wrap; gap: var(--s2); }

/* Franja inferior del hero: stats + scroll hint */
.vg-hero__strip {
	position: relative; z-index: 2;
	border-top: 1px solid rgba(255, 255, 255, .14);
	background: rgba(4, 16, 30, .45);
	-webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.vg-hero__strip-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--s3); padding: 1.1rem 0; flex-wrap: wrap;
}
.vg-hero__stats { display: flex; gap: var(--s4); flex-wrap: wrap; }
.vg-hero__stat { display: flex; flex-direction: column; }
.vg-hero__stat strong {
	font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: #fff;
	line-height: 1.1;
}
.vg-hero__stat span:last-child { font-size: .82rem; color: #9FB6C9; letter-spacing: .04em; }
.vg-hero__scroll {
	display: inline-flex; align-items: center; gap: .6rem;
	color: #9FB6C9; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
}
.vg-hero__scroll::after {
	content: ""; width: 1px; height: 34px;
	background: linear-gradient(180deg, var(--brand-light), transparent);
	animation: vg-drop 1.8s ease-in-out infinite;
}
@keyframes vg-drop {
	0% { transform: scaleY(0); transform-origin: top; }
	45% { transform: scaleY(1); transform-origin: top; }
	55% { transform: scaleY(1); transform-origin: bottom; }
	100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero interior (páginas internas) */
.vg-hero-int {
	position: relative; background: var(--navy-950); color: #fff;
	padding: calc(var(--s5) + 1rem) 0 var(--s5); overflow: hidden;
}
.vg-hero-int::before {
	content: ""; position: absolute; inset: 0; opacity: .5;
	background:
		radial-gradient(720px 340px at 85% 20%, rgba(53, 150, 196, .35), transparent 65%),
		radial-gradient(520px 300px at 8% 90%, rgba(53, 150, 196, .18), transparent 60%);
}
.vg-hero-int::after {
	content: ""; position: absolute; inset: 0; opacity: .16;
	background-image:
		linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(80% 90% at 60% 40%, #000 30%, transparent 100%);
}
.vg-hero-int .vg-container { position: relative; z-index: 2; }
.vg-hero-int__kicker {
	display: inline-flex; align-items: center; gap: .7rem;
	font-family: var(--font-head); font-size: .8rem; letter-spacing: .22em;
	text-transform: uppercase; color: var(--brand-light); margin-bottom: var(--s2);
}
.vg-hero-int__kicker::before { content: ""; width: 36px; height: 2px; background: var(--brand); }
.vg-hero-int__title { color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); max-width: 20ch; }
.vg-hero-int__text { max-width: 60ch; color: #C9D9E6; font-size: 1.12rem; margin: 0; }

/* =============================================================
   MARQUEE
   ============================================================= */
.vg-marquee {
	background: var(--brand); color: var(--navy-950);
	overflow: hidden; padding: .9rem 0; position: relative; z-index: 3;
	transform: rotate(0.001deg);
}
.vg-marquee--dark { background: var(--navy-900); color: #fff; }
.vg-marquee__track {
	display: flex; gap: 3.2rem; width: max-content;
	animation: vg-marquee 30s linear infinite;
}
.vg-marquee:hover .vg-marquee__track { animation-play-state: paused; }
.vg-marquee__item {
	display: inline-flex; align-items: center; gap: 3.2rem;
	font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
	letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
}
.vg-marquee__item::after { content: "◆"; font-size: .55rem; opacity: .55; }
@keyframes vg-marquee {
	to { transform: translateX(-50%); }
}

/* =============================================================
   SECCIONES / TITULARES
   ============================================================= */
.vg-section { padding: var(--s6) 0; position: relative; }
.vg-section--muted { background: var(--bg); }
.vg-section--dark { background: var(--navy-950); color: #B9CCDD; }
.vg-section--dark h2, .vg-section--dark h3, .vg-section--dark h4 { color: #fff; }
.vg-section--brand {
	background: linear-gradient(135deg, var(--navy-800), var(--navy-950) 70%);
	color: #C9D9E6;
}

.vg-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s3); margin-bottom: var(--s5); flex-wrap: wrap; }
.vg-head__main { max-width: 720px; }
.vg-kicker {
	display: inline-flex; align-items: center; gap: .7rem;
	font-family: var(--font-head); font-size: .8rem; font-weight: 500;
	letter-spacing: .22em; text-transform: uppercase; color: var(--brand-dark);
	margin-bottom: var(--s2);
}
.vg-kicker::before { content: ""; width: 36px; height: 2px; background: var(--brand); }
.vg-section--dark .vg-kicker, .vg-section--brand .vg-kicker { color: var(--brand-light); }
.vg-title { font-size: clamp(1.9rem, 3.8vw, 3rem); margin: 0; }
.vg-title .destacado { color: var(--brand); }
.vg-lead { font-size: 1.16rem; color: var(--text); max-width: 62ch; }
.vg-section--dark .vg-lead { color: #B9CCDD; }

/* =============================================================
   GRIDS / TARJETAS
   ============================================================= */
.vg-grid { display: grid; gap: var(--s3); grid-template-columns: repeat(12, 1fr); }
.vg-col-3 { grid-column: span 3; }
.vg-col-4 { grid-column: span 4; }
.vg-col-6 { grid-column: span 6; }
.vg-col-8 { grid-column: span 8; }
.vg-col-12 { grid-column: span 12; }

/* Tarjeta de solución con imagen + overlay */
.vg-scard {
	position: relative; border-radius: var(--radius-lg); overflow: hidden;
	min-height: 420px; display: flex; align-items: flex-end;
	background: var(--navy-900); isolation: isolate;
}
.vg-scard__img {
	position: absolute; inset: 0; background-size: cover; background-position: center;
	transition: transform .8s var(--ease-out); z-index: -2;
}
.vg-scard:hover .vg-scard__img { transform: scale(1.07); }
.vg-scard::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(8deg, rgba(4, 16, 30, .93) 12%, rgba(4, 16, 30, .34) 55%, rgba(4, 16, 30, .08));
	transition: opacity .4s;
}
.vg-scard::after {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(8deg, rgba(32, 113, 154, .92) 16%, rgba(53, 150, 196, .38) 60%, transparent);
	opacity: 0; transition: opacity .45s;
}
.vg-scard:hover::after { opacity: 1; }
.vg-scard__body { padding: var(--s4); color: #C9D9E6; width: 100%; }
.vg-scard__num {
	font-family: var(--font-head); font-size: .8rem; letter-spacing: .2em;
	color: var(--brand-light);
}
.vg-scard__body h3 { color: #fff; font-size: 1.45rem; margin: .5rem 0 .4rem; }
.vg-scard__body p { margin: 0 0 1rem; font-size: .98rem; }
.vg-scard__list { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.1rem; }
.vg-scard__list li {
	font-size: .8rem; padding: .28rem .7rem; border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .3); color: #fff;
	background: rgba(255, 255, 255, .07);
}
.vg-scard__link {
	display: inline-flex; align-items: center; gap: .5rem;
	color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .92rem;
}
.vg-scard__link svg { width: 17px; height: 17px; transition: transform .3s var(--ease-out); }
.vg-scard:hover .vg-scard__link svg { transform: translateX(5px); }

/* Tarjeta simple sobre fondo claro */
.vg-card {
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius-lg); padding: var(--s4);
	transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
	position: relative; overflow: hidden;
}
.vg-card::before {
	content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, var(--brand), var(--brand-light));
	transform: scaleX(0); transform-origin: 0 50%; transition: transform .45s var(--ease-out);
}
.vg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.vg-card:hover::before { transform: scaleX(1); }
.vg-card__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 58px; height: 58px; border-radius: 16px;
	background: var(--brand-soft); color: var(--brand-dark); margin-bottom: var(--s3);
	transition: background .3s, color .3s, transform .4s var(--ease-out);
}
.vg-card:hover .vg-card__icon { background: var(--brand); color: #fff; transform: rotate(-6deg) scale(1.06); }
.vg-card__icon svg { width: 26px; height: 26px; }
.vg-card h3 { font-size: 1.3rem; }
.vg-card__link {
	display: inline-flex; align-items: center; gap: .5rem; margin-top: .4rem;
	font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--brand-dark);
}
.vg-card__link svg { width: 17px; height: 17px; transition: transform .3s var(--ease-out); }
.vg-card__link:hover svg { transform: translateX(5px); }

/* Bloque editorial imagen + texto */
.vg-editorial { align-items: center; }
.vg-media {
	position: relative; border-radius: var(--radius-lg); overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.vg-media img { width: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.vg-media:hover img { transform: scale(1.05); }
.vg-media__caption {
	position: absolute; left: var(--s2); bottom: var(--s2);
	background: rgba(4, 16, 30, .78); color: #fff;
	-webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
	font-family: var(--font-head); font-size: .8rem; letter-spacing: .08em;
	padding: .5rem .9rem; border-radius: 999px;
}
.vg-media--badge::after {
	content: attr(data-badge);
	position: absolute; top: var(--s2); right: var(--s2);
	background: var(--brand); color: #fff;
	font-family: var(--font-head); font-weight: 600; font-size: .8rem;
	padding: .5rem .9rem; border-radius: 999px;
}

.vg-checklist { display: flex; flex-direction: column; gap: .9rem; margin: var(--s3) 0; }
.vg-checklist li { display: flex; gap: .8rem; align-items: flex-start; }
.vg-checklist svg {
	flex: 0 0 22px; width: 22px; height: 22px; margin-top: .15rem;
	color: var(--brand); background: var(--brand-soft);
	border-radius: 50%; padding: 3px;
}
.vg-section--dark .vg-checklist svg { background: rgba(53, 150, 196, .2); color: var(--brand-light); }
.vg-checklist strong { color: var(--ink); }
.vg-section--dark .vg-checklist strong { color: #fff; }

/* =============================================================
   CICLO VEGEL (diagrama circular)
   ============================================================= */
.vg-ciclo-wrap {
	display: grid; grid-template-columns: minmax(300px, 460px) 1fr;
	gap: var(--s5); align-items: center;
}
.vg-ciclo {
	position: relative; aspect-ratio: 1; max-width: 460px; margin-inline: auto;
	width: 100%;
}
.vg-ciclo__anillo {
	position: absolute; inset: 6%; border-radius: 50%;
	border: 2px dashed rgba(53, 150, 196, .55);
	animation: vg-spin 46s linear infinite;
}
.vg-ciclo__anillo--2 {
	inset: 15%; border: 1px solid var(--line);
	animation: vg-spin 70s linear infinite reverse;
}
@keyframes vg-spin { to { transform: rotate(360deg); } }
.vg-ciclo__centro {
	position: absolute; inset: 30%;
	background: #fff; border-radius: 50%;
	box-shadow: var(--shadow-md), 0 0 0 10px rgba(53, 150, 196, .07);
	display: flex; align-items: center; justify-content: center; padding: 10%;
}
.vg-ciclo__centro img { max-width: 100%; }
.vg-ciclo__nodo {
	position: absolute; width: 64px; height: 64px; border-radius: 50%;
	border: 2px solid var(--line); background: #fff; color: var(--ink);
	font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
	display: flex; align-items: center; justify-content: center;
	transform: translate(-50%, -50%);
	transition: background .3s, color .3s, border-color .3s, box-shadow .3s, scale .3s var(--ease-out);
	z-index: 2;
}
/* 5 nodos distribuidos en círculo (empezando arriba, sentido horario) */
.vg-ciclo__nodo:nth-of-type(1) { left: 50%; top: 6%; }
.vg-ciclo__nodo:nth-of-type(2) { left: 91.8%; top: 36.4%; }
.vg-ciclo__nodo:nth-of-type(3) { left: 75.9%; top: 85.6%; }
.vg-ciclo__nodo:nth-of-type(4) { left: 24.1%; top: 85.6%; }
.vg-ciclo__nodo:nth-of-type(5) { left: 8.2%; top: 36.4%; }
.vg-ciclo__nodo:hover, .vg-ciclo__nodo.activo {
	background: var(--brand); border-color: var(--brand); color: #fff;
	box-shadow: 0 0 0 9px rgba(53, 150, 196, .18); scale: 1.1;
}
.vg-ciclo-etapas { display: flex; flex-direction: column; }
.vg-etapa {
	position: relative; padding: 1.15rem 1.3rem 1.15rem 1.6rem;
	border-left: 3px solid var(--line); cursor: default;
	transition: border-color .3s, background .3s;
	border-radius: 0 var(--radius) var(--radius) 0;
}
.vg-etapa h4 { margin: 0 0 .3rem; font-size: 1.12rem; display: flex; gap: .7rem; align-items: baseline; }
.vg-etapa h4 em {
	font-style: normal; font-family: var(--font-head); font-size: .8rem;
	color: var(--brand); letter-spacing: .1em;
}
.vg-etapa p { margin: 0; font-size: .98rem; }
.vg-etapa.activo { border-color: var(--brand); background: var(--brand-soft); }
.vg-etapa.activo h4 { color: var(--brand-dark); }

/* =============================================================
   STATS / CONTADORES
   ============================================================= */
.vg-stats {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3);
}
.vg-stat {
	position: relative; padding: var(--s3) var(--s3) var(--s3) calc(var(--s3) + .4rem);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, .045);
	border: 1px solid rgba(255, 255, 255, .1);
	overflow: hidden;
}
.vg-stat::before {
	content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
	background: linear-gradient(180deg, var(--brand), var(--brand-light));
}
.vg-stat strong {
	display: block; font-family: var(--font-head); font-weight: 700;
	font-size: clamp(2.2rem, 4vw, 3.1rem); color: #fff; line-height: 1.05;
}
.vg-stat span { font-size: .95rem; color: #9FB6C9; }

/* Pilar de experiencia (fondo oscuro) */
.vg-exp {
	padding: var(--s3); border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .1);
	transition: transform .35s var(--ease-out), border-color .3s, background .3s;
}
.vg-exp:hover { transform: translateY(-5px); border-color: rgba(53, 150, 196, .5); background: rgba(53, 150, 196, .08); }
.vg-exp__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 54px; height: 54px; border-radius: 14px;
	background: rgba(53, 150, 196, .18); color: var(--brand-light);
	margin-bottom: var(--s2);
}
.vg-exp__icon svg { width: 25px; height: 25px; }
.vg-exp h3 { font-size: 1.18rem; }
.vg-exp p { margin: 0; font-size: .97rem; }

/* Galería */
.vg-galeria { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.vg-galeria figure { margin: 0; position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.vg-galeria img { width: 100%; height: 260px; object-fit: cover; transition: transform .7s var(--ease-out); }
.vg-galeria figure:hover img { transform: scale(1.08); }
.vg-galeria figcaption {
	position: absolute; inset: auto 0 0; padding: 2.2rem 1.2rem .9rem;
	background: linear-gradient(0deg, rgba(4, 16, 30, .85), transparent);
	color: #fff; font-family: var(--font-head); font-size: .88rem;
}

/* =============================================================
   PASOS NUMERADOS / TIMELINE
   ============================================================= */
.vg-pasos { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3); counter-reset: paso; }
.vg-paso {
	position: relative; padding: var(--s3);
	background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
	counter-increment: paso;
	transition: transform .35s var(--ease-out), box-shadow .35s;
}
.vg-paso:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.vg-paso::before {
	content: counter(paso, decimal-leading-zero);
	font-family: var(--font-head); font-weight: 800; font-size: 2.6rem;
	color: transparent; -webkit-text-stroke: 1.5px var(--brand);
	display: block; line-height: 1; margin-bottom: .8rem;
}
.vg-paso h4 { font-size: 1.08rem; margin-bottom: .3rem; }
.vg-paso p { font-size: .95rem; margin: 0; }

/* =============================================================
   CTA FINAL
   ============================================================= */
.vg-cta {
	position: relative; overflow: hidden;
	background: linear-gradient(120deg, var(--navy-900) 30%, var(--navy-700));
	color: #C9D9E6; padding: var(--s6) 0;
}
.vg-cta::before {
	content: ""; position: absolute; inset: 0; opacity: .5;
	background: radial-gradient(760px 400px at 88% 10%, rgba(53, 150, 196, .4), transparent 65%);
}
.vg-cta::after {
	content: ""; position: absolute; inset: 0; opacity: .14;
	background-image:
		linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
	background-size: 52px 52px;
	mask-image: radial-gradient(75% 90% at 70% 30%, #000 20%, transparent 100%);
}
.vg-cta__inner {
	position: relative; z-index: 2;
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--s4); flex-wrap: wrap;
}
.vg-cta h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); max-width: 18ch; margin-bottom: .5rem; }
.vg-cta p { max-width: 55ch; margin: 0; font-size: 1.1rem; }

/* =============================================================
   FORMULARIOS
   ============================================================= */
.vg-form { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2) var(--s3); }
.vg-form .vg-field--full { grid-column: 1 / -1; }
.vg-field { display: flex; flex-direction: column; gap: .4rem; }
.vg-field label { font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: var(--ink); }
.vg-field input, .vg-field select, .vg-field textarea {
	font: inherit; color: var(--ink);
	padding: .85rem 1.05rem; border: 1.5px solid var(--line); border-radius: 12px;
	background: var(--surface); transition: border-color .25s, box-shadow .25s;
	width: 100%;
}
.vg-field textarea { min-height: 140px; resize: vertical; }
.vg-field input:focus, .vg-field select:focus, .vg-field textarea:focus {
	outline: none; border-color: var(--brand);
	box-shadow: 0 0 0 4px rgba(53, 150, 196, .15);
}

/* Campo con error de validación */
.vg-field [aria-invalid="true"] { border-color: var(--error); background: var(--error-soft); }
.vg-field [aria-invalid="true"]:focus { box-shadow: 0 0 0 4px rgba(199, 58, 58, .14); }
.vg-field__error { font-size: .85rem; line-height: 1.4; color: var(--error); }

/* Campo trampa antispam: fuera de la vista sin usar display:none, que algunos bots detectan */
.vg-hp {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* Aviso de resultado del envío */
.vg-alert {
	display: flex; align-items: flex-start; gap: .85rem;
	padding: 1.05rem 1.25rem; margin-bottom: 1.75rem;
	border: 1.5px solid; border-radius: var(--radius);
	font-size: .97rem; line-height: 1.6;
}
.vg-alert svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: .15rem; }
.vg-alert strong { font-family: var(--font-head); font-weight: 600; }
.vg-alert--ok { color: var(--ok-dark); border-color: rgba(30, 158, 106, .35); background: var(--ok-soft); }
.vg-alert--error { color: var(--error-dark); border-color: rgba(199, 58, 58, .3); background: var(--error-soft); }

/* Newsletter del footer */
.vg-news { display: flex; gap: .6rem; flex-wrap: wrap; }
.vg-news input {
	flex: 1 1 240px; font: inherit; color: #fff;
	background: rgba(255, 255, 255, .07); border: 1.5px solid rgba(255, 255, 255, .18);
	border-radius: 999px; padding: .85rem 1.3rem;
	transition: border-color .25s, background .25s;
}
.vg-news input::placeholder { color: #8095A8; }
.vg-news input:focus { outline: none; border-color: var(--brand-light); background: rgba(255, 255, 255, .1); }

/* =============================================================
   FOOTER
   ============================================================= */
.vg-footer {
	position: relative; background: var(--navy-950); color: #9FB6C9;
	padding-top: var(--s5); overflow: hidden;
}
.vg-footer::before {
	content: ""; position: absolute; inset: 0; opacity: .12; pointer-events: none;
	background-image:
		linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(90% 70% at 50% 0%, #000 10%, transparent 100%);
}
.vg-footer .vg-container { position: relative; }
.vg-footer a { color: #9FB6C9; transition: color .2s, padding-left .25s var(--ease-out); }
.vg-footer a:hover { color: #fff; }

.vg-footer__top {
	display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--s5);
	padding-bottom: var(--s4); border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.vg-footer__logo { height: 54px; width: auto; margin-bottom: var(--s2); filter: brightness(0) invert(1); }
.vg-footer__brand p { max-width: 42ch; font-size: 1.02rem; }
.vg-footer__slogan {
	font-family: var(--font-head); font-weight: 600; color: var(--brand-light);
	letter-spacing: .04em; margin-bottom: .4rem;
}
.vg-footer__news h3 { color: #fff; font-size: 1.3rem; }
.vg-footer__news p { font-size: .95rem; }

.vg-footer__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3);
	padding: var(--s4) 0;
}
.vg-footer__col h4 {
	color: #fff; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase;
	margin-bottom: var(--s2);
}
.vg-footer__col ul { display: flex; flex-direction: column; gap: .55rem; font-size: .97rem; }
.vg-footer__col ul a:hover { padding-left: 5px; }
.vg-footer__contact li { display: flex; gap: .6rem; align-items: center; }
.vg-footer__contact svg { width: 16px; height: 16px; color: var(--brand-light); flex: 0 0 16px; }
.vg-footer__handle { font-family: var(--font-head); color: var(--brand-light); margin-bottom: .8rem; }
.vg-footer__social { display: flex; gap: .7rem; }
.vg-footer__social a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .16);
	transition: background .25s, border-color .25s, transform .25s var(--ease-out);
}
.vg-footer__social a:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-3px); padding-left: 0; }
.vg-footer__social svg { width: 18px; height: 18px; }

.vg-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); position: relative; }
.vg-footer__bottom-inner {
	display: flex; justify-content: space-between; gap: var(--s2);
	padding: 1.2rem 0; font-size: .88rem; flex-wrap: wrap;
}
.vg-footer__bottom p { margin: 0; }

/* Botón volver arriba */
.vg-top {
	position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 200;
	width: 52px; height: 52px; border-radius: 50%; border: 0;
	background: var(--navy-900); color: #fff;
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow-md);
	opacity: 0; visibility: hidden; transform: translateY(14px);
	transition: opacity .3s, transform .3s var(--ease-out), visibility .3s, background .25s;
}
.vg-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.vg-top:hover { background: var(--brand); }
.vg-top svg { width: 20px; height: 20px; }

/* =============================================================
   PÁGINAS INTERNAS · bloques específicos
   ============================================================= */

/* Valores (Nosotros) */
.vg-valores { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.vg-valor {
	display: flex; align-items: center; gap: .9rem;
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius); padding: 1.1rem 1.3rem;
	font-family: var(--font-head); font-weight: 600; color: var(--ink);
	transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.vg-valor:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--brand); }
.vg-valor svg { width: 22px; height: 22px; color: var(--brand); flex: 0 0 22px; }

/* Misión / visión */
.vg-mv { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.vg-mv__item {
	position: relative; padding: var(--s4); border-radius: var(--radius-lg);
	background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
	color: #C9D9E6; overflow: hidden;
}
.vg-mv__item::after {
	content: ""; position: absolute; right: -60px; top: -60px;
	width: 200px; height: 200px; border-radius: 50%;
	background: radial-gradient(circle, rgba(53, 150, 196, .35), transparent 70%);
}
.vg-mv__item h3 { color: #fff; display: flex; align-items: center; gap: .7rem; }
.vg-mv__item h3 svg { width: 24px; height: 24px; color: var(--brand-light); }
.vg-mv__item p { margin: 0; position: relative; z-index: 1; }

/* Listado de líneas de servicio (Soluciones) */
.vg-linea {
	display: grid; grid-template-columns: 90px 1fr auto; gap: var(--s3);
	align-items: center; padding: var(--s3) 0;
	border-bottom: 1px solid var(--line);
	transition: background .3s, padding-left .3s var(--ease-out);
}
.vg-linea:hover { background: linear-gradient(90deg, var(--brand-soft), transparent 65%); padding-left: .8rem; }
.vg-linea__num {
	font-family: var(--font-head); font-weight: 800; font-size: 2rem;
	color: transparent; -webkit-text-stroke: 1.4px var(--brand);
}
.vg-linea h3 { margin: 0 0 .25rem; font-size: 1.35rem; }
.vg-linea__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .6rem; }
.vg-linea__tags li {
	font-size: .82rem; padding: .3rem .75rem; border-radius: 999px;
	background: var(--brand-soft); color: var(--brand-dark);
	font-family: var(--font-head); font-weight: 500;
	transition: background .25s, color .25s;
}
.vg-linea:hover .vg-linea__tags li { background: #fff; }
.vg-linea__icon {
	width: 64px; height: 64px; border-radius: 18px;
	display: flex; align-items: center; justify-content: center;
	background: var(--navy-900); color: var(--brand-light);
	transition: background .3s, transform .4s var(--ease-out);
}
.vg-linea:hover .vg-linea__icon { background: var(--brand); color: #fff; transform: rotate(-6deg) scale(1.06); }
.vg-linea__icon svg { width: 28px; height: 28px; }

/* Centro de Conocimiento */
.vg-kn { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.vg-kn__card {
	position: relative; border-radius: var(--radius-lg); overflow: hidden;
	padding: var(--s4); min-height: 320px;
	display: flex; flex-direction: column; justify-content: flex-end;
	background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
	color: #C9D9E6;
	transition: transform .35s var(--ease-out), box-shadow .35s;
}
.vg-kn__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vg-kn__card::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(400px 260px at 85% 0%, rgba(53, 150, 196, .4), transparent 70%);
}
.vg-kn__icon {
	position: absolute; top: var(--s3); left: var(--s3);
	width: 60px; height: 60px; border-radius: 16px;
	background: rgba(255, 255, 255, .09); color: var(--brand-light);
	display: flex; align-items: center; justify-content: center;
	border: 1px solid rgba(255, 255, 255, .14);
}
.vg-kn__icon svg { width: 27px; height: 27px; }
.vg-kn__card h3 { color: #fff; font-size: 1.5rem; position: relative; }
.vg-kn__card p { position: relative; margin-bottom: 1rem; }
.vg-kn__tags { display: flex; flex-wrap: wrap; gap: .4rem; position: relative; }
.vg-kn__tags li {
	font-size: .8rem; padding: .28rem .7rem; border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .25); color: #fff;
}

/* Market Industrial */
.vg-prod { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 380px; display: flex; align-items: flex-end; }
.vg-prod__img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .8s var(--ease-out); }
.vg-prod:hover .vg-prod__img { transform: scale(1.06); }
.vg-prod::before {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(10deg, rgba(4, 16, 30, .9) 15%, rgba(4, 16, 30, .2) 60%, transparent);
}
.vg-prod__body { position: relative; padding: var(--s4); color: #C9D9E6; }
.vg-prod__body h3 { color: #fff; font-size: 1.5rem; }
.vg-prod__body p { margin-bottom: 1rem; }

/* Contacto */
.vg-contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: var(--s4); align-items: start; }
.vg-contact-card {
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius-lg); padding: var(--s4); box-shadow: var(--shadow-sm);
}
.vg-contact-side { display: flex; flex-direction: column; gap: var(--s2); }
.vg-contact-item {
	display: flex; gap: 1rem; align-items: flex-start;
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius); padding: 1.2rem 1.3rem;
	transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.vg-contact-item:hover { transform: translateX(6px); border-color: var(--brand); box-shadow: var(--shadow-sm); }
.vg-contact-item svg { width: 22px; height: 22px; color: var(--brand); flex: 0 0 22px; margin-top: .2rem; }
.vg-contact-item strong { display: block; color: var(--ink); font-family: var(--font-head); font-size: .95rem; }
.vg-contact-item span, .vg-contact-item a { font-size: .95rem; }

/* Prose para páginas genéricas */
.vg-prose { max-width: 780px; }
.vg-prose h2 { margin-top: 1.6em; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1080px) {
	.vg-nav { display: none; }
	.vg-navbar__cta { display: none; }
	.vg-burger { display: flex; }
	.vg-ciclo-wrap { grid-template-columns: 1fr; }
	.vg-stats { grid-template-columns: repeat(2, 1fr); }
	.vg-pasos { grid-template-columns: repeat(2, 1fr); }
	.vg-footer__top { grid-template-columns: 1fr; gap: var(--s4); }
	.vg-footer__grid { grid-template-columns: repeat(2, 1fr); }
	.vg-valores { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
	:root { --header-h: 72px; --s6: 4.5rem; --s5: 3rem; }
	.vg-topbar__item--loc, .vg-topbar__tag { display: none; }
	.vg-col-3, .vg-col-4, .vg-col-6, .vg-col-8 { grid-column: span 12; }
	.vg-galeria { grid-template-columns: 1fr; }
	.vg-galeria img { height: 220px; }
	.vg-kn, .vg-mv, .vg-contact-grid { grid-template-columns: 1fr; }
	.vg-form { grid-template-columns: 1fr; }
	.vg-linea { grid-template-columns: 56px 1fr; }
	.vg-linea__icon { display: none; }
	.vg-linea__num { font-size: 1.5rem; }
	.vg-hero__stats { gap: var(--s3); }
	.vg-hero__scroll { display: none; }
	.vg-cta__inner { flex-direction: column; align-items: flex-start; }
	.vg-scard { min-height: 340px; }
}

@media (max-width: 560px) {
	.vg-topbar__data { gap: .9rem; }
	.vg-topbar__item span { font-size: .78rem; }
	.vg-stats, .vg-pasos, .vg-valores, .vg-footer__grid { grid-template-columns: 1fr; }
	.vg-hero__actions .vg-btn { width: 100%; justify-content: center; }
	.vg-ciclo__nodo { width: 52px; height: 52px; }
	.vg-btn { white-space: nowrap; }
	.vg-btn__full { display: none; }
	.vg-btn__short { display: inline; }
}

/* =============================================================
   MOVIMIENTO REDUCIDO
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
	.vg-marquee__track { animation: none; }
	.vg-ciclo__anillo, .vg-ciclo__anillo--2 { animation: none; }
}
