:root {
	--vt-blue: #2F80ED;
	--vt-green: #00C88F;
	--vt-red: #E63946;
	--vt-purple: #9B5DE5;
	--vt-gray: #505050;
	--vt-ink: #0B1B3A;
}

/* ---------- hero background video ---------- */
.hero-title {
	text-shadow: 0 2px 22px rgba(255, 255, 255, 0.6);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Roboto", system-ui, sans-serif;
	background-color: #f4f8fe;
	background-image:
		radial-gradient(900px 520px at 0% 0%, rgba(47, 128, 237, 0.07), transparent 60%),
		radial-gradient(1100px 700px at 100% 12%, rgba(0, 200, 143, 0.06), transparent 55%),
		linear-gradient(180deg, #f4f8fe 0%, #ffffff 45%, #f0faf6 100%);
	background-attachment: fixed;
}

section[id],
div[id] {
	scroll-margin-top: 96px;
}

::selection {
	background: rgba(47, 128, 237, 0.18);
}

::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f5fb;
}

::-webkit-scrollbar-thumb {
	background: rgba(47, 128, 237, 0.35);
	border-radius: 999px;
}

/* ---------- ENTRANCE (hero) ---------- */
[data-hero] {
	opacity: 0;
	transform: translateY(28px);
}

[data-hero].in {
	opacity: 1;
	transform: none;
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-hero="scale"] {
	transform: scale(0.88);
}

[data-hero="scale"].in {
	transform: scale(1);
	transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-hero="fade"] {
	transform: none;
}

/* ---------- SCROLL REVEAL ---------- */
[data-reveal] {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="left"] {
	transform: translateX(-36px);
}

[data-reveal="right"] {
	transform: translateX(36px);
}

[data-reveal="zoom"] {
	transform: scale(0.92);
}

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

/* ---------- FLOATING ---------- */
@keyframes vtFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

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

.vt-float {
	animation: vtFloat 6s ease-in-out infinite;
}

.vt-float-slow {
	animation: vtFloat 8s ease-in-out infinite;
}

.vt-float-rev {
	animation: vtFloat2 7s ease-in-out infinite;
}

/* ---------- RINGS / PULSE ---------- */
@keyframes vtRing {
	0% { transform: scale(0.65); opacity: 0.9; }
	100% { transform: scale(1.7); opacity: 0; }
}

.vt-ring {
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	border: 2px solid var(--vt-blue);
	pointer-events: none;
	animation: vtRing 2.4s ease-out infinite;
}

.vt-ring.green { border-color: var(--vt-green); }
.vt-ring.red { border-color: var(--vt-red); }
.vt-ring.purple { border-color: var(--vt-purple); }
.vt-ring.d1 { animation-delay: 0.8s; }
.vt-ring.d2 { animation-delay: 1.6s; }

@keyframes vtBlink {
	50% { opacity: 0.35; }
}

.vt-blink {
	animation: vtBlink 1.6s ease-in-out infinite;
}

@keyframes vtTick {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.4); }
}

.vt-tick {
	animation: vtTick 1.2s ease-in-out infinite;
}

/* ---------- SVG LINES ---------- */
@keyframes vtDash {
	to { stroke-dashoffset: -24; }
}

.vt-dash {
	stroke-dasharray: 5 9;
	animation: vtDash 1.5s linear infinite;
}

@keyframes vtDraw {
	0% { stroke-dashoffset: 300; }
	55% { stroke-dashoffset: 0; }
	100% { stroke-dashoffset: 0; }
}

.vt-heartline {
	stroke-dasharray: 300;
	stroke-dashoffset: 300;
	animation: vtDraw 3s ease-in-out infinite;
}

@keyframes vtScan {
	0% { transform: translateY(-130%); opacity: 0; }
	15% { opacity: 1; }
	85% { opacity: 1; }
	100% { transform: translateY(130%); opacity: 0; }
}

.vt-scan {
	animation: vtScan 3.4s ease-in-out infinite;
}

/* ---------- STATUS ---------- */
@keyframes vtEq {
	0%, 100% { transform: scaleY(0.3); }
	50% { transform: scaleY(1); }
}

.vt-eq span {
	transform-origin: bottom;
	animation: vtEq 1.1s ease-in-out infinite;
}

@keyframes vtSpin {
	to { transform: rotate(360deg); }
}

.vt-spin-slow {
	animation: vtSpin 45s linear infinite;
}

@keyframes vtGradShift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.vt-grad-anim {
	background-size: 200% 200%;
	animation: vtGradShift 9s ease infinite;
}

@keyframes vtRise {
	from { transform: translateY(6px); opacity: 0; }
	to { transform: none; opacity: 1; }
}

