/*! HospediaPro — pl-base.css */

/*
 * HospediaPro — Landing PRO de producto
 * Archivo: assets/css/product-landing.css
 * Aplica a: single-download.php (hp_download, hp_plugin)
 */

/* =========================================================================
   Variables y reset
   ========================================================================= */

.hp-product-landing {
	--pl-blue:        var(--hp-color-primary, #3b82f6);
	--pl-blue-dark:   var(--hp-color-primary-dark, #1d4ed8);
	--pl-green:       #059669;
	--pl-green-light: #10b981;
	--pl-amber:       #f59e0b;
	--pl-text:        var(--hp-color-text, #0f172a);
	--pl-muted:       var(--hp-color-text-muted, #6b7280);
	--pl-border:      var(--hp-color-border, #e5e7eb);
	--pl-bg:          #fff;
	--pl-radius:      18px;
	--pl-section-py:  5rem;
	background: var(--pl-bg);
}

/* ── Headers de sección reutilizables ──────────────────────────────── */

.hp-pl-section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 3rem;
}

.hp-pl-section-header--left { text-align: left; margin-left: 0; }

.hp-pl-section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--pl-blue);
	background: rgba(59,130,246,.07);
	border: 1px solid rgba(59,130,246,.18);
	border-radius: 99px;
	padding: .25rem .85rem;
	margin-bottom: .85rem;
}

.hp-pl-section-eyebrow--light {
	color: rgba(255,255,255,.8);
	background: rgba(255,255,255,.1);
	border-color: rgba(255,255,255,.2);
}

.hp-pl-section-title {
	font-family: var(--hp-font-heading);
	font-size: clamp(1.6rem, 2.5vw, 2.1rem);
	font-weight: 700;
	color: var(--pl-text);
	margin: 0 0 .75rem;
	letter-spacing: -.025em;
	line-height: 1.2;
}

.hp-pl-section-title--light { color: #fff; }

.hp-pl-section-subtitle {
	font-size: 1.05rem;
	color: var(--pl-muted);
	margin: 0;
	line-height: 1.65;
}

.hp-pl-section-subtitle--light { color: rgba(255,255,255,.7); }

/* ── Botones ───────────────────────────────────────────────────────── */

.hp-pl-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: .9rem;
	font-weight: 700;
	border-radius: 99px;
	padding: .75rem 1.5rem;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid transparent;
	transition: background .2s, transform .15s, box-shadow .2s, color .2s, border-color .2s;
	white-space: nowrap;
}

.hp-pl-btn--primary {
	background: var(--pl-blue);
	color: #fff;
	box-shadow: 0 4px 16px rgba(59,130,246,.3);
}

.hp-pl-btn--primary:hover {
	background: var(--pl-blue-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(59,130,246,.4);
	text-decoration: none;
}

.hp-pl-btn--free {
	background: #fff;
	color: var(--pl-green);
	border-color: rgba(16,185,129,.35);
	box-shadow: 0 2px 8px rgba(16,185,129,.1);
}

.hp-pl-btn--free:hover {
	background: #f0fdf4;
	border-color: var(--pl-green);
	transform: translateY(-2px);
	text-decoration: none;
}

.hp-pl-btn--demo {
	background: rgba(255,255,255,.85);
	color: var(--pl-muted);
	border-color: var(--pl-border);
}

.hp-pl-btn--demo:hover {
	color: var(--pl-blue);
	border-color: var(--pl-blue);
	text-decoration: none;
}

.hp-pl-btn--outline-white {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,.4);
}

.hp-pl-btn--outline-white:hover {
	background: rgba(255,255,255,.1);
	border-color: #fff;
	color: #fff;
	text-decoration: none;
}

.hp-pl-btn--ghost-white {
	background: transparent;
	color: rgba(255,255,255,.7);
	border-color: rgba(255,255,255,.2);
}

.hp-pl-btn--ghost-white:hover {
	color: #fff;
	border-color: rgba(255,255,255,.5);
	text-decoration: none;
}

.hp-pl-btn--lg {
	font-size: 1rem;
	padding: .9rem 2rem;
}