/* ===================================================================
   DootsPlay — Sitio comercial
   Sistema de diseño nuevo (sección por sección). No modifica main.css,
   util.css, estilos.css ni style.css: esos son de la app de jugadores.
   =================================================================== */

:root {
	/* Paleta de marca */
	--dp-navy-950: #050318;
	--dp-navy-900: #0a0e2f;
	--dp-navy-800: #10123f;
	--dp-blue: #2fa8e0;
	--dp-violet: #7c4fd8;
	--dp-violet-deep: #6a2fd8;
	--dp-magenta: #e0389f;
	--dp-cyan: #38d6f5;

	--dp-gradient-brand: linear-gradient(90deg, #2fa8e0, #a44bd8 55%, #e0389f);
	--dp-gradient-bg: radial-gradient(circle at 82% 15%, rgba(124, 79, 216, .35), transparent 45%),
		radial-gradient(circle at 12% 85%, rgba(47, 168, 224, .28), transparent 50%),
		linear-gradient(160deg, var(--dp-navy-950) 0%, var(--dp-navy-900) 45%, #1b0a45 100%);

	--dp-text-main: #f5f6fb;
	--dp-text-muted: #aab0d6;

	--dp-radius-lg: 20px;
	--dp-radius-pill: 999px;
	--dp-glow-violet: 0 0 0 rgba(124, 79, 216, 0);
	--dp-shadow-card: 0 20px 60px rgba(5, 3, 24, .55);
}

.dp-site {
	font-family: 'Poppins', 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ---------- HERO ---------- */
.dp-hero {
	position: relative;
	overflow: hidden;
	min-height: 92vh;
	display: flex;
	align-items: center;
	background:
		radial-gradient(circle at 78% 22%, rgba(47, 168, 224, .38), transparent 50%),
		radial-gradient(circle at 10% 90%, rgba(56, 214, 245, .12), transparent 55%),
		linear-gradient(160deg, var(--dp-navy-950) 0%, #071b4a 45%, #0c3e8a 100%);
}

.dp-hero-container {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 88px 0 50px;
}

.dp-hero-logo {
	position: absolute;
	top: 28px;
	left: 32px;
	z-index: 5;
	display: inline-block;
}
.dp-hero-logo img {
	height: 52px;
	width: auto;
	display: block;
}

@media (max-width: 575px) {
	.dp-hero-logo {
		top: 20px;
		left: 20px;
	}
	.dp-hero-logo img {
		height: 42px;
	}
}

.dp-hero-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}
.dp-hero-content {
	flex: 1 1 480px;
	min-width: 0;
	max-width: 560px;
}
.dp-hero-illustration {
	flex: 1 1 380px;
	min-width: 0;
	display: flex;
	justify-content: center;
}
.dp-hero-illustration img {
	width: 100%;
	max-width: 520px;
	height: auto;
	display: block;
	filter: drop-shadow(0 30px 55px rgba(3, 10, 40, .55));
}

.dp-hero-title {
	font-weight: 800;
	line-height: 1.08;
	font-size: clamp(2.1rem, 4.2vw, 3.4rem);
	color: var(--dp-text-main);
	margin: 0 0 18px;
}
.dp-hero-title-accent {
	display: inline-block;
	position: relative;
	background: linear-gradient(90deg, var(--dp-blue), var(--dp-violet));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	padding-bottom: 6px;
}
.dp-hero-title-accent::after {
	content: "";
	position: absolute;
	left: 2px;
	right: 6%;
	bottom: 0;
	height: 6px;
	border-radius: var(--dp-radius-pill);
	background: linear-gradient(90deg, var(--dp-blue), var(--dp-violet));
	opacity: .85;
}

.dp-hero-subtitle {
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	color: var(--dp-text-muted);
	max-width: 46ch;
	line-height: 1.55;
	margin: 0 0 26px;
}
.dp-hero-subtitle-accent {
	color: var(--dp-cyan);
	font-weight: 600;
}

.dp-hero-checklist {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	padding: 0;
	margin: 0 0 32px;
}
.dp-hero-checklist li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--dp-text-main);
	font-size: .92rem;
	font-weight: 500;
}
.dp-check-badge {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(47, 168, 224, .15);
	border: 1.5px solid var(--dp-blue);
	display: flex;
	align-items: center;
	justify-content: center;
}
.dp-check-badge svg {
	width: 13px;
	height: 13px;
}

.dp-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}
.dp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 15px 30px;
	border-radius: var(--dp-radius-pill);
	font-weight: 700;
	font-size: .98rem;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
	white-space: nowrap;
}
.dp-btn:hover,
.dp-btn:focus-visible {
	transform: translateY(-2px);
	text-decoration: none;
}
.dp-btn-primary {
	background: var(--dp-gradient-brand);
	color: #fff;
	box-shadow: 0 10px 30px rgba(124, 79, 216, .45);
}
.dp-btn-primary:hover,
.dp-btn-primary:focus-visible {
	box-shadow: 0 14px 38px rgba(124, 79, 216, .6);
	color: #fff;
}
.dp-btn-outline {
	background: rgba(255, 255, 255, .04);
	color: var(--dp-text-main);
	border: 1.5px solid rgba(255, 255, 255, .35);
}
.dp-btn-outline:hover,
.dp-btn-outline:focus-visible {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .6);
	color: #fff;
}
.dp-btn-whatsapp {
	background: rgba(37, 211, 102, .12);
	color: #b8f5d0;
	border: 1.5px solid rgba(37, 211, 102, .5);
}
.dp-btn-whatsapp:hover,
.dp-btn-whatsapp:focus-visible {
	background: rgba(37, 211, 102, .22);
	border-color: #25d366;
	color: #eafff2;
}
.dp-btn-whatsapp svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