.vt-rise {
	animation: vtRise 0.5s ease both;
}

@keyframes vtBars {
	from { transform: scaleY(0); }
	to { transform: scaleY(1); }
}

.vt-bar {
	transform: scaleY(0);
	transform-origin: bottom;
}

.vt-bar.grown {
	transform: scaleY(1);
	transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- NAVBAR ---------- */
#navbar {
	background: transparent;
	box-shadow: none;
	transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#navbar.scrolled {
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(47, 128, 237, 0.1);
	box-shadow: 0 1px 14px rgba(11, 27, 58, 0.07);
}

.nav-pad {
	transition: padding 0.3s ease;
}

#navbar.scrolled .nav-pad {
	padding-block: 0.55rem;
}

/* navbar fijo con fondo blanco (página "Cómo funciona") */
#navbar.vt-nav-solid,
#navbar.vt-nav-solid.scrolled {
	background: #ffffff;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(47, 128, 237, 0.12);
	box-shadow: 0 1px 16px rgba(11, 27, 58, 0.08);
}

/* ---------- MOBILE MENU ---------- */
#mobile-menu {
	pointer-events: none;
}

#mobile-menu.open {
	pointer-events: auto;
}

#mobile-menu .overlay {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

#mobile-menu .panel {
	transform: translateX(-105%);
	transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

#mobile-menu.open .overlay {
	opacity: 1;
	pointer-events: auto;
}

#mobile-menu.open .panel {
	transform: none;
}

#mobile-menu a {
	transition: color 0.2s ease, background 0.2s ease;
}

/* ---------- HOTSPOTS ---------- */
.hotspot-line {
	opacity: 0;
	transition: opacity 0.5s ease;
}

[vt-spot].active .hotspot-line,
[vt-spot]:hover .hotspot-line,
[vt-spot]:focus .hotspot-line {
	opacity: 1;
}

