/* ═══════════════════════════════════════════════════════════════════════
   VITARIA — Sistema de diseño
   Paleta: crema cálido / azul marino profundo / dorado.
   Tipografía: Cormorant Garamond (títulos) + Nunito Sans (texto).
   ═══════════════════════════════════════════════════════════════════════ */

:root {
	--v-cream: #f6f1e8;
	--v-cream-2: #fbf8f2;
	--v-cream-3: #efe7d8;
	--v-navy: #0d1f3d;
	--v-navy-2: #14304f;
	--v-navy-soft: #1b3a5c;
	--v-gold: #c7a15a;
	--v-gold-dark: #a98443;
	--v-gold-soft: #e4d3b3;
	--v-ink: #23344a;
	--v-muted: #5c6b7e;
	--v-line: rgba(13, 31, 61, 0.1);
	--v-serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
	--v-sans: "Nunito Sans", "Segoe UI", -apple-system, sans-serif;
	--v-radius: 14px;
	--v-radius-lg: 22px;
	--v-shadow: 0 18px 45px rgba(13, 31, 61, 0.1);
	--v-shadow-sm: 0 8px 24px rgba(13, 31, 61, 0.08);
	--v-max: 1180px;
}

/* ── Reset básico ─────────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body.vt-body {
	margin: 0;
	font-family: var(--v-sans);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--v-ink);
	background: var(--v-cream);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--v-navy);
}

h1,
h2,
h3,
h4 {
	font-family: var(--v-serif);
	color: var(--v-navy);
	line-height: 1.15;
	margin: 0 0 0.5em;
	font-weight: 600;
}

p {
	margin: 0 0 1em;
}

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

.vt-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--v-navy);
	color: #fff;
	padding: 0.6rem 1rem;
	z-index: 200;
}

.vt-skip:focus {
	left: 0;
}

/* ── Layout ───────────────────────────────────────────────────────────── */
.vt-container {
	max-width: var(--v-max);
	margin: 0 auto;
	padding: 0 clamp(1.1rem, 4vw, 2rem);
}

.vt-container--narrow {
	max-width: 780px;
}

.vt-section {
	padding: clamp(3.2rem, 7vw, 5.5rem) 0;
}

.vt-section--alt {
	background: var(--v-cream-2);
	border-top: 1px solid var(--v-line);
	border-bottom: 1px solid var(--v-line);
}

.vt-center {
	text-align: center;
	margin-top: 2.2rem;
}

/* ── Iconos ───────────────────────────────────────────────────────────── */
.vt-ico {
	width: 30px;
	height: 30px;
	color: var(--v-gold);
	flex: none;
}

.vt-ico--sm {
	width: 18px;
	height: 18px;
}

.vt-ico--lg {
	width: 42px;
	height: 42px;
}

.vt-ico--xl {
	width: 64px;
	height: 64px;
}

/* ── Botones ──────────────────────────────────────────────────────────── */
.vt-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--v-sans);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 10px;
	padding: 0.85rem 1.6rem;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.vt-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--v-shadow-sm);
}

.vt-btn--lg {
	padding: 1.05rem 2rem;
	font-size: 0.88rem;
}

.vt-btn--navy {
	background: var(--v-navy);
	color: #fff;
}

.vt-btn--navy:hover {
	background: var(--v-navy-2);
	color: #fff;
}

.vt-btn--navy .vt-ico {
	color: var(--v-gold);
}

.vt-btn--gold {
	background: linear-gradient(135deg, var(--v-gold), var(--v-gold-dark));
	color: #fff;
}

.vt-btn--gold:hover {
	color: #fff;
	filter: brightness(1.06);
}

.vt-btn--outline {
	border-color: var(--v-gold);
	color: var(--v-navy);
	background: transparent;
}

.vt-btn--outline:hover {
	background: rgba(199, 161, 90, 0.12);
}

.vt-btn__arrow {
	font-size: 1.1em;
	line-height: 1;
}

.vt-link {
	color: var(--v-gold-dark);
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.15s ease;
}

.vt-link:hover {
	border-bottom-color: var(--v-gold-dark);
}

