/* =========================================================
   Gastrobar La Trastienda — Propuesta de primera web
   Gastrobar familiar en el centro de Torrejón de Ardoz (Calle
   de Madrid, 5). Más contemporáneo/urbano que un bar de barrio
   clásico, pero cuidado y cercano, no pretencioso. Tema OSCURO
   con acentos cálidos (cobre + verde botella + madera) — a
   propósito distinto de las otras propuestas de hostelería del
   repo (Macarena y Cañada 69 son claras/crema/sin foto): aquí
   SÍ hay fotos reales (comedor, platos y la propia pizarra de
   sugerencias del local), así que el sistema visual se apoya en
   ellas en vez de en iconografía de sustitución.
   ========================================================= */

:root {
  /* Base oscura */
  --ink-950: #120f0c;
  --ink-900: #1a1510;
  --ink-850: #201a13;
  --ink-800: #2b2318;

  /* Acento — cobre */
  --copper: #c1793f;
  --copper-dark: #9c5e2c;
  --copper-light: #e5ac72;
  --copper-050: rgba(193, 121, 63, .16);

  /* Acento — verde botella (secciones alternas, marquee) */
  --bottle-900: #14231b;
  --bottle-700: #223a2a;
  --bottle-500: #33543e;

  /* Texto sobre fondo oscuro */
  --cream: #f5ecdd;
  --ink-soft: #bcac93;
  --line: rgba(245, 236, 221, .14);
  --line-strong: rgba(245, 236, 221, .26);
  --white: #ffffff;

  --radius: 14px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 18px rgba(0, 0, 0, .35);
  --shadow: 0 18px 46px rgba(0, 0, 0, .48);
  --shadow-lg: 0 30px 72px rgba(0, 0, 0, .58);

  --maxw: 1160px;
  --ease: cubic-bezier(.19, .77, .28, 1);

  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Chivo', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--ink-950);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { display: block; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 700; letter-spacing: -.01em; color: var(--cream); }

.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--copper-light);
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--copper); border-radius: 2px; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

.section { padding: clamp(60px, 8vw, 112px) 0; }
.section-head { max-width: 660px; margin-bottom: 50px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin: 16px 0 14px; }
.section-head h2 em { font-style: normal; color: var(--copper-light); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .96rem;
  padding: 14px 27px; border-radius: var(--radius-pill);
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .3s var(--ease), background .25s var(--ease), color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--copper); color: #1a1108; box-shadow: 0 10px 24px rgba(193, 121, 63, .32); }
.btn-primary:hover { background: var(--copper-light); box-shadow: 0 14px 30px rgba(193, 121, 63, .4); }
.btn-ghost { background: rgba(245, 236, 221, .06); color: var(--cream); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--copper-light); color: var(--copper-light); background: rgba(245, 236, 221, .1); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0; background: rgba(18, 15, 12, .1);
  transition: padding .35s var(--ease), background .35s, box-shadow .35s, backdrop-filter .35s;
}
.header.scrolled {
  background: rgba(18, 15, 12, .88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .4); padding: 11px 0;
}

.nav { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 5; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; color: var(--cream); }
.brand img { width: 42px; height: 42px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); border: 2px solid var(--copper); }
.brand b { color: var(--copper-light); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 500; font-size: .95rem; color: var(--cream); position: relative; opacity: .88; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--copper); border-radius: 2px; transition: width .3s var(--ease); }
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.burger { display: none; position: relative; background: none; border: 0; width: 26px; height: 26px; cursor: pointer; color: var(--cream); }
.burger svg { position: absolute; inset: 0; margin: auto; width: 100%; height: 100%; transition: opacity .2s; }
.burger .icon-close { opacity: 0; }
.header.menu-open .burger .icon-menu { opacity: 0; }
.header.menu-open .burger .icon-close { opacity: 1; }

/* El panel exterior anima max-height y NO lleva padding propio: si lo llevara,
   el padding no se comprimiría por debajo de max-height y dejaría una barra
   visible tapando la cabecera incluso "cerrado" (gotcha conocido). El padding
   real vive en .mobile-menu-inner. z-index por debajo de .header .nav para
   que la marca y la hamburguesa (que también cierra el menú) queden siempre
   visibles y pulsables por encima del panel. */