.vt-spot-dot {
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

[vt-spot].active .vt-spot-dot,
[vt-spot]:hover .vt-spot-dot,
[vt-spot]:focus .vt-spot-dot {
	transform: scale(1.18);
	box-shadow: 0 0 0 8px rgba(47, 128, 237, 0.15), 0 10px 24px -6px rgba(47, 128, 237, 0.5);
}

.vt-spot-info {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.vt-spot-info.visible {
	opacity: 1;
	transform: none;
}

/* ---------- ECOSYSTEM ---------- */
[data-eco-node] {
	transition: opacity 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

[data-eco-node].eco-dim {
	opacity: 0.35;
}

[data-eco-node].eco-active {
	box-shadow: 0 18px 40px -12px rgba(47, 128, 237, 0.35);
	transform: translateY(-4px);
}

.eco-arrow {
	transition: opacity 0.4s ease;
}

[data-eco-node].eco-dim + .eco-arrow,
.eco-arrow.dim {
	opacity: 0.15;
}

/* ---------- FALLS DEMO ---------- */
.falls-indicator {
	transition: background 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
}

.falls-indicator.alert-on {
	background: rgba(230, 57, 70, 0.12);
	color: var(--vt-red);
	box-shadow: 0 0 0 6px rgba(230, 57, 70, 0.12);
}

/* ---------- VERTICAL RAIL (mobile timellines) ---------- */
.vt-rail {
	position: relative;
}

.vt-rail::before {
	content: "";
	position: absolute;
	left: 19px;
	top: 12px;
	bottom: 12px;
	width: 2px;
	background: linear-gradient(to bottom, rgba(47, 128, 237, 0.35), rgba(0, 200, 143, 0.35));
	border-radius: 999px;
}

.vt-step-dot {
	transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.vt-step-dot.in {
	background: var(--vt-blue);
	box-shadow: 0 0 0 6px rgba(47, 128, 237, 0.15);
}

/* ---------- MAP GRID ---------- */
.vt-mapbg {
	background-color: #eaf2fd;
	background-image:
		linear-gradient(rgba(47, 128, 237, 0.09) 1px, transparent 1px),
		linear-gradient(90deg, rgba(47, 128, 237, 0.09) 1px, transparent 1px);
	background-size: 26px 26px;
}

/* ---------- MISC ---------- */
.vt-glass {
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.55);
}

.glow-blue {
	box-shadow: 0 20px 45px -15px rgba(47, 128, 237, 0.45);
}

.glow-green {
	box-shadow: 0 20px 45px -15px rgba(0, 200, 143, 0.45);
}

.card-lift {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-lift:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 50px -18px rgba(11, 27, 58, 0.18);
}

.bg-dots {
	background-image: radial-gradient(rgba(47, 128, 237, 0.14) 1.5px, transparent 1.5px);
	background-size: 22px 22px;
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	[data-hero], [data-reveal] {
		opacity: 1 !important;
		transform: none !important;
	}

	.vt-bar {
		transform: none;
	}
}

/* ---------- client carousel (seccion-16) ---------- */
.seccion-carrusel {
	padding: 4.5rem 0;
}

.seccion-carrusel .contenedor {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1rem;
}

.carrusel-header {
	text-align: center;
	margin-bottom: 2.75rem;
}

.carrusel-header .seccion-titulo {
	font-family: "Poppins", sans-serif;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 800;
	color: #0B1B3A;
	margin: 0 0 0.5rem;
}

.carrusel-header .seccion-subtitulo {
	font-size: 1rem;
	color: #505050;
	margin: 0;
}

.carrusel-clientes {
	position: relative;
	overflow: hidden;
	width: 100%;
	mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.carrusel-track {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 3.5rem;
	width: max-content;
	will-change: transform;
}

.carrusel-item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
}

.carrusel-item img {
	max-height: 100%;
	width: auto;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.65;
	transition: filter 0.3s ease, opacity 0.3s ease;
}

.carrusel-item img:hover {
	filter: grayscale(0);
	opacity: 1;
}

.carrusel-nombre {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	color: #0B1B3A;
	opacity: 0.65;
	white-space: nowrap;
	letter-spacing: 0.01em;
}

@media (prefers-reduced-motion: reduce) {
	.carrusel-track {
		flex-wrap: wrap;
		justify-content: center;
		transform: none !important;
	}

	.hero-bg-video {
		display: none !important;
	}
}

/* ============================================================
   SPLASH / WELCOME — VITRACK AI
   ============================================================ */
html:has(#vt-splash) {
	overflow: hidden;
}

html.vt-splash-skip {
	overflow: auto !important;
}

html.vt-splash-skip #vt-splash {
	display: none !important;
}

#vt-splash {
	position: fixed;
	inset: 0;
	z-index: 100;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Roboto", system-ui, sans-serif;
	background:
		radial-gradient(120% 90% at 12% 8%, #12294d 0%, var(--vt-ink) 52%, #060f20 100%);
	transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.75s ease;
}

#vt-splash.is-leaving {
	opacity: 0;
	transform: translateY(-10px) scale(1.04);
	filter: blur(8px);
	pointer-events: none;
}

#vt-splash .vt-splash-bg,
#vt-splash .vt-splash-grid,
#vt-splash .vt-splash-glow,
#vt-splash .vt-splash-scan,
#vt-splash .vt-splash-ai {
	position: absolute;
	pointer-events: none;
}

/* grid */
.vt-splash-grid {
	inset: 0;
	background-image: radial-gradient(rgba(238, 244, 252, 0.07) 1px, transparent 1.4px);
	background-size: 28px 28px;
	opacity: 0.9;
	-webkit-mask-image: radial-gradient(60% 55% at 50% 50%, #000 30%, transparent 78%);
	mask-image: radial-gradient(60% 55% at 50% 50%, #000 30%, transparent 78%);
}

/* color auroras */
.vt-splash-glow {
	border-radius: 9999px;
	filter: blur(60px);
	opacity: 0.55;
}

.vt-splash-glow-a {
	width: 46vmax;
	height: 46vmax;
	left: -12vmax;
	top: -14vmax;
	background: radial-gradient(circle, rgba(47, 128, 237, 0.4), transparent 65%);
	animation: vtSplashDriftA 9s ease-in-out infinite;
}

.vt-splash-glow-b {
	width: 40vmax;
	height: 40vmax;
	right: -14vmax;
	bottom: -12vmax;
	background: radial-gradient(circle, rgba(0, 200, 143, 0.32), transparent 65%);
	animation: vtSplashDriftB 11s ease-in-out infinite;
}

@keyframes vtSplashDriftA {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(4vmax, 3vmax) scale(1.08); }
}

@keyframes vtSplashDriftB {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-3vmax, -4vmax) scale(1.1); }
}

/* scanning line */
.vt-splash-scan {
	left: 0;
	right: 0;
	top: -20%;
	height: 26%;
	background: linear-gradient(to bottom,
		transparent,
		rgba(47, 128, 237, 0.05) 40%,
		rgba(0, 200, 143, 0.14) 50%,
		rgba(47, 128, 237, 0.05) 60%,
		transparent);
	animation: vtSplashScan 2.8s linear infinite;
}

@keyframes vtSplashScan {
	0% { transform: translateY(0); }
	100% { transform: translateY(620%); }
}

