/* ============================================================
   Huggies Pet Grooming — Landing
   Paleta y tipografías derivadas de las piezas reales de marca.
   Azul y naranja medidos sobre los diseños de junio/julio 2026.
   ============================================================ */

/* ------------------------------------------------------------
   Fuentes auto-hospedadas (subset latin).
   Son las mismas que usa la marca en redes: Chewy para títulos
   y Montserrat para texto. Se sirven desde nuestro dominio para
   no depender de Google Fonts, que al ser render-blocking deja
   la página en blanco si tarda o está bloqueado.
   ------------------------------------------------------------ */
@font-face {
  font-family: "Chewy";
  src: url("../fonts/chewy-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Marca */
  --blue:        #0A5FC7;
  --blue-dark:   #0A47A0;
  --blue-deep:   #14264F;   /* navy de la pared del local */
  --blue-soft:   #E8F1FC;
  --sky:         #8FCBEB;
  /* Sistema de naranjas.
     El naranja de marca (#FB6E00) sobre blanco da 2,86:1 de contraste:
     no llega al mínimo de 4,5:1 de WCAG AA. En vez de descartarlo, se
     reserva para lo decorativo y se derivan dos variantes oscurecidas
     para lo que lleva texto. Relevante para un negocio en EE.UU., donde
     la accesibilidad web es exigible por ADA.
       --orange      → solo relleno decorativo, sin texto encima
       --orange-cta  → superficies con texto blanco  (4,70:1)
       --orange-ink  → texto naranja sobre fondo claro (5,50:1) */
  --orange:      #FB6E00;
  --orange-cta:  #C25100;
  --orange-hover:#A63F00;
  --orange-ink:  #B34700;
  --orange-soft: #FFF2E6;

  /* Neutros con leve sesgo azul */
  --ink:    #12203A;
  --ink-2:  #47566E;
  --ink-3:  #5E6A7D;   /* 5,48:1 sobre blanco */
  --ink-4:  #7A8798;   /* solo decorativo, nunca texto */
  --line:   #E3E9F2;
  --tint:   #F5F8FC;
  --white:  #FFFFFF;

  /* Tipografía */
  --display: "Chewy", "Comic Sans MS", cursive;
  --body:    "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shell: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 20px rgba(18, 32, 58, .08);
  --shadow-lg: 0 14px 44px rgba(18, 32, 58, .14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* El header sticky mide 74px: sin esto, los anchors quedan tapados */
  scroll-padding-top: 86px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 24px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--white);
  color: var(--blue);
  padding: 12px 18px;
  z-index: 200;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip:focus { left: 0; }

:where(a, button):focus-visible {
  /* El anillo de foco necesita 3:1 contra el fondo: el naranja de marca
     se queda en 2,86:1, así que se usa la variante CTA. */
  outline: 3px solid var(--orange-cta);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Tipografía base ---------- */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: .005em;
  margin: 0 0 14px;
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 6.2vw, 66px); }
h2 { font-size: clamp(29px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2.2vw, 25px); }
p { margin: 0 0 16px; }

.eyebrow {
  font-family: var(--body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-ink);
  margin: 0 0 10px;
}

.muted { color: var(--ink-3); }

.fineprint {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 62ch;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, box-shadow .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange-cta);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(194, 81, 0, .30);
}
.btn-primary:hover { background: var(--orange-hover); box-shadow: 0 10px 26px rgba(194, 81, 0, .38); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-ghost {
  background: rgba(255, 255, 255, .14);
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.btn-ghost:hover { background: var(--white); color: var(--blue); border-color: var(--white); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .6);
}
.btn-ghost-light:hover { background: var(--white); color: var(--blue); }

.btn-lg { font-size: 18px; padding: 19px 38px; }
.btn-sm { font-size: 14px; padding: 11px 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 14px rgba(18, 32, 58, .06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 74px;
}

.nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  transition: color .15s ease;
}
.nav a:hover { color: var(--blue); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}

/* Toggle de idioma */
.lang {
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  flex: none;
}
.lang-btn {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  /* Área táctil: nunca por debajo de 40px de alto (44 en mobile) */
  min-height: 40px;
  min-width: 44px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.lang-btn:hover { color: var(--blue); }
.lang-btn.is-on { background: var(--blue); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 100% at 15% 0%, #1E7AE0 0%, var(--blue) 46%, var(--blue-dark) 100%);
  color: var(--white);
  overflow: hidden;
}
/* Patrón de huellas: lenguaje visual propio de la marca */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='%23ffffff' fill-opacity='0.055'%3E%3Cellipse cx='34' cy='44' rx='10' ry='12'/%3E%3Cellipse cx='19' cy='27' rx='5' ry='6.5'/%3E%3Cellipse cx='32' cy='21' rx='5' ry='6.5'/%3E%3Cellipse cx='45' cy='26' rx='5' ry='6.5'/%3E%3Cellipse cx='104' cy='114' rx='10' ry='12'/%3E%3Cellipse cx='89' cy='97' rx='5' ry='6.5'/%3E%3Cellipse cx='102' cy='91' rx='5' ry='6.5'/%3E%3Cellipse cx='115' cy='96' rx='5' ry='6.5'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
/* Burbujas de jabón, guiño al lenguaje spa de las placas */
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, rgba(255,255,255,.22), rgba(143,203,235,.10) 58%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 8vw, 96px) 24px clamp(64px, 8vw, 104px);
}
.hero-copy { max-width: 760px; }