/* ── Header ───────────────────────────────────────────────────────────── */
.vt-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(246, 241, 232, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--v-line);
	transition: box-shadow 0.2s ease;
}

.vt-header.is-scrolled {
	box-shadow: 0 6px 24px rgba(13, 31, 61, 0.08);
}

.vt-header__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 82px;
}

.vt-logo {
	height: 52px;
	width: auto;
}

.vt-nav {
	display: flex;
	align-items: center;
	gap: 1.6rem;
}

.vt-nav__list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: clamp(0.9rem, 2vw, 1.6rem);
}

.vt-nav__link {
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-decoration: none;
	color: var(--v-ink);
	padding: 0.4rem 0.1rem;
	border-bottom: 2px solid transparent;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.vt-nav__link:hover,
.vt-nav__link.is-current {
	color: var(--v-navy);
	border-bottom-color: var(--v-gold);
}

.vt-nav__actions {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.vt-lang {
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
	color: var(--v-navy);
	border: 1.5px solid var(--v-gold);
	border-radius: 8px;
	padding: 0.45rem 0.7rem;
	transition: background 0.15s ease;
}

.vt-lang:hover {
	background: rgba(199, 161, 90, 0.14);
}

.vt-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: 0.5rem;
	cursor: pointer;
}

.vt-burger span {
	width: 26px;
	height: 2.5px;
	background: var(--v-navy);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.vt-burger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}

.vt-burger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.vt-burger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Héroes ───────────────────────────────────────────────────────────── */
.vt-hero {
	padding: clamp(2.8rem, 6vw, 5rem) 0;
	background:
		radial-gradient(1100px 500px at 85% -10%, rgba(199, 161, 90, 0.14), transparent 60%),
		var(--v-cream);
	overflow: hidden;
}

.vt-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.vt-hero__title {
	font-size: clamp(2.3rem, 5.2vw, 3.7rem);
	font-weight: 600;
}

.vt-hero__title em {
	font-style: normal;
	color: var(--v-gold-dark);
}

.vt-hero__rule {
	width: 64px;
	height: 3px;
	background: var(--v-gold);
	border-radius: 2px;
	margin: 1.1rem 0 1.3rem;
}

.vt-hero__rule.is-center {
	margin-left: auto;
	margin-right: auto;
}

.vt-hero__lead {
	font-size: 1.15rem;
	color: var(--v-muted);
	max-width: 34rem;
}

.vt-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin: 1.8rem 0 1.4rem;
}

.vt-hero__proof {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--v-muted);
}

.vt-hero__proof li {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.vt-hero__media {
	position: relative;
}

.vt-hero__media img {
	border-radius: var(--v-radius-lg);
	box-shadow: var(--v-shadow);
}

.vt-hero__chip {
	position: absolute;
	left: -14px;
	bottom: 22px;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	background: #fff;
	border: 1px solid var(--v-line);
	border-radius: 12px;
	box-shadow: var(--v-shadow-sm);
	padding: 0.75rem 1rem;
	font-size: 0.82rem;
	color: var(--v-muted);
	animation: vt-float 5s ease-in-out infinite;
}

.vt-hero__chip strong {
	display: block;
	color: var(--v-navy);
	font-size: 0.88rem;
}

@keyframes vt-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

.vt-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(199, 161, 90, 0.13);
	border: 1px solid var(--v-gold-soft);
	color: var(--v-gold-dark);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 999px;
	padding: 0.45rem 1rem;
	margin: 0 0 1.4rem;
}

.vt-hero--center {
	text-align: center;
}

.vt-hero--center .vt-hero__lead {
	margin: 0 auto;
}

.vt-hero--slim {
	padding: clamp(2.2rem, 4.5vw, 3.4rem) 0;
}

.vt-hero--inner .vt-hero__media img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* ── Encabezados de sección ───────────────────────────────────────────── */
.vt-section-head {
	max-width: 46rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.vt-section-head.is-center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.vt-kicker {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--v-gold-dark);
	margin: 0 0 0.7rem;
}

