/* ==========================================================================
   Pablo Fernández Catering — hoja de estilo única
   Paleta y anillo degradado tomados del roll-up corporativo del cliente.
   Sin fuentes externas: tipografía del sistema (0 KB, 0 peticiones, sin RGPD).
   ========================================================================== */

:root {
  --ink: #221f1c;
  --ink-2: #2f2b27;
  --ink-3: #4a453e;
  --cream: #fdfbf8;
  --sand: #f4ede4;
  --line: #e6dccf;
  --text: #2a2724;
  --muted: #6d645a;
  --rose: #c9436b;
  --rose-dk: #a83358;
  --rose-lt: #e9b3c8;
  --violet: #9e6bb4;
  --blue: #486fd4;
  --albero: #b8842a;
  --wa: #25d366;

  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: ui-serif, "Iowan Old Style", Georgia, "Palatino Linotype", "Times New Roman", serif;

  --wrap: 1200px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow: 0 1px 2px rgb(34 31 28 / .04), 0 10px 34px -14px rgb(34 31 28 / .2);
  --shadow-lg: 0 2px 6px rgb(34 31 28 / .05), 0 22px 60px -22px rgb(34 31 28 / .3);
  --grad: linear-gradient(100deg, var(--rose-lt), var(--rose) 42%, var(--violet) 76%, var(--blue));
  --ease: cubic-bezier(.22, .61, .36, 1);
  --hdr-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--hdr-h) + 12px); }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.08rem);
  line-height: 1.68;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

/* `picture` es inline por defecto: sin esto, cualquier caja con aspect-ratio
   deja de controlar la altura de la imagen y las rejillas se descuadran. */