.hero-logo {
  width: clamp(150px, 17vw, 200px);
  height: auto;
  margin-bottom: 28px;
  opacity: .96;
}

.hero h1 {
  margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(10, 42, 92, .22);
}
.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  color: rgba(255, 255, 255, .93);
  max-width: 60ch;
  margin-bottom: 34px;
}

.cta-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.cta-stack-center { align-items: center; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.cta-tertiary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, .38);
  padding-bottom: 3px;
  transition: color .15s ease, border-color .15s ease, gap .15s ease;
}
.cta-tertiary:hover { color: var(--white); border-color: var(--white); gap: 12px; }

/* Franja de confianza */
.trust-strip {
  position: relative;
  z-index: 2;
  background: rgba(10, 42, 92, .34);
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 19px;
  color: var(--white);
  letter-spacing: .01em;
}
.trust-item span { font-size: 13.5px; color: rgba(255, 255, 255, .78); }

@media (max-width: 720px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 16px 8px; }
}

/* ---------- Secciones ---------- */
.section { padding: clamp(64px, 8vw, 104px) 0; }
.section-slim { padding: clamp(44px, 5vw, 64px) 0; }
.section-tint { background: var(--tint); }
.section-navy { background: var(--blue-deep); color: var(--white); }

.sec-head { max-width: 66ch; margin-bottom: 44px; }
.sec-head-light .eyebrow { color: var(--sky); }
.sec-head-light h2 { color: var(--white); }
.sec-lede { font-size: 18.5px; color: var(--ink-2); margin: 0; }

/* ---------- Dos caminos ---------- */
.paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.path {
  position: relative;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.path:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.path-mobile {
  border-color: var(--blue);
  background: linear-gradient(180deg, var(--blue-soft) 0%, var(--white) 46%);
}
.path-tag {
  position: absolute;
  top: -13px;
  left: 30px;
  background: var(--orange-cta);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.path p { color: var(--ink-2); }
.path .btn { margin-top: auto; }

.ticks { list-style: none; padding: 0; margin: 0 0 26px; }
.ticks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 15.5px;
  color: var(--ink-2);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 10px;
  border-left: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  border-radius: 2px;
  transform: rotate(-45deg);
}

/* ---------- Precios ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.price-table th {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: left;
  padding: 18px 22px;
  background: var(--tint);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.price-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover { background: var(--blue-soft); }
.price-table .num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  white-space: nowrap;
}
.price-table thead .num { text-align: right; }
.price-table td.num { color: var(--blue); font-size: 17px; }
.price-table td strong { font-family: var(--display); font-weight: 400; font-size: 20px; }

.addons { margin-top: 44px; }
.addons h3 { margin-bottom: 16px; }
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  transition: border-color .15s ease, color .15s ease;
}

/* ---------- Especialidades ---------- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.spec {
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  background: var(--tint);
  border-left: 4px solid var(--orange);
  transition: transform .18s ease, box-shadow .18s ease;
}
.spec:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.spec h3 { font-size: 21px; margin-bottom: 8px; }
.spec p { font-size: 15px; color: var(--ink-2); margin: 0; line-height: 1.6; }

/* ---------- Pasos ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.steps li { position: relative; padding-top: 8px; }
.step-n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange-cta);
  color: var(--white);
  font-family: var(--display);
  font-size: 26px;
  margin-bottom: 18px;
}
.steps h3 { color: var(--white); margin-bottom: 8px; }
.steps p { color: rgba(255, 255, 255, .78); font-size: 15.5px; margin: 0; }

/* ---------- Promos ---------- */
.promos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.promo {
  background: var(--orange-soft);
  border: 2px dashed var(--orange);
  border-radius: var(--radius);
  padding: 32px 30px;
  text-align: center;
}
.promo-big {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 72px);
  line-height: 1;
  color: var(--orange-ink);
  margin: 0 0 4px;
}
.promo h3 { font-size: 22px; margin-bottom: 8px; }
.promo p:not(.promo-big) { color: var(--ink-2); font-size: 15px; margin: 0; }

/* ---------- Curso ---------- */
.course {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 860px) { .course { grid-template-columns: 1fr; gap: 32px; } }