.vt-title {
	font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

.vt-sub {
	color: var(--v-muted);
	font-size: 1.06rem;
	margin: 0.4rem 0 0;
}

.vt-prose {
	color: var(--v-muted);
	font-size: 1.05rem;
}

.vt-prose--gold {
	color: var(--v-gold-dark);
	font-weight: 600;
}

/* ── Barra de confianza ───────────────────────────────────────────────── */
.vt-trustbar {
	background: var(--v-cream-2);
	border-block: 1px solid var(--v-line);
	padding: 1.9rem 0;
}

.vt-trustbar__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.6rem;
}

.vt-trustbar__item {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: center;
}

.vt-trustbar__item h2 {
	font-family: var(--v-serif);
	font-size: 1.22rem;
	margin: 0;
}

.vt-trustbar__item p {
	margin: 0.15rem 0 0;
	font-size: 0.92rem;
	color: var(--v-muted);
}

.vt-trustbar__item + .vt-trustbar__item {
	border-left: 1px solid var(--v-line);
	padding-left: 1.6rem;
}

/* ── Splits (imagen + texto) ──────────────────────────────────────────── */
.vt-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.vt-split__media img {
	border-radius: var(--v-radius-lg);
	box-shadow: var(--v-shadow);
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
}

.vt-checklist {
	list-style: none;
	margin: 1.4rem 0;
	padding: 0;
	display: grid;
	gap: 0.9rem;
}

.vt-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	font-weight: 600;
}

.vt-checklist .vt-ico {
	width: 24px;
	height: 24px;
	margin-top: 2px;
}

/* ── Pasos (línea horizontal) ─────────────────────────────────────────── */
.vt-steps__track {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1.2rem;
	position: relative;
}

.vt-steps__track::before {
	content: "";
	position: absolute;
	top: 34px;
	left: 8%;
	right: 8%;
	border-top: 2px dotted var(--v-gold);
	opacity: 0.55;
}

.vt-steps__item {
	text-align: center;
	position: relative;
}

.vt-steps__icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: var(--v-navy);
	box-shadow: var(--v-shadow-sm);
}

.vt-steps__icon .vt-ico {
	color: var(--v-cream);
	width: 30px;
	height: 30px;
}

.vt-steps__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--v-gold);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 800;
	margin: -14px auto 0.4rem;
	position: relative;
	z-index: 2;
	transform: translateY(-8px);
}

.vt-steps__item h3 {
	font-size: 1.12rem;
	margin: 0;
}

.vt-steps__item p {
	font-size: 0.88rem;
	color: var(--v-muted);
	margin: 0.35rem 0 0;
}

/* ── Detalle del proceso ──────────────────────────────────────────────── */
.vt-process__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(260px, 1fr);
	gap: clamp(2rem, 4vw, 3.2rem);
	align-items: start;
}

.vt-process__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.8rem;
}

.vt-process__row {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 1.5rem;
	align-items: center;
}

.vt-process__media img {
	border-radius: var(--v-radius);
	box-shadow: var(--v-shadow-sm);
	aspect-ratio: 16 / 10;
	object-fit: cover;
	width: 100%;
}

.vt-process__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--v-gold);
	color: #fff;
	font-weight: 800;
	font-size: 0.95rem;
	margin-bottom: 0.5rem;
}

.vt-process__copy h3 {
	font-size: 1.45rem;
	margin-bottom: 0.3rem;
}

.vt-process__copy p {
	color: var(--v-muted);
	margin: 0;
}

.vt-boxcard {
	position: sticky;
	top: 110px;
	background: var(--v-cream-2);
	border: 1px solid var(--v-gold-soft);
	border-radius: var(--v-radius-lg);
	box-shadow: var(--v-shadow-sm);
	padding: 1.8rem;
}

.vt-boxcard h2 {
	font-size: 1.4rem;
	text-align: center;
}

.vt-boxcard img {
	border-radius: var(--v-radius);
	margin: 0.8rem 0 1.2rem;
}

.vt-boxcard .vt-checklist li {
	font-size: 0.95rem;
}

/* ── Tarjetas genéricas ───────────────────────────────────────────────── */
.vt-cards4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.4rem;
}

