/* ═══════════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════════ */
:root {
	/* Variables globales */
	--success-color: #16a34a;
	--radius: 16px;
  
  /* colores del home */
  --h-ink:     #0b1628;
	--h-navy:    #0f2044;
	--h-blue:    #1e56b0;
	--h-indigo:  #3b5bdb;
	--h-slate:   #64748b;
	--h-light:   #f0f4ff;
	--h-border:  #dde6f5;
	--h-green:   #16a34a;
  --accent-light: #f0d080;

	/* colores de cada organismo */
	--pj-color:  #c9a84c;   /* dorado PJ  */
	--mpf-color: #b8263e;   /* bordo MPF  */

	--radius: 18px;
	--font-display: 'Lora', serif;
	--font-body:    'Plus Jakarta Sans', sans-serif;
}

/* ═══════════════════════════════════════════════════════
   HOME SIMULADOR - INICIO
═══════════════════════════════════════════════════════ */

/* ─── RESET ─────────────────────────────────────────── */
.home-page *, .home-page *::before, .home-page *::after { box-sizing: border-box; }
.home-page {
	font-family: var(--font-body);
	color: var(--h-ink);
	background: #fff;
}

/* ═══════════════════════════════════════════════════════
   BARRA SUPERIOR
═══════════════════════════════════════════════════════ */
.home-topbar {
	background: var(--h-navy);
	padding: 6px 0;
	font-size: .75rem;
	color: rgba(255,255,255,.55);
	text-align: center;
	letter-spacing: .5px;
}
.home-topbar strong { color: rgba(255,255,255,.85); }

/* ═══════════════════════════════════════════════════════
   NAVBAR MINIMALISTA
═══════════════════════════════════════════════════════ */
.home-nav {
	background: #fff;
	border-bottom: 1px solid var(--h-border);
	padding: 14px 0;
	position: sticky; top: 0; z-index: 999;
}
.home-nav .brand {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--h-navy);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
}
.home-nav .brand .brand-icon {
	width: 36px; height: 36px;
	background: linear-gradient(135deg, var(--h-blue), var(--h-indigo));
	border-radius: 9px;
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	font-size: 16px;
	flex-shrink: 0;
}
.home-nav .nav-links {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0; padding: 0;
}
.home-nav .nav-links a {
	color: var(--h-slate);
	text-decoration: none;
	font-size: .87rem;
	font-weight: 600;
	padding: 7px 14px;
	border-radius: 8px;
	transition: all .2s;
}
.home-nav .nav-links a:hover { background: var(--h-light); color: var(--h-navy); }
.home-nav .nav-links .nav-cta {
	background: var(--h-indigo);
	color: #fff !important;
	padding: 8px 18px;
	border-radius: 9px;
}

.home-nav .nav-links .nav-login {
	background: #fff;
    color: var(--h-indigo) !important;
    border: 1px solid var(--h-indigo);
	padding: 8px 18px;
	border-radius: 9px;
}

.btn-menu.btn-cta {
    border-right: none;
    margin: 0 8px;
}

.home-nav .nav-links .nav-cta:hover {
	background: var(--h-blue);
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(59,91,219,.3);
}

/* ═══════════════════════════════════════════════════════
   HERO — FONDO OSCURO CON PARTÍCULAS CSS
═══════════════════════════════════════════════════════ */
.home-hero {
	background: linear-gradient(155deg, #060e1c 0%, #0b1d3d 40%, #122356 70%, #0f2044 100%);
	padding: 96px 0 80px;
	position: relative;
	overflow: hidden;
}

/* Glow orbs de fondo */
.hero-orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(80px);
}
.hero-orb-1 {
	width: 500px; height: 500px;
	background: rgba(59,91,219,.12);
	top: -15%; right: -5%;
}
.hero-orb-2 {
	width: 380px; height: 380px;
	background: rgba(201,168,76,.07);
	bottom: -10%; left: -5%;
}
.hero-orb-3 {
	width: 300px; height: 300px;
	background: rgba(184,38,62,.07);
	top: 30%; left: 35%;
}

/* Grid sutil de fondo */
.home-hero::before {
	content: '';
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

.hero-label {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	color: rgba(255,255,255,.7);
	padding: 7px 18px;
	border-radius: 50px;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 28px;
}
.hero-label .dot {
	width: 7px; height: 7px;
	background: #4ade80;
	border-radius: 50%;
	box-shadow: 0 0 8px #4ade80;
	animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: .6; transform: scale(1.4); }
}

.home-hero h1 {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 5vw, 4rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.14;
	margin-bottom: 22px;
}
.home-hero h1 .line-accent {
	background: linear-gradient(90deg, #7eb3ff, #a78bfa);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-sub {
	font-size: 1.08rem;
	color: rgba(255,255,255,.72);
	line-height: 1.75;
	max-width: 520px;
	margin-bottom: 44px;
}

/* ─── Tarjetas de elección ─────────────────────────── */
.choice-label {
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: rgba(255,255,255,.4);
	margin-bottom: 14px;
}

.choice-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	max-width: 500px;
}

.choice-card {
	border-radius: 16px;
	padding: 22px 20px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
	transition: all .3s cubic-bezier(.34,1.56,.64,1);
	position: relative;
	overflow: hidden;
}
.choice-card::after {
	content: '→';
	position: absolute;
	bottom: 16px; right: 18px;
	font-size: 1.1rem;
	transition: transform .25s;
}
.choice-card:hover { transform: translateY(-5px); }
.choice-card:hover::after { transform: translateX(4px); }

