/* =============================================================
   QuieroMejorPension — CSS Completo v2.0
   quieromejorpension.com
   ============================================================= */


/* ─── RESET & ROOT ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #0a0a0f;
  --navy: #111827;
  --navy2: #1c2b44;
  --navy3: #243352;
  --gold: #c8922a;
  --gold2: #e8aa3a;
  --gold3: #f5c85a;
  --gold-light: #fdf0d5;
  --cream: #faf7f2;
  --cream2: #f0ebe0;
  --cream3: #e5ddd0;
  --white: #ffffff;
  --text: #1a1a28;
  --muted: #5e6678;
  --light: #9aa0b0;
  --border: #ddd5c5;
  --green: #166534;
  --green-bg: #f0fdf4;
  --green-bd: #86efac;
  --red: #991b1b;
  --red-bg: #fef2f2;
  --info-bg: #eff6ff;
  --info-bd: #bfdbfe;
  --info-text: #1e40af;
  --card-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
  --card-shadow-hover: 0 4px 12px rgba(0,0,0,.10), 0 12px 32px rgba(0,0,0,.06);
  --radius: 14px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAVBAR ─── */
.navbar {
  background: var(--black);
  padding: 0 clamp(1rem, 4vw, 3rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: #fff;
  font-size: 14px;
  letter-spacing: -.5px;
}
.nav-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  letter-spacing: .02em;
}
.nav-name span { color: var(--gold2); }
.nav-tagline {
  font-size: 10px;
  color: rgba(255,255,255,.4);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
  margin-top: -2px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  letter-spacing: .01em;
  transition: background .18s;
}
.nav-cta:hover { background: var(--gold2); }
.nav-cta svg { width: 14px; height: 14px; }

/* ─── NAV MENU ─── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .3rem;
  flex: 1;
  justify-content: center;
  padding: 0 .8rem;
}
.nav-link {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 9px;
  border-radius: 6px;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold2); background: rgba(255,255,255,.05); }

/* Botón análisis dentro del menú (navbar) */
.nav-analisis-btn {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: linear-gradient(135deg, #1b1464, #5a1a72);
  border: 1.5px solid rgba(200,146,42,.5);
  border-radius: 7px;
  padding: 5px 10px 5px 6px;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  margin-left: .4rem;
}
.nav-analisis-btn:hover {
  border-color: var(--gold2);
  box-shadow: 0 3px 14px rgba(91,26,114,.45);
  transform: translateY(-1px);
}
.nav-analisis-wa {
  width: 24px; height: 24px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-analisis-text { display: flex; flex-direction: column; gap: 0; }
.nav-analisis-top  { font-size: 9px; color: rgba(255,255,255,.5); line-height: 1.2; }
.nav-analisis-main {
  font-family: 'Montserrat','DM Sans',sans-serif;
  font-size: 11px; font-weight: 800;
  color: #fff; line-height: 1.2;
}

/* ─── BARRA SUPERIOR ANÁLISIS (encima del hero) ─── */
.top-analisis-bar {
  background: linear-gradient(90deg, #1b1464 0%, #5a1a72 50%, #1b1464 100%);
  border-bottom: 2px solid rgba(200,146,42,.35);
}
.top-analisis-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: .7rem clamp(1rem,4vw,3rem);
  text-decoration: none;
  width: 100%;
  transition: background .2s;
}
.top-analisis-btn:hover { background: rgba(200,146,42,.07); }
.top-wa-dot {
  width: 34px; height: 34px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  animation: top-pulse 2s ease-out infinite;
}
@keyframes top-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(37,211,102,.25); }
  50%      { box-shadow: 0 0 0 10px rgba(37,211,102,.0); }
}
.top-analisis-label {
  display: flex; flex-direction: column; gap: .05rem; text-align: center;
}
.top-analisis-label strong {
  font-family: 'Montserrat','DM Sans',sans-serif;
  font-size: clamp(13px,2vw,15px);
  font-weight: 800;
  color: #fff;
  letter-spacing: .01em;
}
.top-analisis-sub { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .02em; }
.top-analisis-arrow {
  font-size: 18px; color: var(--gold2); font-weight: 700;
  transition: transform .2s;
}
.top-analisis-btn:hover .top-analisis-arrow { transform: translate(3px,-3px); }