.vt-cards6 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
}

.vt-card,
.vt-minicard {
	background: #fff;
	border: 1px solid var(--v-line);
	border-radius: var(--v-radius);
	padding: 1.7rem 1.5rem;
	box-shadow: var(--v-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vt-card:hover,
.vt-minicard:hover {
	transform: translateY(-5px);
	box-shadow: var(--v-shadow);
}

.vt-card__icon,
.vt-minicard__icon {
	display: inline-flex;
	margin-bottom: 0.9rem;
}

.vt-card h3,
.vt-minicard h3 {
	font-size: 1.25rem;
	margin-bottom: 0.4rem;
}

.vt-card p,
.vt-minicard p {
	font-size: 0.95rem;
	color: var(--v-muted);
	margin: 0;
}

/* ── Cifras ───────────────────────────────────────────────────────────── */
.vt-stats {
	background: linear-gradient(120deg, var(--v-navy), var(--v-navy-soft));
	padding: clamp(2.6rem, 5vw, 3.8rem) 0;
}

.vt-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.8rem;
	text-align: center;
}

.vt-stats__num {
	display: block;
	font-family: var(--v-serif);
	font-size: clamp(2.4rem, 4.5vw, 3.4rem);
	font-weight: 700;
	color: var(--v-gold);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.vt-stats__label {
	color: rgba(246, 241, 232, 0.85);
	font-size: 0.95rem;
}

/* ── Planes ───────────────────────────────────────────────────────────── */
.vt-plans {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.4rem;
	align-items: stretch;
}

.vt-plan {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--v-line);
	border-radius: var(--v-radius-lg);
	padding: 2rem 1.6rem 1.8rem;
	text-align: center;
	box-shadow: var(--v-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vt-plan:hover {
	transform: translateY(-6px);
	box-shadow: var(--v-shadow);
}

.vt-plan.is-featured {
	border: 2px solid var(--v-gold);
	box-shadow: var(--v-shadow);
}

.vt-plan__flag {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--v-gold), var(--v-gold-dark));
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border-radius: 999px;
	padding: 0.35rem 1.1rem;
	margin: 0;
	white-space: nowrap;
}

.vt-plan__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: var(--v-navy);
	margin: 0 auto 1rem;
}

.vt-plan__icon .vt-ico {
	color: var(--v-gold);
}

.vt-plan__name {
	font-family: var(--v-sans);
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--v-navy);
	margin-bottom: 0.4rem;
}

.vt-plan__price {
	font-family: var(--v-serif);
	font-size: 2.3rem;
	font-weight: 700;
	color: var(--v-navy);
	margin: 0;
	line-height: 1.1;
}

.vt-plan__price small {
	font-family: var(--v-sans);
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--v-muted);
}

.vt-plan__once {
	font-size: 0.85rem;
	color: var(--v-muted);
	margin: 0.2rem 0 1.2rem;
}

.vt-plan__features {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 1.2rem 0 0;
	border-top: 1px solid var(--v-line);
	display: grid;
	gap: 0.6rem;
	text-align: left;
	font-size: 0.92rem;
	flex: 1;
}

.vt-plan__features li {
	padding-left: 1.2rem;
	position: relative;
}

.vt-plan__features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--v-gold);
}

.vt-plans-home__note,
.vt-plans-page__note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	color: var(--v-muted);
	font-size: 0.98rem;
}

/* ── Tabla comparativa ────────────────────────────────────────────────── */
.vt-compare__scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.vt-compare__table {
	width: 100%;
	min-width: 760px;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	border-radius: var(--v-radius);
	overflow: hidden;
	box-shadow: var(--v-shadow-sm);
}

.vt-compare__table thead th {
	background: var(--v-navy);
	color: #fff;
	font-family: var(--v-sans);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 1rem 1.2rem;
	text-align: center;
}

.vt-compare__table thead th.is-featured {
	background: linear-gradient(135deg, var(--v-gold), var(--v-gold-dark));
}

