/* ═══════════════════════════════════════════════
   E&E Funding Inc — Home Page Styles
   Paleta: Verde Bosque + Dorado (aprobada)
   Tipografia: Bodoni Moda + Outfit
   Mobile-first | iPhone SE 375px base
   ═══════════════════════════════════════════════ */

:root {
  /* ── Verde Bosque ── */
  --em-deep:    #14532d;
  --em-mid:     #16a34a;
  --em-light:   #4ade80;
  --em-pale:    #dcfce7;
  --em-darker:  #052e16;

  --gold:       #D4A520;
  --gold-dark:  #B88912;

  --violet:     #7c3aed;
  --violet-pale:#ede9fe;

  --white:      #ffffff;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-300:   #d1d5db;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7280;
  --gray-600:   #4b5563;
  --gray-800:   #1f2937;
  --near-black: #080f08;
  --dark-calc:  #071a0d;

  --ff-display: 'Bodoni Moda', Georgia, serif;
  --ff-body:    'Outfit', system-ui, sans-serif;

  --section-pad:    4.5rem 0;
  --section-pad-mob: 3rem 0;
  --wrap-max:       1280px;
  --wrap-pad:       0 1.5rem;
  --wrap-pad-mob:   0 1rem;
  --grid-gap:       1.25rem;

  --radius-sm:  0.125rem;
  --radius-md:  0.25rem;
  --radius-lg:  0.5rem;
  --radius-xl:  0.75rem;
  --radius-full:9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
  --shadow-xl:  0 16px 48px rgba(0,0,0,.18);
}

/* ── Header: logo + título en fila ── */
.ct-header [data-id="logo"] {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.75rem !important;
}

.ct-header [data-id="logo"] .site-logo-container {
  display: block !important;
  flex-shrink: 0 !important;
}

.ct-header [data-id="logo"] .site-logo-container img {
  height: 52px !important;
  width: auto !important;
  max-width: none !important;
}

.ct-header [data-id="logo"] .site-title-container {
  display: block !important;
}

.ct-header [data-id="logo"] .site-title a {
  font-family: var(--ff-display) !important;
  font-style: italic !important;
  font-weight: 800 !important;
  font-size: clamp(1.1rem, 2vw, 1.45rem) !important;
  color: var(--gold) !important;
  text-decoration: none !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

@media (max-width: 999px) {
  .ct-header [data-id="logo"] .site-logo-container img {
    height: 38px !important;
  }
  .ct-header [data-id="logo"] .site-title a {
    font-size: 1.85rem !important;
    line-height: 1 !important;
  }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: var(--ff-body); color: var(--gray-800); background: var(--white); overflow-x: hidden; line-height: 1.6; }
/* Responsive media — ningún elemento multimedia desborda su contenedor */
img, svg, video, canvas, audio, iframe, embed, object { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }
/* Prevenir overflow horizontal por texto largo en cualquier contenedor */
p, li, dd, dt, blockquote, figcaption { overflow-wrap: break-word; word-break: break-word; }

/* ── Accesibilidad: Skip-to-content ── */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
}
.skip-to-content:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 0.5rem;
  width: auto;
  height: auto;
  overflow: visible;
  padding: 0.75rem 1.5rem;
  background: var(--em-deep);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-xl);
  border: 2px solid var(--em-light);
  outline: none;
  box-shadow: var(--shadow-lg);
}

/* ── Accesibilidad: Focus visible global ── */
:focus-visible {
  outline: 2px solid var(--em-light);
  outline-offset: 3px;
}
.btn:focus-visible,
.eee-btn-gold:focus-visible,
.eee-btn-outline-white:focus-visible,
.eee-btn-outline-green:focus-visible,
.eee-btn-violet:focus-visible,
[class*="btn"]:focus-visible {
  outline: 2px solid var(--em-light);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(74,222,128,.25);
}
/* Sobre fondos oscuros usar dorado para mejor contraste */
.hero-atlas :focus-visible,
.atlas-cta :focus-visible,
.eee-footer :focus-visible,
.hero :focus-visible {
  outline-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,165,32,.3);
}

/* ── Visually hidden (para contenido solo de lectores de pantalla) ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Layout ── */
.wrap { max-width: var(--wrap-max); margin: 0 auto; padding: var(--wrap-pad-mob); }
@media (min-width: 768px) { .wrap { padding: var(--wrap-pad); } }

/* ── Tipografia ── */
.h1 { font-family: var(--ff-display); font-weight: 800; font-style: italic; font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1.1; letter-spacing: -0.02em; }
.h2 { font-family: var(--ff-display); font-weight: 800; font-style: italic; font-size: clamp(1.4rem, 2.4vw, 2.1rem); line-height: 1.15; letter-spacing: -0.01em; }
.h3 { font-family: var(--ff-display); font-weight: 700; font-style: italic; font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.2; }
.label { font-family: var(--ff-body); font-weight: 700; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; display: inline-block; padding: 0.3rem 0.9rem; border-radius: var(--radius-full); }
.section-label { display:inline-block; font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; padding:.3rem .9rem; border-radius:var(--radius-full); margin-bottom:1rem; }
.label-green { background:var(--em-mid); color:var(--white); }
.label-dark  { background:rgba(255,255,255,.12); color:rgba(255,255,255,.8); }

/* ── Botones ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--ff-body); font-weight: 700; font-size: 0.82rem; padding: 0.6rem 1.5rem; border-radius: var(--radius-xl); transition: all .2s ease; border: 2px solid transparent; white-space: nowrap; }
.btn-gold { background: var(--gold); color: #111; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,.5); color: var(--white); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-green { background: transparent; border: 2px solid var(--em-mid); color: var(--em-deep); }
.btn-outline-green:hover { background: rgba(22,163,74,.08); }
.btn-violet { background: var(--violet); color: var(--white); border-color: var(--violet); }
.btn-violet:hover { background: #6d28d9; transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; border-radius: var(--radius-lg); }
.w-full { width: 100%; }

/* Alias con prefijo eee- (usado en templates servicios, about, etc.) */
.eee-btn-gold { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--ff-body); font-weight: 700; font-size: 0.82rem; padding: 0.6rem 1.5rem; border-radius: var(--radius-xl); transition: all .2s ease; border: 2px solid transparent; white-space: nowrap; background: var(--gold); color: #111; border-color: var(--gold); }
.eee-btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.eee-btn-outline-white { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--ff-body); font-weight: 700; font-size: 0.82rem; padding: 0.6rem 1.5rem; border-radius: var(--radius-xl); transition: all .2s ease; border: 2px solid rgba(255,255,255,.5); white-space: nowrap; background: transparent; color: var(--white); }
.eee-btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: translateY(-2px); }
.eee-btn-outline-green { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--ff-body); font-weight: 700; font-size: 0.82rem; padding: 0.6rem 1.5rem; border-radius: var(--radius-xl); transition: all .2s ease; border: 2px solid var(--em-mid); white-space: nowrap; background: transparent; color: var(--em-deep); }
.eee-btn-outline-green:hover { background: rgba(22,163,74,.08); transform: translateY(-2px); }
.eee-btn-violet { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--ff-body); font-weight: 700; font-size: 0.82rem; padding: 0.6rem 1.5rem; border-radius: var(--radius-xl); transition: all .2s ease; border: 2px solid transparent; white-space: nowrap; background: var(--violet); color: var(--white); border-color: var(--violet); }
.eee-btn-violet:hover { background: #6d28d9; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.lift { transition: transform .25s ease, box-shadow .25s ease; }
.lift:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.gs-reveal { opacity: 0; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100dvh;
  background: var(--em-deep);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .hero { grid-template-columns: 56fr 44fr; } }

.hero-mesh {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(22,163,74,.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(74,222,128,.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(5,46,22,.5) 0%, transparent 60%);
}

.hero-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(70px + 3.5rem) 1.5rem 3rem;
}
@media (min-width: 768px) {
  .hero-content {
    padding: calc(80px + 5rem) 3rem 4rem 0;
    padding-left: max(3rem, calc((100vw - 1280px) / 2 + 1.5rem));
  }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.25);
  border-radius: var(--radius-full); padding: 0.4rem 1rem;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--em-light); width: fit-content; margin-bottom: 1.75rem;
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--em-light); position: relative;
}
.hero-badge .pulse::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid var(--em-light); animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }

.hero .h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero .h1 em { color: var(--em-light); font-style: italic; }

.hero-sub { font-size: clamp(1rem, 1.3vw, 1.15rem); color: rgba(255,255,255,.7); max-width: 480px; margin-bottom: 2rem; line-height: 1.7; }

.rate-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--em-light); flex-shrink: 0; animation: pulse-ring 1.5s ease-in-out infinite; }
@keyframes glowPulse { 0%,100%{box-shadow:0 0 28px 6px rgba(22,163,74,.2)} 50%{box-shadow:0 0 42px 12px rgba(22,163,74,.35)} }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* Trust bar styles moved to end of file */

/* Hero stats */
.hero-stats-inline {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  padding-top: 1.25rem; border-top: 1px solid rgba(74,222,128,.25); max-width: 480px;
}
.hero-stat-num { font-family: var(--ff-display); font-style: italic; font-size: 1.4rem; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,.55); margin-top: 0.3rem; }

/* Hero photo */
.hero-photo { position: relative; overflow: hidden; min-height: 600px; display: none; }
@media (min-width: 1024px) { .hero-photo { display: block; } }

.hero-photo::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, var(--em-deep) 0%, rgba(20,83,45,.4) 35%, transparent 65%);
}
.hero-photo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(20,83,45,.65), transparent); z-index: 1;
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Hero wave separator */
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; width: 100%; height: 60px; z-index: 2;
  grid-column: 1 / -1;
}
.hero-wave svg { width: 100%; height: 100%; display: block; }

/* ── RATES ── */
.rates { padding: var(--section-pad-mob); background: var(--white); }
@media (min-width: 768px) { .rates { padding: var(--section-pad); } }

.rates-header { text-align: center; margin-bottom: 3.5rem; }
.rates-header .label { background: var(--em-mid); color: var(--white); margin-bottom: 1rem; }
.rates-header .h2 { color: var(--em-deep); margin-bottom: 1rem; }
.rates-header p { color: var(--gray-600); max-width: 560px; margin: 0 auto; }

.rates-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .rates-grid { grid-template-columns: repeat(3, 1fr); } }

.rate-card {
  background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 2rem; position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.rate-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--em-mid); }

.rate-card.featured { background: var(--em-deep); border-color: var(--em-deep); color: var(--white); }
.rate-card.featured::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--em-mid), var(--em-light));
}

.rate-badge {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: var(--radius-full); width: fit-content; margin-bottom: 1.25rem;
}
.badge-featured { background: var(--gold); color: #111; }
.badge-default  { background: var(--em-mid); color: var(--white); }

.rate-type { font-size: 0.8rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--gray-600); }
.rate-card.featured .rate-type { color: rgba(255,255,255,.6); }

.rate-big { font-family: var(--ff-display); font-style: italic; font-weight: 800; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1; color: var(--em-deep); margin-bottom: 0.25rem; }
.rate-card.featured .rate-big { color: var(--em-light); }