@media (max-width: 960px) { .nav-menu { display: none; } }
@media (max-width: 580px) {
  .top-analisis-label strong { font-size: 12.5px; }
  .top-analisis-sub { display: none; }
  .top-wa-dot { width: 28px; height: 28px; }
}

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(200,146,42,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(200,146,42,.15);
  border: 1px solid rgba(200,146,42,.3);
  color: var(--gold3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold2);
}
.hero-sub {
  color: rgba(255,255,255,.62);
  font-size: 15px;
  font-weight: 300;
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.hstat-n {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold2);
  line-height: 1;
}
.hstat-l {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
  margin-top: .15rem;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 0;
  position: relative;
}
.hero-card-preview {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}
.hcp-label { font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .5rem; }
.hcp-value { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--gold2); }
.hcp-sub { font-size: 12px; color: rgba(255,255,255,.45); margin-top: .2rem; }
.hcp-rows { margin-top: 1rem; display: flex; flex-direction: column; gap: .35rem; }
.hcp-row { display: flex; justify-content: space-between; font-size: 12.5px; border-bottom: .5px solid rgba(255,255,255,.07); padding-bottom: .3rem; }
.hcp-row span:first-child { color: rgba(255,255,255,.45); }
.hcp-row span:last-child { color: rgba(255,255,255,.85); font-weight: 500; }

/* ─── LAYOUT ─── */
.main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem clamp(1rem, 4vw, 2rem) 5rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}
.col-left { display: flex; flex-direction: column; gap: 1.5rem; }
.col-right { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 84px; }

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 1.75rem;
  transition: box-shadow .2s;
}
.card:hover { box-shadow: var(--card-shadow-hover); }
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.card-title .icon {
  width: 32px; height: 32px;
  background: var(--gold-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}

/* ─── FORM ─── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .01em;
}
.label-hint { font-size: 11px; color: var(--muted); font-weight: 400; display: block; margin-top: 1px; }
.input-wrap { position: relative; }
.prefix {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  pointer-events: none;
}
input[type="number"], input[type="text"], select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
}
input[type="number"].has-prefix { padding-left: 24px; }
input[type="number"]:focus, input[type="text"]:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,42,.12);
  background: #fff;
}
input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235e6678' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }

/* Checkbox toggles */
.toggle-group {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.toggle-btn {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 8px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: var(--cream);
  cursor: pointer;
  transition: all .15s;
  user-select: none;
}
.toggle-btn.active {
  border-color: var(--gold);
  background: var(--gold-light);
  color: var(--gold);
}

/* Age slider */
.age-slider-wrap { margin-top: .2rem; }
.age-track {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.age-opt {
  flex: 1;
  text-align: center;
  padding: 9px 4px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  background: var(--cream);
  cursor: pointer;
  border-right: 1px solid var(--border);
  transition: all .15s;
  line-height: 1.3;
  user-select: none;
}
.age-opt:last-child { border-right: none; }
.age-opt small { display: block; font-size: 10px; color: var(--light); margin-top: 1px; }
.age-opt.active {
  background: var(--navy);
  color: #fff;
}
.age-opt.active small { color: var(--gold3); }

/* Calc button */
.btn-calc {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, transform .1s;
  margin-top: .5rem;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.btn-calc:hover { background: var(--navy2); }
.btn-calc:active { transform: scale(.99); }
.btn-calc .arrow { font-size: 18px; transition: transform .2s; }
.btn-calc:hover .arrow { transform: translateX(4px); }

/* ─── BOTÓN ANÁLISIS CTA ─── */
.btn-analisis {
  display: flex;
  align-items: center;
  gap: .9rem;
  width: 100%;
  background: linear-gradient(135deg, #1b1464 0%, #5a1a72 100%);
  border: 2px solid rgba(200,146,42,.45);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: all .22s;
  position: relative;
  overflow: hidden;
  margin-top: .1rem;
}
.btn-analisis::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,146,42,.12), transparent);
  opacity: 0;
  transition: opacity .22s;
}
.btn-analisis:hover { border-color: rgba(200,146,42,.8); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(91,26,114,.35); }
.btn-analisis:hover::before { opacity: 1; }
.btn-analisis:active { transform: translateY(0); }
.btn-analisis-wa {
  width: 42px; height: 42px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 2px 10px rgba(37,211,102,.4);
  transition: box-shadow .22s;
}
.btn-analisis:hover .btn-analisis-wa { box-shadow: 0 4px 16px rgba(37,211,102,.6); }
.btn-analisis-wa::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: analisis-pulse 2s ease-out infinite;
}
@keyframes analisis-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.5); opacity: 0;  }
  100% { transform: scale(1.5); opacity: 0;  }
}
.btn-analisis-text { display: flex; flex-direction: column; gap: .05rem; flex: 1; }
.btn-analisis-top  { font-size: 11.5px; color: rgba(255,255,255,.6); font-weight: 400; letter-spacing: .02em; }
.btn-analisis-main {
  font-family: 'Montserrat', 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 800; color: #fff;
  letter-spacing: .01em; line-height: 1.2;
}
.btn-analisis-arrow { font-size: 20px; color: var(--gold2); flex-shrink: 0; transition: transform .2s; font-weight: 700; }
.btn-analisis:hover .btn-analisis-arrow { transform: translate(3px,-3px); }
@media (max-width: 400px) { .btn-analisis-main { font-size: 13px; } }