.vt-compare__table tbody th {
	text-align: left;
	font-family: var(--v-sans);
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--v-navy);
	padding: 0.95rem 1.2rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	border-top: 1px solid var(--v-line);
}

.vt-compare__table tbody td {
	text-align: center;
	padding: 0.95rem 1.2rem;
	font-size: 0.95rem;
	color: var(--v-muted);
	border-top: 1px solid var(--v-line);
}

.vt-compare__table tbody td.is-featured {
	background: rgba(199, 161, 90, 0.1);
	color: var(--v-navy);
	font-weight: 700;
}

/* ── Banda de garantías ───────────────────────────────────────────────── */
.vt-guarantee {
	background: linear-gradient(120deg, var(--v-navy), var(--v-navy-soft));
	padding: clamp(2.4rem, 5vw, 3.6rem) 0;
}

.vt-guarantee__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.8rem;
}

.vt-guarantee__item h2 {
	color: #fff;
	font-family: var(--v-sans);
	font-size: 1.02rem;
	font-weight: 800;
	margin: 0.8rem 0 0.3rem;
}

.vt-guarantee__item p {
	color: rgba(246, 241, 232, 0.8);
	font-size: 0.9rem;
	margin: 0;
}

/* ── Dúo de imágenes ──────────────────────────────────────────────────── */
.vt-duo {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.vt-duo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 16 / 10;
}

/* ── Testimonios ──────────────────────────────────────────────────────── */
.vt-slider {
	position: relative;
	max-width: 860px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--v-line);
	border-radius: var(--v-radius-lg);
	box-shadow: var(--v-shadow-sm);
	padding: clamp(1.8rem, 4vw, 3rem) clamp(3rem, 6vw, 4.5rem);
}

.vt-slider__viewport {
	position: relative;
	min-height: 190px;
}

.vt-slide {
	display: none;
	margin: 0;
	text-align: center;
	animation: vt-fade 0.45s ease;
}

.vt-slide.is-active {
	display: block;
}

@keyframes vt-fade {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.vt-slide__avatar {
	width: 74px;
	height: 74px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 1.1rem;
	border: 3px solid var(--v-gold-soft);
}

.vt-slide blockquote {
	margin: 0 0 0.9rem;
	font-family: var(--v-serif);
	font-size: clamp(1.2rem, 2.4vw, 1.5rem);
	font-style: italic;
	color: var(--v-navy);
	line-height: 1.45;
}

.vt-slide figcaption {
	color: var(--v-muted);
	font-size: 0.95rem;
	font-weight: 700;
}

.vt-slide figcaption span {
	font-weight: 400;
}

.vt-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: 0;
	font-size: 2.6rem;
	line-height: 1;
	color: var(--v-gold);
	cursor: pointer;
	padding: 0.4rem 0.8rem;
	transition: color 0.15s ease;
}

.vt-slider__arrow:hover {
	color: var(--v-gold-dark);
}

.vt-slider__arrow--prev {
	left: 6px;
}

.vt-slider__arrow--next {
	right: 6px;
}

.vt-slider__dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.4rem;
}

.vt-slider__dots button {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: 0;
	background: var(--v-gold-soft);
	cursor: pointer;
	padding: 0;
	transition: background 0.15s ease, transform 0.15s ease;
}

.vt-slider__dots button.is-active {
	background: var(--v-gold);
	transform: scale(1.25);
}

/* ── Acordeón FAQ ─────────────────────────────────────────────────────── */
.vt-accordion {
	display: grid;
	gap: 0.9rem;
}

.vt-accordion__item {
	background: #fff;
	border: 1px solid var(--v-line);
	border-radius: var(--v-radius);
	box-shadow: var(--v-shadow-sm);
	padding: 0;
	overflow: hidden;
}

.vt-accordion__item summary {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.9rem;
	cursor: pointer;
	padding: 1.15rem 1.4rem;
	font-family: var(--v-serif);
	font-size: 1.18rem;
	font-weight: 600;
	color: var(--v-navy);
}

.vt-accordion__item summary::-webkit-details-marker {
	display: none;
}