.mobile-menu {
  display: none;
  position: fixed; left: 0; right: 0; top: 0; z-index: 2;
  background: var(--ink-900); box-shadow: var(--shadow-lg);
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.mobile-menu.open { max-height: 100vh; overflow-y: auto; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 2px; padding: 88px 24px 24px; }
.mm-link { padding: 14px 6px; border-bottom: 1px solid var(--line); font-weight: 500; color: var(--cream); font-size: 1rem; }
.mm-cta { justify-content: center; margin-top: 16px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .burger { display: block; }
  .mobile-menu { display: flex; }
}

/* ---------- Hero (foto real de fondo con velo oscuro) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 80px;
  background-image:
    linear-gradient(180deg, rgba(18, 15, 12, .35) 0%, rgba(18, 15, 12, .62) 48%, rgba(18, 15, 12, .96) 100%),
    url('img/tapeo-variado.jpg');
  background-size: cover;
  background-position: center 42%;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 1; max-width: 680px; }
.hero .eyebrow { color: var(--copper-light); }
.hero .eyebrow::before { background: var(--copper-light); }
.hero-inner h1 { color: #fff; font-size: clamp(2.5rem, 5.8vw, 4.2rem); margin: 16px 0 20px; }
.hero-inner h1 em { font-style: normal; color: var(--copper-light); }
.hero-inner p.lead { font-size: 1.16rem; color: rgba(245, 236, 221, .9); max-width: 54ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.stars { color: var(--copper-light); font-size: 1.1rem; letter-spacing: 2px; }
.hero-trust span:not(.stars) { font-size: .92rem; color: rgba(245, 236, 221, .85); }
.hero-trust b { color: #fff; }
.hero-trust .div { width: 4px; height: 4px; border-radius: 50%; background: rgba(245, 236, 221, .4); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-badge {
  background: rgba(26, 21, 16, .82); border: 1px solid var(--line-strong); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 12px 18px; display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero-badge .ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--copper-050); color: var(--copper-light); flex: 0 0 auto; }
.hero-badge .ico svg { width: 20px; height: 20px; }
.hero-badge b { display: block; font-family: var(--font-display); font-size: .95rem; color: #fff; }
.hero-badge small { display: block; font-size: .76rem; color: var(--ink-soft); }

/* ---------- Marquee strip ---------- */
.strip { background: var(--bottle-900); color: var(--cream); padding: 15px 0; overflow: hidden; border-block: 1px solid var(--line); }
.marquee { display: flex; gap: 44px; width: max-content; animation: slide 30s linear infinite; }
.marquee span { font-family: var(--font-display); font-weight: 500; font-size: 1rem; display: inline-flex; align-items: center; gap: 12px; opacity: .92; color: var(--copper-light); }
.marquee span::before { content: '●'; font-size: .5rem; color: var(--copper); }
@media (min-width: 981px) {
  .marquee { animation: none; width: 100%; justify-content: center; flex-wrap: wrap; row-gap: 10px; }
  .marquee span:nth-child(n+9) { display: none; }
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- El gastrobar (foto + rasgos numerados) ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text > p { color: var(--ink-soft); margin-bottom: 12px; font-size: 1.03rem; }
.trait-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); margin-top: 20px; }
.trait { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.trait .num { font-family: var(--font-display); font-size: 1.1rem; color: var(--copper-light); font-weight: 700; flex-shrink: 0; width: 30px; }
.trait h4 { font-size: 1.02rem; margin-bottom: 4px; font-weight: 600; }
.trait p { color: var(--ink-soft); font-size: .92rem; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 30px; } .about-photo { max-height: 340px; } }

.zones { background: var(--ink-900); border-block: 1px solid var(--line); }

