/**
 * Portada — porte fiel del index de produccion.
 *
 * Reproduce el diseno tal cual, con los mismos nombres de clase, para poder
 * compararlo 1:1 contra WEB/index.html.txt. Valores, animaciones y puntos de
 * corte son los del original.
 *
 * Diferencias, todas invisibles:
 *  - Sin !important: no hay CSS de Elementor contra el cual pelear.
 *  - Los colores salen de theme.json (--wp--custom--home--*).
 *  - Los estilos estaban repartidos en 7 bloques <style> dentro del HTML;
 *    aca van en un archivo, cacheable y fuera del documento.
 *
 * NOTA SOBRE LAS TRES PALETAS
 * Esta pagina usa tres sistemas de color a la vez, igual que el original:
 *   hero        magenta #FF00FF + cian #00D4FF
 *   secciones   rosa #E91E8C + violeta #A855F7 + cian #22D3EE
 *   encabezado  cian #00F2FF + violeta #7000FF  (definido en style.css)
 * Se respetan para no alterar el diseno. Unificarlas seria una decision de
 * diseno, no de codigo.
 */

.home-a {
	--primary-neon: var(--wp--custom--home--neon-magenta);
	--secondary-neon: var(--wp--custom--home--neon-cyan);
	--dark-void: var(--wp--custom--home--ink);

	--pk: var(--wp--custom--home--pink);
	--pu: var(--wp--custom--home--purple);
	--cy: var(--wp--custom--home--cyan);
	--cb: rgba(255, 255, 255, 0.035);
	--ce: rgba(255, 255, 255, 0.07);
	--mu: rgba(255, 255, 255, 0.45);

	background: var(--dark-void);
	/* Los resplandores de 60vw se salen del ancho a proposito. */
	overflow-x: hidden;
}

/* ════════════════════════════════════════
   REVEAL + PARALLAX — solo PC ≥1024px
════════════════════════════════════════ */

@media (min-width: 1024px) {
	.scroll-section {
		opacity: 0;
		transform: translateY(36px);
		transition:
			opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
			transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.scroll-section.is-visible {
		opacity: 1;
		transform: translateY(0);
	}

	/*
	 * Parallax declarativo. El JS escribe UNA variable por seccion (--pxy en
	 * el hero, --pxy2 en la seccion 2) y el CSS deriva cada desplazamiento con
	 * calc(). Antes eran 7 escrituras de .style.transform por frame, es decir
	 * 7 invalidaciones de estilo. Los factores son los mismos: efecto identico.
	 */
	.bg-glow.top-left {
		transform: translate(calc(var(--pxy, 0px) * 0.07), calc(var(--pxy, 0px) * 0.10));
	}

	.bg-glow.bottom-right {
		transform: translate(calc(var(--pxy, 0px) * -0.05), calc(var(--pxy, 0px) * -0.07));
	}

	.hero-content-wrapper { transform: translateY(calc(var(--pxy, 0px) * -0.06)); }
	.hero-image-wrapper   { transform: translateY(calc(var(--pxy, 0px) * -0.14)); }
	.vrl2-blob.b1         { transform: translateY(calc(var(--pxy2, 0px) * 0.09)); }
	.vrl2-blob.b2         { transform: translateY(calc(var(--pxy2, 0px) * -0.06)); }
}

/* ══════════════════════════════════════════════════ SECCIÓN 1 — HERO */

.hero-viralizate-final {
	background: var(--dark-void);
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: relative;
	overflow: hidden;
	padding: 60px 5%;
}

.bg-glow {
	position: absolute;
	width: 60vw;
	height: 60vw;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.15;
	z-index: 1;
	will-change: transform;
}

.bg-glow.top-left     { top: -20%; left: -10%; background: var(--primary-neon); }
.bg-glow.bottom-right { bottom: -20%; right: -10%; background: var(--secondary-neon); }

/* Fundido hacia la seccion 2. */
.hero-viralizate-final::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 180px;
	background: linear-gradient(to bottom, transparent, #0a0a14);
	z-index: 2;
	pointer-events: none;
}

.hero-main-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	max-width: var(--wp--custom--ancho--general);
	width: 100%;
	gap: 40px;
	z-index: 10;
	position: relative;
}

.hero-content-wrapper {
	flex: 1;
	text-align: left;
	max-width: 600px;
	will-change: transform;
}

.label-container { margin-bottom: 20px; }

.top-label {
	background: rgba(0, 212, 255, 0.07);
	color: var(--secondary-neon);
	padding: 10px 20px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
	border: 1px solid rgba(0, 212, 255, 0.25);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
	overflow: hidden;
}