/* neural svg */
.vt-splash-ai {
	width: min(720px, 92vw);
	height: auto;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.75;
	z-index: 0;
}

.vt-splash-path {
	stroke-dasharray: 300;
	stroke-dashoffset: 300;
	animation: vtSplashDraw 3.2s ease-in-out infinite;
}

@keyframes vtSplashDraw {
	0% { stroke-dashoffset: 300; opacity: 0; }
	30% { opacity: 1; }
	60% { stroke-dashoffset: 0; opacity: 1; }
	78% { opacity: 1; }
	100% { stroke-dashoffset: 0; opacity: 0; }
}

.vt-splash-node {
	transform-box: fill-box;
	transform-origin: center;
	animation: vtSplashNode 2.6s ease-in-out infinite;
}

@keyframes vtSplashNode {
	0%, 100% { opacity: 0.35; transform: scale(0.7); }
	50% { opacity: 1; transform: scale(1.35); }
}

.vt-splash-orb {
	transform-box: fill-box;
	transform-origin: center;
	animation: vtSplashOrb 16s linear infinite;
}

@keyframes vtSplashOrb {
	to { transform: rotate(360deg); }
}

/* centered content */
.vt-splash-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 1.25rem;
	animation: vtSplashInner 1s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

@keyframes vtSplashInner {
	from { opacity: 0; transform: translateY(16px); filter: blur(6px); }
	to { opacity: 1; transform: none; filter: blur(0); }
}

.vt-splash-logo {
	position: relative;
	display: grid;
	place-items: center;
	margin-bottom: 1.5rem;
}

.vt-splash-aurora {
	position: absolute;
	width: 120%;
	height: 150%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 9999px;
	background: radial-gradient(circle,
		rgba(47, 128, 237, 0.5) 0%,
		rgba(0, 200, 143, 0.22) 45%,
		transparent 70%);
	filter: blur(28px);
	animation: vtSplashAurora 3.4s ease-in-out infinite;
}

@keyframes vtSplashAurora {
	0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(0.95); }
	50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.vt-splash-logo-img {
	position: relative;
	width: clamp(178px, 44vw, 290px);
	height: auto;
	filter: brightness(1.35) drop-shadow(0 0 22px rgba(47, 128, 237, 0.55))
		drop-shadow(0 4px 26px rgba(0, 200, 143, 0.35));
	animation: vtSplashLogo 2.4s ease-in-out infinite;
}

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

.vt-splash-kicker {
	white-space: nowrap;
	max-width: 100%;
	margin: 0 auto 1.1rem;
	font-family: "Poppins", sans-serif;
	font-size: clamp(0.52rem, 1.7vw, 0.78rem);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.05em;
	color: rgba(234, 242, 253, 0.85);
}

.vt-splash-kicker b {
	font-style: normal;
	color: transparent;
	background: linear-gradient(90deg, #2F80ED, #00C88F);
	-webkit-background-clip: text;
	background-clip: text;
}

.vt-splash-title {
	margin: 0.6rem 0 1.9rem;
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-size: clamp(1.1rem, 3.4vw, 1.7rem);
	line-height: 1.25;
	color: #eef4fc;
	letter-spacing: -0.01em;
}

/* loader: provided Uiverse markup (.loader > b + span) */
.vt-splash-inner .loader {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.95rem;
	width: min(360px, 88vw);
}

.vt-splash-inner .loader b {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-size: 0.86rem;
	letter-spacing: 0.16em;
	color: rgba(234, 242, 253, 0.88);
	min-height: 1.2em;
}

.vt-splash-inner .loader b.in {
	animation: vtWordIn 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes vtWordIn {
	from { opacity: 0; transform: translateY(8px); filter: blur(4px); }
	to { opacity: 1; transform: none; filter: blur(0); }
}

.vt-splash-inner .loader span {
	position: relative;
	display: block;
	width: min(270px, 78vw);
	height: 2px;
	border-radius: 9999px;
	background: rgba(238, 244, 252, 0.12);
	overflow: hidden;
}

.vt-splash-inner .loader span::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 42%;
	border-radius: 9999px;
	background: linear-gradient(90deg,
		transparent,
		rgba(47, 128, 237, 0.9) 40%,
		#00C88F 55%,
		transparent);
	box-shadow: 0 0 14px rgba(47, 128, 237, 0.9), 0 0 26px rgba(0, 200, 143, 0.5);
	animation: vtLoaderSweep 1.05s cubic-bezier(0.6, 0.05, 0.4, 0.95) infinite;
}

@keyframes vtLoaderSweep {
	0% { left: -45%; }
	100% { left: 103%; }
}

.vt-splash-foot {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 1.4rem;
	margin: 0;
	z-index: 2;
	text-align: center;
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(234, 242, 253, 0.42);
}

/* ---------- interaction feedback ---------- */
.btn,
a,
button {
	tap-highlight-color: transparent;
}

.btn {
	will-change: transform;
}

.btn:active {
	transform: translateY(1px) scale(0.97) !important;
	box-shadow: none !important;
}

input.input:focus,
textarea:focus,
select:focus {
	outline: 2px solid rgba(47, 128, 237, 0.65);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	#vt-splash .vt-splash-bg,
	#vt-splash .vt-splash-grid,
	#vt-splash .vt-splash-glow,
	#vt-splash .vt-splash-scan,
	#vt-splash .vt-splash-ai,
	.vt-splash-inner,
	.vt-splash-inner .loader span,
	.vt-splash-inner .loader b,
	.vt-splash-logo-img,
	.vt-splash-aurora {
		animation: none !important;
	}

	#vt-splash {
		transition: opacity 0.2s ease;
	}
}