.vt-accordion__num {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--v-gold);
	color: #fff;
	font-family: var(--v-sans);
	font-size: 0.82rem;
	font-weight: 800;
}

.vt-accordion__plus {
	margin-left: auto;
	position: relative;
	width: 16px;
	height: 16px;
	flex: none;
}

.vt-accordion__plus::before,
.vt-accordion__plus::after {
	content: "";
	position: absolute;
	background: var(--v-gold);
	border-radius: 2px;
	transition: transform 0.2s ease;
}

.vt-accordion__plus::before {
	left: 0;
	top: 7px;
	width: 16px;
	height: 2px;
}

.vt-accordion__plus::after {
	left: 7px;
	top: 0;
	width: 2px;
	height: 16px;
}

.vt-accordion__item[open] .vt-accordion__plus::after {
	transform: scaleY(0);
}

.vt-accordion__item > p {
	margin: 0;
	padding: 0 1.4rem 1.3rem 1.4rem;
	color: var(--v-muted);
}

.vt-accordion--numbered .vt-accordion__item > p {
	padding-left: calc(1.4rem + 30px + 0.9rem);
}

.vt-faq-home__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

/* ── Página FAQ ───────────────────────────────────────────────────────── */
.vt-faq-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
}

.vt-faq-page__img {
	border-radius: var(--v-radius-lg);
	box-shadow: var(--v-shadow-sm);
	margin-top: 1.4rem;
}

.vt-helpbox {
	background: linear-gradient(150deg, var(--v-navy), var(--v-navy-soft));
	border-radius: var(--v-radius-lg);
	padding: 1.9rem 1.7rem;
	color: rgba(246, 241, 232, 0.85);
}

.vt-helpbox h2 {
	color: var(--v-gold);
	font-size: 1.55rem;
}

.vt-helpbox > p {
	font-size: 0.96rem;
}

.vt-helpbox ul {
	list-style: none;
	margin: 1.4rem 0 0;
	padding: 0;
	display: grid;
	gap: 1.2rem;
}

.vt-helpbox li {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
}

.vt-helpbox strong {
	display: block;
	color: #fff;
	font-size: 1rem;
}

.vt-helpbox span {
	font-size: 0.88rem;
}

.vt-helpbox a {
	color: var(--v-gold);
	text-decoration: none;
}

.vt-helpbox a:hover {
	text-decoration: underline;
}

.vt-assure {
	display: flex;
	align-items: center;
	gap: 1.8rem;
	background: #fff;
	border: 1px solid var(--v-gold-soft);
	border-radius: var(--v-radius-lg);
	box-shadow: var(--v-shadow-sm);
	padding: clamp(1.6rem, 3.5vw, 2.4rem);
	flex-wrap: wrap;
}

.vt-assure > div {
	flex: 1;
	min-width: 240px;
}

.vt-assure h2 {
	margin-bottom: 0.3rem;
	font-size: 1.5rem;
}

.vt-assure p {
	margin: 0;
	color: var(--v-muted);
}

/* ── Misión / visión / valores ────────────────────────────────────────── */
.vt-mission__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr 1fr;
	gap: 1.6rem;
	align-items: stretch;
}

.vt-mission__media img {
	border-radius: var(--v-radius-lg);
	box-shadow: var(--v-shadow-sm);
	height: 100%;
	object-fit: cover;
}

.vt-mission__cards {
	display: grid;
	gap: 1.6rem;
	align-content: center;
}

.vt-statement {
	background: var(--v-cream-2);
	border: 1px solid var(--v-gold-soft);
	border-radius: var(--v-radius-lg);
	padding: 1.7rem;
}

.vt-statement h2 {
	font-family: var(--v-sans);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0.7rem 0 0.5rem;
}

.vt-statement p {
	margin: 0;
	color: var(--v-muted);
	font-size: 0.97rem;
}

.vt-values {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.3rem;
	text-align: center;
}

.vt-value h3 {
	font-family: var(--v-sans);
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0.8rem 0 0.4rem;
}

.vt-value p {
	font-size: 0.9rem;
	color: var(--v-muted);
	margin: 0;
}