.rate-apr { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.rate-card.featured .rate-apr { color: rgba(255,255,255,.45); }

.rate-details { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; }
.rate-detail {
  display: flex; justify-content: space-between; font-size: 0.82rem;
  padding-bottom: 0.6rem; border-bottom: 1px solid var(--gray-100);
}
.rate-card.featured .rate-detail { border-bottom-color: rgba(255,255,255,.1); }
.rate-detail-label { color: var(--gray-400); }
.rate-card.featured .rate-detail-label { color: rgba(255,255,255,.5); }
.rate-detail-val { font-weight: 700; color: var(--em-deep); }
.rate-card.featured .rate-detail-val { color: var(--white); }

.rates-disclaimer { text-align: center; font-size: 0.75rem; color: var(--gray-600); max-width: 640px; margin: 0 auto; line-height: 1.6; }

/* ── CALCULATOR ── */
.calc { padding: var(--section-pad-mob); background: var(--dark-calc); position: relative; overflow: hidden; }
@media (min-width: 768px) { .calc { padding: var(--section-pad); } }

.calc::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(22,163,74,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 30%, rgba(74,222,128,.06) 0%, transparent 50%);
}

.calc-inner { position: relative; z-index: 1; }

.calc-header { text-align: center; margin-bottom: 3.5rem; }
.calc-header .label { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.calc-header .h2 { color: var(--white); margin-bottom: 0.75rem; }
.calc-header p { color: rgba(255,255,255,.4); }

.calc-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .calc-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.calc-controls { display: flex; flex-direction: column; gap: 2rem; }

.calc-field label { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.75rem; }
.calc-field-name { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,.4); }
.calc-field-val { font-family: var(--ff-display); font-style: italic; font-size: 1.4rem; font-weight: 800; color: var(--em-light); }

input[type=range] { -webkit-appearance: none; width: 100%; height: 4px; border-radius: 2px; outline: none; cursor: pointer; border: none; }
input[type=range]:focus-visible { outline: 2px solid var(--em-light); outline-offset: 4px; border-radius: 2px; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--white); box-shadow: 0 2px 8px rgba(0,0,0,.3); cursor: pointer; transition: transform .2s; }
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type=range]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--white); box-shadow: 0 2px 8px rgba(0,0,0,.3); cursor: pointer; }

#amountSlider { background: linear-gradient(to right, var(--em-mid) 0%, var(--em-mid) var(--amt-pct,25%), rgba(255,255,255,.1) var(--amt-pct,25%)); }
#rateSlider   { background: linear-gradient(to right, var(--gold) 0%, var(--gold) var(--rate-pct,35%), rgba(255,255,255,.1) var(--rate-pct,35%)); }

.calc-term-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,.4); margin-bottom: 0.75rem; }
.term-btns { display: flex; gap: 0.75rem; }
.term-btn { flex: 1; padding: 0.6rem; border-radius: var(--radius-md); border: 1.5px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-family: var(--ff-body); font-weight: 700; font-size: 0.85rem; transition: all .2s; background: transparent; }
.term-btn.active { background: var(--em-mid); border-color: var(--em-mid); color: var(--white); }
.term-btn:hover:not(.active) { border-color: rgba(255,255,255,.35); color: rgba(255,255,255,.8); }

.calc-results { display: flex; flex-direction: column; gap: 1rem; }
.calc-result-box {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.calc-result-box.highlight { background: rgba(22,163,74,.12); border-color: var(--em-mid); }
.calc-result-label { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,.4); }
.calc-result-val { font-family: var(--ff-display); font-style: italic; font-size: 1.6rem; font-weight: 800; color: var(--white); }
.calc-result-box.highlight .calc-result-val { color: var(--em-light); }
.calc-result-box.highlight .calc-result-label { color: rgba(255,255,255,.6); }

.calc-cta-wrap { margin-top: 1.5rem; }
.calc-cta-wrap .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }
.calc-note { font-size: 0.75rem; color: rgba(255,255,255,.25); margin-top: 0.75rem; text-align: center; }

/* ── PROCESS ── */
.process { padding: var(--section-pad-mob); background: var(--em-deep); }
@media (min-width: 768px) { .process { padding: var(--section-pad); } }

.process-header { text-align: center; margin-bottom: 4rem; }
.process-header .label { background: var(--em-mid); color: var(--white); margin-bottom: 1rem; }
.process-header .h2 { color: var(--white); margin-bottom: 1rem; }
.process-header p { color: rgba(255,255,255,.7); max-width: 480px; margin: 0 auto; }

.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; position: relative; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.steps-grid::before {
  content: ''; position: absolute; top: 2.75rem; left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem); height: 2px;
  background: repeating-linear-gradient(to right, rgba(255,255,255,.25) 0px, rgba(255,255,255,.25) 8px, transparent 8px, transparent 16px);
  display: none;
}
@media (min-width: 768px) { .steps-grid::before { display: block; } }

.step-card {
  background: rgba(255,255,255,.06); border-radius: var(--radius-xl); padding: 2rem 1.5rem;
  text-align: center; border: 1px solid rgba(255,255,255,.1);
}

.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: var(--em-deep);
  font-family: var(--ff-display); font-style: italic; font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; position: relative; z-index: 1;
}
.step-card:nth-child(4) .step-num { background: var(--white); color: var(--em-deep); }

.step-title { font-family: var(--ff-display); font-style: italic; font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.85rem; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ── PROGRAMS ── */
.programs { padding: var(--section-pad-mob); background: var(--white); }
@media (min-width: 768px) { .programs { padding: var(--section-pad); } }

.programs-header { text-align: center; margin-bottom: 3.5rem; }
.programs-header .label { background: var(--em-mid); color: var(--white); margin-bottom: 1rem; }
.programs-header .h2 { color: var(--em-deep); margin-bottom: 1rem; }
.programs-header p { color: var(--gray-600); max-width: 560px; margin: 0 auto; }

.programs-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .programs-grid { grid-template-columns: repeat(3, 1fr); } }

.program-card {
  border-radius: var(--radius-xl); padding: 2.5rem 2rem; position: relative; overflow: hidden;
  background: var(--white); border: 1.5px solid var(--gray-200);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--em-mid); }

.program-card.fha { background: var(--em-deep); color: var(--white); border-color: var(--em-deep); }
.program-card.fha::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 30% 70%, rgba(74,222,128,.1) 0%, transparent 60%);
}
.program-card.va { background: var(--violet-pale); border-color: rgba(124,58,237,.2); }

.program-badge {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: var(--radius-full); width: fit-content; margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}
.badge-hud  { background: var(--gold); color: #111; }
.badge-conv { background: var(--em-mid); color: var(--white); }
.badge-va   { background: var(--violet); color: var(--white); }
.badge-nqm  { background: rgba(212,165,32,.15); color: var(--gold-dark); }
.badge-std  { background: var(--em-mid); color: var(--white); }

.program-title { font-family: var(--ff-display); font-style: italic; font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.program-card.fha .program-title { color: var(--white); }
.program-card.va .program-title { color: var(--violet); }
.program-card:not(.fha):not(.va) .program-title { color: var(--em-deep); }

.program-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.program-card.fha .program-desc { color: rgba(255,255,255,.65); }
.program-card:not(.fha):not(.va) .program-desc { color: var(--gray-600); }
.program-card.va .program-desc { color: var(--gray-600); }

.program-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; position: relative; z-index: 1; }
.program-features li { font-size: 0.83rem; padding-left: 1.4rem; position: relative; line-height: 1.5; }
.program-features li::before { content: '✓'; position: absolute; left: 0; font-weight: 700; }
.program-card.fha .program-features li { color: rgba(255,255,255,.75); }
.program-card.fha .program-features li::before { color: var(--em-light); }
.program-card:not(.fha):not(.va) .program-features li { color: var(--gray-600); }
.program-card:not(.fha):not(.va) .program-features li::before { color: var(--em-mid); }
.program-card.va .program-features li { color: var(--gray-600); }
.program-card.va .program-features li::before { color: var(--violet); }

.program-link {
  font-size: 0.85rem; font-weight: 700; color: var(--em-mid);
  display: inline-flex; align-items: center; gap: 0.35rem; transition: gap .2s; position: relative; z-index: 1;
}
.program-link:hover { gap: 0.6rem; color: var(--gold); }
.program-card.fha .program-link { color: var(--gold); }
.program-card.va .program-link { color: var(--violet); }

/* ── AREAS ── */
.areas { padding: var(--section-pad-mob); background: var(--gray-50); }
@media (min-width: 768px) { .areas { padding: var(--section-pad); } }

.areas-header { text-align: center; margin-bottom: 3.5rem; }
.areas-header .label { background: var(--em-mid); color: var(--white); margin-bottom: 1rem; }
.areas-header .h2 { color: var(--em-deep); margin-bottom: 1rem; }
.areas-header p { color: var(--gray-600); max-width: 560px; margin: 0 auto; }

.areas-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }

.area-card {
  background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 1.75rem; text-align: center; position: relative; overflow: hidden;
  transition: all .25s ease;
}
.area-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); border-color: var(--em-mid); }

.area-card.priority { border-color: var(--em-mid); border-width: 2px; }
.area-card.priority::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--em-deep), var(--em-mid));
}

.area-dedicated {
  display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--em-mid); color: var(--white); padding: 0.25rem 0.6rem; border-radius: var(--radius-full); margin-bottom: 0.75rem;
}

.area-state { font-family: var(--ff-display); font-style: italic; font-size: 2rem; font-weight: 800; color: var(--em-deep); margin-bottom: 0.25rem; }
.area-name { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 0.75rem; }
.area-cities { font-size: 0.8rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 1rem; }
.area-hq { font-size: 0.7rem; font-weight: 700; color: var(--em-mid); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── TESTIMONIALS ── */
.testimonials { padding: var(--section-pad-mob); background: var(--em-deep); position: relative; overflow: hidden; }
@media (min-width: 768px) { .testimonials { padding: var(--section-pad); } }

.testimonials::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(22,163,74,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(74,222,128,.06) 0%, transparent 50%);
}

.testimonials-inner { position: relative; z-index: 1; }

.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header .label { background: rgba(255,255,255,.1); color: var(--em-light); margin-bottom: 1rem; }
.testimonials-header .h2 { color: var(--white); margin-bottom: 1rem; }
.testimonials-header p { color: rgba(255,255,255,.45); }

.t-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .t-grid { grid-template-columns: repeat(3, 1fr); } }

.t-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(74,222,128,.12);
  border-radius: var(--radius-xl); padding: 2rem; position: relative;
  backdrop-filter: blur(8px); transition: all .25s ease;
}
.t-card:hover { border-color: rgba(74,222,128,.3); transform: translateY(-4px); }

.t-stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.star { color: var(--gold); font-size: 0.9rem; }

.t-text { font-size: 0.9rem; color: rgba(255,255,255,.8); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.t-text::before { content: '"'; font-size: 1.4rem; color: var(--em-light); font-style: normal; }

.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--em-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-style: italic; font-weight: 800; font-size: 1rem; color: var(--white); flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 0.88rem; color: var(--white); }
.t-role { font-size: 0.75rem; color: rgba(255,255,255,.4); }

/* ── ABOUT ── */
.about-snippet { padding: var(--section-pad-mob); background: var(--white); }
@media (min-width: 768px) { .about-snippet { padding: var(--section-pad); } }

