
	body {
		font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
		background: #050608;
		color: #ffffff;
		scroll-snap-type: y mandatory;
		margin: 0;
	}

	/* ============================
	CINEMATIC TITLE — VERSION PRO
	============================ */
	.cinematic-title {
	padding:40px 30px 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
	}

	/* Glow azul detrás del texto */
	.cinematic-title::before {
	content: "";
	position: absolute;
	top: -20%;
	left: 50%;
	transform: translateX(-50%);
	width: 140%;
	height: 220px;
	filter: blur(18px);
	opacity: 0.55;
	pointer-events: none;
	}

	/* Spotlight vertical */
	.cinematic-title::after {
	content: "";
	position: absolute;
	top: -30%;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 200%;
	background: linear-gradient(
		180deg,
		rgba(0,183,255,0.7),
		rgba(0,183,255,0)
	);
	filter: blur(12px);
	opacity: 0.5;
	pointer-events: none;
	}

	.cinematic-inner {
	position: relative;
	z-index: 2;
	padding: 0 16px;
	}

	.cinematic-heading {
	font-family: "Russo One", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 38px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.01em	;
	max-width: 900px;
	margin: 0 auto;
	line-height: 1.25;
	text-wrap: balance;

	/* Degradado animado */
	background: linear-gradient(
		120deg,
		#ffffff,
		#8ae8ff,
		#00b7ff,
		#8ae8ff,
		#ffffff
	);
	background-size: 250% 100%;
	-webkit-background-clip: text;
	background-clip: none;
	color: transparent;

	text-shadow: 0 0 10px rgba(0, 183, 255, 0.4);

	/* Animaciones: aparición + brillo repetitivo */
	opacity: 0;
	transform: translateY(16px);
	animation:
		cinematicFade 0.9s ease-out forwards,
		cinematicShine 6s ease-in-out 1.2s infinite;
	}

	/* Fade inicial */
	@keyframes cinematicFade {
	to {
		opacity: 1;
		transform: translateY(0);
	}
	}

	/* Brillo suave repetitivo */
	@keyframes cinematicShine {
	0% {
		background-position: -120% 0;
	}
	50% {
		background-position: 120% 0;
	}
	100% {
		background-position: -120% 0;
	}
	}

	/* Mobile */
	@media (max-width: 768px) {
	.cinematic-heading {
		font-size: 26px;
		letter-spacing: 0.12em;
	}
	}


	/* El body se desplaza normal, pero con scroll-snap */
	html, body {
		height: 95%;
		scroll-behavior: smooth;
	}


	/* Cada sección toma toda la altura de la ventana
	y encaja al hacer scroll */
	.page-section {
		min-height: 90vh;           /* cada sección ocupa toda la pantalla */
		scroll-snap-align: center;  /* encaja al inicio de la sección */
		scroll-snap-stop: always;
		display: flex;
		align-items: center;
		position: relative;
		background-color: #050608;   /* color sólido de fondo por si la imagen no cubre */
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}

	/* FONDO CON REJILLA / HERO */
	.hero-wrapper {
	padding: 40px 0 60px;
	}

    .container {
      width: 90%;
      max-width: 90%;
      margin: 0 auto;
      padding: 0 16px;
    }

	/* GRID PRINCIPAL */
	.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 3.5fr) minmax(0, 4.5fr);
	gap: 48px;
	align-items: center;
	}

	/* Logo */
	.hero-left-logo {
	margin-bottom: 30px;
	}


	.hero-left-logo img {
	height: 150px;
	width: auto;
	display: block;
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
	}


	/* Subtítulo */
	.hero-subtitle-city {
	font-size: 22px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #00b7ff;
	font-weight: 600;
	margin-bottom: 10px;
	opacity: 0.95;

	}

	/* BOTÓN PRINCIPAL */
	.hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 42px;
	border-radius: 999px;
	border: none;
	background: linear-gradient(135deg, #00b7ff, #0252ff);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	cursor: pointer;
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.9),
				0 0 18px rgba(0, 183, 255, 0.6);
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease,
		filter 0.18s ease;
	}

	.hero-photo-main {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.12);
	transform: translateY(0);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	}

	.hero-photo-main img,
	.hero-photo-main.video-main video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	}


	/* ============================
	AJUSTES HERO PARA MÓVIL
	============================ */
	@media (max-width: 768px) {
	/* Que las secciones no fuerzen tanta altura en móvil */
	.page-section {
		min-height: auto;
		scroll-snap-align: none;
		align-items: flex-start;
		padding-top: 24px;
		padding-bottom: 32px;
	}

	.hero-wrapper {
		padding: 20px 0 32px;
	}

	.container {
		width: 94%;
		padding: 0 12px;
	}

	/* El hero pasa a 1 columna: texto arriba, video abajo */
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	/* Logo un poco más pequeño */
	.hero-left-logo {
		margin-bottom: 25px;
		margin-top: 25px;
	}

	.hero-left-logo img {
		height: 110px;
	}

	/* Subtítulo superior */
	.hero-subtitle-city {
		font-size: 14px;
		letter-spacing: 0.18em;
		margin-bottom: 8px;
		
	}

	/* Título principal más compacto */
	.hero-title {
		font-size: 26px;
		line-height: 1.25;
		margin-bottom: 10px;
	}

	/* Texto descriptivo */
	.hero-subtitle-text {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 18px;
	}

	/* Botón: ancho tipo CTA móvil */
	.hero-btn {
		width: 100%;
		max-width: 320px;
		justify-content: center;
		font-size: 13px;
		padding: 12px 20px;
	}

	/* Título cinematográfico más pequeño */
	.cinematic-title {
		padding: 12px 0 12px;
	}

	.cinematic-heading {
		font-size: 20px;
		letter-spacing: 0.1em;
	}

	/* Video: proporción 16:9 y ancho completo */
	.hero-right {
		width: 100%;
	}

	.hero-photo-main.video-main {
		width: 100%;
		aspect-ratio: 16 / 9;
	}

	.hero-photo-main.video-main video {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	}


	

	/* =============================
   SECCIÓN CONÓCEME (MEJORADA)
   ============================= */

	.section-mentor-bio {
	padding: 90px 0;
	position: relative;
	}

	.mentor-bio-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
	gap: 60px;
	align-items: center;
	}

	/* Empuja la tarjeta hacia el lado derecho de su columna */
	.mentor-photo-card,
	.flip-card {
	justify-self: center;
	}


	/* --- Texto --- */
	.mentor-bio-text {
	backdrop-filter: blur(6px);
	padding: 10px 10px;
	border-radius: 16px;
	}

	.mentor-tagline {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: #00b7ff;
	font-weight: 700;
	margin-bottom: 12px;
	}

	.mentor-title {
	font-size: 42px;
	line-height: 1.2;
	font-weight: 800;
	margin-bottom: 22px;
	}

	.mentor-title span {
	color: #00b7ff;
	}

	.mentor-text {
	font-size: 18px;
	color: #dcdcdc;
	line-height: 1.8;
	margin-bottom: 18px;
	}

	.mentor-text.large {
	font-size: 20px;
	color: #ffffff;
	}

	/* --- Foto --- */
	.mentor-photo-card.upgraded {
	position: relative;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(0, 183, 255, 0.22);
	box-shadow: 
		0 28px 60px rgba(0,0,0,0.85),
		0 0 24px rgba(0,183,255,0.25);
	transition: transform .35s ease, box-shadow .35s ease;
	}

	.mentor-photo-card.upgraded:hover {
	transform: translateY(-6px);
	box-shadow: 
		0 38px 80px rgba(0,0,0,1),
		0 0 42px rgba(0,183,255,0.45);
	}

	.mentor-photo-card.upgraded img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	}

	/* Luz azul encima */
	.mentor-photo-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(0,183,255,0.35), transparent 60%);
	pointer-events: none;
	mix-blend-mode: screen;
	}

	/* Mobile */
	@media (max-width: 960px) {
	.mentor-bio-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.mentor-title {
		font-size: 32px;
	}

	.mentor-text {
		font-size: 16px;
	}
	}


	/* ================
	FLIP CARD 3D
	================ */

	.flip-card {
	width: 100%;
	max-width: 420px;
	aspect-ratio: 3/4;
	perspective: 1200px;
	cursor: pointer;
	}

	.flip-card-inner {
	width: 100%;
	height: 100%;
	position: relative;
	transition: transform .8s ease;
	transform-style: preserve-3d;
	}

	.flip-card.flip-active .flip-card-inner {
	transform: rotateY(180deg);
	}

	/* CARAS */
	.flip-card-front,
	.flip-card-back {
	position: absolute;
	inset: 0;
	backface-visibility: hidden;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 28px 62px rgba(0,0,0,0.9);
	border: 1px solid rgba(0, 183, 255, 0.22);
	}

	.flip-card-front img,
	.flip-card-back img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	}

	/* Cara trasera */
	.flip-card-back {
	transform: rotateY(180deg);
	}

	.flip-card-front .mentor-photo-overlay,
	.flip-card-back .mentor-photo-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(0,183,255,0.35), transparent 60%);
	mix-blend-mode: screen;
	pointer-events: none;
	}


	/* =============================
	SECCIÓN: LA REALIDAD DEL NWM
	============================= */

	.section-stats {
	padding: 80px 0 70px;
	background-image:
		radial-gradient(circle at top left, rgba(0,183,255,0.25) 0, transparent 55%),
		radial-gradient(circle at bottom right, rgba(2,82,255,0.25) 0, transparent 60%);
	background-size: 500px 500px, 500px 500px;
	background-repeat: no-repeat;
	background-color: transparent; /* ya tienes fondo global */
	}

	.stats-title {
	text-align: center;
	font-size: 30px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-weight: 800;
	margin-bottom: 10px;
	}

	.stats-subtitle {
	text-align: center;
	font-size: 16px;
	color: #d0d0d0;
	max-width: 680px;
	margin: 0 auto 36px;
	}

	/* GRID de tarjetas */
	.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	}

	/* Tarjeta base */
	.stat-card {
	position: relative;
	border-radius: 20px;
	padding: 24px 22px 26px;
	background: radial-gradient(circle at top, #232323 0, #050505 70%);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	justify-content: center; /* centra vertical */
  	text-align: center;      /* centra horizontal */
	}

	.stat-card::after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.25;
	mix-blend-mode: screen;
	pointer-events: none;
	}

	.stat-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 34px 70px rgba(0, 0, 0, 1);
	border-color: rgba(0, 183, 255, 0.4);
	}

	/* Variaciones de color */
	.stat-card.stat-danger::after {
	background: radial-gradient(circle at top, rgba(255, 82, 82, 0.8), transparent 60%);
	}

	.stat-card.stat-warning::after {
	background: radial-gradient(circle at top, rgba(255, 193, 7, 0.8), transparent 60%);
	}

	.stat-card.stat-info::after {
	background: radial-gradient(circle at top, rgba(0, 183, 255, 0.9), transparent 60%);
	}

	/* Pill superior */
	.stat-pill {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: rgba(0, 0, 0, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #f5f5f5;
	margin-bottom: 10px;
	}

	/* Número animado */
	.stat-number {
	font-size: 40px;
	font-weight: 900;
	color: #ffffff;
	margin-bottom: 8px;
	}

	/* Texto */
	.stat-text {
	font-size: 16px;
	color: #e0e0e0;
	line-height: 1.7;
	}

	/* Nota inferior */
	.stats-note {
	margin-top: 32px;
	text-align: center;
	font-size: 15px;
	color: #f1f1f1;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
	}

	/* RESPONSIVE */
	@media (max-width: 960px) {
	.stats-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.stat-card {
		max-width: 460px;
		margin: 0 auto;
	}

	.stat-number {
		font-size: 34px;
	}
	}

	@media (max-width: 640px) {
	.stats-title {
		font-size: 24px;
	}

	.stats-subtitle,
	.stat-text,
	.stats-note {
		font-size: 14px;
	}
	}


	/* ======================================
   SECCIÓN: COMPARACIÓN SOLO VS LIDERAZGO
   ====================================== */

	.section-comparison {
	padding: 80px 0;
	background: transparent;
	}

	.comparison-title {
	text-align: center;
	font-size: 32px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-weight: 800;
	margin-bottom: 10px;
	}

	.comparison-subtitle {
	text-align: center;
	font-size: 17px;
	color: #d0d0d0;
	margin-bottom: 40px;
	}

	.comparison-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
	}

	/* Tarjetas */
	.comparison-card {
	padding: 32px 28px;
	border-radius: 20px;
	border: 1px solid rgba(255,255,255,0.15);
	background: radial-gradient(circle at top, rgba(25,25,25,0.9) 0%, #050505 70%);
	box-shadow: 0 25px 60px rgba(0,0,0,0.9);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	}

	.comparison-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0,183,255,0.4);
	box-shadow: 0 34px 80px rgba(0,0,0,1);
	}

	/* Headers */
	.comparison-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	}

	.comparison-header h3 {
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 800;
	}

	.header-icon {
	display: inline-block;
	font-size: 28px;
	font-weight: 800;
	width: 46px;
	height: 46px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	}

	/* Colores: lado malo */
	.bad-side .header-icon {
	background: rgba(255, 77, 77, 0.15);
	color: #ff4d4d;
	border: 1px solid rgba(255,77,77,0.35);
	}

	.bad-side .comparison-card {
	border-color: rgba(255,77,77,0.35);
	}

	/* Colores: lado bueno */
	.good-side .header-icon {
	background: rgba(0, 214, 111, 0.15);
	color: #00ff9d;
	border: 1px solid rgba(0,255,157,0.4);
	}

	/* Lista */
	.comparison-list {
	list-style: none;
	font-size: 16px;
	color: #e0e0e0;
	display: grid;
	gap: 12px;
	}

	.comparison-list li strong {
	color: #ffffff;
	}

	/* Resultados */
	.comparison-result {
	margin-top: 20px;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 16px;
	border-radius: 10px;
	}

	.comparison-result-bad {
	background: rgba(255,77,77,0.12);
	border-left: 4px solid #ff4d4d;
	color: #ff9696;
	}

	.comparison-result-good {
	background: rgba(0,255,157,0.12);
	border-left: 4px solid #00ff9d;
	color: #88ffcc;
	}

	/* Responsive */
	@media (max-width: 960px) {
	.comparison-grid {
		grid-template-columns: 1fr;
	}

	.comparison-card {
		max-width: 480px;
		margin: 0 auto;
	}
	}

	@media (max-width: 640px) {
	.comparison-title {
		font-size: 24px;
	}

	.comparison-list li {
		font-size: 14px;
	}
	}


	/* ==================================
	SECCIÓN: IMPACTO + QUÉ APRENDERÁS
	================================== */

	.section-impact {
	padding: 80px 0;
	background: transparent;
	}

	.impact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	}

	.impact-column {
	background: radial-gradient(circle at top, rgba(25, 25, 25, 0.95) 0, #050505 70%);
	border-radius: 20px;
	padding: 26px 24px 26px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
	position: relative;
	overflow: hidden;
	}

	.impact-column::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	mix-blend-mode: screen;
	opacity: 0.3;
	background: radial-gradient(circle at top right, rgba(0, 183, 255, 0.4), transparent 60%);
	}

	.impact-tag {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #d0d0d0;
	margin-bottom: 8px;
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(0, 0, 0, 0.55);
	}

	.impact-tag.green {
	border-color: rgba(0, 255, 157, 0.5);
	color: #9bffd8;
	}

	.impact-title {
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 14px;
	}

	.impact-list {
	list-style: none;
	font-size: 16px;
	color: #e0e0e0;
	display: grid;
	gap: 10px;
	}

	.impact-list li strong {
	color: #ffffff;
	}

	/* Check icons en la lista derecha */
	.impact-list-check li {
	position: relative;
	padding-left: 22px;
	}

	.impact-list-check li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 13px;
	width: 16px;
	height: 16px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 255, 157, 0.18);
	border: 1px solid rgba(0, 255, 157, 0.7);
	color: #9bffd8;
	}

	/* ==============
	TESTIMONIOS
	============== */

	.section-testimonios {
	padding: 80px 0 90px;
	background: transparent;
	}

	.testimonios-title {
	text-align: center;
	font-size: 30px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-weight: 800;
	margin-bottom: 10px;
	}

	.testimonios-subtitle {
	text-align: center;
	font-size: 16px;
	color: #d0d0d0;
	margin-bottom: 36px;
	}

	.testimonios-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px;
	}

	/* Card base */
	.testimonio-card {
	border-radius: 20px;
	padding: 26px 24px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: radial-gradient(circle at top, rgba(25,25,25,0.95) 0, #050505 70%);
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
	font-size: 16px;
	color: #e0e0e0;
	position: relative;
	overflow: hidden;
	}

	/* Logros */
	.testimonio-card.achievements::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	mix-blend-mode: screen;
	opacity: 0.35;
	background: radial-gradient(circle at top right, rgba(0, 183, 255, 0.4), transparent 60%);
	}

	.testimonio-badge {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #9bffd8;
	margin-bottom: 8px;
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid rgba(0, 255, 157, 0.6);
	background: rgba(0, 0, 0, 0.6);
	}

	.testimonio-card h3 {
	font-size: 20px;
	margin-bottom: 12px;
	}

	.testimonio-card ul {
	list-style: none;
	display: grid;
	gap: 8px;
	}

	.testimonio-card ul li::before {
	content: "• ";
	color: #00b7ff;
	}

	/* Testimonio tipo quote */
	.quote-card::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	mix-blend-mode: screen;
	opacity: 0.35;
	background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent 60%);
	}

	.quote-icon {
	position: absolute;
	top: -10px;
	left: 12px;
	font-size: 64px;
	font-weight: 900;
	color: rgba(0, 183, 255, 0.25);
	pointer-events: none;
	}

	.quote-card h3 {
	margin-bottom: 10px;
	}

	.quote-card p {
	position: relative;
	z-index: 1;
	}

	.testimonio-author {
	margin-top: 14px;
	font-size: 13px;
	color: #c4c4c4;
	}

	/* Hover general */
	.testimonio-card:hover,
	.impact-column:hover {
	transform: translateY(-5px);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	box-shadow: 0 32px 70px rgba(0, 0, 0, 1);
	border-color: rgba(0, 183, 255, 0.4);
	}

	/* RESPONSIVE */
	@media (max-width: 960px) {
	.impact-grid,
	.testimonios-grid {
		grid-template-columns: 1fr;
	}

	.impact-column,
	.testimonio-card {
		max-width: 520px;
		margin: 0 auto;
	}
	}

	@media (max-width: 640px) {
	.impact-title,
	.testimonios-title {
		font-size: 22px;
	}

	.impact-list,
	.testimonio-card {
		font-size: 14px;
	}

	.testimonios-subtitle {
		font-size: 14px;
	}
	}


	/* ============================
	SECCIÓN FINAL: CTA + FORM
	============================ */

	.section-cta-form {
	padding: 90px 0 100px;
	background: transparent;
	}

	.cta-form-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: 40px;
	align-items: flex-start;
	}

	/* Columna de texto */
	.cta-column {
	max-width: 560px;
	}

	.cta-tag {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #9bffd8;
	margin-bottom: 10px;
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid rgba(0, 255, 157, 0.5);
	background: rgba(0, 0, 0, 0.6);
	}

	.cta-title {
	font-size: 30px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	margin-bottom: 14px;
	}

	.cta-text {
	font-size: 16px;
	color: #e0e0e0;
	margin-bottom: 10px;
	}

	.cta-text.strong {
	font-weight: 600;
	color: #ffffff;
	}

	.cta-list {
	margin-bottom: 14px;
	}

	.cta-btn {
	margin-top: 12px;
	}

	.cta-footnote {
	margin-top: 14px;
	font-size: 12px;
	color: #b8b8b8;
	}

	/* Tarjeta del formulario */
	.lead-form-card {
	background: radial-gradient(circle at top, rgba(25,25,25,0.95) 0, #050505 70%);
	border-radius: 22px;
	padding: 26px 24px 24px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: 0 30px 70px rgba(0,0,0,0.95);
	position: relative;
	overflow: hidden;
	}

	.lead-form-card::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	mix-blend-mode: screen;
	opacity: 0.4;
	background: radial-gradient(circle at top right, rgba(0, 183, 255, 0.5), transparent 60%);
	}

	.lead-form-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 6px;
	}

	.lead-form-subtitle {
	font-size: 13px;
	color: #cccccc;
	margin-bottom: 18px;
	}

	/* Formulario */
	.lead-form {
	position: relative;
	z-index: 1;
	}

	.lead-form .form-row {
	margin-bottom: 14px;
	font-size: 13px;
	}

	.lead-form label {
	display: block;
	margin-bottom: 4px;
	color: #f1f1f1;
	}

	.lead-form input[type="text"],
	.lead-form input[type="email"],
	.lead-form input[type="tel"] {
	width: 100%;
	padding: 10px 12px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	background: rgba(0,0,0,0.65);
	color: #ffffff;
	font-size: 13px;
	}

	.lead-form input::placeholder {
	color: rgba(255,255,255,0.55);
	}

	/* Opciones (radio/checkbox) */
	.options-group {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	}

	.options-group-column {
	flex-direction: column;
	}

	.option-pill {
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	padding: 6px 12px;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(0,0,0,0.6);
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease;
	}

	.option-pill input {
	accent-color: #00c851;
	}

	.option-pill:hover {
	border-color: rgba(0, 183, 255, 0.7);
	background: rgba(0, 0, 0, 0.85);
	}

	/* Botón formulario */
	.form-btn {
	width: 100%;
	justify-content: center;
	}

	/* Responsive */
	@media (max-width: 960px) {
	.cta-form-grid {
		grid-template-columns: 1fr;
	}

	.lead-form-card {
		max-width: 520px;
		margin: 10px auto 0;
	}
	}

	@media (max-width: 640px) {
	.cta-title {
		font-size: 22px;
	}

	.cta-text {
		font-size: 14px;
	}

	.lead-form-title {
		font-size: 16px;
	}
	}


	.section-dots {
	position: fixed;
	right: 32px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 14px;
	z-index: 9999;
	}

	.section-dots .dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 2px solid rgba(255,255,255,0.6);
	background: transparent;
	padding: 0;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease, border-color .2s ease;
	}

	.section-dots .dot.active {
	background: #00b7ff;
	border-color: #00b7ff;
	transform: scale(1.2);
	}

	@media (max-width: 768px) {
	.section-dots {
		right: 16px;
		gap: 10px;
	}
	}



	/* Botón con pulso suave */
	.hero-btn {
	position: relative;
	overflow: hidden;
	}

	.hero-btn::after {
	content: "";
	position: absolute;
	inset: -40%;
	background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%);
	opacity: 0;
	transform: scale(0.6);
	pointer-events: none;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
	}

	.hero-btn:hover::after {
	opacity: 1;
	transform: scale(1.1);
	}

	.hero-btn:hover {
	transform: translateY(-1px) scale(1.02);
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 1),
		0 0 24px rgba(0, 183, 255, 0.9);
	}


	.hero-btn {
	animation: btnPulse 2.4s ease-in-out infinite;
	}

	@keyframes btnPulse {
	0%, 100% {
		box-shadow:
		0 16px 30px rgba(0, 0, 0, 0.9),
		0 0 18px rgba(0, 183, 255, 0.4);
		transform: translateY(0);
	}
	50% {
		box-shadow:
		0 26px 48px rgba(0, 0, 0, 1),
		0 0 26px rgba(0, 183, 255, 0.9);
		transform: translateY(-1px);
	}
	}

	.section-dots .dot:hover {
	transform: scale(1.4);
	border-color: #00b7ff;
	box-shadow: 0 0 10px rgba(0, 183, 255, 0.8);
	}

	


	/* HERO – sección principal */
	#sec-hero {
	background-image: url("../img/FONDO1.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	}

	/* SECCIÓN CONÓCEME */
	#sec-mentor {
	background-image: url("../img/FONDO2.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	}

	/* LA REALIDAD DEL NETWORK MARKETING (ESTADÍSTICAS) */
	#sec-stats {
	background-image:
		linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
		url("../img/FONDO1-2.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	}

	/* COMPARACIÓN: SOLO VS LIDERAZGO */
	#sec-comparison {
	background-image:
		linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
		url("../img/FONDO1-2.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	}

	/* IMPACTO + QUÉ VAS A APRENDER */
	#sec-impact {
	background-image:
		linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
		url("../img/FONDO1-2.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	}

	/* TESTIMONIOS */
	#sec-testimonios {
	background-image: url("../img/FONDO3.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	}

	/* CTA + FORMULARIO */
	#sec-cta-form {
	background-image:
		linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
		url("../img/FONDO1-2.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	}