/* ============================================================
   SOCIAL ICONS — ul.wrapper (uiverse: david-mohseni)
   ============================================================ */
.wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wrapper .icon {
	position: relative;
	display: block;
}

.wrapper .icon a {
	display: grid;
	place-items: center;
	position: relative;
	width: 2.55rem;
	height: 2.55rem;
	border-radius: 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(238, 244, 252, 0.9);
	overflow: visible;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease,
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.wrapper .icon a svg {
	display: block;
	z-index: 1;
	pointer-events: none;
}

.wrapper .tooltip {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 0.7rem);
	transform: translateX(-50%) translateY(6px);
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: #ffffff;
	color: #0b1b3a;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	box-shadow: 0 10px 22px -8px rgba(11, 27, 58, 0.6);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.wrapper .tooltip::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: #ffffff;
}

.wrapper .icon a:hover {
	transform: translateY(-4px);
}

.wrapper .icon a:hover .tooltip {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.wrapper .icon.facebook a:hover {
	background: #1877f2;
	border-color: #1877f2;
	color: #ffffff;
	box-shadow: 0 12px 24px -8px rgba(24, 119, 242, 0.55);
}

.wrapper .icon.twitter a:hover {
	background: #1da1f2;
	border-color: #1da1f2;
	color: #ffffff;
	box-shadow: 0 12px 24px -8px rgba(29, 161, 242, 0.55);
}

.wrapper .icon.instagram a:hover {
	background: radial-gradient(circle at 30% 110%, #f9ce34 0%, #ee2a7b 45%, #6228d7 100%);
	border-color: transparent;
	color: #ffffff;
	box-shadow: 0 12px 24px -8px rgba(238, 42, 123, 0.55);
}

.wrapper .icon a:focus-visible {
	outline: 2px solid rgba(0, 200, 143, 0.8);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.wrapper .icon a,
	.wrapper .tooltip {
		transition: none;
	}
}

/* ============================================================
   PRO WATCH — hero (uiverse: chase2k25)
   ============================================================ */
.pro-watch-experience {
	position: relative;
	width: 204px;
	user-select: none;
}

.pro-watch-experience .main-wrapper {
	position: relative;
}

.pro-watch-experience input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.pro-watch-experience .watch-assembly {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.pro-watch-experience .strap-piece {
	width: 96px;
	height: 36px;
	background: linear-gradient(180deg, #2c3442 0%, #151a23 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 2px 3px rgba(0, 0, 0, 0.35);
}

.pro-watch-experience .strap-top {
	border-radius: 26px 26px 10px 10px / 22px 22px 8px 8px;
	margin-bottom: -12px;
	z-index: 0;
}

.pro-watch-experience .strap-bottom {
	border-radius: 10px 10px 26px 26px / 8px 8px 22px 22px;
	margin-top: -12px;
	z-index: 0;
}

.pro-watch-experience .ultra-chassis {
	position: relative;
	width: 204px;
	height: 238px;
	background:
		radial-gradient(circle at 30% 18%, #9aa3ad 0%, #5b6572 26%, #232b36 62%, #0d1117 100%);
	border-radius: 62px;
	box-shadow: 0 30px 55px -18px rgba(11, 27, 58, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.25);
	z-index: 1;
}

.pro-watch-experience .crown-mechanism {
	position: absolute;
	top: 66px;
	right: -7px;
	width: 15px;
	height: 40px;
	border-radius: 6px;
	background: linear-gradient(90deg, #cfd4da, #5a636e 60%, #191f28);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.pro-watch-experience .side-utility-bar {
	position: absolute;
	left: -5px;
	top: 80px;
	width: 9px;
	height: 34px;
	border-radius: 5px;
	background: linear-gradient(90deg, #f2a33c, #d4781d);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.pro-watch-experience .action-trigger {
	position: absolute;
	right: -6px;
	top: 118px;
	width: 14px;
	height: 28px;
	border-radius: 5px;
	background: linear-gradient(90deg, #e95d3f, #b0301a);
}

.pro-watch-experience .sapphire-glass {
	position: absolute;
	inset: 7px;
	border-radius: 54px;
	overflow: hidden;
	background: linear-gradient(160deg, #0e1522 0%, #060a12 70%);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.5), inset 0 14px 28px -18px rgba(120, 160, 255, 0.45);
}

.pro-watch-experience .os-overlay {
	position: absolute;
	top: 8px;
	left: 0;
	right: 0;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.02em;
	z-index: 5;
}

.pro-watch-experience .battery-status {
	display: flex;
	align-items: center;
	gap: 4px;
}

.pro-watch-experience .bat-icon {
	width: 12px;
	height: 6px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 2px;
	position: relative;
}

.pro-watch-experience .bat-icon::after {
	content: "";
	position: absolute;
	inset: 1px;
	background: #00c88f;
	border-radius: 1px;
}

.pro-watch-experience .viewport-canvas {
	position: absolute;
	inset: 0;
}

.pro-watch-experience .ui-view {
	position: absolute;
	inset: 0;
	display: none;
	flex-direction: column;
	align-items: center;
	color: #fff;
	font-family: "Poppins", system-ui, sans-serif;
	padding: 22px 16px 26px;
}

.pro-watch-experience input[type="radio"]:nth-of-type(1):checked ~ .watch-assembly .face-modular-pro,
.pro-watch-experience input[type="radio"]:nth-of-type(2):checked ~ .watch-assembly .face-activity-pro,
.pro-watch-experience input[type="radio"]:nth-of-type(3):checked ~ .watch-assembly .face-vitals-pro,
.pro-watch-experience input[type="radio"]:nth-of-type(4):checked ~ .watch-assembly .face-media-pro,
.pro-watch-experience input[type="radio"]:nth-of-type(5):checked ~ .watch-assembly .face-apps-pro {
	display: flex;
}

/* modular face */
.pro-watch-experience .face-modular-pro {
	justify-content: center;
	gap: 9px;
	padding-top: 20px;
	padding-bottom: 18px;
	background: radial-gradient(circle at 30% 10%, rgba(47, 128, 237, 0.35), transparent 55%),
		radial-gradient(circle at 80% 100%, rgba(0, 200, 143, 0.25), transparent 55%);
}

.pro-watch-experience .vt-wstats {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
}

.pro-watch-experience .vt-wstat {
	display: flex;
	align-items: center;
	gap: 7px;
	min-width: 128px;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	padding: 3px 12px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #fff;
}

.pro-watch-experience .vt-wdot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	flex: 0 0 auto;
}

.pro-watch-experience .vt-wdot.is-g {
	background: #00c88f;
	box-shadow: 0 0 8px rgba(0, 200, 143, 0.9);
}

.pro-watch-experience .vt-wdot.is-b {
	background: #2f80ed;
	box-shadow: 0 0 8px rgba(47, 128, 237, 0.9);
}

.pro-watch-experience .face-modular-pro .hero-time {
	margin: 2px 0;
}

.pro-watch-experience .vt-wheart {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.pro-watch-experience .vt-wline {
	width: 84%;
	max-width: 168px;
	height: auto;
	overflow: visible;
}

.pro-watch-experience .vt-wbpm {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 600;
	color: #aef0dd;
}

.pro-watch-experience .vt-wbpm b {
	font-size: 17px;
	font-weight: 700;
	color: #ffffff;
	font-variant-numeric: tabular-nums;
}

.pro-watch-experience .vt-wheartic {
	width: 13px;
	height: 13px;
	color: #ff5a5f;
	flex: 0 0 auto;
}

.pro-watch-experience .complication-top {
	display: flex;
	gap: 10px;
	width: 100%;
}

.pro-watch-experience .comp-pill {
	display: flex;
	align-items: center;
	gap: 4px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	padding: 4px 8px;
	font-size: 10px;
	font-weight: 600;
}

.pro-watch-experience .hero-time {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 6px;
}

.pro-watch-experience .h-digits {
	font-size: 46px;
	font-weight: 200;
	line-height: 1;
	font-variant-numeric: tabular-nums;
	text-shadow: 0 0 18px rgba(47, 128, 237, 0.5);
}

.pro-watch-experience .h-seconds {
	font-size: 16px;
	font-weight: 400;
	color: #7ee0c2;
}

.pro-watch-experience .complication-bottom {
	width: 100%;
}

.pro-watch-experience .wide-pill {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	padding: 6px 10px;
}

.pro-watch-experience .pill-info {
	display: flex;
	justify-content: space-between;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.75);
}

.pro-watch-experience .pill-gauge {
	margin-top: 5px;
	height: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	overflow: hidden;
}

.pro-watch-experience .gauge-fill {
	width: 62%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #2f80ed, #00c88f);
}

/* activity rings */
.pro-watch-experience .ring-stack {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
}

.pro-watch-experience .ring-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.pro-watch-experience .ring-item::before {
	content: "";
	width: 34px;
	height: 34px;
	border-radius: 50%;
	flex: 0 0 auto;
	background: conic-gradient(var(--c) var(--p), rgba(255, 255, 255, 0.12) 0);
	-webkit-mask: radial-gradient(farthest-side, transparent 62%, #000 64%);
	mask: radial-gradient(farthest-side, transparent 62%, #000 64%);
}

.pro-watch-experience .ring-item .ring-label {
	font-size: 11px;
	font-weight: 700;
	color: var(--c);
}

.pro-watch-experience .ring-item .ring-stats {
	font-size: 13px;
	font-weight: 600;
	margin-left: auto;
	color: #fff;
}

.pro-watch-experience .ring-item .ring-stats small {
	font-size: 8px;
	color: rgba(255, 255, 255, 0.6);
}

/* vitals */
.pro-watch-experience .face-vitals-pro {
	justify-content: center;
	gap: 6px;
	background: radial-gradient(circle, rgba(230, 57, 70, 0.28), transparent 62%);
}

.pro-watch-experience .vital-header {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: rgba(255, 255, 255, 0.65);
}

.pro-watch-experience .pulse-container {
	position: relative;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: radial-gradient(circle, rgba(230, 57, 70, 0.5), rgba(230, 57, 70, 0.05));
	animation: vtWatchPulse 1.6s ease-in-out infinite;
}

.pro-watch-experience .pulse-container .heart-icon {
	font-size: 30px;
}

.pro-watch-experience .vital-value {
	font-size: 56px;
	font-weight: 200;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.pro-watch-experience .vital-unit {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.2em;
	color: #ff6b6b;
}

@keyframes vtWatchPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.07); }
}

/* media */
.pro-watch-experience .media-card {
	width: 100%;
	background: rgba(255, 255, 255, 0.09);
	border-radius: 16px;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pro-watch-experience .media-art {
	font-size: 40px;
	text-align: center;
}

.pro-watch-experience .media-meta {
	text-align: center;
}

.pro-watch-experience .m-title {
	font-weight: 700;
	font-size: 14px;
}

.pro-watch-experience .m-artist {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.6);
}

.pro-watch-experience .media-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	font-size: 18px;
}

.pro-watch-experience .ctrl-play {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #fff;
	position: relative;
}

.pro-watch-experience .ctrl-play::after {
	content: "";
	position: absolute;
	left: 13px;
	top: 9px;
	border: 8px solid transparent;
	border-left: 11px solid #0b1b3a;
}

/* apps */
.pro-watch-experience .app-honeycomb {
	display: grid;
	grid-template-columns: repeat(3, 42px);
	grid-template-rows: repeat(3, 42px);
	gap: 12px;
	place-content: center;
	margin: auto;
}

.pro-watch-experience .app-node {
	display: grid;
	place-items: center;
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.12);
	font-size: 18px;
}

.pro-watch-experience .page-indicator {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 8px;
	display: flex;
	justify-content: center;
	gap: 7px;
	z-index: 6;
}

.pro-watch-experience .dot-btn {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: background 0.25s ease, width 0.25s ease;
}

.pro-watch-experience input[type="radio"]:nth-of-type(1):checked ~ .watch-assembly .b1,
.pro-watch-experience input[type="radio"]:nth-of-type(2):checked ~ .watch-assembly .b2,
.pro-watch-experience input[type="radio"]:nth-of-type(3):checked ~ .watch-assembly .b3,
.pro-watch-experience input[type="radio"]:nth-of-type(4):checked ~ .watch-assembly .b4,
.pro-watch-experience input[type="radio"]:nth-of-type(5):checked ~ .watch-assembly .b5 {
	width: 18px;
	background: #00c88f;
}

	@media (prefers-reduced-motion: reduce) {
	.pro-watch-experience .pulse-container,
	.pro-watch-experience .dot-btn {
		animation: none;
		transition: none;
	}
}

#page-root[data-page-template="pagina-04"] .vt-cta-plans {
	display: none;
}

/* ============================================================
   CONTRATAR PLAN — MODAL + SUCCESS
   ============================================================ */
#vt-contratar {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

#vt-contratar.open {
	display: flex;
}

#vt-contratar .vt-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(11, 27, 58, 0.62);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

#vt-contratar .vt-modal-panel {
	position: relative;
	width: 100%;
	max-width: 44rem;
	max-height: 92vh;
	overflow-y: auto;
	background: #0B1B3A;
	border-radius: 1.75rem;
	box-shadow: 0 30px 80px rgba(11, 27, 58, 0.35);
	padding: 1.75rem;
	animation: vtModalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (min-width: 640px) {
	#vt-contratar .vt-modal-panel {
		padding: 2.25rem;
	}
}

@keyframes vtModalIn {
	from { opacity: 0; transform: translateY(18px) scale(0.97); }
	to { opacity: 1; transform: none; }
}

#vt-contratar .vt-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 9999px;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	color: #0b1b3a;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

#vt-contratar .vt-modal-close:hover {
	background: #eef4fc;
	transform: rotate(90deg);
}

.vt-field-label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.78rem;
	font-weight: 700;
	color: #ffffff;
}

.vt-field-input {
	width: 100%;
	border: 1px solid #dbe3ee;
	border-radius: 0.85rem;
	background: #ffffff;
	padding: 0.6rem 0.85rem;
	font-size: 0.9rem;
	color: #0b1b3a;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vt-field-input::placeholder {
	color: #94a3b8;
}

.vt-field-input:focus {
	outline: none;
	border-color: #2f80ed;
	box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.15);
}