.about-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.about-content .label { background: var(--em-mid); color: var(--white); margin-bottom: 1rem; }
.about-content .h2 { color: var(--em-deep); margin-bottom: 1.25rem; line-height: 1.15; }
.about-content .h2 em { color: var(--em-mid); font-style: italic; }
.about-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.about-cta { margin-top: 1.5rem; }

.stats-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

.stat-box {
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 2rem; text-align: center;
}
.stat-box:first-child { background: var(--em-deep); border-color: var(--em-deep); }
.stat-box:first-child .stat-num { color: var(--em-light); }
.stat-box:first-child .stat-label { color: rgba(255,255,255,.45); }

.stat-num { font-family: var(--ff-display); font-style: italic; font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; color: var(--em-deep); line-height: 1; }
.stat-label { font-size: 0.78rem; font-weight: 700; color: var(--gray-400); margin-top: 0.4rem; }

/* ── FOOTER ── */
.footer { background: var(--near-black); padding: 3rem 0 1.5rem; }
@media (min-width: 768px) { .footer { padding: 4rem 0 2rem; } }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; } }

.footer-brand .logo { display: inline-block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,.35); line-height: 1.7; max-width: 280px; }

.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom { display: flex; flex-direction: column; gap: 1rem; align-items: center; padding-top: 1.5rem; font-size: 0.72rem; color: rgba(255,255,255,.28); line-height: 1.7; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }

.footer-legal strong { color: rgba(255,255,255,.45); }

.footer-badges { display: flex; gap: 1rem; align-items: center; flex-shrink: 0; }
.footer-badge {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem; font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 0.06em;
}

.footer-states { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.75rem; }
.footer-state {
  font-size: 0.68rem; font-weight: 700; color: var(--em-light);
  background: rgba(74,222,128,.07); border: 1px solid rgba(74,222,128,.2);
  padding: 0.2rem 0.6rem; border-radius: var(--radius-full);
}
.footer-state.priority { background: rgba(212,165,32,.1); border-color: rgba(212,165,32,.3); color: var(--gold); }

/* ── Banner de cookies ── */
.eee-cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99998;
  width: calc(100% - 2rem);
  max-width: 680px;
  background: var(--em-darker);
  border: 1px solid rgba(212,165,32,.25);
  border-radius: var(--radius-xl);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.eee-cookie-banner[hidden] { display: none; }
.eee-cookie-text {
  flex: 1;
  font-family: var(--ff-body);
  font-size: .875rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  margin: 0;
}
.eee-cookie-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.eee-cookie-actions {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}
.eee-cookie-btn {
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 700;
  padding: .45rem 1rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: opacity .15s;
}
.eee-cookie-btn:hover { opacity: .85; }
.eee-cookie-accept {
  background: var(--gold);
  color: #111;
}
.eee-cookie-reject {
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
}
@media (max-width: 600px) {
  .eee-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 5rem; /* por encima del bottom nav móvil */
  }
  .eee-cookie-actions { width: 100%; justify-content: flex-end; }
}

/* ── UTILIDADES ── */
.section-spacer { padding-bottom: calc(var(--section-pad-mob) + 60px); }
@media (min-width: 768px) { .section-spacer { padding-bottom: var(--section-pad); } }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Scrollbar styling ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--em-mid); border-radius: 4px; }

/* ═══════════════════════════════════════════════
   SERVICIOS / PRESTAMOS PAGE EXTRA STYLES
   ═══════════════════════════════════════════════ */

/* ── Services Hero Premium v3 — Full depth como home ── */
.services-hero-premium {
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  background: var(--em-deep);
  display: flex;
  flex-direction: column;
}

/* Fondo */
.services-hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.services-hero-mesh {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(22,163,74,.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(74,222,128,.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(5,46,22,.5) 0%, transparent 60%);
}

/* Orbs flotantes */
.services-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 2;
  opacity: .35;
}
.services-orb-green {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,222,128,.45) 0%, transparent 70%);
  top: -10%; left: -8%;
  animation: orbFloat 8s ease-in-out infinite;
}
.services-orb-gold {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212,165,32,.35) 0%, transparent 70%);
  bottom: 10%; right: -5%;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.08); }
}

/* Layout principal */
.services-hero-inner {
  position: relative; z-index: 3;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  padding: 7rem 1.5rem 5rem;
  padding-left: max(1.5rem, calc((100vw - 1280px) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100vw - 1280px) / 2 + 1.5rem));
}
@media (min-width: 1024px) {
  .services-hero-inner {
    grid-template-columns: 52fr 48fr;
    gap: 3rem;
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}

/* Columna texto */
.services-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.services-hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(74,222,128,.12);
  border: 1px solid rgba(74,222,128,.25);
  color: var(--em-light); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: var(--radius-full);
  width: fit-content; margin-bottom: 1.75rem;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--em-light); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.services-hero-title {
  font-family: var(--ff-display); font-style: italic; font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4.25rem); line-height: 1.1;
  color: var(--white); margin-bottom: 1.5rem; letter-spacing: -.02em;
}
.services-hero-title em { color: var(--em-light); font-style: italic; }
.services-hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.85); line-height: 1.7; max-width: 480px; margin-bottom: 2rem; }
.services-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* Trust items */
/* Program pills: tags de programas (distintas a trust items de la home) */
.services-program-pills {
  display: flex; align-items: center; gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.program-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-full);
  padding: .35rem .9rem;
  font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .08em;
  transition: all .2s ease;
}
.program-pill:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.25); }
.program-pill.pill-highlight {
  background: rgba(212,165,32,.12); border-color: rgba(212,165,32,.3); color: var(--gold);
}
.program-pill.pill-highlight:hover { background: rgba(212,165,32,.2); }

/* Stats strip: datos de servicio (distintos al product bar de la home) */
.services-stats-strip {
  display: flex; align-items: center; gap: 1.25rem;
  flex-wrap: wrap;
}
.services-stat {
  display: flex; flex-direction: column; align-items: flex-start; gap: .15rem;
}
.services-stat-num {
  font-family: var(--ff-display); font-style: italic; font-weight: 800;
  font-size: 1.4rem; color: var(--white); line-height: 1;
}
.services-stat-label {
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.4); line-height: 1;
  margin-bottom: .15rem;
}
.services-stat-sep {
  width: 1px; height: 32px; background: rgba(255,255,255,.12);
}

/* Visual column */
.services-hero-visual {
  display: none;
}
@media (min-width: 1024px) {
  .services-hero-visual { display: block; }
}
.services-visual-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-photo-wrap {
  position: relative;
  width: 420px; height: 420px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.services-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.services-photo[src]:not([src=""]) + .services-photo-fallback {
  display: none;
}
.services-photo-fallback {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: linear-gradient(160deg, #166534 0%, #14532d 50%, #052e16 100%);
  color: rgba(255,255,255,.25);
  z-index: 0;
}
.services-photo-fallback svg { width: 64px; height: 64px; opacity: .4; }
.services-photo-fallback p {
  font-size: .8rem; font-weight: 600; text-align: center; padding: 0 2rem;
}
.services-photo-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(212,165,32,.15);
  z-index: -1;
}

/* Wave separator */
.services-wave {
  position: relative; z-index: 5;
  width: 100%; height: 50px;
  display: block;
  margin-top: auto;
}

/* ── Services Section Header ── */
.services-section-header { text-align: center; margin-bottom: 3rem; }
.services-section-header h2 {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800;
  color: var(--em-deep); line-height: 1.15;
}

/* ── Services Grid Premium ── */
.services-grid-section { padding: 6rem 0; background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 50%, var(--white) 100%); }
.services-section-sub { font-size: 1.05rem; color: var(--gray-600); max-width: 520px; margin: -.5rem auto 0; text-align: center; }

.services-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

/* Nuevo boton outline violet */
.eee-btn-outline-violet { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--ff-body); font-weight: 700; font-size: 0.82rem; padding: 0.6rem 1.5rem; border-radius: var(--radius-xl); transition: all .2s ease; border: 2px solid var(--violet); white-space: nowrap; background: transparent; color: var(--violet); }
.eee-btn-outline-violet:hover { background: var(--violet-pale); transform: translateY(-2px); }

.service-card-premium {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--em-mid);
}

/* Featured: FHA */
.service-card-premium.featured {
  background: linear-gradient(160deg, var(--em-deep) 0%, #0a3a1c 100%);
  border: 2px solid var(--gold);
  box-shadow: 0 12px 40px rgba(5,46,22,.22);
  transform: scale(1.01);
}
.service-card-premium.featured:hover {
  transform: scale(1.01) translateY(-6px);
  box-shadow: 0 20px 56px rgba(5,46,22,.3);
  border-color: var(--gold);
}
.service-card-premium.featured::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 80%, rgba(74,222,128,.08) 0%, transparent 60%);
  pointer-events: none;
}

/* VA: acento contenido, sin fondo violeta */
.service-card-premium.va {
  background: var(--white);
  border-color: var(--gray-200);
}
.service-card-premium.va:hover { border-color: var(--violet); }

/* Badge flotante tipo banderola */
.service-card-badge {
  position: absolute; top: 0; right: 1.5rem;
  font-size: .6rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  background: var(--gold); color: #111;
  padding: .35rem .75rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 2px 8px rgba(212,165,32,.3);
}

/* Icono premium con fondo redondeado */
.sp-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--em-mid); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.sp-icon svg { width: 28px; height: 28px; }
.service-card-premium.featured .sp-icon {
  background: rgba(255,255,255,.08); color: var(--gold);
}
.sp-icon-green { background: var(--em-mid); color: var(--white); }
.sp-icon-violet { background: var(--violet-pale); color: var(--violet); }

/* Titulos */
.sp-title {
  font-family: var(--ff-display); font-style: italic;
  font-size: 1.4rem; font-weight: 800;
  margin-bottom: .5rem;
}
.service-card-premium.featured .sp-title { color: var(--white); }
.service-card-premium:not(.featured) .sp-title { color: var(--em-deep); }
.service-card-premium.va .sp-title { color: var(--violet); }

/* Descripcion */
.sp-desc {
  font-size: .85rem; line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-card-premium.featured .sp-desc { color: rgba(255,255,255,.6); }
.service-card-premium:not(.featured) .sp-desc { color: var(--gray-600); }

/* Tasa grande */
.sp-rate {
  font-family: var(--ff-display); font-style: italic;
  font-size: 2rem; font-weight: 800;
  color: var(--em-deep); margin-bottom: 1.25rem; line-height: 1;
}
.sp-rate span {
  display: block;
  font-family: var(--ff-body); font-style: normal;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--gray-400); margin-top: .35rem;
}
.service-card-premium.featured .sp-rate { color: var(--gold); }
.service-card-premium.featured .sp-rate span { color: rgba(255,255,255,.4); }