/* ---------- COMO FUNCIONA ---------- */
.dp-como {
	position: relative;
	overflow: hidden;
	padding: 90px 0 70px;
	background:
		radial-gradient(circle at 50% 0%, rgba(124, 79, 216, .22), transparent 55%),
		linear-gradient(180deg, var(--dp-navy-950) 0%, #080b28 100%);
}

.dp-como-eyebrow {
	display: block;
	text-align: center;
	color: var(--dp-cyan);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .12em;
	margin-bottom: 10px;
}
.dp-como-eyebrow::after {
	content: "";
	display: block;
	width: 70px;
	height: 3px;
	border-radius: var(--dp-radius-pill);
	background: var(--dp-gradient-brand);
	margin: 10px auto 0;
}

.dp-como-titulo {
	text-align: center;
	font-weight: 800;
	line-height: 1.2;
	font-size: clamp(1.9rem, 3.6vw, 2.8rem);
	color: var(--dp-text-main);
	margin: 0 0 14px;
}
.dp-como-titulo-brand {
	background: linear-gradient(90deg, var(--dp-blue), var(--dp-violet));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.dp-como-subtitulo {
	text-align: center;
	color: var(--dp-text-muted);
	font-size: 1rem;
	max-width: 52ch;
	margin: 0 auto 56px;
	line-height: 1.5;
}

.dp-pasos-badges {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	margin: 0 auto 22px;
	max-width: 900px;
}
.dp-pasos-badges::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 60px;
	right: 60px;
	border-top: 2px dotted rgba(124, 79, 216, .45);
}
.dp-paso-badge-col {
	display: flex;
	justify-content: center;
}
.dp-paso-badge {
	position: relative;
	z-index: 1;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.1rem;
	color: #fff;
	background: linear-gradient(135deg, var(--dp-blue), var(--dp-violet));
	box-shadow: 0 0 0 6px rgba(6, 4, 30, 1), 0 8px 22px rgba(124, 79, 216, .5);
}

.dp-pasos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	max-width: 900px;
	margin: 0 auto;
}
.dp-paso-card {
	position: relative;
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(124, 79, 216, .22);
	border-radius: var(--dp-radius-lg);
	padding: 20px 20px 54px;
	text-align: center;
}
.dp-paso-img {
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 4px;
}
.dp-paso-img img {
	width: 100%;
	height: auto;
	display: block;
}
.dp-paso-icono {
	position: absolute;
	left: 50%;
	bottom: -26px;
	transform: translateX(-50%);
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .4);
}
.dp-paso-icono svg {
	width: 24px;
	height: 24px;
}
.dp-paso-icono-1 { background: linear-gradient(135deg, #2fa8e0, #1c75bc); }
.dp-paso-icono-2 { background: linear-gradient(135deg, #7c4fd8, #6a2fd8); }
.dp-paso-icono-3 { background: linear-gradient(135deg, #e0389f, #b8207c); }

.dp-paso-titulo {
	margin: 44px 0 10px;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--dp-text-main);
}
.dp-paso-texto {
	color: var(--dp-text-muted);
	font-size: .9rem;
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 767px) {
	.dp-pasos-badges {
		display: none;
	}
	.dp-pasos-grid {
		grid-template-columns: 1fr;
		gap: 46px;
		max-width: 420px;
		margin: 0 auto;
	}
	.dp-paso-card {
		padding-top: 44px;
	}
	.dp-paso-card::before {
		content: attr(data-paso);
		position: absolute;
		top: -20px;
		left: 24px;
		width: 42px;
		height: 42px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 800;
		color: #fff;
		background: linear-gradient(135deg, var(--dp-blue), var(--dp-violet));
		box-shadow: 0 8px 18px rgba(124, 79, 216, .5);
	}
}

/* ---------- FUNCIONALIDADES ---------- */
.dp-funciones {
	position: relative;
	overflow: hidden;
	padding: 70px 0 80px;
	background:
		radial-gradient(circle at 15% 10%, rgba(56, 214, 245, .1), transparent 45%),
		radial-gradient(circle at 85% 90%, rgba(224, 56, 159, .12), transparent 50%),
		linear-gradient(180deg, #080b28 0%, var(--dp-navy-950) 100%);
}

.dp-funciones-eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: fit-content;
	margin: 0 auto 22px;
	padding: 8px 20px;
	border-radius: var(--dp-radius-pill);
	border: 1px solid rgba(124, 79, 216, .5);
	background: rgba(124, 79, 216, .08);
	color: var(--dp-blue);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .08em;
}
.dp-funciones-eyebrow svg {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
}

.dp-funciones-titulo {
	text-align: center;
	font-weight: 800;
	line-height: 1.25;
	font-size: clamp(1.9rem, 3.6vw, 2.7rem);
	color: var(--dp-text-main);
	margin: 0 0 14px;
}
.dp-funciones-titulo-brand {
	background: linear-gradient(90deg, var(--dp-blue), var(--dp-violet) 60%, var(--dp-magenta));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.dp-funciones-subtitulo {
	text-align: center;
	color: var(--dp-text-muted);
	font-size: 1rem;
	max-width: 56ch;
	margin: 0 auto 50px;
	line-height: 1.5;
}

.dp-func-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}
.dp-func-card {
	position: relative;
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(124, 79, 216, .25);
	border-radius: var(--dp-radius-lg);
	padding: 26px 22px 24px;
}
.dp-func-card::before {
	content: attr(data-num);
	position: absolute;
	top: -18px;
	left: 22px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	color: #fff;
	box-shadow: 0 8px 18px rgba(0, 0, 0, .4);
}
.dp-func-card[data-num="1"]::before { background: linear-gradient(135deg, var(--dp-blue), #1c75bc); }
.dp-func-card[data-num="2"]::before { background: linear-gradient(135deg, var(--dp-violet), #b8207c); }
.dp-func-card[data-num="3"]::before { background: linear-gradient(135deg, var(--dp-cyan), var(--dp-blue)); }

.dp-func-img {
	margin: 16px 0 20px;
}
.dp-func-img img {
	width: 100%;
	height: auto;
	display: block;
}
.dp-func-titulo {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--dp-text-main);
	margin: 0 0 10px;
	line-height: 1.3;
}
.dp-func-accent-cyan { color: var(--dp-cyan); }
.dp-func-accent-magenta { color: var(--dp-magenta); }
.dp-func-texto {
	color: var(--dp-text-muted);
	font-size: .9rem;
	line-height: 1.55;
	margin: 0;
}

.dp-mini-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.dp-mini-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 16px;
	border-radius: 14px;
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .1);
	border-left: 3px solid var(--mini-color);
}
.dp-mini-icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--mini-color);
}
.dp-mini-icon svg { width: 20px; height: 20px; }
.dp-mini-card h4 {
	font-size: .92rem;
	font-weight: 700;
	color: var(--dp-text-main);
	margin: 0 0 2px;
}
.dp-mini-card p {
	font-size: .78rem;
	color: var(--dp-text-muted);
	margin: 0;
	line-height: 1.4;
}
.dp-mini-blue   { --mini-color: #2fa8e0; }
.dp-mini-violet { --mini-color: #7c4fd8; }
.dp-mini-teal   { --mini-color: #22c58b; }
.dp-mini-orange { --mini-color: #f0a020; }

@media (max-width: 991px) {
	.dp-func-grid {
		grid-template-columns: 1fr;
		max-width: 460px;
		margin-left: auto;
		margin-right: auto;
		gap: 40px;
	}
	.dp-mini-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.dp-mini-grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- CASOS DE USO ---------- */
.dp-casos {
	position: relative;
	overflow: hidden;
	padding: 80px 0;
	background:
		radial-gradient(circle at 50% 100%, rgba(124, 79, 216, .18), transparent 55%),
		linear-gradient(180deg, var(--dp-navy-950) 0%, #060820 100%);
}

.dp-casos-eyebrow {
	display: block;
	text-align: center;
	color: var(--dp-cyan);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .12em;
	margin-bottom: 10px;
}
.dp-casos-eyebrow::after {
	content: "";
	display: block;
	width: 70px;
	height: 3px;
	border-radius: var(--dp-radius-pill);
	background: var(--dp-gradient-brand);
	margin: 10px auto 0;
}
.dp-casos-titulo {
	text-align: center;
	font-weight: 800;
	line-height: 1.25;
	font-size: clamp(1.9rem, 3.6vw, 2.6rem);
	color: var(--dp-text-main);
	margin: 0 0 14px;
}
.dp-casos-titulo-brand {
	background: linear-gradient(90deg, var(--dp-blue), var(--dp-violet) 60%, var(--dp-magenta));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.dp-casos-subtitulo {
	text-align: center;
	color: var(--dp-text-muted);
	font-size: 1rem;
	max-width: 56ch;
	margin: 0 auto 50px;
	line-height: 1.5;
}

.dp-casos-grid {
	display: grid;
	grid-template-columns: 1fr 1.7fr 1fr;
	grid-template-areas:
		"l1 centro r1"
		"l2 centro r2"
		"l3 centro r3";
	gap: 22px;
	align-items: start;
}
.dp-casos-grid > :nth-child(1) { grid-area: centro; }
.dp-casos-grid > :nth-child(2) { grid-area: l1; }
.dp-casos-grid > :nth-child(3) { grid-area: l2; }
.dp-casos-grid > :nth-child(4) { grid-area: l3; }
.dp-casos-grid > :nth-child(5) { grid-area: r1; }
.dp-casos-grid > :nth-child(6) { grid-area: r2; }
.dp-casos-grid > :nth-child(7) { grid-area: r3; }

.dp-casos-centro {
	grid-row: 1 / span 3;
	align-self: center;
	text-align: center;
}
.dp-casos-centro picture {
	display: block;
}
.dp-casos-centro img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.dp-caso-card {
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--dp-radius-lg);
	overflow: hidden;
}
.dp-caso-img img {
	width: 100%;
	height: auto;
	display: block;
}
.dp-caso-body {
	padding: 16px 18px 20px;
}
.dp-caso-titulo {
	font-size: 1.05rem;
	font-weight: 800;
	margin: 0 0 8px;
}
.dp-caso-texto {
	color: var(--dp-text-muted);
	font-size: .86rem;
	line-height: 1.5;
	margin: 0;
}
.dp-caso-verde   .dp-caso-titulo { color: #3fcf7f; }
.dp-caso-verde   { border-color: rgba(63, 207, 127, .3); }
.dp-caso-azul    .dp-caso-titulo { color: #4fa3f7; }
.dp-caso-azul    { border-color: rgba(79, 163, 247, .3); }
.dp-caso-violeta .dp-caso-titulo { color: #a97cf0; }
.dp-caso-violeta { border-color: rgba(169, 124, 240, .3); }
.dp-caso-naranja .dp-caso-titulo { color: #f0a020; }
.dp-caso-naranja { border-color: rgba(240, 160, 32, .3); }
.dp-caso-magenta .dp-caso-titulo { color: #e0389f; }
.dp-caso-magenta { border-color: rgba(224, 56, 159, .3); }
.dp-caso-cyan    .dp-caso-titulo { color: var(--dp-cyan); }
.dp-caso-cyan    { border-color: rgba(56, 214, 245, .3); }

@media (max-width: 991px) {
	.dp-casos-grid {
		grid-template-columns: 1fr;
		grid-template-areas:
			"centro"
			"l1" "l2" "l3"
			"r1" "r2" "r3";
		max-width: 480px;
		margin: 0 auto;
	}
	.dp-casos-centro {
		grid-row: auto;
		margin-bottom: 10px;
	}
	.dp-casos-centro picture {
		height: auto;
	}
	.dp-casos-centro img {
		height: auto;
		width: 100%;
		max-width: 340px;
	}
}

@media (max-width: 575px) {
	.dp-casos-centro img {
		max-width: 260px;
	}
}

/* ---------- PLANES Y PRECIOS ---------- */
.dp-precios {
	position: relative;
	overflow: hidden;
	padding: 90px 0 80px;
	background:
		radial-gradient(circle at 50% 0%, rgba(124, 79, 216, .2), transparent 50%),
		linear-gradient(180deg, #060820 0%, var(--dp-navy-950) 100%);
}

.dp-precios-eyebrow {
	display: block;
	text-align: center;
	color: var(--dp-cyan);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .12em;
	margin-bottom: 10px;
}
.dp-precios-eyebrow::after {
	content: "";
	display: block;
	width: 70px;
	height: 3px;
	border-radius: var(--dp-radius-pill);
	background: var(--dp-gradient-brand);
	margin: 10px auto 0;
}
.dp-precios-titulo {
	text-align: center;
	font-weight: 800;
	line-height: 1.25;
	font-size: clamp(1.9rem, 3.6vw, 2.6rem);
	color: var(--dp-text-main);
	margin: 0 0 14px;
}
.dp-precios-titulo-brand {
	background: linear-gradient(90deg, var(--dp-blue), var(--dp-violet));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.dp-precios-subtitulo {
	text-align: center;
	color: var(--dp-text-muted);
	font-size: 1rem;
	max-width: 52ch;
	margin: 0 auto 56px;
	line-height: 1.5;
}

.dp-precios-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	align-items: start;
	max-width: 1080px;
	margin: 0 auto;
}

.dp-precio-card {
	position: relative;
	background: rgba(255, 255, 255, .03);
	border: 1.5px solid rgba(255, 255, 255, .12);
	border-radius: var(--dp-radius-lg);
	padding: 38px 26px 30px;
	text-align: center;
}
.dp-precio-icon {
	margin: 0 0 10px;
}
.dp-precio-icon img {
	width: 100%;
	max-width: 200px;
	height: auto;
	display: block;
	margin: 0 auto;
}
.dp-precio-nombre {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--dp-text-main);
	margin: 0 0 6px;
}
.dp-precio-precio {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--dp-text-main);
	margin: 0 0 8px;
}
.dp-precio-precio span {
	font-size: .95rem;
	font-weight: 500;
	color: var(--dp-text-muted);
}
.dp-precio-desc {
	color: var(--dp-text-muted);
	font-size: .86rem;
	line-height: 1.5;
	margin: 0 0 22px;
	min-height: 42px;
}
.dp-precio-lista {
	list-style: none;
	padding: 0;
	margin: 0 0 26px;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.dp-precio-lista li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--dp-text-main);
	font-size: .88rem;
	line-height: 1.35;
}
.dp-precio-lista svg {
	flex-shrink: 0;
	width: 19px;
	height: 19px;
	margin-top: 1px;
}
.dp-precio-btn {
	width: 100%;
}

.dp-precio-free { border-color: rgba(47, 168, 224, .35); }
.dp-precio-free .dp-precio-lista svg circle { stroke: var(--dp-blue); }
.dp-precio-free .dp-precio-lista svg path { stroke: var(--dp-blue); }

.dp-precio-standard {
	border-color: rgba(224, 56, 159, .45);
	background: rgba(180, 90, 200, .06);
	padding-top: 52px;
	transform: translateY(-14px);
	box-shadow: 0 25px 60px rgba(124, 79, 216, .3);
}
.dp-precio-standard .dp-precio-lista svg circle { stroke: var(--dp-magenta); }
.dp-precio-standard .dp-precio-lista svg path { stroke: var(--dp-magenta); }

.dp-precio-pro { border-color: rgba(169, 124, 240, .4); }
.dp-precio-pro .dp-precio-lista svg circle { stroke: #f0a020; }
.dp-precio-pro .dp-precio-lista svg path { stroke: #f0a020; }

.dp-precio-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--dp-gradient-brand);
	color: #fff;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .04em;
	padding: 7px 16px;
	border-radius: var(--dp-radius-pill);
	white-space: nowrap;
	box-shadow: 0 8px 20px rgba(224, 56, 159, .45);
}

.dp-precios-nota {
	text-align: center;
	color: var(--dp-text-muted);
	font-size: .78rem;
	opacity: .7;
	margin: 44px 0 0;
}

@media (max-width: 991px) {
	.dp-precios-grid {
		grid-template-columns: 1fr;
		max-width: 380px;
		gap: 46px;
	}
	.dp-precio-standard {
		transform: none;
	}
}

/* ---------- FAQ ---------- */
.dp-faq {
	position: relative;
	overflow: hidden;
	padding: 90px 0;
	background:
		radial-gradient(circle at 20% 20%, rgba(47, 168, 224, .12), transparent 45%),
		radial-gradient(circle at 90% 80%, rgba(224, 56, 159, .12), transparent 45%),
		linear-gradient(180deg, var(--dp-navy-950) 0%, #070a26 100%);
}

.dp-faq-eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: fit-content;
	margin: 0 auto 22px;
	padding: 8px 20px;
	border-radius: var(--dp-radius-pill);
	border: 1px solid rgba(47, 168, 224, .5);
	background: rgba(47, 168, 224, .08);
	color: var(--dp-blue);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .08em;
}
.dp-faq-titulo {
	text-align: center;
	font-weight: 800;
	line-height: 1.2;
	font-size: clamp(1.9rem, 3.6vw, 2.7rem);
	color: var(--dp-text-main);
	margin: 0 0 14px;
}
.dp-faq-titulo-brand {
	background: linear-gradient(90deg, var(--dp-magenta), var(--dp-blue));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.dp-faq-subtitulo {
	text-align: center;
	color: var(--dp-text-muted);
	font-size: 1rem;
	max-width: 52ch;
	margin: 0 auto 56px;
	line-height: 1.5;
}

.dp-faq-grid {
	display: grid;
	grid-template-columns: .8fr 1.3fr;
	gap: 40px;
	align-items: center;
	max-width: 1150px;
	margin: 0 auto;
}
.dp-faq-avatar img {
	width: 100%;
	max-width: 420px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.dp-faq-acordeon {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.dp-faq-item {
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(124, 79, 216, .28);
	border-radius: 16px;
	overflow: hidden;
}
.dp-faq-pregunta {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 22px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
}
.dp-faq-num {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: .88rem;
	border: 1.5px solid var(--dp-blue);
	color: var(--dp-blue);
}
.dp-faq-item:nth-child(even) .dp-faq-num {
	border-color: var(--dp-violet);
	color: var(--dp-violet);
}
.dp-faq-q-text {
	flex: 1;
	color: var(--dp-text-main);
	font-weight: 700;
	font-size: 1rem;
}
.dp-faq-chevron {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: var(--dp-blue);
	transition: transform .25s ease;
}
.dp-faq-item.is-open .dp-faq-chevron {
	transform: rotate(180deg);
}

.dp-faq-respuesta {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .28s ease;
}
.dp-faq-item.is-open .dp-faq-respuesta {
	grid-template-rows: 1fr;
}
.dp-faq-respuesta-inner {
	overflow: hidden;
}
.dp-faq-respuesta p {
	margin: 0;
	padding: 0 22px 20px 66px;
	color: var(--dp-text-muted);
	font-size: .92rem;
	line-height: 1.55;
}

.dp-faq-planes {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	padding: 0 22px 20px 66px;
}
.dp-faq-plan {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	flex: 1 1 180px;
	font-size: .88rem;
	color: var(--dp-text-muted);
	line-height: 1.4;
}
.dp-faq-plan svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 1px;
}
.dp-faq-plan b {
	font-weight: 800;
}
.dp-faq-plan-free b { color: var(--dp-blue); }
.dp-faq-plan-free svg { color: var(--dp-blue); }
.dp-faq-plan-standard b { color: var(--dp-violet); }
.dp-faq-plan-standard svg { color: var(--dp-violet); }
.dp-faq-plan-pro b { color: #f0a020; }
.dp-faq-plan-pro svg { color: #f0a020; }

@media (max-width: 900px) {
	.dp-faq-grid {
		grid-template-columns: 1fr;
	}
	.dp-faq-avatar img {
		max-width: 260px;
	}
}

@media (max-width: 480px) {
	.dp-faq-q-text {
		font-size: .92rem;
	}
	.dp-faq-respuesta p,
	.dp-faq-planes {
		padding-left: 22px;
	}
}

/* ---------- CTA FINAL ---------- */
.dp-cta {
	position: relative;
	overflow: hidden;
	padding: 0 0 90px;
	background: linear-gradient(180deg, #070a26 0%, var(--dp-navy-950) 100%);
}
.dp-cta-ilustracion {
	width: 100%;
}
.dp-cta-ilustracion img {
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.dp-cta-card {
	position: relative;
	z-index: 2;
	max-width: 780px;
	margin: -70px auto 0;
	background: rgba(8, 6, 30, .88);
	backdrop-filter: blur(6px);
	border: 1.5px solid rgba(224, 56, 159, .4);
	border-radius: 28px;
	box-shadow: 0 25px 70px rgba(0, 0, 0, .55);
	padding: 34px 40px 38px;
	text-align: center;
}
.dp-cta-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 18px;
	border-radius: var(--dp-radius-pill);
	border: 1px solid rgba(169, 124, 240, .6);
	color: var(--dp-text-main);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .06em;
	margin-bottom: 18px;
}
.dp-cta-eyebrow svg {
	width: 14px;
	height: 14px;
	color: #f0a020;
}
.dp-cta-titulo {
	font-weight: 800;
	line-height: 1.25;
	font-size: clamp(1.6rem, 3.4vw, 2.3rem);
	color: var(--dp-text-main);
	margin: 0 0 14px;
}
.dp-cta-titulo-brand {
	background: linear-gradient(90deg, var(--dp-blue), var(--dp-magenta));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.dp-cta-subtitulo {
	color: var(--dp-text-muted);
	font-size: 1rem;
	max-width: 46ch;
	margin: 0 auto 28px;
	line-height: 1.5;
}
.dp-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 38px;
	border-radius: var(--dp-radius-pill);
	background: rgba(255, 255, 255, .04);
	border: 1.5px solid transparent;
	background-image: linear-gradient(#0c0f30, #0c0f30), linear-gradient(90deg, var(--dp-blue), var(--dp-magenta));
	background-origin: border-box;
	background-clip: padding-box, border-box;
	color: #fff;
	font-weight: 800;
	font-size: 1.05rem;
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(124, 79, 216, .35);
	transition: transform .18s ease, box-shadow .18s ease;
}
.dp-cta-btn:hover,
.dp-cta-btn:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 16px 38px rgba(224, 56, 159, .45);
	color: #fff;
	text-decoration: none;
}
.dp-cta-btn svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}
.dp-cta-nota {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px 18px;
	margin: 24px 0 0;
	color: var(--dp-text-muted);
	font-size: .85rem;
}
.dp-cta-nota span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.dp-cta-nota svg {
	width: 15px;
	height: 15px;
	color: var(--dp-blue);
}

@media (max-width: 767px) {
	.dp-cta-ilustracion img {
		max-height: 300px;
	}
	.dp-cta-card {
		margin-top: -40px;
		padding: 28px 22px 30px;
		border-radius: 22px;
	}
	.dp-cta-btn {
		width: 100%;
		justify-content: center;
	}
}

/* ---------- FOOTER ---------- */
.dp-footer {
	position: relative;
	overflow: hidden;
	padding: 0 0 30px;
	background: var(--dp-navy-950);
}
.dp-footer-arc {
	display: block;
	width: 100%;
	height: auto;
	pointer-events: none;
}
.dp-footer-top {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 30px;
	padding: 20px 0 46px;
}

.dp-footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}
.dp-footer-logo-mark {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 14px 14px 14px 4px;
	background: linear-gradient(135deg, var(--dp-blue), var(--dp-violet), var(--dp-magenta));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(124, 79, 216, .4);
}
.dp-footer-logo-mark svg {
	width: 22px;
	height: 22px;
	color: #fff;
}
.dp-footer-logo-text {
	font-size: 1.55rem;
	font-weight: 800;
	color: #fff;
}
.dp-footer-logo-text b {
	background: var(--dp-gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-weight: 800;
}
.dp-footer-linea {
	width: 46px;
	height: 3px;
	border-radius: var(--dp-radius-pill);
	background: var(--dp-gradient-brand);
	margin-bottom: 18px;
}
.dp-footer-tagline {
	color: var(--dp-text-muted);
	font-size: .95rem;
	line-height: 1.5;
	margin: 0 0 22px;
}

.dp-footer-mini-list {
	display: flex;
	gap: 22px;
}
.dp-footer-mini {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
}
.dp-footer-mini svg {
	width: 26px;
	height: 26px;
}
.dp-footer-mini span {
	color: var(--dp-text-muted);
	font-size: .78rem;
	line-height: 1.3;
}
.dp-footer-mini-blue svg { color: var(--dp-blue); }
.dp-footer-mini-cyan svg { color: var(--dp-cyan); }
.dp-footer-mini-magenta svg { color: var(--dp-magenta); }

.dp-footer-col {
	padding-left: 30px;
	border-left: 1px solid rgba(255, 255, 255, .08);
}
.dp-footer-col-icon {
	display: inline-flex;
	margin-bottom: 10px;
}
.dp-footer-col-icon svg {
	width: 24px;
	height: 24px;
	color: var(--dp-blue);
}
.dp-footer-col-titulo {
	color: var(--dp-text-main);
	font-size: .82rem;
	font-weight: 800;
	letter-spacing: .07em;
	margin: 0 0 16px;
}
.dp-footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.dp-footer-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	color: var(--dp-text-muted);
	font-size: .9rem;
	text-decoration: none;
	transition: color .15s ease;
}
.dp-footer-links a:hover,
.dp-footer-links a:focus-visible {
	color: var(--dp-text-main);
}
.dp-footer-links svg {
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	opacity: .6;
}

.dp-footer-divider {
	position: relative;
	z-index: 2;
	border: none;
	border-top: 1px solid rgba(255, 255, 255, .1);
	margin: 0 0 26px;
}

.dp-footer-bottom {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}
.dp-footer-copy {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--dp-text-muted);
	font-size: .85rem;
	margin: 0;
}
.dp-footer-copy svg {
	width: 15px;
	height: 15px;
}
.dp-footer-social {
	display: flex;
	gap: 12px;
}
.dp-footer-social-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, .15);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color .15s ease, transform .15s ease;
}
.dp-footer-social-btn:hover,
.dp-footer-social-btn:focus-visible {
	transform: translateY(-2px);
	border-color: currentColor;
}
.dp-footer-social-btn svg {
	width: 19px;
	height: 19px;
}

@media (max-width: 900px) {
	.dp-footer-top {
		grid-template-columns: 1fr 1fr;
		row-gap: 40px;
	}
	.dp-footer-brand {
		grid-column: 1 / -1;
		border-left: none;
		padding-left: 0;
	}
}

@media (max-width: 575px) {
	.dp-footer-top {
		grid-template-columns: 1fr;
	}
	.dp-footer-col {
		border-left: none;
		padding-left: 0;
		border-top: 1px solid rgba(255, 255, 255, .08);
		padding-top: 24px;
	}
	.dp-footer-mini-list {
		justify-content: space-between;
	}
	.dp-footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
	.dp-hero {
		min-height: 0;
		display: block;
	}
	.dp-hero-container {
		padding: 80px 0 40px;
		text-align: center;
	}
	.dp-hero-logo {
		position: static;
		display: block;
		text-align: left;
		margin: 0 0 26px;
		padding-left: 15px;
	}
	.dp-hero-row {
		flex-direction: column-reverse;
		gap: 30px;
	}
	.dp-hero-content {
		max-width: none;
		margin: 0 auto;
	}
	.dp-hero-illustration img {
		max-width: 380px;
	}
	.dp-hero-subtitle {
		max-width: 46ch;
		margin-left: auto;
		margin-right: auto;
	}
	.dp-hero-checklist {
		justify-content: center;
	}
	.dp-hero-actions {
		justify-content: center;
	}
}

@media (max-width: 575px) {
	.dp-hero-illustration img {
		max-width: 280px;
	}
	.dp-hero-checklist {
		gap: 14px 20px;
	}
	.dp-hero-actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}
	.dp-btn {
		width: 100%;
	}
}