.top-label::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.12), transparent);
	transform: translateX(-100%);
	animation: shimmer-label 3.5s ease-in-out infinite;
}

@keyframes shimmer-label {
	0%       { transform: translateX(-100%); }
	50%,100% { transform: translateX(200%); }
}

.label-dot {
	width: 8px;
	height: 8px;
	background: var(--secondary-neon);
	border-radius: 50%;
	flex-shrink: 0;
	animation: beacon 1.8s ease-in-out infinite;
}

@keyframes beacon {
	0%   { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.8); }
	70%  { box-shadow: 0 0 0 9px rgba(0, 212, 255, 0); }
	100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

.main-heading {
	/* max bajado de 4.5rem a 3.4rem: el H1 nuevo es una frase larga
	   ("Comprá seguidores, likes y reproducciones en Argentina") y con
	   4.5rem en el contenedor de 600px caia en 5 lineas con una "y"
	   huerfana. A 3.4rem entra en 3 lineas limpias. El ajuste de mobile
	   (<=480px) baja de 2.4rem a 2.15rem por el mismo motivo: "reproducciones"
	   es una palabra larga y a 2.4rem quedaba al borde en pantallas de 320px. */
	font-size: clamp(2.5rem, 4vw, 3.4rem);
	font-weight: 800;
	line-height: 1.05;
	margin: 20px 0;
	color: #fff;
}

.glow-text {
	background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon), var(--primary-neon));
	background-size: 200% auto;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.45));
	animation: gradient-flow 4s linear infinite;
}

@keyframes gradient-flow {
	0%   { background-position: 0% center; }
	100% { background-position: 200% center; }
}

.main-description {
	color: #a8a8c0;
	font-size: 1.15rem;
	line-height: 1.7;
	margin-bottom: 40px;
}

.platforms-grid-final {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 40px;
}

.card-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	padding: 18px 10px;
	border-radius: 18px;
	text-align: center;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

/* Barrido de luz diagonal al pasar el mouse. */
.card-item::before {
	content: '';
	position: absolute;
	top: -60%;
	left: -60%;
	width: 220%;
	height: 220%;
	background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.06) 50%, transparent 70%);
	transform: rotate(25deg) translateY(-100%);
	transition: transform 0.55s ease;
}

.card-item:hover::before { transform: rotate(25deg) translateY(100%); }

/* Subrayado que crece desde el centro. */
.card-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 65%;
	height: 2px;
	background: var(--accent, var(--primary-neon));
	border-radius: 2px;
	box-shadow: 0 0 12px var(--accent, var(--primary-neon));
	transition: transform 0.35s ease;
}

.card-item:hover::after { transform: translateX(-50%) scaleX(1); }

.card-item img {
	width: 34px;
	height: 34px;
	filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.15));
	transition: all 0.35s ease;
}

