/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --negro:   #000000;
  --blanco:  #ffffff;
  --gris-bg: #f4f4f2;
  --gris-200:#e8e8e5;
  --gris-300:#d0d0cc;
  --gris-500:rgba(0,0,0,0.45);
  --gris-700:rgba(0,0,0,0.65);
  --sup-neg: #0d0d0d;
  --sup-neg2:#1a1a1a;
  --acento:  #f1c232;
  --acento-d:#d4a820;
  --verde:   #1a9e5c;
  --rojo:    #c0392b;
  --rojo-s:  rgba(192,57,43,0.12);
  --rojo-trasl: rgba(192,57,43,0.6);
  --borde-l: rgba(0,0,0,0.10);
  --borde-n: rgba(255,255,255,0.08);
  --r-sm:    8px;
  --r-md:    12px;
  --r-lg:    16px;
  --r-pill:  999px;
  --shadow:  0 2px 16px rgba(0,0,0,0.08);
  --shadow-n:0 4px 24px rgba(0,0,0,0.5);
  --font:    'Noto Sans', ui-sans-serif, system-ui, sans-serif;
  --max:     920px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--gris-bg); color: #0f0f0f; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
img { display: block; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borde-n);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex; align-items: center; gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { height: 28px; width: 28px; object-fit: contain; border-radius: 4px; }
.nav-name { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; color: var(--blanco); }
.nav-links { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-link {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  padding: 6px 10px; border-radius: var(--r-sm);
  transition: color 180ms, background 180ms;
}
.nav-link:hover { color: var(--blanco); background: rgba(255,255,255,0.07); }
.nav-cta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--negro); background: var(--acento);
  padding: 7px 14px; border-radius: var(--r-pill);
  transition: background 180ms, transform 180ms;
}
.nav-cta:hover { background: var(--acento-d); transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--blanco); border-radius: 2px; transition: 300ms; }
.nav-mobile { display: none; flex-direction: column; background: #0a0a0a; border-top: 1px solid var(--borde-n); padding: 8px 16px 16px; }
.nav-mobile-link { padding: 12px 8px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7); border-bottom: 1px solid var(--borde-n); }
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-cta { color: var(--acento); margin-top: 8px; }
@media(max-width:640px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
  .nav-mobile.open { display: flex; }
}

/* ── SECTIONS BASE ────────────────────────────────────────────────────────── */
.section { padding: 80px 24px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.section-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--gris-500); margin-bottom: 8px;
}
.section-title { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.section-desc { font-size: 15px; color: var(--gris-700); max-width: 560px; line-height: 1.6; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.anuncio-bar {
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.90);
  padding: 9px 48px 9px 24px;
  font-size: 13px; font-weight: 500;
  text-align: center;
  position: relative;
  line-height: 1.5;
}
.anuncio-bar-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.40); font-size: 14px;
  cursor: pointer; padding: 4px 6px; line-height: 1;
  transition: color 150ms;
}
.anuncio-bar-close:hover { color: rgba(255,255,255,0.80); }

.feriado-alert {
  background: #8b0000;
  color: #fff;
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  position: relative; z-index: 99;
  text-align: center;
}
.feriado-alert-lock {
  background: rgba(255,255,255,0.15);
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
  padding: 3px 10px; border-radius: 999px;
}
.feriado-alert-sub { color: rgba(255,255,255,0.55); }

.hero {
  background: var(--negro);
  padding: 120px 24px 40px;
  display: flex; align-items: center;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: center;
}
.hero-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.20em;
  color: rgba(255,255,255,0.40); margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(48px, 8vw, 80px); font-weight: 800;
  letter-spacing: 0.03em; line-height: 1.0;
  color: var(--blanco); margin-bottom: 20px;
}
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 440px; line-height: 1.65; margin-bottom: 32px; }
.hero-btn {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--negro); background: var(--acento);
  padding: 14px 28px; border-radius: var(--r-pill);
  transition: background 180ms, transform 180ms;
}
.hero-btn:hover { background: var(--acento-d); transform: translateY(-2px); }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 20px;
}
.hero-trust span {
  font-size: 12px; color: rgba(255,255,255,0.38);
  font-weight: 500; white-space: nowrap;
}