/* Features con SVG checkmark */
.sp-features {
  list-style: none; display: flex; flex-direction: column;
  gap: .6rem; margin-bottom: 1.75rem;
  flex: 1;
}
.sp-features li {
  font-size: .82rem;
  display: flex; align-items: flex-start; gap: .5rem;
  line-height: 1.5;
}
.sp-check {
  width: 14px; height: 14px;
  flex-shrink: 0; margin-top: 1px;
}
.service-card-premium.featured .sp-features li { color: rgba(255,255,255,.75); }
.service-card-premium.featured .sp-features li .sp-check { color: var(--em-light); }
.service-card-premium:not(.featured):not(.va) .sp-features li { color: var(--gray-600); }
.service-card-premium:not(.featured):not(.va) .sp-features li .sp-check { color: var(--em-mid); }
.service-card-premium.va .sp-features li { color: var(--gray-600); }
.service-card-premium.va .sp-features li .sp-check { color: var(--violet); }

/* ── Comparison Visual ── */
/* ── Comparison v2 — Dos cards enfrentadas ── */
.compare-premium-v2 {
  position: relative; overflow: hidden;
  padding: 6rem 0;
  background: var(--em-deep);
}
.compare-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(22,163,74,.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(74,222,128,.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(5,46,22,.5) 0%, transparent 60%);
}
.compare-header-v2 { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.compare-header-v2 h2 {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800;
  color: var(--white); margin-bottom: .75rem;
}
.compare-header-v2 p { color: rgba(255,255,255,.6); max-width: 480px; margin: 0 auto; font-size: 1.05rem; }

.compare-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
  position: relative; z-index: 1;
}

.compare-card-v2 {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.compare-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.25);
}
.compare-card-v2.fha:hover { border-color: var(--gold); }
.compare-card-v2.conv:hover { border-color: var(--em-light); }

.compare-card-top { text-align: center; margin-bottom: 2rem; }
.compare-card-icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.compare-card-v2.fha .compare-card-icon { background: rgba(212,165,32,.15); color: var(--gold); }
.compare-card-v2.conv .compare-card-icon { background: rgba(74,222,128,.12); color: var(--em-light); }
.compare-card-icon svg { width: 32px; height: 32px; }

.compare-card-title {
  font-family: var(--ff-display); font-style: italic;
  font-size: 1.75rem; font-weight: 800;
  color: var(--white); margin-bottom: .25rem;
}
.compare-card-tag {
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.5);
}

.compare-card-list {
  list-style: none; display: flex; flex-direction: column;
  gap: .75rem; margin-bottom: 2rem; flex: 1;
}
.compare-card-list li {
  display: flex; align-items: center; gap: .65rem;
  font-size: .88rem; color: rgba(255,255,255,.7);
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.compare-card-list li:hover { background: rgba(255,255,255,.04); }
.compare-card-list li strong { color: var(--white); font-weight: 700; }
.compare-card-list li .check-winner,
.compare-card-list li .check-loser {
  width: 16px; height: 16px; flex-shrink: 0;
}
.compare-card-list li.winner .check-winner { color: var(--em-light); }
.compare-card-list li.loser .check-loser { color: rgba(255,255,255,.25); }
.compare-card-list li.winner { background: rgba(74,222,128,.06); border: 1px solid rgba(74,222,128,.12); }

/* VS divider */
.compare-vs {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem;
}
.vs-text {
  font-family: var(--ff-display); font-style: italic;
  font-size: 1.25rem; font-weight: 800;
  color: var(--gold);
  background: rgba(212,165,32,.15);
  border: 2px solid rgba(212,165,32,.3);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.vs-line {
  width: 2px; flex: 1;
  background: linear-gradient(to bottom, rgba(212,165,32,.3), transparent 60%);
  min-height: 40px;
}

/* ── Process (reutilizado en servicios) ── */
.services-process { padding: 6rem 0; background: var(--em-deep); }
.services-process .process-header { text-align: center; margin-bottom: 3.5rem; }
.services-process .process-header h2 {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800;
  color: var(--white); margin-bottom: 1rem;
}
.services-process .process-header p {
  color: rgba(255,255,255,.7); max-width: 480px; margin: 0 auto;
}
.services-process .process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.services-process .process-step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.services-process .process-step:hover {
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.services-process .process-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--em-deep); color: var(--em-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .5rem;
  box-shadow: 0 4px 16px rgba(20,83,45,.2);
}
.services-process .process-step-label {
  font-size: .65rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.services-process .process-title {
  font-family: var(--ff-display); font-style: italic;
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: .5rem;
}
.services-process .process-desc {
  font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.6;
}

/* ── FAQ Bento Compacto ── */
#faq-services { padding: 6rem 0; background: var(--white); }
.faq-bento-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.faq-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(22,163,74,.25);
}
.faq-card h4 {
  font-family: var(--ff-body);
  font-size: 1.05rem; font-weight: 700;
  color: var(--em-deep); margin-bottom: .5rem;
}
.faq-card p {
  font-size: .85rem; color: var(--gray-600);
  line-height: 1.65;
}

/* ── Services CTA Premium ── */
.services-cta-premium {
  position: relative; overflow: hidden;
  background: var(--em-deep);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.services-cta-premium::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(212,165,32,.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(74,222,128,.04) 0%, transparent 50%);
  pointer-events: none;
}
.services-cta-premium .wrap { position: relative; z-index: 1; }
.services-cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.services-cta-premium h2 {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800;
  color: var(--white); margin-bottom: .5rem;
}
.services-cta-premium p {
  color: rgba(255,255,255,.55);
  font-size: .92rem; line-height: 1.6;
  margin-bottom: 1.25rem;
}
.services-cta-actions {
  display: flex; gap: .75rem; flex-wrap: wrap;
  justify-content: center;
}

/* ── Botones en secciones oscuras (servicios) ── */
.services-hero-premium .eee-btn-gold,
.services-cta-premium .eee-btn-gold {
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.services-hero-premium .eee-btn-outline-white:hover,
.services-cta-premium .eee-btn-outline-white:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(212,165,32,.08);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid-premium { grid-template-columns: 1fr; }
  .services-process .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .compare-cards { grid-template-columns: 1fr; gap: 1.25rem; }
  .compare-vs { flex-direction: row; gap: .75rem; padding: .5rem 0; }
  .vs-line { width: 60px; height: 2px; min-height: auto; background: linear-gradient(to right, transparent, rgba(212,165,32,.3), transparent); }
}
@media (max-width: 768px) {
  .services-hero-inner { max-width: 100%; }
  .services-stats-strip { gap: .75rem; }
  .services-stat-sep { display: none; }
  .compare-card-v2 { padding: 2rem 1.5rem; }
  .faq-bento-compact { grid-template-columns: 1fr; }
  .services-process .process-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   SOBRE NOSOTROS PAGE EXTRA STYLES
   ═══════════════════════════════════════════════ */

/* ── About Hero con imagen ── */
.about-hero {
  position: relative; overflow: hidden;
  padding: calc(70px + 3rem) 0 4rem;
  background: var(--em-deep);
}
@media (min-width: 768px) { .about-hero { padding: calc(80px + 4rem) 0 5rem; } }

.about-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80') center/cover no-repeat;
}
.about-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(5,46,22,.92) 0%, rgba(20,83,45,.75) 50%, rgba(5,46,22,.85) 100%);
}

.about-hero .wrap { position: relative; z-index: 1; }
.about-hero .h1 { color: var(--white); margin-bottom: 1.25rem; }
.about-hero .h1 em { color: var(--em-light); font-style: italic; }
.about-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; line-height: 1.7; margin-bottom: 1.75rem; }
.about-hero .hero-trust { margin-top: 2rem; }

/* ── Story / Fundadora con imagen real ── */
.about-story { padding: var(--section-pad-mob); background: var(--white); }
@media (min-width: 768px) { .about-story { padding: var(--section-pad); } }

.story-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .story-grid { grid-template-columns: 1fr 1.2fr; gap: 5rem; } }

.story-visual { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.story-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.story-quote-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(to top, rgba(5,46,22,.9), transparent);
  padding: 2rem 1.5rem 1.5rem;
}
.story-quote-overlay p {
  font-family: var(--ff-display); font-style: italic; font-size: 1.15rem; color: var(--white); line-height: 1.5; margin-bottom: 0.5rem;
}
.story-quote-overlay cite { font-size: 0.82rem; color: rgba(255,255,255,.7); font-style: normal; }
.story-quote-overlay cite strong { color: var(--gold); font-weight: 700; }

.story-content .label { background: var(--em-mid); color: var(--white); margin-bottom: 1rem; }
.story-content .h2 { color: var(--em-deep); margin-bottom: 1.25rem; }
.story-content .h2 em { color: var(--em-mid); font-style: italic; }
.story-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.story-cta { margin-top: 1.5rem; }

/* ── Values ── */
.values { padding: var(--section-pad-mob); background: var(--gray-50); }
@media (min-width: 768px) { .values { padding: var(--section-pad); } }

.values-header { text-align: center; margin-bottom: 3.5rem; }
.values-header .label { background: var(--em-mid); color: var(--white); margin-bottom: 1rem; }
.values-header .h2 { color: var(--em-deep); margin-bottom: 1rem; }
.values-header p { color: var(--gray-600); max-width: 560px; margin: 0 auto; }

.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 2rem; position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--em-mid); }

.value-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--em-mid); color: var(--white);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}

.value-title { font-family: var(--ff-display); font-style: italic; font-size: 1.25rem; font-weight: 800; color: var(--em-deep); margin-bottom: 0.5rem; }
.value-desc { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; }

/* ── About Stats con imagen ── */
.about-stats {
  position: relative; overflow: hidden;
  padding: var(--section-pad-mob); background: var(--em-deep);
}
@media (min-width: 768px) { .about-stats { padding: var(--section-pad); } }

.about-stats-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=80') center/cover no-repeat;
  opacity: .18;
}
.about-stats-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(5,46,22,.95), rgba(20,83,45,.9), rgba(5,46,22,.95));
}

.about-stats .wrap { position: relative; z-index: 1; }
.stats-header { text-align: center; margin-bottom: 3.5rem; }
.stats-header .label { background: rgba(255,255,255,.1); color: var(--em-light); margin-bottom: 1rem; }
.stats-header .h2 { color: var(--white); margin-bottom: 1rem; }

.stats-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 768px) { .stats-panel { grid-template-columns: repeat(4, 1fr); } }

.stat-box {
  background: rgba(255,255,255,.06); border: 1px solid rgba(74,222,128,.15); border-radius: var(--radius-xl);
  padding: 2rem; text-align: center; backdrop-filter: blur(8px);
}
.stat-box:first-child { background: var(--gold); border-color: var(--gold); }
.stat-box:first-child .stat-num { color: #111; }
.stat-box:first-child .stat-label { color: rgba(0,0,0,.55); }

.stat-num { font-family: var(--ff-display); font-style: italic; font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; color: var(--em-light); line-height: 1; }
.stat-label { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,.45); margin-top: 0.4rem; }

/* ── Why E&E ── */
.why-eee { padding: var(--section-pad-mob); background: var(--gray-50); }
@media (min-width: 768px) { .why-eee { padding: var(--section-pad); } }

.why-header { text-align: center; margin-bottom: 3.5rem; }
.why-header .label { background: var(--em-mid); color: var(--white); margin-bottom: 1rem; }
.why-header .h2 { color: var(--em-deep); margin-bottom: 1rem; }
.why-header p { color: var(--gray-600); max-width: 560px; margin: 0 auto; }

.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 2rem; position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--em-mid); }