.course-copy p:not(.eyebrow):not(.fineprint) { color: var(--ink-2); max-width: 56ch; }
.course-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 36px;
  margin: 0 0 28px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.course-facts dt {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 3px;
}
.course-facts dd { margin: 0; font-weight: 700; font-size: 15.5px; }
.course-copy .btn { margin-bottom: 14px; }

.course-syllabus {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 30px 30px 26px;
  box-shadow: var(--shadow);
}
.course-syllabus h3 { margin-bottom: 16px; }
.course-syllabus ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: syl;
}
.course-syllabus li {
  counter-increment: syl;
  position: relative;
  padding: 9px 0 9px 38px;
  font-size: 15px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--tint);
}
.course-syllabus li:last-child { border-bottom: 0; }
.course-syllabus li::before {
  content: counter(syl);
  position: absolute;
  left: 0;
  top: 9px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Boarding ---------- */
.also {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  background: var(--blue-soft);
  border-radius: var(--radius);
  padding: 36px 38px;
}
.also h2 { margin-bottom: 8px; font-size: clamp(26px, 3vw, 34px); }
.also p:not(.eyebrow) { margin: 0; color: var(--ink-2); max-width: 54ch; }
.also .btn { flex: none; }

/* ---------- Visitanos ---------- */
.visit {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) { .visit { grid-template-columns: 1fr; } }

.visit-photo, .visit-photo-sm { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.visit-photo-sm { margin-top: 24px; }

.info-list { margin: 0; display: flex; flex-direction: column; gap: 20px; }
.info-list > div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.info-list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.info-list dt {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-ink);
  margin-bottom: 6px;
}
.info-list dd { margin: 0; font-size: 16.5px; font-weight: 600; line-height: 1.5; }
.info-list dd .muted { font-weight: 500; font-size: 14.5px; }

/* ---------- CTA final ---------- */
.section-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  text-align: center;
}
.cta-final h2 { color: var(--white); margin-bottom: 10px; }
.cta-final > p { color: rgba(255, 255, 255, .88); font-size: 18px; margin-bottom: 32px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-deep); color: rgba(255, 255, 255, .78); padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
}
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; gap: 30px; } }

.footer-brand img { width: 110px; margin-bottom: 16px; }
.footer-brand p { font-size: 15px; max-width: 34ch; margin: 0; }
.footer-col h4 {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 14px;
}
.footer-col p { font-size: 15px; margin: 0 0 8px; }
.site-footer a { color: var(--white); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); }
.site-footer a:hover { border-color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 22px;
  padding-bottom: 22px;
}
.footer-bottom p { font-size: 13.5px; margin: 0; color: rgba(255, 255, 255, .55); }

/* ---------- Barra fija mobile ---------- */
.mobile-bar { display: none; }

/* Entre ~780 y 980px el menú, el toggle y el botón no entran juntos
   en la fila del header. Se oculta el menú antes de que desborde. */
@media (max-width: 980px) {
  .nav { display: none; }
  .header-actions { margin-left: auto; }
}

@media (max-width: 980px) {
  .lang-btn { min-height: 44px; }

  /* El "Agendar" del header es redundante cuando hay barra fija:
     la barra inferior ya ofrece Book/SMS/Call siempre visibles.
     Sacarlo también evita que la fila del header desborde a 375px. */
  .header-actions .btn { display: none; }
  .header-inner { gap: 12px; }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: flex;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .96);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(18, 32, 58, .10);
  }
  .mb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--blue);
    color: var(--blue);
    flex: none;
    width: 54px;
  }
  .mb svg { width: 21px; height: 21px; fill: currentColor; }
  .mb-primary {
    flex: 1;
    background: var(--orange-cta);
    border-color: var(--orange-cta);
    color: var(--white);
    width: auto;
  }
  body { padding-bottom: 74px; }

  .also { padding: 28px 24px; }
  .path { padding: 30px 24px; }
}

@media (max-width: 420px) {
  .btn-lg { width: 100%; }
  .cta-row { width: 100%; }
  .cta-row .btn { flex: 1; }
}


/* ---------- Explicador de paquetes ---------- */
.pkg-explainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.pkg-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.pkg-card-hi { border-color: var(--blue); background: var(--blue-soft); }
.pkg-card h3 { margin-bottom: 6px; font-size: 21px; }
.pkg-card p { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }

.price-table .row-cats td { background: var(--orange-soft); }

/* ---------- Cobertura del móvil (sección navy) ---------- */
.coverage {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.coverage h3 { color: var(--white); margin-bottom: 2px; }
.coverage p { color: rgba(255, 255, 255, .82); font-size: 15.5px; margin: 0 0 16px; max-width: 70ch; }

/* ---------- Mapa y direcciones ---------- */
.visit-directions { margin: 14px 0 0; font-weight: 600; font-size: 15px; }
.visit-map {
  margin-top: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
}
.visit-map iframe { display: block; }