picture { display: block; }
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--rose-dk); text-underline-offset: .18em; }
a:hover { color: var(--rose); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.13; margin: 0 0 .5em; letter-spacing: -.014em; }
h1 { font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.9rem); }
h2 { font-size: clamp(1.65rem, 1.2rem + 2vw, 2.65rem); }
h3 { font-size: clamp(1.18rem, 1.05rem + .6vw, 1.5rem); }
p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.15em; }
:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; border-radius: 6px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: 760px; }
.section { padding-block: clamp(3.4rem, 7.5vw, 6.5rem); }
.section--sand { background: var(--sand); }
.section--ink { background: var(--ink); color: #efe9e2; }
.section--ink h2, .section--ink h3 { color: #fff; }
.eyebrow {
  font-family: var(--sans); font-size: .76rem; font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase; color: var(--rose);
  margin: 0 0 .8rem;
}
.section--ink .eyebrow { color: var(--rose-lt); }
.lead { font-size: 1.14em; color: var(--muted); max-width: 62ch; }
.section--ink .lead { color: #cdc5bb; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.hr-arc { height: 3px; width: 90px; border-radius: 3px; background: var(--grad); border: 0; margin: 0 0 1.7rem; }
.center .hr-arc { margin-inline: auto; }

/* --------------------------------------------------- animación de entrada */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(22px); }
  [data-reveal].is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
  [data-reveal].is-in:nth-child(2) { transition-delay: .07s; }
  [data-reveal].is-in:nth-child(3) { transition-delay: .14s; }
  [data-reveal].is-in:nth-child(4) { transition-delay: .21s; }
  [data-reveal].is-in:nth-child(5) { transition-delay: .28s; }
  [data-reveal].is-in:nth-child(6) { transition-delay: .35s; }
  [data-reveal].is-in:nth-child(7) { transition-delay: .42s; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---------------------------------------------------------------- botones */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .88em 1.7em; border-radius: 999px; border: 1.5px solid transparent;
  font: 600 1rem/1 var(--sans); text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s, color .18s, border-color .18s, box-shadow .18s;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; flex: 0 0 auto; }
.btn--primary { background: var(--rose); color: #fff; box-shadow: 0 8px 22px -10px rgb(201 67 107 / .8); }
.btn--primary:hover { background: var(--rose-dk); color: #fff; box-shadow: 0 12px 30px -10px rgb(201 67 107 / .9); }
.btn--ghost { border-color: currentColor; color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--wa { background: var(--wa); color: #0b3d20; }
.btn--wa:hover { background: #1fbb59; color: #08301a; }
.section--ink .btn--ghost, .hero .btn--ghost { color: #fff; }
.section--ink .btn--ghost:hover, .hero .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.center .btn-row { justify-content: center; }

/* --------------------------------------------------------------- cabecera */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgb(34 31 28 / .9);
  backdrop-filter: saturate(1.5) blur(14px);
  border-bottom: 1px solid rgb(255 255 255 / .08);
  transition: background-color .3s;
}
.hdr__in { display: flex; align-items: center; gap: .4rem; min-height: var(--hdr-h); }
.hdr__logo { display: block; flex: 0 0 auto; margin-right: auto; padding: .4rem 0; }
.hdr__logo img { width: clamp(126px, 12vw, 156px); height: auto; }
/* El botón del menú desplegable sólo aparece en la versión móvil; en
   escritorio la llamada a la acción vive fuera de <nav>. */
.nav > .btn { display: none; }
.nav { display: flex; align-items: center; gap: .1rem; }
.nav > * { position: relative; }
.nav a, .nav__btn {
  display: flex; align-items: center; gap: .3em;
  color: #ece5dc; text-decoration: none; font: 500 .94rem/1 var(--sans);
  padding: .72em .78em; border-radius: 10px; white-space: nowrap;
  background: none; border: 0; cursor: pointer; font-family: var(--sans);
}
.nav a:hover, .nav__btn:hover, .nav a[aria-current="page"] { background: rgb(255 255 255 / .12); color: #fff; }
.nav__btn svg { width: 12px; height: 12px; transition: transform .2s; opacity: .8; }
.nav__btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 258px; max-width: 330px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: .5rem; display: none; z-index: 70;
}
.menu[data-open="true"] { display: block; animation: pop .18s var(--ease); }
@keyframes pop { from { opacity: 0; transform: translateY(-6px); } }
.menu a {
  display: block; color: var(--text); padding: .62em .8em; border-radius: 10px;
  font-size: .93rem; font-weight: 500;
}
.menu a:hover { background: var(--sand); color: var(--rose-dk); }
.menu a small { display: block; color: var(--muted); font-weight: 400; font-size: .8rem; margin-top: .1em; }

.hdr__tel {
  display: inline-flex; align-items: center; gap: .4em; color: #fff; text-decoration: none;
  font-weight: 600; font-size: .93rem; padding: .6em .7em; border-radius: 10px;
  white-space: nowrap; flex: 0 0 auto;
}
.hdr__tel svg { width: 18px; height: 18px; flex: 0 0 auto; }
.hdr__tel:hover { background: rgb(255 255 255 / .12); color: #fff; }
.hdr .btn { padding: .68em 1.2em; font-size: .9rem; min-height: 42px; }
.burger {
  display: none; background: none; border: 0; cursor: pointer; padding: .6rem;
  color: #fff; border-radius: 10px; margin-left: .2rem;
}
.burger:hover { background: rgb(255 255 255 / .12); }
.burger svg { width: 26px; height: 26px; }

@media (max-width: 1120px) {
  .burger { display: block; }
  .hdr__tel span { display: none; }
  .hdr__in > .btn { display: none; }
  .nav {
    position: fixed; inset: var(--hdr-h) 0 auto; display: none; flex-direction: column;
    align-items: stretch; gap: 0; background: var(--ink); padding: .6rem var(--gut) 2rem;
    border-bottom: 1px solid rgb(255 255 255 / .12);
    max-height: calc(100dvh - var(--hdr-h)); overflow-y: auto;
  }
  .nav[data-open="true"] { display: flex; animation: pop .2s var(--ease); }
  .nav a, .nav__btn { padding: .95em .6em; font-size: 1.05rem; width: 100%; justify-content: space-between; }
  .nav > *:not(:last-child) { border-bottom: 1px solid rgb(255 255 255 / .07); }
  .menu {
    position: static; display: none; background: transparent; border: 0; box-shadow: none;
    padding: 0 0 .8rem .7rem; min-width: 0;
  }
  .menu[data-open="true"] { display: block; animation: none; }
  .menu a { color: #cdc5bb; font-size: .96rem; padding: .6em .4em; }
  .menu a:hover { background: rgb(255 255 255 / .08); color: #fff; }
  .menu a small { display: none; }
  .nav > .btn { display: inline-flex; margin-top: 1.2rem; padding: .9em 1.7em; font-size: 1rem; }
}

/* ------------------------------------------------------------------- hero */
.hero { position: relative; background: var(--ink); color: #fff; isolation: isolate; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media picture, .hero__media img { width: 100%; height: 100%; }
.hero__media img { object-fit: cover; }
@media (prefers-reduced-motion: no-preference) {
  .hero__media img { animation: kb 22s var(--ease) forwards; }
  @keyframes kb { from { transform: scale(1.1); } to { transform: scale(1); } }
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 15% 20%, rgb(34 31 28 / .82), transparent 62%),
    linear-gradient(180deg, rgb(34 31 28 / .72) 0%, rgb(34 31 28 / .5) 45%, rgb(34 31 28 / .9) 100%);
}
.hero__in { padding-block: clamp(4rem, 13vw, 9rem); max-width: 48rem; position: relative; }
.hero h1 { color: #fff; margin-bottom: .5em; text-wrap: balance; }
.hero__sub { font-size: clamp(1.06rem, 1rem + .5vw, 1.32rem); color: #e8e0d6; margin-bottom: 0; max-width: 42rem; }
.hero--sm .hero__in { padding-block: clamp(2.8rem, 8vw, 5.2rem); max-width: 54rem; }
.hero--sm h1 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem); }

.trust { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; margin-top: 2.2rem; padding: 0; list-style: none; }
.trust li { display: flex; align-items: center; gap: .5em; font-size: .94rem; color: #e8e0d6; }
.trust svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--rose-lt); }

/* ------------------------------------------------------------- rejilla/cards */
.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.8rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover, .card:focus-within { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__img { aspect-ratio: 4 / 3; background: var(--sand); overflow: hidden; }
.card__img picture, .card__img img { width: 100%; height: 100%; }
.card__img img { object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: 1.3rem 1.4rem 1.55rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .35em; }
.card__body h3 a { color: var(--ink); text-decoration: none; }
.card:hover h3 a { color: var(--rose-dk); }
.card__body p { color: var(--muted); font-size: .96rem; margin-bottom: 1.1em; }
.card__more { margin-top: auto; font-weight: 600; font-size: .93rem; color: var(--rose-dk); display: inline-flex; align-items: center; gap: .4em; }
.card__more::after { content: "→"; transition: transform .25s var(--ease); }
.card:hover .card__more::after { transform: translateX(4px); }
.card a::after { content: ""; position: absolute; inset: 0; }

.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem 1.5rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.section--ink .feature { background: rgb(255 255 255 / .055); border-color: rgb(255 255 255 / .13); }
.feature h3 { font-size: 1.14rem; margin-bottom: .35em; }
.feature p { margin: 0; color: var(--muted); font-size: .95rem; }
.section--ink .feature p { color: #c4bbb0; }
.feature__n {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad); color: #fff; font: 700 1.05rem/1 var(--sans); margin-bottom: 1rem;
}

/* --------------------------------------------------------------- galería */
.gal { columns: 3 260px; column-gap: clamp(.7rem, 1.6vw, 1.1rem); }
.gal figure { margin: 0 0 clamp(.7rem, 1.6vw, 1.1rem); break-inside: avoid; position: relative; border-radius: var(--r); overflow: hidden; }
.gal img { width: 100%; background: var(--sand); transition: transform .5s var(--ease); }
.gal button {
  display: block; padding: 0; border: 0; background: none; cursor: zoom-in; width: 100%;
  border-radius: var(--r); overflow: hidden;
}
.gal figure:hover img { transform: scale(1.04); }
.gal figcaption {
  position: absolute; inset: auto 0 0; padding: 2.4rem .9rem .8rem;
  background: linear-gradient(transparent, rgb(34 31 28 / .85)); color: #fff; font-size: .84rem;
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
.gal figure:hover figcaption, .gal figure:focus-within figcaption { opacity: 1; }
@media (hover: none) { .gal figcaption { display: none; } }

/* --------------------------------------------------------------- lightbox */
.lb {
  position: fixed; inset: 0; z-index: 200; background: rgb(20 18 16 / .95);
  display: grid; place-items: center; padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.lb[data-open="true"] { opacity: 1; visibility: visible; }
.lb img { max-width: 100%; max-height: 82vh; border-radius: var(--r); object-fit: contain; }
.lb__cap { color: #ddd4c9; font-size: .9rem; text-align: center; margin-top: 1rem; max-width: 60ch; }
.lb__btn {
  position: absolute; background: rgb(255 255 255 / .12); border: 0; color: #fff; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  transition: background-color .2s;
}
.lb__btn:hover { background: rgb(255 255 255 / .26); }
.lb__btn svg { width: 24px; height: 24px; }
.lb__x { top: 1.1rem; right: 1.1rem; }
.lb__prev { left: 1.1rem; top: 50%; transform: translateY(-50%); }
.lb__next { right: 1.1rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) { .lb__prev { left: .4rem; } .lb__next { right: .4rem; } }

/* --------------------------------------------------------------- vídeo */
.vids { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 1rem; }
.vid { position: relative; border-radius: var(--r); overflow: hidden; background: var(--ink-2); aspect-ratio: 3 / 4; }
.vid picture, .vid video, .vid img { width: 100%; height: 100%; }
.vid video, .vid img { object-fit: cover; }
.vid video { position: absolute; inset: 0; opacity: 0; transition: opacity .55s; }
.vid video[data-ready="true"] { opacity: 1; }
.vid figcaption {
  position: absolute; inset: auto 0 0; padding: 2.6rem .95rem .85rem; font-size: .87rem; color: #fff;
  background: linear-gradient(transparent, rgb(34 31 28 / .88));
}

/* --------------------------------------------------------------- prosa */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.3em; }
.prose h3 { margin-top: 1.8em; }
.prose li { margin-bottom: .45em; }
.prose blockquote {
  margin: 1.8em 0; padding: .2em 0 .2em 1.3em; border-left: 3px solid var(--rose-lt);
  font-family: var(--serif); font-size: 1.15em; color: var(--ink-3);
}
.tick { list-style: none; padding: 0; }
.tick li { position: relative; padding-left: 1.9em; margin-bottom: .65em; }
.tick li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 1.15em; height: .6em;
  border-left: 2.5px solid var(--rose); border-bottom: 2.5px solid var(--rose);
  transform: rotate(-45deg); border-radius: 1px;
}
.section--ink .tick li::before { border-color: var(--rose-lt); }

/* ---------------------------------------------------------------- FAQ */
.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 1.15rem 2.4rem 1.15rem 0; position: relative;
  font-family: var(--serif); font-size: 1.14rem; font-weight: 600; color: var(--ink); list-style: none;
  transition: color .2s;
}
.faq summary:hover { color: var(--rose-dk); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .6rem; top: 1.55rem; width: 10px; height: 10px;
  border-right: 2.5px solid var(--rose); border-bottom: 2.5px solid var(--rose);
  transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.8rem; }
.faq details > div { padding: 0 2rem 1.25rem 0; color: var(--muted); }
.faq details > div > :last-child { margin-bottom: 0; }

/* -------------------------------------------------------------- tabla */
.tbl-wrap { overflow-x: auto; margin: 1.6rem 0; border-radius: var(--r); }
table { border-collapse: collapse; width: 100%; min-width: 480px; font-size: .96rem; }
th, td { text-align: left; padding: .8rem .95rem; border-bottom: 1px solid var(--line); }
th { font-family: var(--sans); font-weight: 700; background: var(--sand); }

/* ------------------------------------------------------------ formulario */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 600; font-size: .93rem; }
.field .hint { font-size: .82rem; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--text); background: #fff;
  border: 1.5px solid var(--line); border-radius: 12px; padding: .8em .9em; width: 100%;
  transition: border-color .2s, box-shadow .2s; min-height: 50px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--rose); outline: none; box-shadow: 0 0 0 4px rgb(201 67 107 / .14);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #c0392b; }
.err { color: #b02a1c; font-size: .85rem; }
.consent { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start; font-size: .91rem; color: var(--muted); }
.consent input { width: 1.3rem; height: 1.3rem; margin-top: .15rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__msg { border-radius: 12px; padding: .95rem 1.15rem; font-size: .95rem; }
.form__msg--ok { background: #e7f5ec; border: 1px solid #b5dcc4; color: #1c5c34; }
.form__msg--ko { background: #fdecea; border: 1px solid #f3c0ba; color: #92261a; }
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3.5vw, 2.6rem); box-shadow: var(--shadow);
}

/* ------------------------------------------------------------- migas */
.crumbs { font-size: .85rem; color: var(--muted); padding-block: 1rem 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .3rem .55rem; margin: 0; padding: 0; }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: .55rem; color: var(--line); }
.crumbs a { color: var(--muted); }

/* --------------------------------------------------------------- pie */
.ftr { background: var(--ink); color: #cdc5bb; padding-block: clamp(2.8rem, 6vw, 4.5rem) 1.6rem; font-size: .93rem; }
.ftr a { color: #cdc5bb; text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr__grid { display: grid; gap: 2.2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr)); }
.ftr h3 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.1rem; }
.ftr ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.ftr__logo img { width: 170px; margin-bottom: 1.2rem; }
.ftr__bottom {
  margin-top: 2.8rem; padding-top: 1.5rem; border-top: 1px solid rgb(255 255 255 / .12);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .85rem; color: #968d84;
}
.ftr__bottom a { color: #968d84; }
address { font-style: normal; }

/* ------------------------------------------------ barra de acción móvil */
.abar {
  position: fixed; inset: auto 0 0; z-index: 80; display: none;
  grid-template-columns: 1fr 1fr 1.25fr; gap: .5rem;
  padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
  background: rgb(253 251 248 / .96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.abar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .18rem;
  padding: .55rem .3rem; border-radius: 14px; text-decoration: none;
  font: 600 .76rem/1.15 var(--sans); color: var(--ink); min-height: 52px;
  border: 1.5px solid var(--line); background: #fff;
}
.abar a svg { width: 20px; height: 20px; }
.abar .abar--wa { background: var(--wa); border-color: var(--wa); color: #08301a; }
.abar .abar--cta { background: var(--rose); border-color: var(--rose); color: #fff; }
@media (max-width: 860px) {
  .abar { display: grid; }
  body { padding-bottom: 76px; }
  /* Llamar ya está en la barra inferior: quitarlo del encabezado despeja. */
  .hdr__tel { display: none; }
}

/* ------------------------------------------------ botón flotante WhatsApp */
.wa-float {
  position: fixed; right: clamp(.9rem, 2.5vw, 1.6rem); bottom: clamp(.9rem, 2.5vw, 1.6rem);
  z-index: 75; width: 58px; height: 58px; border-radius: 50%; background: var(--wa);
  display: grid; place-items: center; box-shadow: 0 8px 28px -6px rgb(37 211 102 / .6);
  transition: transform .22s var(--ease), box-shadow .22s;
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 14px 36px -8px rgb(37 211 102 / .75); }
.wa-float svg { width: 31px; height: 31px; color: #fff; }
@media (max-width: 860px) { .wa-float { display: none; } }

/* ------------------------------------------------------------ utilidades */
.skip {
  position: absolute; left: -9999px; background: var(--rose); color: #fff;
  padding: .9em 1.3em; border-radius: 0 0 12px 0; z-index: 200; text-decoration: none;
}
.skip:focus { left: 0; top: 0; color: #fff; }
.split { display: grid; gap: clamp(1.8rem, 4vw, 3.4rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); align-items: center; }
.split img { border-radius: var(--r-xl); }
.split picture { border-radius: var(--r-xl); overflow: hidden; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 1.5rem 0 0; }
.chips a, .chips span {
  display: inline-block; padding: .5em 1em; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); font-size: .88rem; text-decoration: none; color: var(--text);
  transition: border-color .2s, color .2s, transform .2s;
}
.chips a:hover { border-color: var(--rose); color: var(--rose-dk); transform: translateY(-2px); }
.chips span { color: var(--muted); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