.choice-card.pj {
	background: linear-gradient(135deg, #1a3a6e 0%, #234fa3 100%);
	border: 1.5px solid rgba(201,168,76,.35);
}
.choice-card.pj:hover { box-shadow: 0 16px 40px rgba(201,168,76,.2); border-color: rgba(201,168,76,.6); }
.choice-card.pj::after { color: var(--pj-color); }

.choice-card.mpf {
	background: linear-gradient(135deg, #1a1030 0%, #3a1020 100%);
	border: 1.5px solid rgba(184,38,62,.35);
}
.choice-card.mpf:hover { box-shadow: 0 16px 40px rgba(184,38,62,.2); border-color: rgba(184,38,62,.6); }
.choice-card.mpf::after { color: #e8899a; }

.choice-card .c-icon { font-size: 1.8rem; margin-bottom: 4px; }
.choice-card .c-name {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.25;
}
.choice-card .c-sub { font-size: .75rem; color: rgba(255,255,255,.5); line-height: 1.4; }
.choice-card .c-exams {
	display: flex; flex-wrap: wrap; gap: 4px;
	margin-top: 8px;
}
.choice-card .c-exam-tag {
	background: rgba(255,255,255,.1);
	color: rgba(255,255,255,.75);
	font-size: .68rem;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 50px;
}
.choice-card.pj .c-exam-tag.highlight { background: rgba(201,168,76,.2); color: #f0d080; }
.choice-card.mpf .c-exam-tag.highlight { background: rgba(184,38,62,.25); color: #e8899a; }

/* ─── Derecha del hero: mockup UI ──────────────────── */
.hero-mockup {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 20px;
	padding: 24px;
	backdrop-filter: blur(12px);
}
.mockup-bar {
	display: flex; align-items: center; gap: 8px;
	margin-bottom: 18px;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.r { background: #ff5f57; }
.mockup-dot.y { background: #ffbd2e; }
.mockup-dot.g { background: #28c940; }
.mockup-title { font-size: .78rem; color: rgba(255,255,255,.35); margin-left: auto; letter-spacing: .5px; }

.mockup-progress-bar { margin-bottom: 16px; }
.mockup-progress-label { display: flex; justify-content: space-between; font-size: .72rem; color: rgba(255,255,255,.45); margin-bottom: 6px; }
.mockup-track { height: 6px; background: rgba(255,255,255,.08); border-radius: 10px; overflow: hidden; }
.mockup-fill { height: 100%; border-radius: 10px; }
.mockup-fill.blue   { width: 72%; background: linear-gradient(90deg, #3b5bdb, #7eb3ff); }
.mockup-fill.green  { width: 85%; background: linear-gradient(90deg, #16a34a, #4ade80); }
.mockup-fill.orange { width: 55%; background: linear-gradient(90deg, #ea580c, #fb923c); }
.mockup-fill.purple { width: 90%; background: linear-gradient(90deg, #7c3aed, #a78bfa); }

.mockup-question-box {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 12px;
	padding: 16px;
	margin-top: 14px;
}
.mockup-q { font-size: .8rem; color: rgba(255,255,255,.8); line-height: 1.5; margin-bottom: 12px; font-weight: 500; }
.mockup-option {
	padding: 8px 12px;
	border-radius: 8px;
	font-size: .75rem;
	color: rgba(255,255,255,.6);
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.07);
	margin-bottom: 6px;
	cursor: default;
	display: flex; align-items: center; gap: 8px;
}
.mockup-option.correct { background: rgba(22,163,74,.15); border-color: rgba(22,163,74,.3); color: #86efac; }
.mockup-option.wrong   { background: rgba(239,68,68,.08); border-color: rgba(239,68,68,.2); color: rgba(239,68,68,.7); }
.mockup-option .opt-dot { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid currentColor; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .6rem; }

.mockup-stats {
	display: grid; grid-template-columns: 1fr 1fr 1fr;
	gap: 8px; margin-top: 14px;
}
.mockup-stat-box {
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.07);
	border-radius: 10px;
	padding: 10px;
	text-align: center;
}
.mockup-stat-box .msb-num { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: #fff; display: block; }
.mockup-stat-box .msb-lbl { font-size: .63rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .8px; }

/* ═══════════════════════════════════════════════════════
   SECCIONES
═══════════════════════════════════════════════════════ */
.h-section { padding: 88px 0; }
.h-section.bg-f { background: #f5f7fc; }
.h-section.bg-w { background: #fff; }
.h-section.bg-d { background: var(--h-navy); }

.s-eyebrow {
	display: block;
	font-size: 11px; font-weight: 800;
	letter-spacing: 2.5px; text-transform: uppercase;
	color: var(--h-indigo);
	margin-bottom: 10px;
}
.s-eyebrow.on-dark { color: rgba(255,255,255,.4); }
.s-title {
	font-family: var(--font-display);
	font-size: clamp(1.7rem, 3vw, 2.5rem);
	font-weight: 700; color: var(--h-navy);
	line-height: 1.25;
}
.s-title.on-dark { color: #fff; }
.s-lead { color: var(--h-slate); font-size: 1rem; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════
   SECCIÓN: DOS CAMINOS (cards grandes)
═══════════════════════════════════════════════════════ */
.path-card {
	border-radius: 22px;
	padding: 44px 36px;
	height: 100%;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	display: block;
	transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.path-card:hover { transform: translateY(-6px); }

.path-card.pj-path {
	background: linear-gradient(145deg, #0d2247 0%, #1a4fa0 100%);
	box-shadow: 0 10px 40px rgba(26,79,160,.2);
}
.path-card.pj-path:hover { box-shadow: 0 20px 56px rgba(26,79,160,.32), 0 0 0 1px rgba(201,168,76,.25); }

.path-card.mpf-path {
	background: linear-gradient(145deg, #0e1f3b 0%, #5c1020 100%);
	box-shadow: 0 10px 40px rgba(92,16,32,.2);
}
.path-card.mpf-path:hover { box-shadow: 0 20px 56px rgba(139,26,47,.32), 0 0 0 1px rgba(184,38,62,.3); }

/* Decoración geométrica en esquina */
.path-card::before {
	content: '';
	position: absolute; top: -60px; right: -60px;
	width: 200px; height: 200px;
	border-radius: 50%;
	pointer-events: none;
}
.path-card.pj-path::before  { background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%); }
.path-card.mpf-path::before { background: radial-gradient(circle, rgba(184,38,62,.15) 0%, transparent 70%); }

.path-card .p-badge-org {
	display: inline-block;
	padding: 5px 16px;
	border-radius: 50px;
	font-size: .72rem; font-weight: 800;
	letter-spacing: 1.5px; text-transform: uppercase;
	margin-bottom: 20px;
}
.pj-path .p-badge-org  { background: rgba(201,168,76,.2); color: #f0d080; border: 1px solid rgba(201,168,76,.3); }
.mpf-path .p-badge-org { background: rgba(184,38,62,.2); color: #e8899a; border: 1px solid rgba(184,38,62,.3); }

.path-card .p-icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.path-card h3 {
	font-family: var(--font-display);
	font-size: 1.6rem; font-weight: 700;
	color: #fff; margin-bottom: 12px;
}
.path-card .p-desc {
	color: rgba(255,255,255,.65);
	font-size: .9rem; line-height: 1.7;
	margin-bottom: 24px;
}

.path-exams { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.path-exam-row {
	display: flex; align-items: center; gap: 10px;
	padding: 10px 14px;
	border-radius: 10px;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.08);
}
.path-exam-row .pe-icon { font-size: 1.1rem; }
.path-exam-row .pe-name { color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 600; }
.path-exam-row .pe-tag {
	margin-left: auto;
	font-size: .68rem; font-weight: 700;
	padding: 2px 10px; border-radius: 50px;
}
.pj-path  .pe-tag { background: rgba(201,168,76,.2); color: #f0d080; }
.mpf-path .pe-tag { background: rgba(184,38,62,.2); color: #e8899a; }
.path-exam-row.excluded { opacity: .35; }
.path-exam-row.excluded .pe-name { text-decoration: line-through; }

.btn-path {
	display: inline-flex; align-items: center; gap: 8px;
	font-weight: 700; font-size: .97rem;
	padding: 13px 26px;
	border-radius: 12px;
	text-decoration: none;
	transition: all .25s;
}
.pj-path  .btn-path { background: var(--pj-color); color: #0a1e45; }
.mpf-path .btn-path { background: var(--mpf-color); color: #fff; }
.btn-path:hover { filter: brightness(1.12); transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════
   SECCIÓN: VIDEOS DEMOSTRATIVOS
═══════════════════════════════════════════════════════ */
.video-tabs {
	display: flex; gap: 4px;
	background: #eef1f9;
	border-radius: 12px;
	padding: 5px;
	margin-bottom: 32px;
	width: fit-content;
}
.video-tab {
	padding: 9px 20px;
	border-radius: 9px;
	font-size: .85rem; font-weight: 700;
	cursor: pointer;
	border: none;
	background: transparent;
	color: var(--h-slate);
	transition: all .2s;
}
.video-tab.active { background: #fff; color: var(--h-navy); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.video-tab:hover:not(.active) { color: var(--h-navy); }

.video-panel { display: none; }
.video-panel.active { display: block; }

.video-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: var(--h-navy);
	padding-top: 56.25%;
	box-shadow: 0 20px 60px rgba(15,32,68,.22);
	border: 1px solid var(--h-border);
}
.video-wrapper iframe,
.video-wrapper .video-placeholder {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	border: none;
}

/* Placeholder visual hasta que se cargue el video real */
.video-placeholder {
	display: flex; flex-direction: column;
	align-items: center; justify-content: center;
	background: linear-gradient(155deg, #0b1d3d 0%, #112355 100%);
	gap: 16px;
	cursor: pointer;
}
.video-placeholder .vp-icon {
	width: 72px; height: 72px;
	background: rgba(255,255,255,.1);
	border: 2px solid rgba(255,255,255,.2);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 28px;
	transition: all .3s;
}
.video-placeholder:hover .vp-icon {
	background: rgba(255,255,255,.18);
	transform: scale(1.08);
}
.video-placeholder .vp-title {
	font-family: var(--font-display);
	color: #fff; font-size: 1.1rem; font-weight: 700;
}
.video-placeholder .vp-sub {
	color: rgba(255,255,255,.45); font-size: .82rem;
	text-align: center; max-width: 260px; line-height: 1.5;
}

.video-desc {
	margin-top: 24px;
	padding: 22px 26px;
	background: var(--h-light);
	border-radius: 14px;
	border-left: 4px solid var(--h-indigo);
}
.video-desc h5 { font-family: var(--font-display); font-size: 1.1rem; color: var(--h-navy); margin-bottom: 8px; }
.video-desc p  { color: var(--h-slate); font-size: .87rem; line-height: 1.7; margin: 0; }
.video-desc .vd-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.video-desc .vd-tag {
	background: #fff;
	border: 1px solid var(--h-border);
	color: var(--h-navy);
	padding: 4px 12px;
	border-radius: 50px;
	font-size: .76rem;
	font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   SECCIÓN: STATS COUNTER
═══════════════════════════════════════════════════════ */
.stat-big {
	text-align: center;
	padding: 32px 20px;
}
.stat-big .sb-num {
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 700;
	color: var(--h-indigo);
	display: block;
	line-height: 1;
	margin-bottom: 8px;
}
.stat-big .sb-label {
	font-size: .85rem;
	font-weight: 600;
	color: var(--h-navy);
	margin-bottom: 4px;
}
.stat-big .sb-sub {
	font-size: .78rem;
	color: var(--h-slate);
}
.stat-divider {
	width: 1px;
	background: var(--h-border);
	align-self: stretch;
}

/* ═══════════════════════════════════════════════════════
   SECCIÓN: COMPARATIVA ACADEMIAS
═══════════════════════════════════════════════════════ */
.compare-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1.5px solid var(--h-border);
	border-radius: var(--radius);
	overflow: hidden;
	font-size: .88rem;
}
.compare-table th {
	background: var(--h-navy);
	color: #fff;
	padding: 16px 22px;
	font-weight: 700;
	text-align: center;
}
.compare-table th:first-child { text-align: left; }
.compare-table th.sim-col { background: var(--h-indigo); }
.compare-table td {
	padding: 14px 22px;
	border-bottom: 1px solid #eef1f9;
	text-align: center;
	color: var(--h-ink);
}
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--h-navy); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: #f9faff; }
.compare-table .si  { color: var(--h-green); font-weight: 800; font-size: 1.1rem; }
.compare-table .no  { color: #d1d5db; font-weight: 700; }
.compare-table .neg { color: #ef4444; font-weight: 700; font-size: .95rem; }

/* ═══════════════════════════════════════════════════════
   SECCIÓN: TESTIMONIOS
═══════════════════════════════════════════════════════ */
.t-card {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 18px;
	padding: 28px;
	height: 100%;
	transition: border-color .25s;
}
.t-card:hover { border-color: rgba(255,255,255,.2); }
.t-stars  { color: #fbbf24; letter-spacing: 2px; margin-bottom: 14px; font-size: .9rem; }
.t-quote  { color: rgba(255,255,255,.8); font-style: italic; font-size: .88rem; line-height: 1.75; margin-bottom: 20px; }
.t-footer { display: flex; align-items: center; gap: 12px; }
.t-ava {
	width: 42px; height: 42px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-weight: 800; font-size: .9rem; color: #fff;
	flex-shrink: 0;
}
.t-name { color: #fff; font-weight: 700; font-size: .87rem; }
.t-meta { font-size: .73rem; margin-top: 2px; }

/* ═══════════════════════════════════════════════════════
   SECCIÓN: HOW IT WORKS
═══════════════════════════════════════════════════════ */
.step-card {
	position: relative;
	padding: 28px;
	background: #fff;
	border: 1.5px solid var(--h-border);
	border-radius: var(--radius);
	height: 100%;
	transition: all .25s;
}
.step-card:hover { border-color: var(--h-indigo); box-shadow: 0 8px 28px rgba(59,91,219,.1); transform: translateY(-3px); }
.step-num {
	width: 40px; height: 40px;
	background: var(--h-indigo);
	color: #fff;
	border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display);
	font-weight: 700; font-size: 1.1rem;
	margin-bottom: 16px;
}
.step-card h5 { font-weight: 700; color: var(--h-navy); font-size: .97rem; margin-bottom: 8px; }
.step-card p  { color: var(--h-slate); font-size: .84rem; line-height: 1.65; margin: 0; }
.step-connector {
	position: absolute; top: 36px; right: -22px;
	color: var(--h-border); font-size: 1.4rem;
	z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   CTA FINAL ELEGANTE
═══════════════════════════════════════════════════════ */
.home-cta {
	background: linear-gradient(155deg, #060e1c 0%, #0b1d3d 50%, #1a2f6e 100%);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.home-cta::before {
	content: '';
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
	background-size: 50px 50px;
}
.cta-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
}
.cta-orb-1 { width: 400px; height: 400px; background: rgba(59,91,219,.12); top: -20%; left: -5%; }
.cta-orb-2 { width: 350px; height: 350px; background: rgba(167,139,250,.08); bottom: -15%; right: -5%; }

.home-cta h2 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 700; color: #fff;
	margin-bottom: 16px;
	position: relative;
}
.home-cta p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 44px; position: relative; }

.cta-choice-row {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	position: relative;
}

.cta-btn {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 15px 30px;
	border-radius: 14px;
	font-weight: 700; font-size: 1rem;
	text-decoration: none;
	transition: all .3s cubic-bezier(.34,1.56,.64,1);
}
.cta-btn.pj { background: linear-gradient(135deg, #1a4fa0, #2560c8); color: #fff; border: 1.5px solid rgba(201,168,76,.3); }
.cta-btn.pj:hover { box-shadow: 0 12px 32px rgba(26,79,160,.4); transform: translateY(-3px); }
.cta-btn.mpf { background: linear-gradient(135deg, #8b1a2f, #b8263e); color: #fff; border: 1.5px solid rgba(184,38,62,.4); }
.cta-btn.mpf:hover { box-shadow: 0 12px 32px rgba(139,26,47,.4); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════
   FOOTER MÍNIMO
═══════════════════════════════════════════════════════ */
.home-footer {
	background: #060d1a;
	padding: 36px 0;
	text-align: center;
	color: rgba(255,255,255,.35);
	font-size: .8rem;
}
.home-footer a { color: rgba(255,255,255,.45); text-decoration: none; }
.home-footer a:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════
   ANIMACIONES
═══════════════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.in { opacity: 1; transform: none; }
.fade-up.d1 { transition-delay: .1s; }
.fade-up.d2 { transition-delay: .2s; }
.fade-up.d3 { transition-delay: .3s; }
.fade-up.d4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 991px) {
	.choice-cards { grid-template-columns: 1fr 1fr; max-width: 100%; }
}
@media (max-width: 576px) {
	.choice-cards { grid-template-columns: 1fr; }
	.home-hero { padding: 72px 0 60px; }
	.choice-card::after { display: none; }
	.home-nav .nav-links { display: none; }
	.stat-divider { display: none; }
	.h-section { padding: 64px 0; }
	.path-card { padding: 30px 22px; }
}

/* TEMA: PODER JUDICIAL */
.theme-pj {
	--primary-color: #0d2247;
	--secondary-color: #1a4fa0;
	--bg-light: #e8f0fb;
	--bg-f: #f4f7fc;
	--accent-color: #c9a84c;
	--accent-hover: #e0b95e;
	--accent-light: #f0d080;
	--text-color: #1a2744;
	--text-muted: #5a6a8a;
	--hero-bg-start: #081833;
	--hero-circle: rgba(201,168,76,.18);
	--hero-badge-bg: rgba(201,168,76,.18);
	--hero-badge-border: rgba(201,168,76,.4);
	--btn-text-color: #0a1e45;
	--shadow-color: rgba(26,79,160,.14);
	--accent-shadow: rgba(201,168,76,.45);
	--pill-border: #c5d8f0;
	--accordion-active-color: var(--secondary-color);
	--accordion-active-bg: var(--bg-light);
}

/* TEMA: MINISTERIO PÚBLICO FISCAL */
.theme-mpf {
	--primary-color: #0e1f3b;
	--secondary-color: #153a70;
	--bg-light: #eef1f9;
	--bg-f: #f2f4fb;
	--accent-color: #8b1a2f;
	--accent-hover: #c0283e;
	--accent-light: #e8899a;
	--text-color: #1a2233;
	--text-muted: #556080;
	--hero-bg-start: #07101f;
	--hero-circle: rgba(139,26,47,.2);
	--hero-badge-bg: rgba(139,26,47,.25);
	--hero-badge-border: rgba(192,40,62,.45);
	--btn-text-color: #ffffff;
	--shadow-color: rgba(139,26,47,.12);
	--accent-shadow: rgba(139,26,47,.45);
	--pill-border: #c8d0e8;
	--accordion-active-color: var(--accent-color);
	--accordion-active-bg: #fdf2f4;
}

.landing-page * { box-sizing: border-box; }
.landing-page { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-color); }
.landing-page-wrap { margin: 0 !important; padding: 0 !important; max-width: 100% !important; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero-section {
	background: linear-gradient(140deg, var(--hero-bg-start) 0%, var(--primary-color) 40%, var(--secondary-color) 100%);
	padding: 90px 0 0;
	position: relative;
	overflow: hidden;
}
.hero-section::before {
	content: '';
	position: absolute; top: -40%; right: -15%;
	width: 650px; height: 650px;
	background: radial-gradient(circle, var(--hero-circle) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.hero-section::after {
	content: '';
	position: absolute; bottom: 10%; left: -10%;
	width: 420px; height: 420px;
	background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.hero-badge {
	display: inline-block;
	background: var(--hero-badge-bg);
	border: 1px solid var(--hero-badge-border);
	color: var(--accent-light);
	padding: 6px 20px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	margin-bottom: 22px;
}
.hero-section h1 {
	font-family: 'Lora', serif;
	font-size: clamp(2rem, 4.5vw, 3.6rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.18;
	margin-bottom: 20px;
}
.hero-section h1 em {
	color: var(--accent-light);
	font-style: normal;
}
.hero-section .hero-lead {
	font-size: 1.05rem;
	color: rgba(255,255,255,.8);
	line-height: 1.7;
	max-width: 560px;
	margin-bottom: 32px;
}
.hero-section .hero-card {
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.13);
	border-radius: var(--radius);
	padding: 28px;
}
.hero-section .hero-card-title {
	font-family: 'Lora', serif;
	font-size: 1rem;
	color: var(--accent-light);
	font-weight: 600;
	margin-bottom: 16px;
	text-align: center;
}
.exam-row {
	background: rgba(255,255,255,.09);
	border-radius: 10px;
	padding: 12px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}
.exam-row:last-child { margin-bottom: 0; }
.exam-row .exam-emoji { font-size: 1.5rem; }
.exam-row .exam-name { color: #fff; font-weight: 600; font-size: .95rem; }
.exam-row .exam-check { margin-left: auto; color: #86efac; font-size: 1.2rem; }

/* Especial MPF Hero Rows */
.exam-row-single {
	background: rgba(139,26,47,.25);
	border: 1px solid rgba(192,40,62,.35);
	border-radius: 12px;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}
.exam-row-single .exam-emoji { font-size: 2rem; }
.exam-row-single .exam-name  { color: #fff; font-weight: 700; font-size: 1.05rem; }
.exam-row-single .exam-sub   { color: rgba(255,255,255,.6); font-size: .8rem; margin-top: 2px; }
.exam-row-single .exam-check { margin-left: auto; color: #86efac; font-size: 1.4rem; }

.exam-no-row {
	background: rgba(255,255,255,.04);
	border: 1px dashed rgba(255,255,255,.12);
	border-radius: 10px;
	padding: 10px 18px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.exam-no-row:last-child { margin-bottom: 0; }
.exam-no-row span { color: rgba(255,255,255,.35); font-size: .84rem; text-decoration: line-through; }
.exam-no-row .no-x { color: rgba(255,255,255,.25); font-size: 1rem; }

.stats-bar {
	background: rgba(0,0,0,.25);
	border-top: 1px solid rgba(255,255,255,.08);
	padding: 22px 0;
	margin-top: 60px;
}
.stat-item { text-align: center; }
.stat-item .num {
	font-family: 'Lora', serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--accent-light);
	display: block;
}
.stat-item .lbl {
	font-size: .75rem;
	color: rgba(255,255,255,.6);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════
   BOTONES
═══════════════════════════════════════════════ */
.btn-primary {
	background: var(--accent-color);
	color: var(--btn-text-color) !important;
	font-weight: 700;
	padding: 13px 30px;
	border-radius: 10px;
	border: none;
	font-size: .97rem;
	transition: all .28s;
	text-decoration: none;
	display: inline-block;
}
.btn-primary:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px var(--accent-shadow);
}
.btn-ghost {
	background: transparent;
	color: #fff !important;
	border: 2px solid rgba(255,255,255,.35);
	font-weight: 600;
	padding: 11px 26px;
	border-radius: 10px;
	font-size: .97rem;
	transition: all .28s;
	text-decoration: none;
	display: inline-block;
}
.btn-ghost:hover {
	border-color: #fff;
	background: rgba(255,255,255,.1);
}

/* ═══════════════════════════════════════════════
   SECCIONES GENÉRICAS
═══════════════════════════════════════════════ */
.content-section { padding: 80px 0; }
.content-section.bg-f { background: var(--bg-f); }
.content-section.bg-w { background: #fff; }
.content-section.bg-d { background: var(--primary-color); }

.section-eyebrow {
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--secondary-color);
	margin-bottom: 10px;
}
.theme-mpf .section-eyebrow { color: var(--accent-color); }
.section-eyebrow.on-dark { color: rgba(255,255,255,.5); }

.section-title {
	font-family: 'Lora', serif;
	font-size: clamp(1.7rem, 3vw, 2.6rem);
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1.25;
}
.section-title.on-dark { color: #fff; }

/* ═══════════════════════════════════════════════
   COMPONENTES VARIOS (Cartas, Alertas, Info)
═══════════════════════════════════════════════ */
.theme-alert {
	background: rgba(139,26,47,.2);
	border: 1px solid rgba(192,40,62,.4);
	border-radius: 12px;
	padding: 16px 20px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 28px;
	max-width: 560px;
}
.theme-alert .icon { font-size: 1.4rem; flex-shrink: 0; }
.theme-alert p { color: rgba(255,255,255,.85); font-size: .88rem; line-height: 1.6; margin: 0; }
.theme-alert strong { color: var(--accent-light); }

.exam-card {
	border: 1.5px solid #dde6f5;
	border-radius: var(--radius);
	padding: 30px;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: all .3s;
	background: #fff;
}
.exam-card::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
	border-radius: var(--radius) var(--radius) 0 0;
}
.exam-card:hover {
	border-color: var(--secondary-color);
	box-shadow: 0 14px 40px var(--shadow-color);
	transform: translateY(-4px);
}
.exam-icon-box {
	width: 60px; height: 60px;
	background: var(--bg-light);
	border-radius: 14px;
	display: flex; align-items: center; justify-content: center;
	font-size: 26px;
	margin-bottom: 18px;
}
.exam-card h3 {
	font-family: 'Lora', serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
}
.exam-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }
.exam-feature-list { list-style: none; padding: 0; margin: 14px 0 0; }
.exam-feature-list li {
	display: flex; align-items: center; gap: 8px;
	font-size: .82rem; color: #374151;
	padding: 5px 0;
	border-bottom: 1px solid #f1f5f9;
}
.exam-feature-list li:last-child { border: none; }
.exam-feature-list li i { color: var(--success-color); }

.feature-mini-card {
	background: #fff;
	border: 1.5px solid #e2e8f0;
	border-radius: 14px;
	padding: 22px;
	height: 100%;
	transition: all .25s;
}
.feature-mini-card:hover {
	border-color: var(--secondary-color);
	box-shadow: 0 6px 20px var(--shadow-color);
}
.feature-mini-card .fi { font-size: 1.5rem; color: var(--secondary-color); margin-bottom: 10px; display: block; }
.feature-mini-card h6 { font-weight: 700; color: var(--primary-color); font-size: .88rem; margin-bottom: 6px; }
.feature-mini-card p { font-size: .8rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

.feature-row {
	display: flex; gap: 18px; align-items: flex-start;
	margin-bottom: 26px;
}
.feature-row-icon {
	width: 52px; height: 52px;
	background: var(--bg-light);
	border-radius: 13px;
	display: flex; align-items: center; justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}
.feature-row h6 { font-weight: 700; color: var(--primary-color); margin-bottom: 5px; }
.feature-row p { font-size: .85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.materia-pill {
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--bg-light);
	border: 1px solid var(--pill-border);
	color: var(--secondary-color);
	padding: 7px 14px;
	border-radius: 50px;
	font-size: .82rem;
	font-weight: 600;
	margin: 4px;
}

.info-highlight {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	border-radius: 20px;
	padding: 36px;
	color: #fff;
}
.info-highlight h4 {
	font-family: 'Lora', serif;
	font-size: 1.4rem;
	margin-bottom: 16px;
	color: #fff;
}
.info-highlight p { color: rgba(255,255,255,.8); line-height: 1.7; font-size: .95rem; }
.info-highlight .badge-pill {
	display: inline-block;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.2);
	color: var(--accent-light);
	padding: 6px 14px;
	border-radius: 50px;
	font-size: .8rem;
	font-weight: 700;
	margin: 4px;
}

.feature-big-card {
	background: #fff;
	border: 1.5px solid #dde4f5;
	border-radius: var(--radius);
	padding: 28px;
	height: 100%;
	transition: all .3s;
	position: relative;
	overflow: hidden;
}
.feature-big-card::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}
.feature-big-card:hover {
	border-color: var(--accent-color);
	box-shadow: 0 12px 36px var(--shadow-color);
	transform: translateY(-3px);
}
.feature-big-card .fbc-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.feature-big-card h5 { font-weight: 700; color: var(--primary-color); font-size: 1rem; margin-bottom: 8px; }
.feature-big-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.modo-card { border-radius: var(--radius); padding: 28px; height: 100%; }
.modo-card.examen { background: var(--primary-color); color: #fff; }
.modo-card.aprendizaje { background: var(--bg-f); border: 1.5px solid #dde4f5; }
.modo-card h4 { font-family: 'Lora', serif; font-size: 1.25rem; margin-bottom: 8px; }
.modo-card.examen h4 { color: #fff; }
.modo-card.aprendizaje h4 { color: var(--primary-color); }
.modo-card .modo-badge {
	display: inline-block; padding: 4px 14px; border-radius: 50px;
	font-size: .75rem; font-weight: 700; margin-bottom: 14px;
}
.modo-card.examen .modo-badge { background: var(--accent-color); color: #fff; }
.modo-card.aprendizaje .modo-badge { background: var(--success-color); color: #fff; }
.modo-card p { font-size: .87rem; line-height: 1.65; }
.modo-card.examen p { color: rgba(255,255,255,.75); }
.modo-card.aprendizaje p { color: var(--text-muted); }
.modo-list { list-style: none; padding: 0; margin: 14px 0 0; }
.modo-list li {
	display: flex; align-items: center; gap: 8px; font-size: .84rem;
	padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.modo-card.aprendizaje .modo-list li { border-color: #dde4f5; color: var(--text-color); }
.modo-card.examen .modo-list li { color: rgba(255,255,255,.8); }
.modo-list li:last-child { border: none; }

.pain-card { background: #fff; border: 1.5px solid #dde4f5; border-radius: var(--radius); padding: 26px; height: 100%; }
.pain-label { font-size: .72rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.pain-card .problema { color: var(--accent-color); }
.pain-card .solucion { color: var(--success-color); margin-top: 14px; }
.pain-card .problema-txt { color: var(--text-muted); font-size: .87rem; line-height: 1.6; }
.pain-card .solucion-txt { color: var(--text-color); font-size: .87rem; line-height: 1.6; font-weight: 500; }

.compare-table {
	width: 100%; border-collapse: separate; border-spacing: 0;
	border: 1.5px solid #dde4f5; border-radius: var(--radius);
	overflow: hidden; font-size: .88rem;
}
.compare-table th { background: var(--primary-color); color: #fff; padding: 14px 20px; font-weight: 700; text-align: center; }
.compare-table th:first-child { text-align: left; }
.compare-table td { padding: 13px 20px; border-bottom: 1px solid #eef1f9; color: var(--text-color); text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--primary-color); }
.compare-table tr:last-child td { border: none; }
.compare-table tr:nth-child(even) td { background: #f9faff; }
.compare-table .si  { color: var(--success-color); font-weight: 700; font-size: 1.1rem; }
.compare-table .no  { color: #d1d5db; font-weight: 700; font-size: 1.1rem; }
.compare-table th.mpf-col { background: var(--accent-color); }

/* ═══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
.pricing-header { text-align: center; margin-bottom: 48px; }
.pricing-card {
	background: #fff; border: 2px solid #dde6f5; border-radius: 20px;
	padding: 36px 28px; height: 100%; position: relative;
	transition: box-shadow .3s, transform .3s;
}
.pricing-card:hover { box-shadow: 0 16px 48px var(--shadow-color); transform: translateY(-3px); }
.pricing-card.featured {
	border-color: var(--secondary-color);
	box-shadow: 0 12px 40px var(--shadow-color);
}
.theme-mpf .pricing-card.featured { border-color: var(--accent-color); }

.p-badge {
	position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
	padding: 4px 20px; border-radius: 50px; font-size: 11px; font-weight: 800;
	letter-spacing: 1.2px; text-transform: uppercase; white-space: nowrap;
}
.p-badge.green { background: var(--success-color); color: #fff; }
.p-badge.blue  { background: var(--secondary-color); color: #fff; }
.p-badge.gold, .p-badge.red, .p-badge.accent { background: var(--accent-color); color: var(--btn-text-color); }

.p-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.p-title   { font-family: 'Lora', serif; font-size: 1.35rem; font-weight: 700; color: var(--primary-color); margin-bottom: 4px; }
.p-desc    { font-size: .82rem; color: var(--text-muted); font-style: italic; margin-bottom: 22px; }
.p-old     { text-decoration: line-through; color: var(--text-muted); font-size: 1.1rem; line-height: 1; }
.p-amount  { font-family: 'Lora', serif; font-size: 3rem; font-weight: 700; color: var(--primary-color); line-height: 1; }
.p-amount sup { font-size: 1.5rem; }
.p-note    { font-size: .76rem; color: var(--text-muted); margin: 6px 0 24px; }

.btn-pay {
	display: block; width: 100%; padding: 13px; border-radius: 10px;
	font-weight: 700; font-size: .97rem; text-align: center; text-decoration: none;
	transition: all .28s; margin-bottom: 24px; border: none; cursor: pointer;
}
.btn-pay.green { background: var(--success-color); color: #fff !important; }
.btn-pay.green:hover { background: #15803d; box-shadow: 0 6px 20px rgba(22,163,74,.35); }
.btn-pay.blue  { background: var(--secondary-color); color: #fff !important; }
.btn-pay.blue:hover  { background: var(--primary-color); box-shadow: 0 6px 20px var(--shadow-color); }
.btn-pay.red, .btn-pay.accent { background: var(--accent-color); color: var(--btn-text-color) !important; }
.btn-pay.red:hover, .btn-pay.accent:hover { background: var(--accent-hover); box-shadow: 0 6px 20px var(--accent-shadow); }

.p-features { list-style: none; padding: 0; margin: 0; }
.p-features li { display: flex; align-items: flex-start; gap: 9px; padding: 8px 0; border-bottom: 1px solid #f1f5f9; font-size: .875rem; color: var(--text-color); line-height: 1.5; }
.p-features li:last-child { border: none; }
.p-features li i { color: var(--success-color); flex-shrink: 0; margin-top: 2px; }

.ahorro-box { background: #fffbeb; border: 2px solid #fcd34d; border-radius: var(--radius); padding: 24px 28px; margin-top: 48px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ahorro-box .icon { font-size: 2.2rem; }
.ahorro-box h5 { font-family: 'Lora', serif; color: #92400e; margin-bottom: 6px; }
.ahorro-box p  { color: #78350f; font-size: .87rem; margin: 0; }

.guarantee-box { background: #f0fdf4; border: 2px solid #86efac; border-radius: var(--radius); padding: 30px; text-align: center; }
.guarantee-box h5 { font-family: 'Lora', serif; color: #15803d; font-size: 1.25rem; margin: 10px 0 8px; }
.guarantee-box p  { color: #166534; font-size: .88rem; margin: 0; }

/* ═══════════════════════════════════════════════
   TESTIMONIOS
═══════════════════════════════════════════════ */
.testimonial-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 30px; height: 100%; }
.t-stars  { color: var(--accent-light); margin-bottom: 14px; letter-spacing: 2px; }
.t-text   { color: rgba(255,255,255,.85); font-style: italic; font-size: .9rem; line-height: 1.7; margin-bottom: 18px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-color); display: flex; align-items: center; justify-content: center; color: var(--btn-text-color); font-weight: 700; font-size: 15px; flex-shrink: 0; }
.theme-pj .t-avatar { background: var(--secondary-color); color: #fff; }
.t-name { color: #fff; font-weight: 700; font-size: .88rem; }
.t-role { color: var(--accent-light); font-size: .76rem; }

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.custom-accordion .accordion-item { border: 1.5px solid #dde6f5 !important; border-radius: 12px !important; margin-bottom: 10px; overflow: hidden; }
.custom-accordion .accordion-button { font-weight: 600; color: var(--primary-color) !important; font-size: .92rem; background: #fff !important; box-shadow: none !important; }
.custom-accordion .accordion-button:not(.collapsed) { color: var(--accordion-active-color) !important; background: var(--accordion-active-bg) !important; }
.custom-accordion .accordion-body { color: var(--text-muted); font-size: .88rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════
   CTA FINAL & DIVISOR
═══════════════════════════════════════════════ */
.cta-section { background: linear-gradient(140deg, var(--primary-color) 0%, var(--secondary-color) 100%); padding: 80px 0; text-align: center; }
.theme-mpf .cta-section { background: linear-gradient(140deg, var(--primary-color) 0%, var(--accent-color) 100%); }
.cta-section h2 { font-family: 'Lora', serif; font-size: clamp(1.8rem,3vw,2.6rem); color: #fff; margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 34px; }

.section-divider { height: 3px; background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--secondary-color)); border: none; margin: 0; }

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS & RESPONSIVE
═══════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.in { opacity: 1; transform: none; }
.fade-up.d1 { transition-delay: .1s; }
.fade-up.d2 { transition-delay: .2s; }
.fade-up.d3 { transition-delay: .3s; }

@media (max-width: 768px) {
	.hero-section { padding: 60px 0 0; }
	.p-amount { font-size: 2.4rem; }
	.content-section { padding: 56px 0; }
	.compare-table { font-size: .78rem; }
	.compare-table th, .compare-table td { padding: 10px 12px; }
}

/* ═══════════════════════════════════════════════════════
   BANNER DE TRÁFICO CRUZADO
═══════════════════════════════════════════════════════ */
.cross-traffic-wrapper {
	padding: 20px 15px 0; /* Espaciado para que no se pegue al elemento superior */
	background: transparent;
}

.cross-traffic-banner {
	background: linear-gradient(90deg, var(--h-light) 0%, #fff 100%);
	border: 1px solid var(--h-border);
	border-radius: 14px;
	padding: 18px 24px;
	margin: 0 auto;
	max-width: 900px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	box-shadow: 0 4px 15px rgba(11, 22, 40, 0.04);
	transition: border-color 0.3s ease;
}

.cross-traffic-banner:hover {
	border-color: rgba(59, 91, 219, 0.3); /* Un leve brillo indigo al pasar el mouse */
}

.cross-traffic-content {
	display: flex;
	align-items: center;
	gap: 16px;
}

.cross-traffic-icon {
	font-size: 2rem;
	line-height: 1;
	background: rgba(255,255,255,0.5);
	padding: 8px;
	border-radius: 10px;
}

.cross-traffic-text p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--h-slate);
	line-height: 1.5;
}

.cross-traffic-text strong {
	color: var(--h-navy);
	font-family: var(--font-display);
	font-size: 1.05rem;
	display: block;
	margin-bottom: 2px;
}

.cross-traffic-btn {
	background: #fff;
	color: var(--h-navy) !important;
	border: 1px solid var(--h-border);
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 10px;
	font-size: 0.85rem;
	font-weight: 700;
	white-space: nowrap;
	transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cross-traffic-btn:hover {
	background: var(--h-navy);
	color: #fff !important;
	border-color: var(--h-navy);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(15, 32, 68, 0.15);
}

/* Colores específicos según hacia dónde dirige el botón */
.cross-traffic-btn.btn-to-mpf:hover {
	background: var(--mpf-color);
	border-color: var(--mpf-color);
	box-shadow: 0 6px 16px rgba(184, 38, 62, 0.2);
}

.cross-traffic-btn.btn-to-pj:hover {
	background: var(--pj-color);
	border-color: var(--pj-color);
	box-shadow: 0 6px 16px rgba(201, 168, 76, 0.2);
}

@media (max-width: 768px) {
	.cross-traffic-banner {
		flex-direction: column;
		text-align: center;
		padding: 24px 20px;
	}
	.cross-traffic-content {
		flex-direction: column;
		gap: 12px;
	}
	.cross-traffic-btn {
		width: 100%;
		text-align: center;
	}
}