/* ─── RESULT PANEL ─── */
.result-panel {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.75rem;
  color: #fff;
  display: none;
  animation: fadeUp .3s ease;
}
.result-panel.show { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.result-label { font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .3rem; }
.result-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: .2rem;
}
.result-sub { font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 1.2rem; }
.result-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.badge-min { background: rgba(234,179,8,.15); border: 1px solid rgba(234,179,8,.3); color: #fde68a; }
.badge-ok { background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.2); color: #86efac; }

.result-breakdown {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.rb-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.rb-row span:first-child { color: rgba(255,255,255,.45); }
.rb-row span:last-child { color: rgba(255,255,255,.9); font-weight: 500; }
.rb-divider { height: .5px; background: rgba(255,255,255,.06); margin: .3rem 0; }
.rb-total { border-top: 1px solid rgba(255,255,255,.15); padding-top: .6rem; margin-top: .15rem; }
.rb-total span:first-child { color: rgba(255,255,255,.7); font-weight: 500; }
.rb-total span:last-child { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold2); }

.result-anual {
  margin-top: 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: .9rem 1rem;
}
.ra-label { font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .3rem; }
.ra-value { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold3); }
.ra-sub { font-size: 11px; color: rgba(255,255,255,.4); margin-top: .15rem; }

/* ─── M40 PANEL ─── */
.m40-panel {
  background: linear-gradient(135deg, var(--navy2), var(--navy3));
  border: 1px solid rgba(200,146,42,.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: none;
}
.m40-panel.show { display: block; animation: fadeUp .3s ease; }
.m40-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold2);
  margin-bottom: .3rem;
}
.m40-sub { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.m40-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.m40-stat { background: rgba(255,255,255,.05); border-radius: 8px; padding: .8rem; }
.m40-stat-n { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--gold2); }
.m40-stat-l { font-size: 11px; color: rgba(255,255,255,.4); margin-top: .1rem; }