/* Widget — iOS style */
.hero-widget {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 4px;
  min-width: 260px;
}
.widget-topbar {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2px;
}
.widget-sep { color: rgba(255,255,255,0.20); }
.widget-time {
  font-size: 58px; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--blanco);
  margin: 2px 0;
}
.widget-date {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: capitalize;
  margin-bottom: 2px;
}
.widget-divider {
  height: 1px; background: rgba(255,255,255,0.08);
  margin: 8px 0;
}
.widget-weather-main {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.widget-weather-icon { font-size: 22px; }
.widget-weather-temp {
  font-size: 26px; font-weight: 700;
  color: var(--blanco); letter-spacing: -0.01em;
}
.widget-weather-desc {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  flex: 1;
}
.widget-hilo {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.40);
  margin-left: auto;
}
.widget-weather-detail {
  display: flex; gap: 14px; margin-top: 4px;
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.40);
}
.widget-efem-label {
  display: block; font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--acento); margin-bottom: 4px;
}
.widget-efem-text {
  display: block; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.70); line-height: 1.4;
}

@media(max-width:700px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-widget { display: none; }
}

/* ── EFEMÉRIDES ────────────────────────────────────────────────────────────── */
.efem-section { background: var(--blanco); }
.efem-today { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.efem-card {
  background: var(--gris-bg);
  border: 1px solid var(--borde-l);
  border-radius: var(--r-lg);
  padding: 28px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: start;
  transition: box-shadow 200ms;
}
.efem-card:hover { box-shadow: var(--shadow); }
.efem-emoji { font-size: 32px; line-height: 1; padding-top: 2px; }
.efem-cat {
  display: inline-block;
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--negro); color: var(--blanco);
  padding: 2px 8px; border-radius: var(--r-pill); margin-bottom: 6px;
}
.efem-card-title { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.efem-card-res { font-size: 14px; color: var(--gris-700); line-height: 1.55; margin-bottom: 12px; }
.efem-puntos { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.efem-puntos li { font-size: 12px; color: var(--gris-500); padding-left: 14px; position: relative; }
.efem-puntos li::before { content: '·'; position: absolute; left: 0; color: var(--acento); font-weight: 800; }
.efem-dl-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--gris-500);
  background: var(--blanco); border: 1.5px solid var(--borde-l);
  border-radius: var(--r-md);
  padding: 12px 14px;
  transition: border-color 200ms, color 200ms, background 200ms;
  white-space: nowrap;
}
.efem-dl-btn:hover { border-color: var(--acento); color: var(--negro); background: rgba(241,194,50,0.08); }
.efem-dl-icon { font-size: 20px; }
.efem-empty { text-align: center; color: var(--gris-500); padding: 40px; font-size: 14px; }