.vt-why__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: clamp(1.8rem, 4vw, 3rem);
	align-items: center;
}

.vt-why__head {
	font-size: 1.6rem;
}

.vt-why__media img {
	border-radius: var(--v-radius-lg);
	box-shadow: var(--v-shadow);
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

/* ── Contacto ─────────────────────────────────────────────────────────── */
.vt-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
}

.vt-contact__form {
	background: #fff;
	border: 1px solid var(--v-line);
	border-radius: var(--v-radius-lg);
	box-shadow: var(--v-shadow-sm);
	padding: clamp(1.6rem, 3.5vw, 2.4rem);
}

.vt-field {
	margin-bottom: 1.2rem;
}

.vt-field label {
	display: block;
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--v-navy);
	margin-bottom: 0.4rem;
}

.vt-field input,
.vt-field textarea {
	width: 100%;
	font-family: var(--v-sans);
	font-size: 1rem;
	color: var(--v-ink);
	background: var(--v-cream-2);
	border: 1.5px solid var(--v-line);
	border-radius: 10px;
	padding: 0.8rem 1rem;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.vt-field input:focus,
.vt-field textarea:focus {
	outline: none;
	border-color: var(--v-gold);
	box-shadow: 0 0 0 3px rgba(199, 161, 90, 0.18);
}

.vt-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
}

.vt-hp {
	position: absolute !important;
	left: -9999px !important;
}

.vt-contact__privacy {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.88rem;
	color: var(--v-muted);
	margin: 1rem 0 0;
}

.vt-alert {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	border-radius: var(--v-radius);
	padding: 1.1rem 1.3rem;
	margin-bottom: 1.4rem;
}

.vt-alert p {
	margin: 0;
	font-weight: 600;
}

.vt-alert--ok {
	background: rgba(76, 145, 90, 0.12);
	border: 1px solid rgba(76, 145, 90, 0.4);
	color: #2e5c3a;
}

.vt-alert--error {
	background: rgba(178, 58, 58, 0.09);
	border: 1px solid rgba(178, 58, 58, 0.35);
	color: #8c2f2f;
}

/* ── Prosa legal ──────────────────────────────────────────────────────── */
.vt-prose-block h2 {
	font-size: 1.6rem;
	margin-top: 2rem;
}

.vt-prose-block p,
.vt-prose-block li {
	color: var(--v-muted);
}

/* ── Banda CTA ────────────────────────────────────────────────────────── */
.vt-cta-band {
	background:
		radial-gradient(900px 400px at 15% 0%, rgba(199, 161, 90, 0.16), transparent 60%),
		var(--v-cream-3);
	border-top: 1px solid var(--v-line);
	padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.vt-cta-band__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 2rem;
	align-items: center;
}

.vt-cta-band__title {
	font-size: clamp(1.7rem, 3.4vw, 2.4rem);
	margin-bottom: 0.4rem;
}

.vt-cta-band__sub {
	color: var(--v-muted);
	margin: 0;
	font-size: 1.05rem;
}

.vt-cta-band__action {
	text-align: center;
}

.vt-cta-band__note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	font-size: 0.88rem;
	color: var(--v-muted);
	margin: 0.9rem 0 0;
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.vt-footer {
	background: var(--v-navy);
	color: rgba(246, 241, 232, 0.78);
	padding: clamp(3rem, 6vw, 4.2rem) 0 0;
}

.vt-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.1fr 0.9fr;
	gap: 2.4rem;
	padding-bottom: 2.6rem;
}

.vt-footer__brand .vt-logo {
	height: 64px;
}

.vt-footer__tagline {
	font-size: 0.82rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--v-gold);
	margin: 1rem 0 0.8rem;
}

.vt-footer__note {
	font-size: 0.9rem;
	margin: 0;
}

.vt-footer__head {
	font-family: var(--v-sans);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 1rem;
}

.vt-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
	font-size: 0.94rem;
}

.vt-footer__col a {
	color: rgba(246, 241, 232, 0.78);
	text-decoration: none;
	transition: color 0.15s ease;
}

.vt-footer__col a:hover {
	color: var(--v-gold);
}