/* ---------- Sugerencias (pizarra) ---------- */
.pizarra-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.pizarra-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 3px solid var(--ink-800); }
.pizarra-list { list-style: none; display: grid; gap: 2px; border-top: 1px solid var(--line); }
.pizarra-list li { display: flex; align-items: baseline; gap: 12px; padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
.pizarra-list li::before { content: '—'; color: var(--copper); font-weight: 700; flex: 0 0 auto; }
.pizarra-note {
  margin-top: 22px; display: grid; gap: 12px;
}
.info-chip {
  display: flex; align-items: flex-start; gap: 14px; background: var(--copper-050); border: 1px solid rgba(193,121,63,.3);
  border-radius: var(--radius); padding: 14px 18px; font-size: .92rem; color: var(--cream);
}
.info-chip .ico { width: 34px; height: 34px; border-radius: 10px; background: rgba(193,121,63,.22); color: var(--copper-light); display: grid; place-items: center; flex: 0 0 auto; }
.info-chip .ico svg { width: 18px; height: 18px; }
.info-chip b { color: var(--copper-light); display: block; font-family: var(--font-display); font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
@media (max-width: 900px) { .pizarra-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Especialidades (plato-grid con fotos reales) ---------- */
.plato-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-bottom: 34px; }
.plato { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: var(--ink-900); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.plato:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plato img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.plato-caption { padding: 16px 18px 18px; }
.plato-caption .tag { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: .74rem; letter-spacing: .05em; text-transform: uppercase; color: var(--copper-light); background: var(--copper-050); padding: 4px 11px; border-radius: var(--radius-pill); margin-bottom: 8px; }
.plato-caption h3 { font-size: 1.08rem; }
.mas-carta { text-align: center; color: var(--ink-soft); font-size: .95rem; background: var(--ink-900); border: 1px dashed var(--line-strong); border-radius: var(--radius); padding: 16px 22px; }
.mas-carta b { color: var(--cream); }

/* ---------- Stats ---------- */
.stats { background: linear-gradient(135deg, var(--bottle-700), var(--bottle-900)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 54px) clamp(24px, 4vw, 40px); position: relative; overflow: hidden; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; position: relative; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4.4vw, 2.9rem); color: var(--copper-light); line-height: 1; }
.stat .lbl { color: rgba(245, 236, 221, .78); font-size: .9rem; margin-top: 10px; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Galería + Lightbox ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery figure { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; cursor: pointer; position: relative; border: 1px solid var(--line); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.55)); opacity: 0; transition: opacity .3s; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure:hover::after { opacity: 1; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8, 6, 4, .94); display: none; place-items: center; padding: 20px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox button { position: absolute; background: var(--copper); border: 0; width: 50px; height: 50px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; color: #1a1108; box-shadow: var(--shadow); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- Opiniones ---------- */
.opiniones-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 40px; }
.opinion-badge { display: flex; align-items: center; gap: 10px; background: var(--ink-900); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 10px 18px; font-size: .88rem; color: var(--ink-soft); }
.opinion-badge b { color: var(--copper-light); font-family: var(--font-display); }
.opinion-badge svg { width: 18px; height: 18px; color: var(--copper-light); flex: 0 0 auto; }

.opinion-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.opinion-card { background: var(--ink-900); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; }
.opinion-card .stars { display: block; margin-bottom: 14px; }
.opinion-card blockquote { font-family: var(--font-display); font-size: 1.1rem; line-height: 1.4; margin-bottom: 14px; color: var(--cream); }
.opinion-card p { color: var(--ink-soft); font-size: .95rem; line-height: 1.55; }
.opinion-card cite { display: block; margin-top: 14px; font-style: normal; font-size: .8rem; color: var(--ink-soft); opacity: .85; }

/* ---------- Info práctica ---------- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.info-item { background: var(--ink-900); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.info-item h4 { font-size: 1.03rem; margin-bottom: 6px; }
.info-item p { color: var(--ink-soft); font-size: .92rem; }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: stretch; }
.contact-card { background: var(--ink-900); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.contact-card h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 8px; }
.contact-card > p { color: var(--ink-soft); margin-bottom: 26px; }
.contact-line { display: flex; align-items: center; gap: 16px; padding: 15px 0; border-top: 1px solid var(--line); }
.contact-line:first-of-type { border-top: 0; }
.contact-line .ico { width: 44px; height: 44px; border-radius: 13px; background: var(--copper-050); color: var(--copper-light); display: grid; place-items: center; flex: 0 0 auto; }
.contact-line .ico svg { width: 20px; height: 20px; }
.contact-line small { display: block; color: var(--ink-soft); font-size: .8rem; }
.contact-line b { font-size: 1.02rem; font-weight: 600; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: var(--copper-050); color: var(--copper-light); transition: transform .3s var(--ease), background .3s, color .3s; }
.socials a:hover { transform: translateY(-4px); background: var(--copper); color: #1a1108; }
.socials svg { width: 20px; height: 20px; }
.map-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 380px; border: 1px solid var(--line); filter: grayscale(.3) contrast(1.05); }
.map-card iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; }
.cta-box {
  background: linear-gradient(135deg, var(--copper-dark), var(--bottle-900));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(44px, 7vw, 76px) 24px; position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.cta-box .eyebrow { color: rgba(245,236,221,.85); justify-content: center; }
.cta-box .eyebrow::before { background: rgba(245,236,221,.6); }
.cta-box h2 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 2.8rem); margin: 12px 0 14px; }
.cta-box p { font-size: 1.08rem; opacity: .92; max-width: 48ch; margin: 0 auto 28px; }
.cta-box .btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); }
.cta-box .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.22); color: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-900); color: rgba(245,236,221,.7); padding: 56px 0 28px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand b { color: var(--copper-light); }
.footer p { font-size: .93rem; opacity: .78; max-width: 36ch; }
.footer h5 { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 9px; }
.footer ul a { font-size: .93rem; opacity: .82; transition: opacity .2s, color .2s; }
.footer ul a:hover { opacity: 1; color: var(--copper-light); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; opacity: .68; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Llamar flotante ---------- */
/* Botón de llamada directa, no WhatsApp: no hay WhatsApp Business confirmado
   y publicado para La Trastienda en ningún directorio consultado (el número
   675 62 81 29 es de formato móvil, pero eso no confirma un canal de
   WhatsApp Business activo hoy) — el botón persistente en pantalla debe ser
   el canal 100% verificado: la llamada. */
.call-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: var(--copper); color: #1a1108;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
  border: 1.5px solid rgba(255,255,255,.25); transition: transform .3s var(--ease), background .3s;
}
.call-float:hover { transform: scale(1.08); background: var(--copper-light); }
.call-float svg { width: 27px; height: 27px; }

/* ---------- Página secundaria (valor.html) ---------- */
.page-hero { padding: 140px 0 50px; text-align: center; }
.page-hero .eyebrow { margin-bottom: 16px; justify-content: center; }
.page-hero .eyebrow::before { display: none; }

@media (max-width: 720px) {
  .hero { padding-top: 128px; min-height: auto; padding-bottom: 60px; }
}