/* Buscar efeméride */
.efem-browse { background: var(--gris-bg); border: 1px solid var(--borde-l); border-radius: var(--r-lg); padding: 28px; }
.efem-browse-label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--gris-700); margin-bottom: 12px; }
.efem-browse-controls { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.efem-select {
  font-family: var(--font); font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--borde-l); border-radius: var(--r-sm);
  padding: 9px 12px; background: var(--blanco); color: #0f0f0f;
  cursor: pointer;
}
.efem-select:focus { outline: none; border-color: var(--acento); }
.efem-btn-buscar {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  background: var(--negro); color: var(--blanco);
  padding: 10px 20px; border-radius: var(--r-pill);
  transition: background 180ms;
}
.efem-btn-buscar:hover { background: #222; }
.efem-resultado { margin-top: 20px; }

@media(max-width:560px) {
  .efem-card { grid-template-columns: auto 1fr; }
  .efem-dl-btn { grid-column: 1/-1; flex-direction: row; justify-content: center; padding: 10px; }
}

/* ── CALENDARIO FERIADOS ─────────────────────────────────────────────────── */
.feriados-section { background: var(--sup-neg); }
.feriados-section .section-eyebrow { color: rgba(255,255,255,0.35); }
.feriados-section .section-title { color: var(--blanco); }
.feriados-section .section-desc { color: rgba(255,255,255,0.50); }
.cal-nav {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.cal-nav-btn {
  font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.6);
  width: 36px; height: 36px; border-radius: var(--r-sm);
  border: 1px solid var(--borde-n);
  display: flex; align-items: center; justify-content: center;
  transition: background 180ms, color 180ms;
}
.cal-nav-btn:hover { background: rgba(255,255,255,0.07); color: var(--blanco); }
.cal-nav-title { font-size: 16px; font-weight: 800; letter-spacing: 0.04em; color: var(--blanco); text-transform: capitalize; }
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px; margin-bottom: 16px;
}
.cal-head {
  font-size: 8px; font-weight: 700; letter-spacing: 0.08em;
  text-align: center; padding: 6px 2px;
  color: rgba(255,255,255,0.40); text-transform: uppercase;
}
.cal-day {
  height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.75);
  cursor: default;
  position: relative;
}
.cal-day span {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 150ms;
}
.cal-day.today span {
  background: var(--acento);
  color: var(--negro);
  font-weight: 800;
}
.cal-day.inam {
  cursor: pointer;
}
.cal-day.inam span {
  background: rgba(220,55,45,0.75);
  color: #ffffff;
  font-weight: 700;
}
.cal-day.inam:hover span { background: rgba(220,55,45,0.90); }
.cal-day.trasl {
  cursor: pointer;
}
.cal-day.trasl span {
  background: rgba(220,55,45,0.30);
  color: #ff8a80;
  font-weight: 600;
}
.cal-day.trasl:hover span { background: rgba(220,55,45,0.45); }
.cal-day.weekend { color: rgba(255,255,255,0.35); }
.cal-legend {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.cal-legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,0.45); }
.cal-dot { width: 10px; height: 10px; border-radius: 50%; }
.cal-dot-inam { background: #e07070; }
.cal-dot-trasl { background: rgba(224,112,112,0.5); }
.cal-dot-today { background: var(--acento); }
.cal-feriado-nombre {
  min-height: 24px;
  font-size: 13px; font-weight: 600;
  color: var(--acento);
  letter-spacing: 0.02em;
  transition: opacity 200ms;
}

/* ── CTA COTIZADOR ───────────────────────────────────────────────────────── */
.cta-section { background: var(--negro); padding: 48px 24px 72px; }
.cta-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: center;
}
.cta-title { font-size: 40px; font-weight: 800; color: var(--blanco); margin-bottom: 16px; line-height: 1.1; }
.cta-desc { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 28px; }
.cta-btn {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--negro); background: var(--blanco);
  padding: 14px 28px; border-radius: var(--r-pill);
  transition: background 180ms, transform 180ms;
}
.cta-btn:hover { background: var(--gris-200); transform: translateY(-1px); }
.cta-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-feat {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md); padding: 12px 14px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75);
}
.cta-feat-icon { font-size: 18px; }
@media(max-width:640px) {
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-features { grid-template-columns: 1fr 1fr; }
}

/* ── TIPS ────────────────────────────────────────────────────────────────── */
.tips-section { background: var(--gris-bg); }
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tip-card {
  background: var(--blanco);
  border: 1px solid var(--borde-l);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: box-shadow 200ms, transform 200ms;
}
.tip-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.tip-icon { font-size: 28px; margin-bottom: 12px; }
.tip-title { font-size: 14px; font-weight: 800; margin-bottom: 8px; }
.tip-body { font-size: 13px; color: var(--gris-700); line-height: 1.6; }
@media(max-width:720px) { .tips-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .tips-grid { grid-template-columns: 1fr; } }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-section { background: var(--sup-neg); }
.faq-section .section-eyebrow { color: rgba(255,255,255,0.35); }
.faq-section .section-title { color: var(--blanco); }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--borde-n);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 200ms;
}
.faq-item[open] { border-color: rgba(255,255,255,0.15); }
.faq-item + .faq-item { margin-top: 6px; }
.faq-q {
  list-style: none;
  padding: 18px 20px;
  font-size: 14px; font-weight: 700;
  color: var(--blanco); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: background 180ms;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 20px; font-weight: 400; color: rgba(255,255,255,0.3); flex-shrink: 0; }
.faq-item[open] .faq-q::after { content: '−'; }
.faq-q:hover { background: rgba(255,255,255,0.04); }
.faq-a {
  padding: 0 20px 18px;
  font-size: 13px; line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer { background: var(--negro); border-top: 1px solid var(--borde-n); padding: 48px 24px 24px; }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap;
  padding-bottom: 32px; border-bottom: 1px solid var(--borde-n);
  margin-bottom: 20px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo { height: 32px; width: 32px; object-fit: contain; border-radius: 4px; margin-bottom: 4px; }
.footer-brand-name { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; color: var(--blanco); }
.footer-brand-sub { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; }
.footer-hours { display: flex; flex-direction: column; gap: 5px; }
.footer-hours-title { font-size: 11px; font-weight: 700; letter-spacing: 0.10em; color: var(--blanco); margin-bottom: 4px; }
.footer-hours-row { font-size: 11px; color: rgba(255,255,255,0.40); }
.footer-links { display: flex; flex-direction: column; gap: 8px; margin-left: auto; }
.footer-link { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.45); transition: color 180ms; }
.footer-link:hover { color: var(--blanco); }
.footer-social { display: flex; flex-direction: column; gap: 8px; }
.footer-social-link { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.45); transition: color 180ms; }
.footer-social-link:hover { color: var(--acento); }
.footer-copy { max-width: var(--max); margin: 0 auto; font-size: 10px; color: rgba(255,255,255,0.25); letter-spacing: 0.04em; }