.vt-field-input:user-invalid {
	border-color: #e63946;
	box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.12);
}

/* plan display (read only) */
.vt-plan-display {
	display: flex;
	align-items: center;
}

.vt-plan-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.6rem 1.4rem;
	border-radius: 0.9rem;
	background: #64748b;
	font-family: "Poppins", sans-serif;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(11, 27, 58, 0.3);
	transition: background 0.25s ease;
}

.vt-plan-display[data-plan="Silver"] .vt-plan-badge {
	background: #9AA5AD;
}

.vt-plan-display[data-plan="Gold"] .vt-plan-badge {
	background: #C9A227;
}

.vt-plan-display[data-plan="Platinum"] .vt-plan-badge {
	background: #6E93B5;
}

.vt-pay-opts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.vt-pay-opt {
	position: relative;
	cursor: pointer;
	flex: 1 1 12rem;
}

.vt-pay-opt input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.vt-pay-opt span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.65rem 0.75rem;
	border-radius: 0.9rem;
	border: 2px solid #e2e8f0;
	background: #ffffff;
	font-size: 0.85rem;
	font-weight: 600;
	color: #475569;
	transition: all 0.2s ease;
}

.vt-pay-opt input:checked + span {
	border-color: #2f80ed;
	background: rgba(47, 128, 237, 0.08);
	color: #1d5ec7;
}