/* ─── INFO PANEL ─── */
.info-panel {
  background: var(--gold-light);
  border: 1px solid rgba(200,146,42,.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
}
.info-panel-title { font-weight: 600; font-size: 13px; color: var(--gold); margin-bottom: .5rem; display: flex; align-items: center; gap: .4rem; }
.info-panel-body { font-size: 12.5px; color: #7a5010; line-height: 1.65; }

/* ─── ALERT ─── */
.alert {
  border-radius: 8px;
  padding: .85rem 1rem;
  font-size: 13px;
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  line-height: 1.6;
}
.alert-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.alert-info { background: var(--info-bg); border: 1px solid var(--info-bd); color: var(--info-text); }
.alert-ok { background: var(--green-bg); border: 1px solid var(--green-bd); color: var(--green); }

/* ─── TABLE ─── */
.table-wrap { overflow-x: auto; margin-top: .75rem; }
table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
thead tr { background: var(--navy); }
th { padding: 9px 12px; text-align: left; color: #fff; font-weight: 600; font-size: 11.5px; letter-spacing: .03em; white-space: nowrap; }
td { padding: 7px 12px; border-bottom: .5px solid var(--border); color: var(--muted); }
tr:nth-child(even) td { background: var(--cream2); }
td:first-child { color: var(--navy); font-weight: 500; }
td.gold { color: var(--gold); font-weight: 700; }
td.center { text-align: center; }
.table-highlight td { background: rgba(200,146,42,.06) !important; }
.table-highlight td:first-child { color: var(--gold); }

/* ─── SCENARIO COMPARE ─── */
.scenarios { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.scenario-card {
  border-radius: 10px;
  padding: 1.1rem;
  border: 1px solid var(--border);
}
.scenario-card.current { background: #fff; }
.scenario-card.optimized { background: var(--navy); border-color: rgba(200,146,42,.3); }
.sc-label { font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: .4rem; }
.sc-label.cur { color: var(--muted); }
.sc-label.opt { color: var(--gold); }
.sc-amount { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800; line-height: 1.1; margin-bottom: .2rem; }
.sc-amount.cur { color: var(--navy); }
.sc-amount.opt { color: var(--gold2); }
.sc-desc { font-size: 11.5px; }
.sc-desc.cur { color: var(--muted); }
.sc-desc.opt { color: rgba(255,255,255,.45); }

/* ─── STEPS ─── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 1rem; padding: .85rem 0; border-bottom: .5px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.step-title { font-weight: 600; font-size: 13.5px; color: var(--navy); margin-bottom: .15rem; }
.step-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ─── CTA SIDE ─── */
.cta-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.75rem;
  color: #fff;
}
.cta-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
  line-height: 1.2;
}
.cta-card h3 em { font-style: italic; color: var(--gold2); }
.cta-card p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 1.25rem; }
.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: background .18s;
  margin-bottom: .7rem;
}
.btn-wa:hover { background: #1ebe5b; }
.btn-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  text-decoration: none;
  border-radius: 8px;
  padding: 11px;
  font-weight: 500;
  font-size: 13px;
  transition: all .18s;
}
.btn-mail:hover { background: rgba(255,255,255,.1); color: #fff; }
.cta-trust {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: 11.5px;
  color: rgba(255,255,255,.4);
}
.trust-item::before {
  content: '✓';
  color: var(--gold2);
  font-weight: 700;
  font-size: 11px;
}

/* ─── CREDENCIAL ─── */
.credencial {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy3) 100%);
  border: 1px solid rgba(200,146,42,.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
}
.cred-title { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; font-weight: 600; }
.cred-item { display: flex; align-items: center; gap: .6rem; margin-bottom: .55rem; }
.cred-icon { width: 28px; height: 28px; background: rgba(200,146,42,.12); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.cred-name { font-size: 12.5px; font-weight: 600; color: #fff; }
.cred-sub { font-size: 11px; color: rgba(255,255,255,.4); }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand { font-family: 'Playfair Display', serif; font-weight: 700; color: rgba(255,255,255,.5); font-size: 13px; }
.footer-legal { font-size: 11px; color: rgba(255,255,255,.25); line-height: 1.6; text-align: right; max-width: 480px; }

/* ══════════════════════════════════════════════════════
   HERO-AD — fiel al diseño del anuncio de Facebook
   Paleta: #1b1464 navy oscuro · #6e2480 morado · #c8922a gold
   ══════════════════════════════════════════════════════ */

.hero-ad {
  position: relative;
  background: linear-gradient(135deg,
    #1b1464 0%,
    #2d1b6e 30%,
    #5a1a72 60%,
    #3a2060 80%,
    #1e2a5e 100%);
  overflow: hidden;
  border-bottom: 3px solid rgba(200,146,42,.4);
}

/* puntos decorativos */
.ad-dots { position: absolute; pointer-events: none; }
.ad-dots-tl { top: 12px; left: 14px; }
.ad-dots-tr { top: 12px; right: 14px; transform: scaleX(-1); }

/* layout principal 3 columnas */
.ad-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px 260px;
  align-items: center;
  padding: 2.8rem clamp(1rem,4vw,2.5rem) 0;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

/* ─── IZQUIERDA ─── */
.ad-left { display: flex; flex-direction: column; gap: .8rem; }

.ad-family-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .2rem;
}

.ad-headline { display: flex; flex-direction: column; line-height: 1; gap: .05rem; }
.ad-h-como {
  font-family: 'Montserrat', 'DM Sans', sans-serif;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: .06em;
}
.ad-h-mejorar {
  font-family: 'Montserrat', 'DM Sans', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: .02em;
  line-height: .95;
}
.ad-h-pension {
  font-family: 'Montserrat', 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #7ecfee; /* celeste como en el anuncio */
  letter-spacing: .02em;
  line-height: 1;
}
.ad-redline {
  width: 52px; height: 3px;
  background: #c8212a;
  border-radius: 2px;
  margin-top: .5rem;
}

.ad-desc {
  font-size: 14px;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}
.ad-desc strong { color: #fff; font-weight: 700; }

/* pilares */
.ad-pillars {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: .3rem;
}
.ad-pillar {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.ad-pillar-icon {
  width: 34px; height: 34px;
  background: rgba(200,146,42,.18);
  border: 1px solid rgba(200,146,42,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #f5c85a;
  flex-shrink: 0;
}
.ad-pillar-text {
  font-size: 10px;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  line-height: 1.3;
}
.ad-pillar-text strong { color: #fff; font-weight: 700; display: block; }
.ad-pillar-sep {
  width: 1px; height: 32px;
  background: rgba(255,255,255,.2);
}

/* ─── CENTRO: pareja ilustrativa ─── */
.ad-center { display: flex; align-items: flex-end; justify-content: center; }
.ad-couple-wrap {
  position: relative;
  width: 100%;
  max-width: 300px;
}
.ad-couple-svg { width: 100%; filter: drop-shadow(0 8px 32px rgba(0,0,0,.45)); }

/* ─── DERECHA: badge escudo ─── */
.ad-right { display: flex; align-items: center; justify-content: center; padding-bottom: 1rem; }
.ad-shield-badge {
  background: linear-gradient(135deg, rgba(126,30,110,.85), rgba(80,20,100,.85));
  border: 1px solid rgba(200,146,42,.3);
  border-radius: 50px;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  max-width: 240px;
  backdrop-filter: blur(8px);
}
.ad-shield-icon {
  width: 48px; height: 48px;
  background: rgba(200,146,42,.18);
  border: 1.5px solid rgba(200,146,42,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ad-shield-text {
  font-size: 12.5px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.ad-shield-text strong { color: #fff; }

/* ─── BARRA CONTACTO (blanca, fiel al anuncio) ─── */
.ad-contact-bar {
  background: rgba(255,255,255,.96);
  margin: 0;
  position: relative; z-index: 2;
}
.ad-contact-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 1.1rem clamp(1rem,4vw,2.5rem);
}
.ad-contact-web,
.ad-contact-wa {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.ad-contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ad-contact-icon-blue { background: #2563eb; }
.ad-contact-icon-green { background: #25d366; }
.ad-contact-label {
  font-size: 12px;
  color: #5e6678;
  font-weight: 400;
}
.ad-contact-value {
  font-family: 'Montserrat', 'DM Sans', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: #1b1464;
  letter-spacing: .01em;
}
.ad-contact-sep {
  width: 1px; height: 44px;
  background: #ddd5c5;
}

/* ─── TAGLINE ─── */
.ad-tagline-bar {
  background: #0d1633;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: .65rem 1rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  position: relative; z-index: 2;
}
.ad-tag-dot { color: rgba(255,255,255,.3); }
.ad-tag-highlight { color: #7ecfee; }

/* ─── RESPONSIVE hero-ad ─── */
@media (max-width: 900px) {
  .ad-inner { grid-template-columns: 1fr 200px; grid-template-rows: auto auto; }
  .ad-right { grid-column: 1; grid-row: 2; justify-content: flex-start; padding-bottom: 0; }
  .ad-center { grid-column: 2; grid-row: 1 / 3; }
}
@media (max-width: 620px) {
  .ad-inner { grid-template-columns: 1fr; padding-bottom: 1.5rem; gap: 1rem; }
  .ad-center { display: none; }
  .ad-right { padding-bottom: 0; }
  .ad-contact-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .ad-contact-sep { display: none; }
  .ad-tagline-bar { flex-wrap: wrap; gap: .4rem; }
  .ad-h-mejorar { font-size: 2.6rem; }
  .ad-h-pension { font-size: 2rem; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .main { grid-template-columns: 1fr; }
  .col-right { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .scenarios { grid-template-columns: 1fr; }
  .m40-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .age-track { flex-wrap: wrap; }
  .age-opt { flex: 0 0 calc(33.3% - 1px); }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
}



/* ─── BURBUJA WHATSAPP FLOTANTE ─── */
.wa-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  cursor: pointer;
  filter: drop-shadow(0 4px 16px rgba(37,211,102,.45));
  transition: filter .25s;
}
.wa-bubble:hover {
  filter: drop-shadow(0 6px 22px rgba(37,211,102,.65));
}

/* círculo verde */
.wa-bubble-icon {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: transform .2s;
}
.wa-bubble:hover .wa-bubble-icon {
  transform: scale(1.1);
}

/* tooltip que aparece a la izquierda */
.wa-bubble-tooltip {
  position: absolute;
  right: 72px;
  bottom: 50%;
  transform: translateY(50%);
  background: #fff;
  border-radius: 12px 12px 4px 12px;
  padding: .55rem .9rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  gap: .1rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(50%) translateX(6px);
  transition: opacity .22s, transform .22s;
}
.wa-bubble:hover .wa-bubble-tooltip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}
/* flecha derecha del tooltip */
.wa-bubble-tooltip::after {
  content: '';
  position: absolute;
  right: -7px;
  bottom: 10px;
  border: 7px solid transparent;
  border-right: 0;
  border-left-color: #fff;
}
.wa-tooltip-top {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #5e6678;
  font-weight: 400;
}
.wa-tooltip-num {
  font-family: 'Montserrat', 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #1b1464;
  letter-spacing: .02em;
}

/* ping animado (punto rojo de notificación) */
.wa-bubble-ping {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 3;
}
.wa-bubble-ping::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(239,68,68,.4);
  animation: wa-ping 1.6s ease-out infinite;
}
@keyframes wa-ping {
  0%   { transform: scale(1);   opacity: .8; }
  80%  { transform: scale(2.2); opacity: 0;  }
  100% { transform: scale(2.2); opacity: 0;  }
}

/* entrada suave al cargar */
.wa-bubble {
  animation: wa-entry .5s .6s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes wa-entry {
  from { opacity: 0; transform: scale(.5) translateY(20px); }
  to   { opacity: 1; transform: scale(1)  translateY(0);    }
}

@media (max-width: 480px) {
  .wa-bubble { bottom: 18px; right: 18px; }
  .wa-bubble-icon { width: 54px; height: 54px; }
}

/* ─── FOOTER ─── */
.site-footer{background:#0a0a0f;border-top:1px solid rgba(255,255,255,.06);padding:3rem clamp(1rem,4vw,3rem) 1.5rem}
.footer-inner{max-width:1120px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr 1fr;gap:2rem;margin-bottom:2rem}
.footer-col{}
.footer-brand{font-family:'Playfair Display',serif;font-weight:700;color:rgba(255,255,255,.7);font-size:15px}
.footer-sub{font-size:11px;color:rgba(255,255,255,.3);margin-top:.25rem}
.footer-menu-title{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.3);margin-bottom:.6rem;font-weight:600}
.footer-nav{display:flex;flex-direction:column;gap:.35rem}
.footer-nav a{font-size:13px;color:rgba(255,255,255,.45);text-decoration:none;transition:color .18s}
.footer-nav a:hover{color:#e8aa3a}
.footer-wa-btn{display:inline-flex;align-items:center;gap:.5rem;background:#25d366;color:#fff;text-decoration:none;border-radius:8px;padding:9px 14px;font-size:13px;font-weight:600;transition:background .18s;margin-top:.2rem}
.footer-wa-btn:hover{background:#1ebe5b}
.footer-bottom{max-width:1120px;margin:0 auto;border-top:1px solid rgba(255,255,255,.06);padding-top:1.2rem;display:flex;justify-content:space-between;flex-wrap:wrap;gap:.6rem}
.footer-bottom span{font-size:11px;color:rgba(255,255,255,.25)}
.footer-legal-note{font-style:italic}
/* ─── CONTACTO ─── */
.contact-page{background:var(--cream)}
.contact-hero{background:var(--navy);padding:4rem clamp(1rem,4vw,3rem);text-align:center}
.contact-inner{max-width:700px;margin:0 auto}
.contact-inner h1{font-family:'Playfair Display',serif;font-size:2.4rem;font-weight:900;color:#fff;margin-bottom:.8rem;line-height:1.1}
.contact-inner p{color:rgba(255,255,255,.65);font-size:15px;line-height:1.7;margin-bottom:2rem}
.btn-wa-big{display:inline-flex;align-items:center;gap:.6rem;background:#25d366;color:#fff;text-decoration:none;font-size:16px;font-weight:700;padding:15px 30px;border-radius:50px;transition:background .18s;margin-bottom:2.5rem;box-shadow:0 4px 20px rgba(37,211,102,.35)}
.btn-wa-big:hover{background:#1ebe5b}
.contact-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.contact-card{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);border-radius:12px;padding:1.2rem}
.cc-icon{font-size:1.8rem;margin-bottom:.4rem}
.cc-title{font-size:11px;letter-spacing:.07em;text-transform:uppercase;color:rgba(255,255,255,.45);margin-bottom:.2rem}
.cc-val{font-size:14px;font-weight:600;color:#fff}
/* ─── PAGE DEFAULT ─── */
.page-inner{max-width:900px;margin:0 auto;padding:3rem clamp(1rem,4vw,2rem)}
.page-article{}
.page-header{margin-bottom:2rem;padding-bottom:1rem;border-bottom:2px solid var(--border)}
.page-title{font-family:'Playfair Display',serif;font-size:2rem;font-weight:700;color:var(--navy)}
.page-content{font-size:15px;color:var(--muted);line-height:1.8}
.page-content h2{font-family:'Playfair Display',serif;color:var(--navy);margin:1.5rem 0 .6rem}
.page-content p{margin-bottom:1rem}
.fullwidth-main{padding:0}
/* Responsive footer */
@media(max-width:760px){.footer-inner{grid-template-columns:1fr}}
@media(max-width:520px){.contact-cards{grid-template-columns:1fr}.footer-bottom{flex-direction:column}}

/* ══════════════════════════════════════════════════════
   PÁGINAS LEGALES — Términos, Privacidad, Devolución
   ══════════════════════════════════════════════════════ */

/* Hero de página legal */
.legal-hero {
  background: linear-gradient(135deg, #0d1f3c 0%, #1b1464 50%, #1e2a5e 100%);
  padding: 3.5rem clamp(1rem, 4vw, 3rem) 3rem;
  border-bottom: 3px solid rgba(200,146,42,.35);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(200,146,42,.08) 0%, transparent 70%);
  pointer-events: none;
}
.legal-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.legal-badge {
  display: inline-block;
  background: rgba(200,146,42,.15);
  border: 1px solid rgba(200,146,42,.3);
  color: #f5c85a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: .9rem;
}
.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .4rem;
}
.legal-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
  font-weight: 400;
}

/* Cuerpo de la página legal */
.legal-body {
  background: #faf7f2;
  min-height: 60vh;
  padding: 3rem clamp(1rem, 4vw, 3rem);
}
.legal-container {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ddd5c5;
  border-radius: 14px;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

/* Intro */
.legal-intro {
  background: #f0ebe0;
  border-left: 4px solid #c8922a;
  border-radius: 0 8px 8px 0;
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.5rem;
}
.legal-intro p {
  font-size: 13.5px;
  color: #3a3a4a;
  line-height: 1.7;
  margin-bottom: .4rem;
}
.legal-intro p:last-child { margin-bottom: 0; }

/* Secciones */
.legal-section {
  margin-bottom: 1rem;
}
.legal-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0d1f3c;
  margin-bottom: .65rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid #e8aa3a;
  display: inline-block;
}
.legal-section h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: #1c2b44;
  margin: .8rem 0 .4rem;
}
.legal-section p {
  font-size: 13.5px;
  color: #5e6678;
  line-height: 1.75;
  margin-bottom: .6rem;
}
.legal-section ul,
.legal-section ol {
  padding-left: 1.5rem;
  margin-bottom: .6rem;
}
.legal-section li {
  font-size: 13.5px;
  color: #5e6678;
  line-height: 1.7;
  margin-bottom: .3rem;
}
.legal-section strong { color: #1a1a28; }

/* Divisor */
.legal-divider {
  border: none;
  border-top: 1px solid #ddd5c5;
  margin: 1.5rem 0;
}

/* Meta datos */
.legal-meta {
  background: #f0ebe0;
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin: 1.5rem 0 1rem;
}
.legal-meta p {
  font-size: 12.5px;
  color: #5e6678;
  margin-bottom: .25rem;
  line-height: 1.5;
}
.legal-meta p:last-child { margin-bottom: 0; }
.legal-meta strong { color: #1a1a28; }

/* CTA WhatsApp dentro de página legal */
.legal-contact-cta {
  text-align: center;
  padding: 1.5rem 1rem;
  background: linear-gradient(135deg, #0d1f3c, #1b1464);
  border-radius: 12px;
  margin: 1rem 0 1.5rem;
}
.legal-contact-cta p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-bottom: .8rem;
}
.legal-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 50px;
  transition: background .18s, box-shadow .18s;
  box-shadow: 0 3px 14px rgba(37,211,102,.35);
}
.legal-wa-btn:hover {
  background: #1ebe5b;
  box-shadow: 0 5px 20px rgba(37,211,102,.5);
}

/* Navegación legal inferior */
.legal-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  padding: 1rem 0 .5rem;
  border-top: 1px solid #ddd5c5;
}
.legal-footer-links a {
  font-size: 12px;
  color: #c8922a;
  text-decoration: none;
  font-weight: 500;
  transition: color .18s;
}
.legal-footer-links a:hover { color: #1b1464; }
.legal-footer-links span { color: #ddd5c5; }

/* Responsive */
@media (max-width: 600px) {
  .legal-container { padding: 1.2rem 1rem; }
  .legal-hero { padding: 2.5rem 1rem 2rem; }
  .legal-footer-links { flex-direction: column; gap: .4rem; }
}

/* Footer legal links */
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal-links a {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .18s;
}
.footer-legal-links a:hover { color: #e8aa3a; }
.footer-legal-sep { color: rgba(255,255,255,.2); font-size: 11px; }

/* ══════════════════════════════════════════════════════
   PÁGINAS GEO LOCAL — Ciudades
   ══════════════════════════════════════════════════════ */
.geo-hero{background:linear-gradient(135deg,#0d1f3c 0%,#1b1464 50%,#2d1b6e 100%);padding:4rem clamp(1rem,4vw,3rem) 3.5rem;position:relative;overflow:hidden;border-bottom:3px solid rgba(200,146,42,.35)}
.geo-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 65% 80% at 85% 50%,rgba(200,146,42,.1) 0%,transparent 65%);pointer-events:none}
.geo-hero-inner{max-width:760px;margin:0 auto;position:relative;z-index:1}
.geo-badge{display:inline-block;background:rgba(200,146,42,.15);border:1px solid rgba(200,146,42,.35);color:#f5c85a;font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;padding:5px 14px;border-radius:20px;margin-bottom:1rem}
.geo-hero h1{font-family:'Playfair Display',serif;font-size:clamp(1.9rem,4.5vw,3rem);font-weight:900;color:#fff;line-height:1.1;margin-bottom:.9rem}
.geo-hero h1 span{color:#7ecfee}
.geo-hero-sub{color:rgba(255,255,255,.68);font-size:15px;font-weight:300;line-height:1.7;margin-bottom:2rem;max-width:560px}
.geo-cta-btn{display:inline-flex;align-items:center;gap:.6rem;background:#25d366;color:#fff;text-decoration:none;font-size:15px;font-weight:700;padding:13px 26px;border-radius:50px;transition:all .2s;box-shadow:0 4px 20px rgba(37,211,102,.4)}
.geo-cta-btn:hover{background:#1ebe5b;box-shadow:0 6px 28px rgba(37,211,102,.55);transform:translateY(-1px)}

.geo-body{background:#faf7f2;padding:3rem clamp(1rem,4vw,2rem)}
.geo-container{max-width:1000px;margin:0 auto;display:flex;flex-direction:column;gap:2.5rem}

.geo-section h2{font-family:'Playfair Display',serif;font-size:1.5rem;font-weight:700;color:#0d1f3c;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:2px solid #e8aa3a;display:inline-block}
.geo-section p{font-size:14px;color:#5e6678;line-height:1.75;margin-bottom:.7rem}
.geo-section p strong{color:#1a1a28}

/* Cards estrategias */
.geo-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:.5rem}
.geo-card{background:#fff;border:1px solid #ddd5c5;border-radius:12px;padding:1.3rem;transition:box-shadow .2s;position:relative}
.geo-card:hover{box-shadow:0 4px 20px rgba(0,0,0,.08)}
.geo-card-icon{font-size:1.6rem;margin-bottom:.5rem}
.geo-card h3{font-family:'Playfair Display',serif;font-size:1rem;font-weight:700;color:#0d1f3c;margin-bottom:.4rem}
.geo-card p{font-size:13px;color:#5e6678;line-height:1.65;margin-bottom:.6rem}
.geo-card-tag{display:inline-block;font-size:10.5px;font-weight:600;padding:2px 8px;border-radius:4px;background:rgba(200,146,42,.1);border:1px solid rgba(200,146,42,.25);color:#c8922a;letter-spacing:.03em}

/* FAQ */
.geo-faq{}
.faq-list{display:flex;flex-direction:column;gap:.6rem;margin-top:.5rem}
.faq-item{background:#fff;border:1px solid #ddd5c5;border-radius:10px;overflow:hidden}
.faq-item summary{padding:1rem 1.2rem;font-weight:600;font-size:14px;color:#0d1f3c;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'＋';font-size:16px;color:#c8922a;flex-shrink:0;margin-left:.5rem;transition:transform .2s}
.faq-item[open] summary::after{content:'－'}
.faq-item p{padding:.2rem 1.2rem 1rem;font-size:13.5px;color:#5e6678;line-height:1.7;border-top:1px solid #eee;margin:0}

/* Estadísticas */
.geo-stats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:.5rem}
.geo-stat{background:#fff;border:1px solid #ddd5c5;border-radius:10px;padding:1.1rem;text-align:center}
.gs-num{font-family:'Playfair Display',serif;font-size:1.5rem;font-weight:900;color:#c8922a;line-height:1}
.gs-lbl{font-size:11.5px;color:#5e6678;margin-top:.3rem;line-height:1.4}

/* CTA Final */
.geo-cta-box{background:linear-gradient(135deg,#0d1f3c,#1b1464);border:1px solid rgba(200,146,42,.3);border-radius:14px;padding:2rem;text-align:center}
.geo-cta-box h3{font-family:'Playfair Display',serif;font-size:1.4rem;font-weight:700;color:#fff;margin-bottom:.6rem}
.geo-cta-box p{font-size:14px;color:rgba(255,255,255,.6);margin-bottom:1.5rem}
.geo-cta-btn-big{display:inline-flex;align-items:center;gap:.6rem;background:#25d366;color:#fff;text-decoration:none;font-size:16px;font-weight:800;padding:15px 32px;border-radius:50px;transition:all .2s;box-shadow:0 4px 20px rgba(37,211,102,.4);margin-bottom:.8rem}
.geo-cta-btn-big:hover{background:#1ebe5b;transform:translateY(-2px)}
.geo-cta-sub{font-size:12px;color:rgba(255,255,255,.5);margin-top:.5rem!important}

/* Calc CTA */
.geo-calc-cta{text-align:center;padding:.5rem}
.geo-calc-cta p{font-size:13px;color:#5e6678;margin-bottom:.4rem}
.geo-calc-link{color:#c8922a;text-decoration:none;font-weight:600;font-size:14px;transition:color .18s}
.geo-calc-link:hover{color:#1b1464}

/* Responsive geo */
@media(max-width:700px){.geo-cards{grid-template-columns:1fr}.geo-stats-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.geo-stats-grid{grid-template-columns:1fr}}