.why-num {
  font-family: var(--ff-display); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800;
  color: var(--em-pale); line-height: 1; margin-bottom: 0.75rem;
}

.why-title { font-family: var(--ff-display); font-style: italic; font-size: 1.15rem; font-weight: 800; color: var(--em-deep); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; }

/* ── About Hero ── */
.about-hero {
  position: relative; overflow: hidden;
  padding: calc(70px + 3rem) 0 4rem;
  background: var(--em-deep);
}
@media (min-width: 768px) { .about-hero { padding: calc(80px + 4rem) 0 5rem; } }

.about-hero .h1 { color: var(--white); margin-bottom: 1.25rem; }
.about-hero .h1 em { color: var(--em-light); font-style: italic; }
.about-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; line-height: 1.7; margin-bottom: 1.75rem; }
.about-hero .hero-trust { margin-top: 2rem; }

/* ── Story / Founder ── */
.about-story { padding: var(--section-pad-mob); background: var(--white); }
@media (min-width: 768px) { .about-story { padding: var(--section-pad); } }

.story-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .story-grid { grid-template-columns: 1fr 1.2fr; gap: 5rem; } }

.story-visual { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.story-avatar {
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(135deg, var(--em-deep), var(--em-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-style: italic; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--white); flex-shrink: 0;
  box-shadow: var(--shadow-xl);
}

.story-quote { background: var(--gray-50); border-left: 4px solid var(--gold); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; padding: 1.5rem; max-width: 360px; }
.story-quote p { font-family: var(--ff-display); font-style: italic; font-size: 1.15rem; color: var(--em-deep); line-height: 1.5; margin-bottom: 0.75rem; }
.story-quote cite { font-size: 0.82rem; color: var(--gray-600); font-style: normal; }
.story-quote cite strong { color: var(--em-deep); font-weight: 700; }

.story-content .label { background: var(--em-mid); color: var(--white); margin-bottom: 1rem; }
.story-content .h2 { color: var(--em-deep); margin-bottom: 1.25rem; }
.story-content .h2 em { color: var(--em-mid); font-style: italic; }
.story-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.story-cta { margin-top: 1.5rem; }

/* ── Values ── */
.values { padding: var(--section-pad-mob); background: var(--gray-50); }
@media (min-width: 768px) { .values { padding: var(--section-pad); } }

.values-header { text-align: center; margin-bottom: 3.5rem; }
.values-header .label { background: var(--em-mid); color: var(--white); margin-bottom: 1rem; }
.values-header .h2 { color: var(--em-deep); margin-bottom: 1rem; }
.values-header p { color: var(--gray-600); max-width: 560px; margin: 0 auto; }

.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 2rem; position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--em-mid); }

.value-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--em-mid); color: var(--white);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}

.value-title { font-family: var(--ff-display); font-style: italic; font-size: 1.25rem; font-weight: 800; color: var(--em-deep); margin-bottom: 0.5rem; }
.value-desc { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; }

/* ── About Stats ── */
.about-stats { padding: var(--section-pad-mob); background: var(--white); }
@media (min-width: 768px) { .about-stats { padding: var(--section-pad); } }

.stats-header { text-align: center; margin-bottom: 3.5rem; }
.stats-header .label { background: var(--em-mid); color: var(--white); margin-bottom: 1rem; }
.stats-header .h2 { color: var(--em-deep); margin-bottom: 1rem; }

/* ── Why E&E ── */
.why-eee { padding: var(--section-pad-mob); background: var(--gray-50); }
@media (min-width: 768px) { .why-eee { padding: var(--section-pad); } }

.why-header { text-align: center; margin-bottom: 3.5rem; }
.why-header .label { background: var(--em-mid); color: var(--white); margin-bottom: 1rem; }
.why-header .h2 { color: var(--em-deep); margin-bottom: 1rem; }
.why-header p { color: var(--gray-600); max-width: 560px; margin: 0 auto; }

.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 2rem; position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--em-mid); }

.why-num {
  font-family: var(--ff-display); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800;
  color: var(--em-pale); line-height: 1; margin-bottom: 0.75rem;
}

.why-title { font-family: var(--ff-display); font-style: italic; font-size: 1.15rem; font-weight: 800; color: var(--em-deep); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; }

/* ═══════════════════════════════════════════════
   AREAS / SERVICIO GEOGRAFICO — PREMIUM LAYOUT
   ═══════════════════════════════════════════════ */

/* ── Hero con Mapa ── */
.areas-hero-map {
  position: relative; overflow: hidden;
  background: var(--em-deep);
  padding-top: calc(70px + 2.5rem);
}
@media (min-width: 768px) { .areas-hero-map { padding-top: calc(80px + 3rem); } }

.areas-hero-inner {
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
  padding: 3rem 0 4rem;
}
@media (min-width: 1024px) {
  .areas-hero-inner { grid-template-columns: 1fr 1.1fr; gap: 3rem; padding: 4rem 0 5rem; }
}

.areas-hero-text .label { background: rgba(255,255,255,.1); color: var(--em-light); margin-bottom: 1rem; }
.areas-hero-text .h1 { color: var(--white); margin-bottom: 1.25rem; }
.areas-hero-text .h1 em { color: var(--em-light); font-style: italic; }
.areas-hero-text > p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 520px; line-height: 1.7; margin-bottom: 2rem; }
.areas-hero-text .hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
/* Trust bar inherits from global .hero-trust */

.map-wrap {
  position: relative; width: 100%; height: 360px; border-radius: var(--radius-xl); overflow: hidden;
  border: 2px solid rgba(74,222,128,.2); box-shadow: var(--shadow-xl);
}
@media (min-width: 768px) { .map-wrap { height: 420px; } }
@media (min-width: 1024px) { .map-wrap { height: 480px; } }

#areasMap { width: 100%; height: 100%; }
.maplibregl-popup-content {
  background: var(--em-deep); color: var(--white); border: 1px solid rgba(74,222,128,.3);
  border-radius: var(--radius-md); padding: 0.75rem 1rem; font-size: 0.82rem; font-family: var(--ff-body);
  box-shadow: var(--shadow-lg);
}
.maplibregl-popup-tip { border-top-color: var(--em-deep) !important; }

/* ── Stats Bar ── */
.areas-stats-bar {
  background: var(--em-darker); padding: 1.5rem 0;
  border-top: 1px solid rgba(74,222,128,.15); border-bottom: 1px solid rgba(74,222,128,.15);
}
.stats-bar-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center;
}
@media (min-width: 768px) { .stats-bar-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-bar-item .stat-num { font-family: var(--ff-display); font-style: italic; font-size: 1.6rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-bar-item .stat-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,.4); margin-top: 0.3rem; }

/* ── Seccion por Estado ── */
.state-section { padding: var(--section-pad-mob); background: var(--white); }
.state-section.alt { background: var(--gray-50); }
@media (min-width: 768px) { .state-section { padding: var(--section-pad); } }

.state-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
@media (min-width: 1024px) {
  .state-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
  .state-section.reverse .state-grid { grid-template-columns: 1fr 1.1fr; }
  .state-section.reverse .state-visual { order: 2; }
  .state-section.reverse .state-content { order: 1; }
}

.state-visual { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.state-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.state-badge-float {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: var(--radius-full); width: fit-content;
}
.badge-sede { background: var(--gold); color: #111; }
.badge-alta { background: var(--em-mid); color: var(--white); }
.badge-nuevo { background: var(--gray-200); color: var(--gray-800); }

.state-content .label { background: var(--em-mid); color: var(--white); margin-bottom: 1rem; }
.state-content .h2 { color: var(--em-deep); margin-bottom: 1rem; }
.state-content .h2 em { color: var(--em-mid); font-style: italic; }
.state-content > p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1.25rem; font-size: 0.95rem; }

.state-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.state-meta-item { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 0.75rem 1rem; text-align: center; flex: 1; min-width: 100px; }
.state-meta-val { font-family: var(--ff-display); font-style: italic; font-size: 1.1rem; font-weight: 800; color: var(--em-deep); }
.state-meta-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); margin-top: 0.2rem; }

.state-cities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.city-chip {
  font-size: 0.78rem; font-weight: 600; color: var(--white);
  background: var(--em-mid); border-radius: var(--radius-full); padding: 0.3rem 0.85rem;
}

.state-testi {
  background: var(--gray-50); border-left: 3px solid var(--gold); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem; margin-bottom: 1.5rem;
}
.state-testi p { font-family: var(--ff-display); font-style: italic; font-size: 1rem; color: var(--em-deep); line-height: 1.5; margin-bottom: 0.5rem; }
.state-testi cite { font-size: 0.8rem; color: var(--gray-600); font-style: normal; font-weight: 500; }
.state-testi cite strong { color: var(--em-deep); font-weight: 700; }

/* ── Comparador rapido ── */
.areas-compare { padding: var(--section-pad-mob); background: var(--white); }
@media (min-width: 768px) { .areas-compare { padding: var(--section-pad); } }
.compare-header { text-align: center; margin-bottom: 3rem; }
.compare-header .label { background: var(--em-mid); color: var(--white); margin-bottom: 1rem; }
.compare-header .h2 { color: var(--em-deep); margin-bottom: 1rem; }
.compare-header p { color: var(--gray-600); max-width: 560px; margin: 0 auto; }

.compare-row-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .compare-row-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .compare-row-grid { grid-template-columns: repeat(4, 1fr); } }

.compare-card {
  background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 2rem; text-align: center;
}
.compare-card .state-name { font-family: var(--ff-display); font-style: italic; font-size: 1.75rem; font-weight: 800; color: var(--em-deep); margin-bottom: 0.5rem; }
.compare-card .state-type { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 1.25rem; }
.compare-card .state-programs { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.5rem; }
.compare-card .state-programs li { font-size: 0.85rem; color: var(--gray-600); }
.compare-card .state-highlight { font-size: 0.8rem; font-weight: 700; color: var(--em-mid); margin-bottom: 1rem; }

/* ═══════════════════════════════════════════════
   SOBRE NOSOTROS - PREMIUM REFRESH
   Plantilla dedicada: page-sobre-nosotros.php
   ═══════════════════════════════════════════════ */

body.eee-about {
  background: var(--near-black);
}


/* Labels de las secciones About (no-hero) */
.about-premium-section-head .label,
.about-premium-coverage-copy .label,
.about-premium-cta .label {
  background: rgba(220,252,231,.12);
  border: 1px solid rgba(74,222,128,.22);
  color: var(--em-light);
}