.vt-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.85rem 1.25rem;
	border: none;
	border-radius: 9999px;
	background: #ffffff;
	color: #2f80ed;
	font-family: "Poppins", sans-serif;
	font-size: 0.95rem;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 12px 28px rgba(11, 27, 58, 0.28);
	transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.vt-submit:hover:not(:disabled) {
	background: #eef4fc;
	transform: translateY(-1px);
}

.vt-submit:disabled {
	background: rgba(255, 255, 255, 0.55);
	color: rgba(47, 128, 237, 0.75);
	box-shadow: none;
	cursor: not-allowed;
}

/* success splash */
#vt-success {
	position: fixed;
	inset: 0;
	z-index: 100;
	overflow: hidden;
	display: none;
	align-items: center;
	justify-content: center;
	font-family: "Roboto", system-ui, sans-serif;
	background:
		radial-gradient(120% 90% at 12% 8%, #12294d 0%, var(--vt-ink) 52%, #060f20 100%);
	transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.75s ease;
}

#vt-success.is-active {
	display: flex;
}

#vt-success .vt-splash-bg,
#vt-success .vt-splash-grid,
#vt-success .vt-splash-glow,
#vt-success .vt-splash-scan {
	position: absolute;
	pointer-events: none;
}

#vt-success.is-leaving {
	opacity: 0;
	transform: translateY(-10px) scale(1.04);
	filter: blur(8px);
	pointer-events: none;
}

body.vt-modal-open {
	overflow: hidden;
}