/* ── SCROLL FADE ─────────────────────────────────────────────────────────── */
[data-fade] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-fade].is-visible { opacity: 1; transform: none; }
[data-fade][data-delay="1"] { transition-delay: 0.10s; }
[data-fade][data-delay="2"] { transition-delay: 0.20s; }
[data-fade][data-delay="3"] { transition-delay: 0.30s; }

/* ── STATS STRIP ─────────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--sup-neg);
  border-top: 1px solid var(--borde-n);
  border-bottom: 1px solid var(--borde-n);
}
.stats-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 28px 24px;
}
.stat-item {
  display: flex; flex-direction: column; gap: 5px;
  padding: 0 32px; text-align: center;
}
.stat-item:not(:last-child) { border-right: 1px solid var(--borde-n); }
.stat-num {
  font-size: 28px; font-weight: 800; color: var(--acento);
  letter-spacing: -0.02em; line-height: 1;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }

/* ── CÓMO FUNCIONA ───────────────────────────────────────────────────────── */
.como-section { background: var(--gris-bg); }
.como-steps {
  margin-top: 40px;
  border: 1px solid var(--borde-l); border-radius: var(--r-lg);
  overflow: hidden;
}
.como-step {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 32px; background: var(--blanco);
}
.como-step:not(:last-child) { border-bottom: 1px solid var(--borde-l); }
.como-num {
  font-size: 52px; font-weight: 800; color: var(--acento);
  line-height: 1; flex-shrink: 0; letter-spacing: -0.03em; width: 72px;
}
.como-title { font-size: 17px; font-weight: 700; color: var(--negro); margin-bottom: 6px; }
.como-desc { font-size: 14px; color: var(--gris-700); line-height: 1.65; }
.como-cta { margin-top: 40px; display: flex; justify-content: center; }

/* ── SLIDER SERVICIOS ─────────────────────────────────────────────────────── */
.slider-section { background: var(--negro); padding: 0; position: relative; }
.slider         { overflow: hidden; width: 100%; }
.slider-track   {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.slider-slide { flex: none; }
.slider-slide img {
  width: 100%; display: block;
  aspect-ratio: 21/9; max-height: 180px; object-fit: cover; object-position: center;
}
.slider-dots {
  display: flex; justify-content: center; gap: 8px;
  padding: 16px 0 20px; background: var(--negro);
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.25);
  cursor: pointer; padding: 0; transition: background 0.3s, transform 0.3s;
}
.slider-dot.active {
  background: var(--amarillo); transform: scale(1.25);
}
@media (max-width: 600px) {
  .slider-slide img { aspect-ratio: 16/9; max-height: none; }
}

/* ── PRECIOS PAGE ─────────────────────────────────────────────────────────── */
.precios-hero-section { background: var(--negro); }
.precios-eyebrow { color: rgba(255,255,255,0.35); }
.precios-main-title { color: var(--blanco); }
.precios-main-desc { color: rgba(255,255,255,0.55); }

.precios-table-wrap { overflow-x: auto; margin-top: 8px; }
.precios-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.precios-th {
  text-align: left; padding: 12px 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.10em;
  color: rgba(255,255,255,0.40);
  border-bottom: 1px solid var(--borde-n);
  white-space: nowrap;
}
.precios-th-papel { min-width: 180px; }
.precios-tr:not(:last-child) { border-bottom: 1px solid var(--borde-n); }
.precios-td {
  padding: 20px 16px; vertical-align: top;
  color: rgba(255,255,255,0.85);
}
.precios-td-label strong { display: block; font-size: 14px; font-weight: 700; color: var(--blanco); }
.precios-td-sub { display: block; font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 3px; }
.precios-td-val { font-size: 20px; font-weight: 800; color: var(--acento); text-align: right; white-space: nowrap; }
.precios-na { text-align: right; color: rgba(255,255,255,0.18); font-size: 16px; }
.precios-footnote {
  margin-top: 16px; font-size: 11px; color: rgba(255,255,255,0.30);
  letter-spacing: 0.04em;
}
.precios-cta-btn {
  display: inline-flex; align-items: center; margin-top: 36px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--negro); background: var(--acento);
  padding: 14px 28px; border-radius: var(--r-pill);
  transition: background 180ms, transform 180ms;
}
.precios-cta-btn:hover { background: var(--acento-d); transform: translateY(-2px); }