.about-premium-founder-card {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(74,222,128,.18);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.035)),
    radial-gradient(90% 60% at 50% 25%, rgba(74,222,128,.16), transparent 68%);
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
  backdrop-filter: blur(18px);
}
.about-premium-founder-card::after {
  content: '';
  position: absolute;
  right: -24%;
  top: 18%;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(212,165,32,.18);
  box-shadow: inset 0 0 0 28px rgba(212,165,32,.035);
  pointer-events: none;
}
.about-premium-founder-card::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: calc(var(--radius-xl) - .75rem);
  pointer-events: none;
}
.about-premium-founder-mark {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 800;
  line-height: .9;
  color: rgba(255,255,255,.08);
}
.about-premium-card-topline {
  position: absolute;
  top: 1.45rem;
  right: 1.45rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .75rem;
  border: 1px solid rgba(74,222,128,.24);
  border-radius: var(--radius-full);
  background: rgba(5,46,22,.68);
  color: rgba(255,255,255,.72);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-premium-live-dot {
  width: .45rem;
  height: .45rem;
  border-radius: 999px;
  background: var(--em-light);
  box-shadow: 0 0 0 6px rgba(74,222,128,.12);
}
.about-premium-founder-photo {
  position: absolute;
  inset: 5.5rem 2rem 9.35rem;
  display: grid;
  place-items: center;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.16) 0 0.2rem, transparent .22rem),
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 12px),
    linear-gradient(145deg, rgba(5,46,22,.88), rgba(22,163,74,.34)),
    linear-gradient(45deg, transparent 0 48%, rgba(212,165,32,.28) 48% 52%, transparent 52% 100%);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 -80px 90px rgba(0,0,0,.22);
}
.about-premium-founder-photo span {
  position: relative;
  z-index: 2;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(4.5rem, 10vw, 7.5rem);
  color: rgba(255,255,255,.86);
  text-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.about-premium-photo-rings {
  position: absolute;
  width: min(72%, 18rem);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 0 0 2.5rem rgba(255,255,255,.035),
    0 0 0 5rem rgba(212,165,32,.045);
}
.about-premium-file-card {
  position: absolute;
  right: 1.2rem;
  bottom: 8.1rem;
  z-index: 4;
  width: min(15rem, 56%);
  padding: .95rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}
.about-premium-file-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .8rem;
}
.about-premium-file-head span {
  color: rgba(255,255,255,.6);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.about-premium-file-head strong {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--gold);
}
.about-premium-file-line {
  width: 68%;
  height: .45rem;
  margin-bottom: .45rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.16);
}
.about-premium-file-line.is-long {
  width: 100%;
}
.about-premium-file-tags {
  display: flex;
  gap: .35rem;
  margin-top: .75rem;
}
.about-premium-file-tags span {
  padding: .22rem .45rem;
  border-radius: var(--radius-full);
  background: rgba(220,252,231,.12);
  color: var(--em-light);
  font-size: .58rem;
  font-weight: 800;
}
.about-premium-founder-copy {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 4.25rem;
}
.about-premium-eyebrow {
  display: block;
  margin-bottom: .35rem;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-premium-founder-copy h2 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}
.about-premium-founder-copy p {
  margin-top: .65rem;
  color: rgba(255,255,255,.58);
}
.about-premium-license-strip {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
}
.about-premium-license-strip span {
  display: grid;
  place-items: center;
  min-height: 2.35rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  font-weight: 800;
}

.about-premium-proof {
  position: relative;
  margin-top: -2rem;
  background: var(--white);
}
.about-premium-proof-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-xl);
}
/* Desktop: primer card más ancho (2fr) para que "Personalizada" quepa en una línea */
@media (min-width: 768px) {
  .about-premium-proof-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
}
.about-premium-proof-item {
  min-width: 0;
  padding: 1.35rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  text-align: center;
}
.about-premium-proof-item:first-child {
  background: var(--em-deep);
}
/* Mobile: primer y último card en fila completa; "21" y "4" lado a lado */
@media (max-width: 767px) {
  .about-premium-proof-item:first-child,
  .about-premium-proof-item:last-child {
    grid-column: 1 / -1;
  }
}
.about-premium-proof-number {
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 3rem);
  line-height: 1;
  color: var(--em-deep);
}
/* "Personalizada" — nunca se rompe, fuente ajustada por breakpoint */
.about-premium-proof-item:first-child .about-premium-proof-number {
  color: var(--gold);
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  /* Tablet/desktop: tamaño de etiqueta, no de stat */
  font-size: 1rem;
}
/* Mobile: card full-width, puede verse más grande */
@media (max-width: 767px) {
  .about-premium-proof-item:first-child .about-premium-proof-number {
    font-size: clamp(1.3rem, 5vw, 1.75rem);
  }
}
.about-premium-proof-label {
  display: block;
  margin-top: .45rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.about-premium-proof-item:first-child .about-premium-proof-label {
  color: rgba(255,255,255,.58);
}

.about-premium-story,
.about-premium-values,
.about-premium-coverage {
  padding: var(--section-pad-mob);
  background: var(--white);
}
@media (min-width: 768px) {
  .about-premium-story,
  .about-premium-values,
  .about-premium-coverage {
    padding: var(--section-pad);
  }
}
.about-premium-story-grid,
.about-premium-coverage-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-premium-story-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 5rem;
  }
  .about-premium-coverage-grid {
    grid-template-columns: .85fr 1.15fr;
    gap: 4rem;
  }
}

.about-premium-story-visual {
  position: relative;
}
.about-premium-window {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  background:
    linear-gradient(160deg, var(--em-darker), var(--em-deep)),
    radial-gradient(90% 90% at 15% 85%, rgba(212,165,32,.12), transparent 60%);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.about-premium-window::after {
  content: '';
  position: absolute;
  inset: auto 1.5rem 1.5rem auto;
  width: 7rem;
  height: 7rem;
  border: 1px solid rgba(212,165,32,.2);
  transform: rotate(14deg);
}
.about-premium-window-line {
  height: 3px;
  width: 6rem;
  margin-bottom: 2rem;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--em-light), var(--gold));
}
.about-premium-window-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.about-premium-window-body:last-child {
  border-bottom: 0;
}
.about-premium-window-body span {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}
.about-premium-window-body p {
  color: rgba(255,255,255,.74);
  line-height: 1.7;
}

.about-premium-story-content .label,
.about-premium-section-head .label,
.about-premium-coverage-copy .label {
  background: var(--em-mid);
  border-color: transparent;
  color: var(--white);
}
.about-premium-story-content .h2,
.about-premium-section-head .h2,
.about-premium-coverage-copy .h2 {
  margin: 1rem 0 1.2rem;
  color: var(--em-deep);
  max-width: 760px;
}
.about-premium-story-content p,
.about-premium-coverage-copy p {
  max-width: 650px;
  color: var(--gray-600);
  line-height: 1.84;
  margin-bottom: 1rem;
}
.about-premium-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--gray-50);
  color: var(--gray-600);
  line-height: 1.7;
}
.about-premium-note strong {
  color: var(--em-deep);
}

.about-premium-values {
  background:
    radial-gradient(70% 80% at 8% 16%, rgba(74,222,128,.18), transparent 62%),
    radial-gradient(48% 58% at 92% 8%, rgba(212,165,32,.13), transparent 60%),
    linear-gradient(145deg, var(--em-darker) 0%, var(--em-deep) 58%, #061f10 100%);
  color: var(--white);
}
.about-premium-section-head {
  max-width: 760px;
  margin-bottom: 3rem;
}
.about-premium-values .about-premium-section-head .label {
  background: rgba(220,252,231,.1);
  border: 1px solid rgba(74,222,128,.24);
  color: var(--em-light);
}
.about-premium-values .about-premium-section-head .h2 {
  color: var(--white);
}
.about-premium-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .about-premium-bento {
    grid-template-columns: 1.15fr .85fr .85fr;
    align-items: stretch;
  }
  .about-premium-value-wide {
    grid-row: span 2;
  }
  .about-premium-value-dark {
    grid-column: span 2;
  }
}
.about-premium-value-card {
  position: relative;
  min-height: 260px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.055)),
    rgba(5,46,22,.38);
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}
.about-premium-value-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--em-mid), var(--gold));
}
.about-premium-card-index {
  display: block;
  margin-bottom: 1.5rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(212,165,32,.5);
}
.about-premium-value-card h3 {
  max-width: 320px;
  margin-bottom: .75rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
}
.about-premium-value-card p {
  color: rgba(255,255,255,.68);
  line-height: 1.75;
}
.about-premium-value-wide {
  background:
    radial-gradient(90% 70% at 90% 8%, rgba(212,165,32,.18), transparent 60%),
    linear-gradient(155deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
}
.about-premium-value-wide h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.about-premium-value-dark {
  background:
    radial-gradient(80% 80% at 12% 88%, rgba(212,165,32,.18), transparent 64%),
    linear-gradient(145deg, rgba(212,165,32,.18), rgba(255,255,255,.07));
  border-color: rgba(212,165,32,.22);
}
.about-premium-value-dark .about-premium-card-index {
  color: rgba(212,165,32,.62);
}
.about-premium-value-dark h3 {
  color: var(--white);
}
.about-premium-value-dark p {
  color: rgba(255,255,255,.68);
}

.about-premium-coverage {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}
.about-premium-coverage::before {
  content: '';
  position: absolute;
  inset: 9% auto auto -8rem;
  width: 18rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(220,252,231,.8);
  filter: blur(10px);
  pointer-events: none;
}
.about-premium-coverage .wrap {
  position: relative;
  z-index: 1;
}
.about-premium-coverage-badge {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: .9rem;
  max-width: 360px;
  margin-top: 1.5rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(20,83,45,.14);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.about-premium-coverage-badge strong {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-md);
  background: var(--em-deep);
  color: var(--gold);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.8rem;
  line-height: 1;
}
.about-premium-coverage-badge span {
  color: var(--gray-600);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .055em;
}
.about-premium-coverage-panel {
  display: grid;
  gap: 1rem;
}
.about-map-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(20,83,45,.16);
  background: var(--near-black);
  min-height: 360px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-map-wrap { min-height: 440px; }
}
.about-map {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-map { height: 440px; }
}
.about-map .maplibregl-canvas {
  width: 100% !important;
  height: 100% !important;
}
.about-map .maplibregl-ctrl-attrib {
  font-size: .6rem;
}
.about-map-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: .75rem;
  z-index: 2;
}
.about-map-stat {
  background: rgba(20,83,45,.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74,222,128,.2);
  border-radius: var(--radius-md);
  padding: .6rem 1rem;
  text-align: center;
}
.about-map-stat-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--gold);
  line-height: 1;
}
.about-map-stat-label {
  font-family: var(--ff-body);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.72);
  margin-top: .25rem;
}
.about-premium-state-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
@media (min-width: 768px) {
  .about-premium-state-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-premium-state {
  display: grid;
  grid-template-columns: 3.75rem minmax(0, 1fr) auto;
  align-items: center;
  gap: .9rem;
  padding: .9rem;
  border: 1px solid rgba(20,83,45,.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.about-premium-state span {
  display: grid;
  place-items: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: var(--radius-md);
  background: var(--em-deep);
  color: var(--gold);
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 800;
  font-size: 1.4rem;
}
.about-premium-state strong {
  display: block;
  color: var(--em-deep);
  font-weight: 800;
}
.about-premium-state small {
  display: block;
  margin-top: .2rem;
  color: var(--gray-600);
  font-size: .8rem;
}
.about-premium-state em {
  justify-self: end;
  padding: .32rem .58rem;
  border-radius: var(--radius-full);
  background: var(--em-mid);
  color: var(--white);
  font-size: .62rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.about-premium-state.is-priority {
  background: var(--em-deep);
  border-color: var(--em-deep);
}
.about-premium-state.is-priority span {
  background: var(--gold);
  color: #111;
}
.about-premium-state.is-priority strong {
  color: var(--white);
}
.about-premium-state.is-priority small {
  color: rgba(255,255,255,.62);
}
.about-premium-state.is-priority em {
  background: rgba(212,165,32,.16);
  color: var(--gold);
}

.about-premium-cta {
  padding: var(--section-pad-mob);
  background:
    radial-gradient(62% 70% at 82% 22%, rgba(212,165,32,.14) 0%, transparent 64%),
    linear-gradient(135deg, var(--em-darker), var(--near-black));
  color: var(--white);
}
@media (min-width: 768px) {
  .about-premium-cta {
    padding: var(--section-pad);
  }
}
.about-premium-cta-inner {
  max-width: 860px;
}
.about-premium-cta .h2 {
  margin: 1rem 0;
  color: var(--white);
}
.about-premium-cta p {
  max-width: 580px;
  color: rgba(255,255,255,.68);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about-premium-hero {
    min-height: auto;
  }
  .about-premium-trust-row {
    grid-template-columns: 1fr;
  }
  .about-premium-founder-card {
    min-height: 520px;
  }
  .about-premium-founder-photo {
    inset: 5rem 1.25rem 9rem;
  }
  .about-premium-card-topline {
    left: 1.25rem;
    right: auto;
  }
  .about-premium-file-card {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 8rem;
    width: auto;
  }
  .about-premium-coverage-board {
    min-height: 300px;
    border-radius: var(--radius-lg);
  }
  .about-premium-board-stamp {
    left: 50%;
    top: 46%;
    width: 9.5rem;
    height: 9.5rem;
  }
  .about-premium-board-stamp strong {
    font-size: 1.08rem;
  }
  .about-premium-market-tile {
    min-width: 6.4rem;
    padding: .7rem;
    border-radius: var(--radius-md);
  }
  .about-premium-market-tile span {
    width: 1.9rem;
    height: 1.9rem;
    margin-bottom: .45rem;
    font-size: .95rem;
  }
  .about-premium-market-tile strong {
    font-size: .78rem;
  }
  .about-premium-market-tile small {
    font-size: .66rem;
  }
  .market-ga {
    left: 1rem;
    top: 1rem;
  }
  .market-fl {
    right: 1rem;
    top: 1rem;
  }
  .market-tx {
    left: 1rem;
    bottom: 6.8rem;
  }
  .market-co {
    right: 1rem;
    bottom: 6.8rem;
  }
  .about-premium-board-note {
    display: block;
  }
  .about-premium-board-note span {
    display: block;
    max-width: none;
    margin-top: .35rem;
    text-align: left;
  }
  .about-premium-state {
    grid-template-columns: 3.4rem minmax(0, 1fr);
  }
  .about-premium-state span {
    width: 3.4rem;
    height: 3.4rem;
  }
  .about-premium-state em {
    grid-column: 2;
    justify-self: start;
  }
  .about-premium-founder-copy,
  .about-premium-license-strip {
    left: 1.25rem;
    right: 1.25rem;
  }
  .about-premium-proof-grid {
    border-radius: var(--radius-lg);
  }
  .about-premium-proof-item,
  .about-premium-value-card {
    border-radius: var(--radius-lg);
  }
  .about-premium-actions .eee-btn-gold,
  .about-premium-actions .eee-btn-outline-white {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   ATLAS EYEBROW — Shared across CTA sections
   ═══════════════════════════════════════════════════════════ */
.atlas-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--ff-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(212,165,32,.85);
  padding: 0.45rem 1rem 0.45rem 0.7rem;
  background: rgba(212,165,32,.07);
  border: 1px solid rgba(212,165,32,.18);
  border-radius: 9999px;
}
.atlas-eyebrow--inverse {
  margin-bottom: 1.5rem;
}
.atlas-eyebrow-mark {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,165,32,.18);
}

/* ═══════════════════════════════════════════════════════════
   CTA ATLAS — Closing statement (compartido entre páginas)
   ═══════════════════════════════════════════════════════════ */
.atlas-cta {
  position: relative;
  background: #050c08;
  color: var(--white);
  padding: 5rem 0 6rem;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 1024px) {
  .atlas-cta { padding: 8rem 0 9rem; }
}

.atlas-cta-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.atlas-cta-mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,222,128,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,222,128,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 70%);
  opacity: 0.6;
}
.atlas-cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.atlas-cta-glow-gold {
  top: -10%; left: 50%;
  width: 50vw; height: 50vw;
  max-width: 720px; max-height: 720px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212,165,32,.55) 0%, transparent 70%);
}
.atlas-cta-glow-green {
  bottom: -20%; left: 50%;
  width: 70vw; height: 60vw;
  max-width: 900px; max-height: 720px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(22,163,74,.4) 0%, transparent 70%);
  opacity: 0.6;
}