.card-item:hover {
	background: rgba(255, 255, 255, 0.07);
	border-color: var(--accent, var(--primary-neon));
	transform: translateY(-10px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45),
		0 0 30px color-mix(in srgb, var(--accent, #ff00ff) 20%, transparent);
}

.card-item:hover img {
	filter: drop-shadow(0 0 14px var(--accent, var(--primary-neon)));
	transform: scale(1.18);
}

.card-item span {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.8rem;
	font-weight: 700;
	transition: color 0.35s ease;
}

.card-item:hover span { color: #fff; }

.trust-indicators {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 25px;
}

.indicator-pill {
	font-size: 0.85rem;
	font-weight: 600;
	color: #dcdcf5;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 50px;
	transition: all 0.3s ease;
}

.indicator-pill:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.hero-image-wrapper {
	flex: 1;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 420px;
	will-change: transform;
}

/* display:contents deja que <img> sea hijo directo del flex del wrapper. */
.hero-image-wrapper picture { display: contents; }

.orbit-ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid transparent;
	animation: orbit-rotate linear infinite;
}

.ring-1 {
	width: 72%;
	height: 72%;
	border-top-color: rgba(0, 212, 255, 0.35);
	border-left-color: rgba(0, 212, 255, 0.1);
	animation-duration: 14s;
}

.ring-2 {
	width: 90%;
	height: 90%;
	border-right-color: rgba(255, 0, 255, 0.3);
	border-bottom-color: rgba(255, 0, 255, 0.08);
	animation-duration: 22s;
	animation-direction: reverse;
}

@keyframes orbit-rotate {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

.floating-streamer {
	width: 120%;
	max-width: 800px;
	height: auto;
	z-index: 5;
	position: relative;
	filter: drop-shadow(0 10px 60px rgba(0, 0, 0, 0.65));
	animation: floating 6s ease-in-out infinite;
}

.pulsing-neon-sphere {
	position: absolute;
	width: 80%;
	height: 80%;
	background: radial-gradient(circle at 38% 38%, var(--primary-neon), transparent 65%);
	filter: blur(80px);
	opacity: 0.22;
	animation: pulse 5s ease-in-out infinite;
}

.hero-dot {
	display: none;
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

@keyframes floating {
	0%,100% { transform: translateY(0) rotate(0deg); }
	50%     { transform: translateY(-25px) rotate(1deg); }
}

@keyframes pulse {
	0%,100% { transform: scale(1); opacity: 0.18; }
	50%     { transform: scale(1.15); opacity: 0.32; }
}

/* --------------------------------------- Notificaciones flotantes */

.ig-notif {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(18, 18, 18, 0.88);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50px;
	padding: 10px 18px 10px 10px;
	z-index: 20;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
	opacity: 0;
	pointer-events: none;
	white-space: nowrap;
}

.ig-notif-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.notif-likes .ig-notif-icon      { background: linear-gradient(135deg, #f9266e, #d10057); }
.notif-seguidores .ig-notif-icon { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }

.ig-notif-icon svg { width: 18px; height: 18px; }

.ig-notif-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.ig-notif-num   { font-size: 0.95rem; font-weight: 800; color: #fff; }
.ig-notif-label { font-size: 0.72rem; font-weight: 500; color: rgba(255, 255, 255, 0.55); }

.notif-1 { top: 18%; right: -5%; }
.notif-2 { top: 42%; right: -8%; }
.notif-3 { top: 62%; right: -3%; }
.notif-4 { top: 28%; left: 2%; }

/* Aparecen y desaparecen por turnos, en un ciclo de 14 s. */
@keyframes notif-show-right {
	0%   { opacity: 0; transform: translateX(24px) scale(0.92); }
	8%   { opacity: 1; transform: translateX(0) scale(1); }
	40%  { opacity: 1; transform: translateX(0) scale(1); }
	52%  { opacity: 0; transform: translateX(12px) scale(0.95); }
	100% { opacity: 0; transform: translateX(24px) scale(0.92); }
}

@keyframes notif-show-left {
	0%   { opacity: 0; transform: translateX(-24px) scale(0.92); }
	8%   { opacity: 1; transform: translateX(0) scale(1); }
	40%  { opacity: 1; transform: translateX(0) scale(1); }
	52%  { opacity: 0; transform: translateX(-12px) scale(0.95); }
	100% { opacity: 0; transform: translateX(-24px) scale(0.92); }
}

.notif-1 { animation: notif-show-right 14s ease-in-out infinite; animation-delay: 0.5s; }
.notif-2 { animation: notif-show-right 14s ease-in-out infinite; animation-delay: 3.5s; }
.notif-3 { animation: notif-show-right 14s ease-in-out infinite; animation-delay: 7s; }
.notif-4 { animation: notif-show-left 14s ease-in-out infinite; animation-delay: 10.5s; }

@media (max-width: 1100px) {
	.hero-main-container { gap: 20px; }
	.floating-streamer { width: 100%; }
}

@media (max-width: 992px) {
	.hero-viralizate-final { padding: 80px 20px; min-height: auto; }
	.hero-main-container { flex-direction: column; text-align: center; }
	.hero-content-wrapper { order: 1; max-width: 100%; text-align: center; }
	.hero-image-wrapper { order: 2; margin-top: 10px; width: 100%; min-height: 240px; }
	.floating-streamer { width: 90%; max-width: 450px; }
	.platforms-grid-final { max-width: 500px; margin: 0 auto 40px auto; }
	.trust-indicators { justify-content: center; }
	.notif-1 { top: 12%; right: 2%; }
	.notif-2 { top: 40%; right: 0; }
	.notif-3 { top: 65%; right: 4%; }
	.notif-4 { top: 25%; left: 0; }
}

@media (max-width: 480px) {
	.main-heading { font-size: 2.15rem; }
	.platforms-grid-final { gap: 10px; }
	.card-item { padding: 14px 8px; }
	.card-item span { font-size: 0.7rem; }
	.floating-streamer { width: 100%; }
	.trust-indicators { gap: 8px; }
	.indicator-pill { font-size: 0.78rem; padding: 7px 12px; }
	.ig-notif { padding: 8px 14px 8px 8px; gap: 8px; }
	.ig-notif-icon { width: 28px; height: 28px; }
	.ig-notif-icon svg { width: 14px; height: 14px; }
	.ig-notif-num { font-size: 0.82rem; }
	.ig-notif-label { font-size: 0.65rem; }
	.notif-1 { right: -2%; }
	.notif-2 { right: -2%; }
	.notif-3 { right: 0; }
	.notif-4 { left: -2%; }
}

/* ═══════════════════════════ FRASE ILUMINADA — solo pantallas chicas */

.vrl-transition-phrase {
	display: none;
	background: transparent;
	padding: 4px 0 16px;
	text-align: center;
	position: relative;
	overflow: visible;
	width: 100%;
}

/* Orbe aurora izquierdo — magenta. */
.vrl-transition-phrase::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -5%;
	transform: translateY(-50%);
	width: 55vw;
	height: 55vw;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 0, 255, 0.22) 0%, transparent 70%);
	filter: blur(40px);
	pointer-events: none;
	z-index: 0;
	animation: vrl-orb-l 5s ease-in-out infinite;
}

@keyframes vrl-orb-l {
	0%,100% { transform: translateY(-50%) scale(1); opacity: 0.7; }
	50%     { transform: translateY(-60%) scale(1.15); opacity: 1; }
}

/* Orbe aurora derecho — cian. */
.vrl-transition-phrase::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -5%;
	transform: translateY(-50%);
	width: 50vw;
	height: 50vw;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
	filter: blur(38px);
	pointer-events: none;
	z-index: 0;
	animation: vrl-orb-r 6s ease-in-out infinite 1s;
}

@keyframes vrl-orb-r {
	0%,100% { transform: translateY(-50%) scale(1); opacity: 0.65; }
	50%     { transform: translateY(-40%) scale(1.15); opacity: 1; }
}

.vrl-tp-text {
	font-size: clamp(1.75rem, 8.5vw, 2.4rem);
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: -0.025em;
	position: relative;
	z-index: 2;
	display: inline-block;
}

/* Linea decorativa que late encima del texto. */
.vrl-tp-text::before {
	content: '';
	display: block;
	height: 1.5px;
	width: 50px;
	margin: 0 auto 14px;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, #ff00ff, #00d4ff, transparent);
	animation: vrl-bar 2.4s ease-in-out infinite;
}

@keyframes vrl-bar {
	0%,100% { width: 36px; opacity: 0.5; }
	50%     { width: 80px; opacity: 1; }
}

/* "Viralizate," — neon blanco con parpadeo de cartel. */
.vrl-tp-main {
	display: block;
	color: #fff;
	text-shadow:
		0 0 8px rgba(255, 255, 255, 1),
		0 0 20px rgba(255, 0, 255, 0.85),
		0 0 45px rgba(255, 0, 255, 0.5),
		0 0 80px rgba(255, 0, 255, 0.2);
	animation: vrl-flicker 7s ease-in-out infinite;
}

@keyframes vrl-flicker {
	0%,18%,20%,22%,53%,55%,100% {
		text-shadow:
			0 0 8px rgba(255, 255, 255, 1),
			0 0 20px rgba(255, 0, 255, 0.85),
			0 0 45px rgba(255, 0, 255, 0.5),
			0 0 80px rgba(255, 0, 255, 0.2);
		opacity: 1;
	}
	19%,54% {
		text-shadow: none;
		opacity: 0.82;
	}
	21% {
		text-shadow:
			0 0 8px rgba(255, 255, 255, 0.6),
			0 0 18px rgba(255, 0, 255, 0.4);
		opacity: 0.93;
	}
}

/* "no esperes más!" — gradiente liquido magenta→blanco→cian. */
.vrl-tp-text em {
	font-style: normal;
	display: block;
	font-size: 0.88em;
	background: linear-gradient(90deg, #ff00ff 0%, #ffffff 30%, #00d4ff 60%, #ff00ff 100%);
	background-size: 260% auto;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	animation: vrl-liquid 2.8s linear infinite;
	filter:
		drop-shadow(0 0 10px rgba(0, 212, 255, 0.7))
		drop-shadow(0 0 22px rgba(255, 0, 255, 0.45));
}

@keyframes vrl-liquid {
	0%   { background-position: 0% center; }
	100% { background-position: 260% center; }
}

@media (max-width: 1023px) {
	.vrl-transition-phrase {
		display: block;
		order: 3;
	}
}

/* ════════════════════════════════════════ SECCIÓN 2 — PLATAFORMAS */

.vrl2 {
	background: var(--dark-void);
	padding: 80px 5%;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
}

.vrl2-fx {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 0;
}

/* Fundido desde la seccion 1. */
.vrl2::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 180px;
	background: linear-gradient(to bottom, #0a0a14, transparent);
	z-index: 2;
	pointer-events: none;
}

.vrl2-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.15;
	will-change: transform;
}

.vrl2-blob.b1 { width: 60vw; height: 60vw; background: #ff00ff; top: -20%; left: -10%; }
.vrl2-blob.b2 { width: 60vw; height: 60vw; background: #00d4ff; bottom: -20%; right: -10%; }

.vrl2-inner {
	max-width: var(--wp--custom--ancho--general);
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 56px;
	align-items: center;
	position: relative;
	z-index: 10;
}

.vrl2-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 500px;
}

.vrl2-ring {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.vrl2-ring.r1 {
	width: 76%;
	height: 76%;
	border: 1px solid rgba(233, 30, 140, 0.12);
	box-shadow: inset 0 0 60px rgba(233, 30, 140, 0.04);
	animation: vrl2-spin 30s linear infinite;
}

.vrl2-ring.r2 {
	width: 96%;
	height: 96%;
	border: 1px dashed rgba(168, 85, 247, 0.09);
	animation: vrl2-spin 48s linear infinite reverse;
}

@keyframes vrl2-spin { to { transform: rotate(360deg); } }

.vrl2-logo {
	width: 72%;
	max-width: 360px;
	height: auto;
	position: relative;
	z-index: 5;
	filter: drop-shadow(0 0 50px rgba(233, 30, 140, 0.22)) drop-shadow(0 0 100px rgba(168, 85, 247, 0.1));
}

.vrl2-badge {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: rgba(8, 8, 18, 0.82);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 100px;
	padding: 8px 16px 8px 8px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
	z-index: 10;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.vrl2-badge-ico {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #fff;
	flex-shrink: 0;
}

.vrl2-badge-ico .vrlz-icon { width: 14px; height: 14px; }

.vrl2-badge-ico.ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.vrl2-badge-ico.tt { background: #111; color: #69c9d0; }
.vrl2-badge-ico.yt { background: #ff0000; }

.vrl2-b1 { top: 10%; left: -18px; animation: vrl2-bob 4.2s ease-in-out infinite; }
.vrl2-b2 { top: 45%; right: -22px; animation: vrl2-bob 5.1s ease-in-out infinite 0.7s; }
.vrl2-b3 { bottom: 14%; left: -12px; animation: vrl2-bob 4.7s ease-in-out infinite 1.5s; }

@keyframes vrl2-bob {
	0%,100% { transform: translateY(0); }
	50%     { transform: translateY(-9px); }
}

.vrl2-dot {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.vrl2-dot.d1 { width: 6px; height: 6px; background: var(--pk); top: 18%; right: 14%; animation: vrl2-twinkle 2.6s ease-in-out infinite; }
.vrl2-dot.d2 { width: 4px; height: 4px; background: var(--pu); top: 36%; left: 9%; animation: vrl2-twinkle 3.2s ease-in-out infinite 0.5s; }
.vrl2-dot.d3 { width: 5px; height: 5px; background: var(--cy); bottom: 30%; right: 9%; animation: vrl2-twinkle 2.1s ease-in-out infinite 1.1s; }
.vrl2-dot.d4 { width: 3px; height: 3px; background: #fff; bottom: 14%; right: 28%; animation: vrl2-twinkle 3.8s ease-in-out infinite 0.3s; }

@keyframes vrl2-twinkle {
	0%,100% { opacity: 0.2; transform: scale(1); }
	50%     { opacity: 1; transform: scale(1.8); }
}

.vrl2-content { display: flex; flex-direction: column; }

.vrl2-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(233, 30, 140, 0.08);
	border: 1px solid rgba(233, 30, 140, 0.22);
	border-radius: 100px;
	padding: 7px 16px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: var(--pk);
	margin-bottom: 22px;
	width: fit-content;
}

.vrl2-eyebrow-dot {
	width: 7px;
	height: 7px;
	background: var(--pk);
	border-radius: 50%;
	animation: vrl2-beacon 2s ease-in-out infinite;
}

@keyframes vrl2-beacon {
	0%   { box-shadow: 0 0 0 0 rgba(233, 30, 140, 0.8); }
	70%  { box-shadow: 0 0 0 8px rgba(233, 30, 140, 0); }
	100% { box-shadow: 0 0 0 0 rgba(233, 30, 140, 0); }
}

.vrl2-h2 {
	font-size: clamp(30px, 3.2vw, 56px);
	font-weight: 900;
	color: #fff;
	line-height: 1.07;
	letter-spacing: -0.03em;
	margin: 0 0 18px;
}

.vrl2-grad {
	background: linear-gradient(90deg, var(--pk) 0%, var(--pu) 55%, var(--cy) 100%);
	background-size: 200% auto;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	animation: vrl2-gradflow 5s linear infinite;
}

@keyframes vrl2-gradflow {
	0%   { background-position: 0% center; }
	100% { background-position: 200% center; }
}

.vrl2-desc {
	font-size: clamp(14px, 1.15vw, 17px);
	color: var(--mu);
	line-height: 1.78;
	margin: 0 0 34px;
	max-width: 470px;
}

.vrl2-platforms {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 11px;
}

.vrl2-card {
	background: var(--cb);
	border: 1px solid var(--ce);
	border-radius: 20px;
	padding: 18px 14px 16px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.vrl2-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--ac, var(--pk));
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 20px 20px 0 0;
	box-shadow: 0 0 12px var(--ac, var(--pk));
}

.vrl2-card:hover::before { opacity: 1; }

.vrl2-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 65%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.vrl2-card:hover::after { opacity: 1; }

.vrl2-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 255, 255, 0.13);
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.vrl2-card-ico {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	color: #fff;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.vrl2-card-ico .vrlz-icon { width: 17px; height: 17px; }

.vrl2-card-name { font-size: 14px; font-weight: 800; color: #fff; position: relative; z-index: 1; line-height: 1; }
.vrl2-card-qty  { font-size: 11px; color: var(--mu); font-weight: 500; position: relative; z-index: 1; }

.vrl2-card-cta {
	font-size: 11px;
	font-weight: 700;
	color: var(--ac, var(--pk));
	position: relative;
	z-index: 1;
	opacity: 0.6;
	transition: opacity 0.2s;
	margin-top: 2px;
}

.vrl2-card:hover .vrl2-card-cta { opacity: 1; }

.vrl2-stats {
	display: flex;
	gap: 28px;
	margin-top: 30px;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.vrl2-stat-num {
	display: block;
	font-size: clamp(20px, 2vw, 26px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1;
	background: linear-gradient(90deg, var(--pk), var(--pu));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.vrl2-stat-lbl {
	display: block;
	font-size: 12px;
	color: var(--mu);
	font-weight: 500;
	margin-top: 5px;
}

@media (max-width: 1050px) {
	.vrl2 { padding: 60px 4%; }
	.vrl2-inner { gap: 36px; }
}

@media (max-width: 820px) {
	.vrl2-inner { grid-template-columns: 1fr; }

	/* El logo mide 700x391: a 52% de ancho son ~110px de alto, no 290. Los
	   300px del original estaban calculados para el 900x871 que declaraba el
	   HTML, y dejaban al logo nadando con las badges flotando lejos. */
	.vrl2-visual { min-height: 190px; order: 2; }
	.vrl2-content { order: 1; text-align: center; align-items: center; }
	.vrl2-logo { width: 52%; max-width: 220px; }
	.vrl2-b2 { right: -5px; }
	.vrl2-eyebrow { margin-left: auto; margin-right: auto; }
	.vrl2-desc { margin-left: auto; margin-right: auto; }
	.vrl2-platforms { grid-template-columns: repeat(2, 1fr); gap: 12px; width: 100%; }
	.vrl2-card { align-items: center; text-align: center; padding: 22px 16px; }
	.vrl2-card-ico { width: 46px; height: 46px; font-size: 20px; }
	.vrl2-card-ico .vrlz-icon { width: 20px; height: 20px; }
	.vrl2-card-name { font-size: 15px; }
	.vrl2-card-qty { font-size: 12px; }
	.vrl2-stats { justify-content: center; }
}

@media (max-width: 520px) {
	.vrl2-h2 { font-size: 28px; }
	.vrl2-platforms { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.vrl2-card { padding: 20px 12px; }
	.vrl2-stats { gap: 16px; flex-wrap: wrap; }
	.vrl2-b1, .vrl2-b3 { left: 0; }
	.vrl2-b2 { right: 0; }
}

/* ════════════════════════════════════════ SECCIÓN 3 — TESTIMONIOS */

.vrl3 {
	background: #0a0a14;
	padding: 80px 5%;
	position: relative;
}

.vrl3-inner { max-width: var(--wp--custom--ancho--general); margin: 0 auto; }

.vrl3-head { text-align: center; margin-bottom: 50px; }

.vrl3-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(233, 30, 140, 0.08);
	border: 1px solid rgba(233, 30, 140, 0.22);
	border-radius: 100px;
	padding: 7px 16px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: #e91e8c;
	margin-bottom: 18px;
}

.vrl3-eyebrow-dot { width: 7px; height: 7px; background: #e91e8c; border-radius: 50%; }

.vrl3-h2 {
	font-size: clamp(26px, 3vw, 40px);
	font-weight: 900;
	color: #fff;
	letter-spacing: -0.02em;
	margin: 0 0 10px;
}

.vrl3-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.vrl3-card {
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 20px;
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.vrl3-card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.15); }

.vrl3-stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; }
.vrl3-headline { font-weight: 800; color: #fff; font-size: 15px; margin: 0; font-style: italic; }
.vrl3-quote { color: rgba(255, 255, 255, 0.65); font-size: 14px; line-height: 1.65; margin: 0; flex-grow: 1; }

.vrl3-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.vrl3-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 800;
	font-size: 14px;
	flex-shrink: 0;
}

.vrl3-author-name { font-weight: 700; color: #fff; font-size: 14px; line-height: 1.3; }
.vrl3-author-role { font-size: 12px; color: rgba(255, 255, 255, 0.5); }
.vrl3-verified { font-size: 11px; color: #22c55e; font-weight: 600; margin-top: 2px; }

@media (max-width: 900px) {
	.vrl3-grid { grid-template-columns: repeat(2, 1fr); }
	.vrl3-desktop-only { display: none; }
}

@media (max-width: 600px) {
	.vrl3 { padding: 60px 5%; }
	.vrl3-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════ SECCIÓN 4 — ENLACES SEO */

.vrl4-seo {
	background: #0a0a14;
	padding: 60px 5% 70px;
}

.vrl4-inner { max-width: var(--wp--custom--ancho--general); margin: 0 auto; text-align: center; }

.vrl4-h2 {
	font-size: clamp(22px, 2.5vw, 32px);
	font-weight: 900;
	color: #fff;
	letter-spacing: -0.02em;
	margin: 0 0 10px;
}

.vrl4-sub {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto 32px;
}

.vrl4-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.vrl4-pill {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 999px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	color: #dcdcf5;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.vrl4-pill:hover {
	border-color: #e91e8c;
	color: #e91e8c;
	background: rgba(233, 30, 140, 0.08);
}

.vrl4-foot { font-size: 12px; color: rgba(255, 255, 255, 0.4); margin: 28px 0 0; }

@media (max-width: 600px) {
	.vrl4-seo { padding: 44px 6% 56px; }
	.vrl4-pill { padding: 9px 16px; font-size: 13px; }
}

/* ══════════════════════════════════ SECCIÓN 5 — TEXTO SEO Y FAQ */

.vrl5-seo,
.vrl5-faq {
	background: #0a0a14;
	padding: 56px 5%;
}

.vrl5-faq { padding-top: 0; }

/* Bloque hub SEO entre el selector de red y los testimonios. Mismo fondo y
   ritmo que .vrl5-seo, pero SIN content-visibility: es corto y aparece alto
   en la pagina, asi que reservar 1400px de alto estimado provocaria salto. */
.vrl-hub { background: #0a0a14; padding: 56px 5%; }

.vrl5-inner { max-width: var(--wp--custom--ancho--general); margin: 0 auto; }

.vrl5-h2 {
	font-size: clamp(22px, 2.5vw, 32px);
	font-weight: 900;
	color: #fff;
	letter-spacing: -0.02em;
	margin: 0 0 22px;
	text-align: center;
}

.vrl5-h3 {
	font-size: clamp(17px, 1.6vw, 20px);
	font-weight: 800;
	color: #fff;
	margin: 26px 0 8px;
}

.vrl5-p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.7;
	margin: 0 0 12px;
}

.vrl5-p strong { color: rgba(255, 255, 255, 0.9); font-weight: 700; }

.vrl5-q {
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.03);
	margin: 0 0 10px;
	overflow: hidden;
}

.vrl5-q summary {
	cursor: pointer;
	list-style: none;
	padding: 16px 20px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
}

.vrl5-q summary::-webkit-details-marker { display: none; }

.vrl5-q summary::after {
	content: '+';
	font-size: 22px;
	font-weight: 400;
	color: #e91e8c;
	line-height: 1;
	transition: transform 0.2s ease;
}

.vrl5-q[open] summary::after { content: '\2212'; }
.vrl5-q[open] summary { color: #e91e8c; }

.vrl5-a {
	padding: 0 20px 18px;
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.65;
}

.vrl5-p a,
.vrl5-link {
	color: #e91e8c;
	text-decoration: none;
	border-bottom: 1px solid rgba(233, 30, 140, 0.35);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.vrl5-p a:hover,
.vrl5-link:hover {
	color: #ff4fb0;
	border-bottom-color: #ff4fb0;
}

.vrl5-foot { font-size: 12px; color: rgba(255, 255, 255, 0.4); margin: 24px 0 0; text-align: center; }

@media (max-width: 600px) {
	.vrl5-seo,
	.vrl5-faq,
	.vrl-hub { padding-left: 6%; padding-right: 6%; }
	.vrl5-q summary { font-size: 14px; padding: 14px 16px; }
}

/* ═════════════════════ OPTIMIZACIÓN EN PANTALLAS CHICAS ═════════════════
   Apaga animaciones y desenfoques costosos: son ~11 capas borrosas que el
   celular tiene que rasterizar aparte antes de componer, y una de ellas
   cuelga del elemento LCP. Es lo que empuja el Speed Index, no el
   JavaScript. En escritorio (≥1024px) no se toca nada.
   ══════════════════════════════════════════════════════════════════════ */

@media (max-width: 1023px) {
	.glow-text,
	.vrl2-grad,
	.vrl-tp-main,
	.vrl-tp-text em,
	.vrl-tp-text::before,
	.vrl-transition-phrase::before,
	.vrl-transition-phrase::after,
	.pulsing-neon-sphere,
	.top-label::after,
	.label-dot,
	.floating-streamer,
	.vrl2-b1,
	.vrl2-b2,
	.vrl2-b3,
	.vrl2-dot,
	.vrl2-eyebrow-dot,
	.notif-1,
	.notif-2,
	.notif-3,
	.notif-4 {
		animation: none;
	}

	.vrl-transition-phrase::before,
	.vrl-transition-phrase::after {
		opacity: 0.8;
	}

	.ig-notif {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: rgba(14, 14, 14, 0.94);
		opacity: 1;
		transform: none;
	}

	.vrl2-badge {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: rgba(8, 8, 18, 0.94);
	}

	.hero-content-wrapper,
	.hero-image-wrapper { will-change: auto; }

	.bg-glow,
	.vrl2-blob,
	.pulsing-neon-sphere,
	.orbit-ring,
	.vrl2-ring { display: none; }

	.hero-dot {
		display: block;
		animation: vrl2-twinkle 2.6s ease-in-out infinite;
	}

	.hero-dot.d1 { width: 6px; height: 6px; background: var(--secondary-neon); top: 15%; right: 10%; }
	.hero-dot.d2 { width: 4px; height: 4px; background: var(--primary-neon); top: 32%; left: 6%; animation-delay: 0.5s; }
	.hero-dot.d3 { width: 5px; height: 5px; background: var(--secondary-neon); bottom: 22%; right: 8%; animation-delay: 1.1s; }
	.hero-dot.d4 { width: 3px; height: 3px; background: #fff; bottom: 10%; left: 12%; animation-delay: 0.3s; }

	/* Desenfoques que seguian pintandose aunque la animacion estuviera
	   apagada. El de .floating-streamer es el mas caro: obliga a rasterizar
	   una copia borrosa de 800x800 antes de pintar el elemento LCP. */
	.floating-streamer,
	.vrl2-logo,
	.glow-text,
	.card-item img,
	.vrl-tp-text em { filter: none; }

	.vrl-tp-main { text-shadow: 0 0 12px rgba(255, 0, 255, 0.75); }

	/* No se hace layout ni paint de estas secciones hasta acercarse al
	   viewport. Sin cambio visual: hoy se pintan todas en la carga inicial
	   aunque nadie las vea. contain-intrinsic-size reserva el alto estimado
	   para que no haya salto de scroll. */
	.vrl3, .vrl4-seo, .vrl5-seo, .vrl5-faq { content-visibility: auto; }
	.vrl3     { contain-intrinsic-size: auto 1500px; }
	.vrl4-seo { contain-intrinsic-size: auto 900px; }
	.vrl5-seo { contain-intrinsic-size: auto 1400px; }
	.vrl5-faq { contain-intrinsic-size: auto 900px; }
}