.vt-footer__bottom {
	border-top: 1px solid rgba(246, 241, 232, 0.14);
	padding: 1.3rem 0;
	text-align: center;
	font-size: 0.86rem;
}

.vt-footer__bottom p {
	margin: 0;
}

/* ── WhatsApp flotante ────────────────────────────────────────────────── */
.vt-wa {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 90;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
	transition: transform 0.18s ease;
}

.vt-wa:hover {
	transform: scale(1.08);
}

.vt-wa svg {
	width: 30px;
	height: 30px;
}

/* ── Animación de aparición ───────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
	[data-vt-reveal] {
		opacity: 0;
		transform: translateY(22px);
		transition: opacity 0.7s ease var(--vt-delay, 0ms), transform 0.7s ease var(--vt-delay, 0ms);
	}

	[data-vt-reveal].is-in {
		opacity: 1;
		transform: none;
	}
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1020px) {
	.vt-cards4,
	.vt-plans,
	.vt-guarantee__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.vt-values {
		grid-template-columns: repeat(3, 1fr);
	}

	.vt-steps__track {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem 1.2rem;
	}

	.vt-steps__track::before {
		display: none;
	}

	.vt-mission__grid,
	.vt-why__grid {
		grid-template-columns: 1fr;
	}

	.vt-why__media img {
		aspect-ratio: 16 / 9;
	}

	.vt-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.vt-process__grid {
		grid-template-columns: 1fr;
	}

	.vt-boxcard {
		position: static;
	}
}

@media (max-width: 880px) {
	.vt-nav {
		position: fixed;
		inset: 82px 0 auto 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--v-cream-2);
		border-bottom: 1px solid var(--v-line);
		box-shadow: var(--v-shadow);
		padding: 1rem 1.4rem 1.6rem;
		display: none;
		max-height: calc(100vh - 82px);
		overflow-y: auto;
	}

	.vt-nav.is-open {
		display: flex;
	}

	.vt-nav__list {
		flex-direction: column;
		gap: 0;
	}

	.vt-nav__link {
		display: block;
		padding: 0.85rem 0.2rem;
		font-size: 1rem;
		border-bottom: 1px solid var(--v-line);
	}

	.vt-nav__actions {
		margin-top: 1.2rem;
		justify-content: space-between;
	}

	.vt-burger {
		display: flex;
	}

	.vt-hero__grid,
	.vt-split,
	.vt-faq-home__grid,
	.vt-faq-page__grid,
	.vt-contact__grid,
	.vt-cta-band__grid {
		grid-template-columns: 1fr;
	}

	.vt-split--reverse .vt-split__media {
		order: -1;
	}

	.vt-hero__media {
		order: -1;
	}

	.vt-hero__chip {
		left: 10px;
	}

	.vt-trustbar__grid {
		grid-template-columns: 1fr;
		gap: 1.1rem;
	}

	.vt-trustbar__item {
		justify-content: flex-start;
	}

	.vt-trustbar__item + .vt-trustbar__item {
		border-left: 0;
		padding-left: 0;
		border-top: 1px solid var(--v-line);
		padding-top: 1.1rem;
	}

	.vt-stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.vt-process__row {
		grid-template-columns: 1fr;
	}

	.vt-cards6 {
		grid-template-columns: 1fr 1fr;
	}

	.vt-duo {
		grid-template-columns: 1fr;
	}

	.vt-cta-band__action {
		text-align: left;
	}

	.vt-cta-band__note {
		justify-content: flex-start;
	}
}

@media (max-width: 560px) {
	.vt-cards4,
	.vt-plans,
	.vt-guarantee__grid,
	.vt-cards6,
	.vt-values,
	.vt-field-row,
	.vt-footer__grid {
		grid-template-columns: 1fr;
	}

	.vt-steps__track {
		grid-template-columns: repeat(2, 1fr);
	}

	.vt-slider {
		padding-left: 1.2rem;
		padding-right: 1.2rem;
	}

	.vt-slider__arrow--prev {
		left: -4px;
	}

	.vt-slider__arrow--next {
		right: -4px;
	}
}