.atlas-cta-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
}

.atlas-cta .atlas-eyebrow {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .atlas-cta .atlas-eyebrow { margin-bottom: 2.5rem; }
}

.atlas-cta-statement {
  font-family: var(--ff-display);
  font-style: italic; font-weight: 800;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 1.5rem;
}
.atlas-cta-statement em {
  font-style: italic;
  color: var(--gold);
  display: inline-block;
  position: relative;
}
.atlas-cta-statement em::after {
  content: '';
  position: absolute;
  left: 5%; right: 5%; bottom: -0.08em;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,165,32,.5) 30%, rgba(212,165,32,.5) 70%, transparent 100%);
}

.atlas-cta-dateline {
  display: inline-flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.55rem;
  font-family: var(--ff-body);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin: 0 auto 2rem;
  padding: 0.55rem 1.1rem;
  border-top: 1px solid rgba(212,165,32,.18);
  border-bottom: 1px solid rgba(212,165,32,.18);
}
.atlas-cta-dot {
  color: rgba(212,165,32,.55);
  font-size: 1rem;
  line-height: 0;
}

.atlas-cta-lede {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin: 0 auto 3rem;
}

.atlas-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .atlas-cta-actions {
    flex-direction: row;
    justify-content: center;
    gap: 1.75rem;
  }
}

.atlas-cta-primary {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.9rem;
  background: var(--gold);
  color: #0a1408;
  font-family: var(--ff-body);
  font-size: 1rem; font-weight: 800;
  letter-spacing: 0.01em;
  padding: 1.1rem 1.75rem 1.1rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 18px 40px -12px rgba(212,165,32,.5), 0 8px 22px -10px rgba(0,0,0,.6);
  transition: transform .3s cubic-bezier(.2,.7,.3,1.4), box-shadow .3s, background .25s;
  isolation: isolate;
}
.atlas-cta-primary::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.4) 0%, transparent 50%, rgba(0,0,0,.15) 100%);
  z-index: -1;
  opacity: 0.5;
}
.atlas-cta-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -10px rgba(212,165,32,.6), 0 12px 28px -8px rgba(0,0,0,.7);
}
.atlas-cta-primary-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(10,20,8,.92);
  color: var(--gold);
  transition: transform .3s, background .25s;
}
.atlas-cta-primary:hover .atlas-cta-primary-arrow {
  transform: translateX(3px);
  background: #0a1408;
}

.atlas-cta-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--ff-body);
  font-size: 0.98rem; font-weight: 700;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  padding: 0.95rem 1.5rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 9999px;
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(6px);
  transition: color .25s, border-color .25s, background .25s;
}
.atlas-cta-secondary svg {
  color: var(--em-light);
  transition: color .25s;
}
.atlas-cta-secondary:hover {
  color: var(--white);
  border-color: rgba(74,222,128,.5);
  background: rgba(74,222,128,.06);
}
.atlas-cta-secondary:hover svg {
  color: var(--gold);
}

.atlas-cta-trust {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--ff-body);
}
.atlas-cta-trust li {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.atlas-cta-trust-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(74,222,128,.14);
  color: var(--em-light);
  border: 1px solid rgba(74,222,128,.3);
  font-size: 0.65rem; font-weight: 800;
}

/* Trust bar — disponible en todos los heroes atlas */
.hero-trust {
  display: flex !important; align-items: center; gap: .75rem !important;
  flex-wrap: wrap;
  margin-top: 2rem !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid rgba(255,255,255,.1) !important;
}
.trust-item {
  display: inline-flex !important; align-items: center; gap: .5rem !important;
  background: rgba(255,255,255,.08) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  border-radius: var(--radius-full) !important;
  padding: .35rem .9rem .35rem .6rem !important;
  font-size: .82rem !important;
  color: rgba(255,255,255,.85) !important;
  font-weight: 600 !important;
  letter-spacing: .01em;
  transition: transform .2s, border-color .2s, background .2s;
}
.trust-item:hover {
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(255,255,255,.35) !important;
  transform: translateY(-1px);
}
.trust-item svg {
  width: 18px; height: 18px !important;
  color: var(--em-light) !important;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   INTERNAL LINKING — Cross-navigation entre servicios y áreas
   ═════════════════════════════════════════════════════════════════== */
.eee-related {
  background: var(--gray-50);
  padding: 3.5rem 0 4rem;
}
@media (min-width: 1024px) {
  .eee-related { padding: 5rem 0 6rem; }
}
.eee-related-header {
  text-align: center;
  margin-bottom: 2rem;
}
.eee-related-header h2 {
  font-family: var(--ff-display);
  font-style: italic; font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--em-deep);
  margin: 0 0 0.4rem;
}
.eee-related-header p {
  font-family: var(--ff-body);
  color: var(--gray-500);
}
.eee-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .eee-related-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.eee-related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--em-deep);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.eee-related-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  color: var(--em-deep);
}
.eee-related-card svg {
  width: 28px; height: 28px;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   PÁGINA DE PAGOS
   ═══════════════════════════════════════════════════════════ */

/* ── Header de sección ── */
.pagos-info-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.pagos-eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pagos-info-header h2 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--em-deep);
  margin: 0 0 0.5rem;
}
.pagos-info-header h2 em { color: var(--gold); font-style: italic; }
.pagos-info-lede {
  font-family: var(--ff-body);
  color: var(--gray-500);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Sección Info ── */
.pagos-info {
  background: var(--white);
  padding: 4.5rem 0 5rem;
}
.pagos-info-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pagos-info-grid { grid-template-columns: repeat(3, 1fr); }
}
.pagos-info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  transition: transform .25s, box-shadow .25s;
}
.pagos-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pagos-info-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--em-deep);
  color: var(--gold);
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
}
.pagos-info-card h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--em-deep);
  margin: 0 0 0.6rem;
}
.pagos-info-card p {
  font-family: var(--ff-body);
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Sección Contacto ── */
.pagos-contacto {
  background: var(--gray-50);
  padding: 4.5rem 0 5rem;
  border-top: 1px solid var(--gray-200);
}
.pagos-contacto-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pagos-contacto-grid { grid-template-columns: repeat(3, 1fr); }
}
.pagos-contacto-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pagos-contacto-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.pagos-contacto-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--em-pale);
  color: var(--em-deep);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.pagos-contacto-card h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--em-deep);
  margin: 0 0 0.4rem;
}
.pagos-contacto-val {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--em-deep);
  margin: 0 0 0.25rem;
}
.pagos-contacto-note {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}