.precios-anillado-section { background: var(--gris-bg); }
.precios-anillado-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.precios-anillado-item {
  background: var(--blanco); border: 1px solid var(--borde-l);
  border-radius: var(--r-md); padding: 18px 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.precios-anillado-range { font-size: 12px; font-weight: 600; color: var(--gris-700); }
.precios-anillado-price { font-size: 22px; font-weight: 800; color: var(--negro); }

.precios-urgente-section { background: var(--sup-neg); }
.precios-urgente-card {
  display: flex; align-items: center; gap: 40px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--borde-n);
  border-radius: var(--r-lg); padding: 32px;
}
.precios-urgente-text { flex: 1; }
.precios-urgente-title { font-size: 24px; font-weight: 800; color: var(--blanco); margin: 8px 0 10px; }
.precios-urgente-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── UBICACIÓN ────────────────────────────────────────────────────────────── */
.ubicacion-section { background: var(--gris-bg); }
.ubicacion-inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center;
}
.ubicacion-title {
  font-size: 36px; font-weight: 800; color: var(--negro);
  margin: 8px 0 4px; letter-spacing: -0.02em;
}
.ubicacion-sub { font-size: 16px; color: var(--gris-700); margin-bottom: 28px; }
.ubicacion-hours { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.ubi-hour-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.ubi-day { font-size: 13px; font-weight: 700; color: var(--negro); white-space: nowrap; }
.ubi-time { font-size: 13px; color: var(--gris-700); text-align: right; }
.ubicacion-maps-btn {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 700; color: var(--negro);
  border: 1.5px solid var(--borde-l); border-radius: var(--r-pill);
  padding: 10px 20px; transition: background 180ms, border-color 180ms;
}
.ubicacion-maps-btn:hover { background: var(--gris-200); border-color: var(--gris-300); }
.ubicacion-map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.ubicacion-map iframe { display: block; }

/* ── SCROLL OFFSET ───────────────────────────────────────────────────────── */
section[id] { scroll-margin-top: 56px; }

/* ── MOBILE GLOBAL ───────────────────────────────────────────────────────── */
@media(max-width:480px) {
  .section { padding: 56px 16px; }
  .section-title { font-size: 26px; }
  .section-desc { font-size: 14px; }

  /* Hero */
  .hero { padding: 96px 16px 56px; }
  .hero-title { font-size: 44px; }
  .hero-sub { font-size: 15px; }

  /* Efemérides cards */
  .efem-card { padding: 18px; gap: 12px; }
  .efem-card-title { font-size: 16px; }
  .efem-browse { padding: 18px; }
  .efem-browse-controls { flex-direction: column; align-items: stretch; }
  .efem-select, .efem-btn-buscar { width: 100%; text-align: left; }

  /* Calendario: más compacto aún en móvil */
  .cal-day { height: 30px; font-size: 11px; }
  .cal-head { font-size: 7px; padding: 4px 0; }
  .cal-nav-title { font-size: 14px; }
  .cal-legend { gap: 10px; }
  .cal-legend-item { font-size: 10px; }

  /* Tips */
  .tip-card { padding: 18px; }

  /* FAQ */
  .faq-q { font-size: 13px; padding: 14px 16px; }
  .faq-a { padding: 0 16px 14px; font-size: 13px; }

  /* CTA */
  .cta-title { font-size: 28px; }
  .cta-inner { gap: 24px; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 20px; }
  .footer-links { margin-left: 0; flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .footer-social { flex-direction: row; gap: 16px; }

  /* Precios */
  .precios-anillado-grid { grid-template-columns: 1fr 1fr; }
  .precios-urgente-card { flex-direction: column; gap: 24px; }
  .precios-td-val { font-size: 16px; }

  /* Stats */
  .stats-inner { grid-template-columns: 1fr; gap: 20px; }
  .stat-item { padding: 0; border-right: none !important; }
  .stat-item:not(:last-child) { border-bottom: 1px solid var(--borde-n); padding-bottom: 20px; }

  /* Cómo funciona */
  .como-step { gap: 16px; padding: 24px; }
  .como-num { font-size: 36px; width: 48px; }

  /* Ubicación */
  .ubicacion-inner { grid-template-columns: 1fr; gap: 28px; }
  .ubicacion-title { font-size: 28px; }
}