/* ── FAQ Acordeón ── */
.pagos-faq {
  background: var(--white);
  padding: 4.5rem 0 5rem;
  border-top: 1px solid var(--gray-200);
}
.pagos-faq-list {
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.pagos-faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.pagos-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--em-deep);
  text-align: left;
  cursor: pointer;
}
.pagos-faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--em-deep);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform .25s;
}
.pagos-faq-item.is-open .pagos-faq-icon {
  transform: rotate(45deg);
}
.pagos-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.pagos-faq-item.is-open .pagos-faq-a {
  max-height: 300px;
}
.pagos-faq-a p {
  padding: 0 1.25rem 1.1rem;
  margin: 0;
  font-family: var(--ff-body);
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
}
/* ══════════════════════════════════════════════════════════
   FAMILIAS FELICES — Carrusel de prueba social
   ══════════════════════════════════════════════════════════ */

.familias-felices {
  background: var(--em-darker);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.familias-felices::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(22,163,74,.12) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 80% 70%, rgba(212,165,32,.06) 0%, transparent 55%);
  z-index: 0;
}
.familias-felices > .wrap {
  position: relative;
  z-index: 1;
}

/* ── Cabecera ── */
.familias-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.75rem;
}

.familias-label {
  background: rgba(74,222,128,.12);
  color: var(--em-light);
  border: 1px solid rgba(74,222,128,.25);
}

.familias-header h2 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .875rem;
}

.familias-header h2 em { color: var(--gold); }

.familias-lede {
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  margin: 0;
}

/* ── Carousel wrapper ── */
.fam-carousel {
  position: relative;
  padding: 0 3rem;
  margin-bottom: .5rem;
}

/* ── Viewport ── */
.fam-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
  perspective: 1200px;
}

/* ── Track ── */
.fam-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

/* ── Slide ── */
.fam-slide {
  flex: 0 0 auto;
  min-width: 0;
}

/* ── Foto ── */
.familia-foto {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  border: 1.5px solid rgba(255,255,255,.04);
  box-shadow: 0 8px 32px rgba(5,46,22,.5);
  transition: border-color .35s ease, box-shadow .35s ease;
  aspect-ratio: 4 / 5;
}

.familia-foto:hover {
  border-color: rgba(212,165,32,.45);
  box-shadow: 0 16px 48px rgba(22,163,74,.25), 0 0 0 1px rgba(212,165,32,.25);
}

.familia-foto::after {
  content: attr(data-location);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(5,46,22,.85) 0%, transparent 100%);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}

.familia-foto:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.familia-foto img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  max-width: none;
  transition: transform .4s ease;
}

.familia-foto:hover img { transform: scale(1.04); }

/* ── Botones de navegación ── */
.fam-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.4), 0 0 0 4px rgba(212,165,32,.0);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease, opacity .25s ease;
  flex-shrink: 0;
}

.fam-btn:hover:not(:disabled) {
  background: var(--gold-dark);
  box-shadow: 0 6px 24px rgba(212,165,32,.45), 0 0 0 4px rgba(212,165,32,.15);
  transform: translateY(-50%) scale(1.08);
}

.fam-btn:disabled {
  opacity: .15;
  background: rgba(255,255,255,.1);
  cursor: default;
}

.fam-btn-prev { left: 0; }
.fam-btn-next { right: 0; }

/* ── Barra de progreso ── */
.fam-progress {
  height: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 1px;
  margin-top: 1.25rem;
  overflow: hidden;
}

.fam-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--em-light));
  border-radius: 1px;
  transition: width .55s cubic-bezier(.4,0,.2,1);
}

/* ── Contador ── */
.fam-counter {
  text-align: right;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(255,255,255,.25);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.fam-counter #famCurrent { color: var(--gold); font-weight: 700; }

/* ── CTA inferior ── */
.familias-cta {
  text-align: center;
  padding-top: 3rem;
  position: relative;
  z-index: 1;
}

.familias-cta-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.familias-cta-btn {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

/* ── Mobile: compactar flechas y padding ── */
@media (max-width: 639px) {
  .fam-carousel { padding: 0 2.5rem; }
  .fam-btn { width: 40px; height: 40px; }
  .familia-foto::after {
    font-size: 0.75rem;
    padding: 2rem 0.75rem 0.75rem;
  }
  .fam-counter { font-size: 0.7rem; }
}

/* ── Padding de sección en mobile ── */
@media (max-width: 767.98px) {
  .familias-felices { padding: 3.5rem 0 3rem; }
}

@media (max-width: 479px) {
  .familias-felices { padding: 2.75rem 0 2.5rem; }
  .fam-progress { margin-top: 1rem; }
  .fam-counter { margin-top: 0.35rem; }
}

@media (prefers-reduced-motion:reduce) { *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; } }

/* ══════════════════════════════════════════════════════════
   CARRUSEL FAMILIAS FELICES — Variante light
   ══════════════════════════════════════════════════════════ */

.familias-felices--light {
  background: var(--white);
}
.familias-felices--light::before {
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(22,163,74,.06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 80% 70%, rgba(212,165,32,.04) 0%, transparent 55%);
}

.familias-felices--light .familias-header h2 {
  color: var(--em-deep);
}
.familias-felices--light .familias-header h2 em {
  color: var(--gold);
}
.familias-felices--light .familias-lede {
  color: var(--gray-600);
}

.familias-felices--light .familia-foto {
  border-color: var(--gray-200);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.familias-felices--light .familia-foto:hover {
  border-color: rgba(212,165,32,.45);
  box-shadow: 0 16px 48px rgba(22,163,74,.15), 0 0 0 1px rgba(212,165,32,.25);
}

.familias-felices--light .fam-progress {
  background: var(--gray-200);
}

.familias-felices--light .fam-counter {
  color: var(--gray-400);
}

.familias-felices--light .familias-cta-text {
  color: var(--em-deep);
}

/* ═══════════════════════════════════════════════════════
   GHL CHAT WIDGET — Posicionamiento
   En mobile: subir la burbuja 84px para no tapar el bottom nav.
   GHL crea un iframe fijo en bottom-right; intentamos múltiples
   selectores porque el DOM exacto puede variar por versión.
   ═══════════════════════════════════════════════════════ */

/* Mobile (≤999px): burbuja GHL por encima del bottom nav (nav ~84px + 12px gap). */
@media (max-width: 999px) {
  iframe[src*="leadconnector"],
  iframe[src*="widgets.leadconnectorhq"],
  iframe[src*="bettercontact"],
  iframe[src*="msgsndr"],
  [data-chat-widget-container],
  .lc-chat-widget,
  .lc-chat-widget-container,
  #lc-chat-widget-container,
  #chat-widget-container,
  .chat-widget-container,
  [id^="chat-widget"],
  [class^="chat-widget"],
  [data-widget-id] > *,
  [data-widget-id] iframe {
    bottom: 96px !important;
  }
}

/* ═══════════════════════════════════════════════════════
   BOOKING — Modal calendario GHL
   El trigger del nav usa los estilos CTA-MENU de style.css.
   ═══════════════════════════════════════════════════════ */

/* Ocultar el CTA-MENU en offcanvas móvil (el bottom nav lo cubre) */
#offcanvas li#eee-book-cta-li,
.ct-header [data-device="mobile"] li#eee-book-cta-li {
  display: none !important;
}

/* ── Modal ── */
.eee-book-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.eee-book-modal[hidden] { display: none; }

.eee-book-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.eee-book-modal-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 1rem;
  width: min(740px, 100%);
  height: min(800px, 90vh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
  animation: eeeBookSlideIn .25s ease;
}
@keyframes eeeBookSlideIn {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.eee-book-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem;
  background: var(--em-deep, #14532d);
  color: #fff;
  flex-shrink: 0;
  font-family: var(--ff-body, 'Outfit', sans-serif);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.eee-book-modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  padding: .3rem;
  border-radius: .3rem;
  display: flex;
  align-items: center;
  transition: color .15s, background .15s;
}
.eee-book-modal-close:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.eee-book-modal-close:focus-visible {
  outline: 2px solid rgba(255,255,255,.7);
  outline-offset: 2px;
}

.eee-book-modal-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;                   /* scroll si el calendario desborda */
  -webkit-overflow-scrolling: touch;  /* momentum scroll en iOS */
}
.eee-book-modal-body iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px; /* fallback mínimo si height:100% no resuelve */
  border: none;
}

/* Mobile — panel sube desde abajo, casi fullscreen */
@media (max-width: 640px) {
  .eee-book-modal { padding: 0; align-items: flex-end; }
  .eee-book-modal-panel {
    width: 100%;
    height: 92vh;    /* fallback para browsers sin dvh */
    height: 92dvh;   /* dvh: descuenta la barra de dirección móvil */
    border-radius: 1rem 1rem 0 0;
    animation: eeeBookSlideUp .28s ease;
    padding-bottom: env(safe-area-inset-bottom); /* iPhone notch/home bar */
  }
  @keyframes eeeBookSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }
}

/* ══════════════════════════════════════════════
   TABLET — correcciones globales
   La home tiene su propio bloque en eee-home.css.
   ══════════════════════════════════════════════ */

/* ── Tablet pequeña (768px – 819px): iPad mini / Galaxy Tab ── */
@media (min-width: 768px) and (max-width: 819.98px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .t-grid { grid-template-columns: repeat(2, 1fr); }
  .rates-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .calc-grid { grid-template-columns: 1fr; }
  /* Proof bar tablet pequeña: "Personalizada" ocupa fila completa */
  .about-premium-proof-grid { grid-template-columns: 1fr 1fr; }
  .about-premium-proof-item:first-child,
  .about-premium-proof-item:last-child { grid-column: 1 / -1; }
}

/* ── iPad 11" / iPad Air (820px – 1023px) ── */
@media (min-width: 820px) and (max-width: 1023.98px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  /* Testimonios: a 820px caben 3 cols */
  .t-grid { grid-template-columns: repeat(3, 1fr); }
  /* Rates: 3 cols caben cómodamente */
  .rates-grid { grid-template-columns: repeat(3, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  /* About snippet: 2 cols a 820px */
  .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  /* Calculadora: 2 cols a 820px */
  .calc-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  /* Proof bar a 820px: primer card más ancho para "Personalizada" */
  .about-premium-proof-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ══════════════════════════════════════════════
   SAFETY NET GLOBAL — Mobile ≤767px
   Captura cualquier elemento que pueda
   desbordarse horizontalmente en mobile.
   ══════════════════════════════════════════════ */
@media (max-width: 767.98px) {
  /* Ningún elemento sobrepasa el ancho del viewport */
  .wrap { overflow-x: hidden; }

  /* Grid items: evitar min-width implícito que cause desbordamiento */
  .wrap > * { min-width: 0; }

  /* Botones en cualquier contexto de acciones: apilados y full-width */
  .hero-atlas-actions,
  .atlas-cta-actions,
  .service-hero-actions,
  .area-hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
  }
  .hero-atlas-actions [class*="btn"],
  .hero-atlas-actions [class*="eee-btn"],
  .atlas-cta-actions [class*="btn"],
  .atlas-cta-actions [class*="eee-btn"] {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Tablas: siempre dentro de scroll horizontal */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }

  /* Texto grande en mobile: máximo 90vw */
  .hero-atlas-h1,
  .atlas-cta-statement { max-width: 90vw; }

  /* Spacing reducido en secciones para móvil compacto */
  .atlas-cta-wrap { padding: 3rem 0; }
}
