/* ============================================================
   SUMINISTROS LAMI — Rediseño corporativo
   Paleta: verde industrial + naranja corporativo
   Tipografías: Barlow Condensed (display) + Barlow (texto)
   ============================================================ */

:root {
  --green-950: #04211c;
  --green-900: #07302a;
  --green-800: #0b3e35;
  --green-700: #115049;
  --green-600: #176155;
  --mint: #39a388;

  /* ── Naranja corporativo ────────────────────────────────────────────────
     UN solo naranja, el de la marca, en todas partes. Decisión del cliente y
     manda la suya.
     Dato medido, por si alguna vez hace falta: sobre el verde da 4,71:1 (bien),
     pero sobre el papel da 2,77:1 y en blanco-sobre-naranja 3,04:1, por debajo
     del 4,5:1 que pide la norma para texto pequeño. Si algún día se quiere
     corregir SIN tocar el color, el camino es subir tamaño o grosor de esas
     etiquetas, no oscurecer la marca.
     Este ES el naranja exacto del logotipo, medido píxel a píxel sobre
     assets/img/logo-lami.png (el punto de la i incluido): #eb661c, un plano
     único de 5.642 px. El CSS anterior usaba #f26b21, un pelo más claro. */
  --orange: #eb661c;
  --orange-dark: #cf520d;
  --orange-soft: #fdeee4;
  --paper: #f5f4f0;
  --white: #ffffff;
  --ink: #101b18;
  --muted: #5a6b64;
  --line: #e3e1da;

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", sans-serif;

  --container: 1240px;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(4, 33, 28, 0.08);
  --shadow-md: 0 14px 40px rgba(4, 33, 28, 0.14);
  --shadow-lg: 0 24px 70px rgba(4, 33, 28, 0.22);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

::selection { background: var(--orange); color: #fff; }

/* ---------- Utilidades ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--dark { background: var(--green-950); color: #eaf2ef; }
.section--green { background: var(--green-900); color: #eaf2ef; }
.section--white { background: var(--white); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--orange);
}
.section-head--center .eyebrow::after {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--orange);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.h-display {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 700;
  line-height: 0.98;
}

.h-2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
.h-3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }

.lead { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 62ch; }
.section--dark .lead, .section--green .lead { color: #b9cdc6; }

.accent { color: var(--orange); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 26px rgba(235, 102, 28, 0.35);
}
@media (hover: hover) {
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(235, 102, 28, 0.45); }
}

.btn--ghost {
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}
@media (hover: hover) {
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }
}

.btn--outline {
  border: 2px solid var(--green-800);
  color: var(--green-800);
}
@media (hover: hover) {
.btn--outline:hover { background: var(--green-800); color: #fff; transform: translateY(-2px); }
}

.btn--sm { padding: 11px 20px; font-size: 0.95rem; }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  background: var(--green-950);
  color: #cfe0da;
  font-size: 0.86rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 40px;
  padding-block: 6px;
}
.topbar a { display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; }
@media (hover: hover) {
.topbar a:hover { color: var(--orange); }
}
.topbar svg { width: 14px; height: 14px; fill: var(--orange); }
.topbar__group { display: flex; align-items: center; gap: 26px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 48, 42, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(4, 33, 28, 0.35); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; }
.brand img { height: 44px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu > li > a,
.nav-menu > li > button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #eaf2ef;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-menu > li > a.is-active {
  color: var(--orange);
}

@media (hover: hover) {
.nav-menu > li > a:hover,
.nav-menu > li > button:hover {
  color: var(--orange);
}
}

/* Dropdown catálogo */
.has-dropdown { position: relative; }
.has-dropdown .caret { width: 11px; height: 11px; transition: transform 0.25s; }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 12px);
  min-width: 320px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

@media (hover: hover) {
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
}
@media (hover: hover) {
.has-dropdown:hover .caret { transform: rotate(180deg); }
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  transition: background 0.2s;
}
@media (hover: hover) {
.dropdown a:hover { background: var(--orange-soft); }
}
.dropdown img { width: 46px; height: 60px; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow-sm); }
.dropdown strong { display: block; font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.06em; text-transform: uppercase; }
.dropdown small { color: var(--muted); font-size: 0.85rem; }

.nav-cta { display: inline-flex; }

/* Hamburguesa */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.14); } }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(4, 33, 28, 0.96) 0%, rgba(4, 33, 28, 0.82) 42%, rgba(4, 33, 28, 0.35) 75%, rgba(4, 33, 28, 0.55) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 30%, transparent 95%);
}

.hero__inner { padding-block: clamp(44px, 5.5vw, 68px); }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(235, 102, 28, 0.55);
  border-radius: 999px;
  background: rgba(235, 102, 28, 0.12);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffb98c;
  margin-bottom: 20px;
}
.hero__tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(235, 102, 28, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(235, 102, 28, 0); }
  100% { box-shadow: 0 0 0 0 rgba(235, 102, 28, 0); }
}

.hero h1 {
  font-size: clamp(2.7rem, 6.6vw, 5.1rem);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
  max-width: 17ch;
  margin-bottom: 20px;
}
.hero h1 .accent { display: inline; }

.hero__lead {
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
  color: #c9dcd5;
  max-width: 64ch;
  margin-bottom: 30px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 38px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 860px;
}
.hero__stat {
  background: rgba(4, 33, 28, 0.55);
  backdrop-filter: blur(6px);
  padding: 20px 22px;
}
.hero__stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.hero__stat b i { font-style: normal; color: var(--orange); }
.hero__stat span {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a9c4bb;
}

/* Hero con grafismo corporativo (sin foto de fondo) */
.hero--graphic { min-height: 0; }
.hero--graphic::before {
  background:
    radial-gradient(900px 500px at 85% 15%, rgba(235, 102, 28, 0.28), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(23, 97, 85, 0.6), transparent 65%),
    linear-gradient(115deg, #04211c 0%, #07302a 55%, #0b3e35 100%);
}
.hero--graphic .hero__inner { padding-bottom: clamp(30px, 4vw, 44px); }

/* Banner rotativo de marcas (proporción real 3:1) */
.banner-rotator {
  position: relative;
  aspect-ratio: 1920 / 630;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: clamp(36px, 4.5vw, 60px);
  isolation: isolate;
}
.banner-rotator .bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.3s ease;
}
.banner-rotator .bg.is-active { opacity: 1; }
.banner-rotator .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  animation: bannerKenBurns 7s ease-in-out infinite alternate;
}
@keyframes bannerKenBurns { to { transform: scale(1.1) translate(-1.2%, -1.2%); } }

.hero__progress {
  position: absolute;
  bottom: 16px;
  right: 18px;
  display: flex;
  gap: 7px;
  z-index: 2;
}
.hero__progress i {
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.4s;
}
.hero__progress i.is-active { background: var(--orange); }

@media (max-width: 640px) {
.banner-rotator { aspect-ratio: 1920 / 760; }
}

/* ============================================================
   MARQUEE DE MARCAS
   ============================================================ */
.brands-band {
  background: var(--white);
  border-block: 1px solid var(--line);
  padding-block: 30px;
  overflow: hidden;
}
.brands-band__label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  flex-shrink: 0;
  min-width: 100%;
  animation: marquee 42s linear infinite;
}
@media (hover: hover) {
.marquee:hover .marquee__track { animation-play-state: paused; }
}
@keyframes marquee { to { transform: translateX(-100%); } }

.marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 84px;
  padding: 14px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.3s, opacity 0.3s, transform 0.3s, box-shadow 0.3s;
}
@media (hover: hover) {
.marquee__item:hover { filter: none; opacity: 1; transform: translateY(-3px); box-shadow: var(--shadow-sm); }
}
.marquee__item img { max-height: 100%; max-width: 100%; object-fit: contain; }

/* ============================================================
   TARJETAS DE SERVICIO (3 pilares home)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.pillar {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: var(--shadow-md);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
@media (hover: hover) {
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
}
.pillar img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
@media (hover: hover) {
.pillar:hover img { transform: scale(1.07); }
}
.pillar__img--bottom { object-position: center bottom; }
.pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(4, 33, 28, 0.95) 12%, rgba(4, 33, 28, 0.35) 55%, rgba(4, 33, 28, 0.15) 100%);
}
.pillar__body { padding: 30px; }
.pillar__body h3 { font-size: 1.7rem; margin-bottom: 8px; }
.pillar__body p { color: #c4d6cf; font-size: 0.98rem; margin-bottom: 16px; }
.pillar__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.98rem;
  color: var(--orange);
}
.pillar__link svg { width: 16px; height: 16px; transition: transform 0.25s; }
@media (hover: hover) {
.pillar:hover .pillar__link svg { transform: translateX(5px); }
}

/* ============================================================
   CATÁLOGOS
   ============================================================ */
.catalogs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.catalog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
@media (hover: hover) {
.catalog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
}
.catalog-card__cover {
  position: relative;
  aspect-ratio: 3 / 3.4;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #eef0ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  filter: drop-shadow(0 10px 18px rgba(4, 33, 28, 0.18));
  transition: transform 0.5s ease;
}
@media (hover: hover) {
.catalog-card:hover .catalog-card__cover img { transform: scale(1.05); }
}
.catalog-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;   /* el drop-shadow de la portada crea contexto de apilado */
  padding: 6px 13px;
  background: var(--orange);
  color: #fff;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.catalog-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.catalog-card__body h3 { font-size: 1.5rem; }
.catalog-card__body p { color: var(--muted); font-size: 0.96rem; flex: 1; }
.catalog-card__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-800);
  font-size: 1rem;
}
.link-more svg { width: 16px; height: 16px; fill: var(--orange); transition: transform 0.25s; }
@media (hover: hover) {
.link-more:hover svg { transform: translateX(5px); }
}

/* ============================================================
   SPLIT (imagen + texto)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.split--reverse > .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.1;
}
/* Imagen panorámica: se muestra entera, sin recortes */
.split__media--pano img {
  object-fit: contain;
  background: var(--green-900);
  padding: clamp(14px, 2.5vw, 26px);
  aspect-ratio: 4 / 3.1;
}
.split__media::before {
  content: "";
  position: absolute;
  inset: -16px auto auto -16px;
  width: 120px;
  height: 120px;
  border-top: 4px solid var(--orange);
  border-left: 4px solid var(--orange);
  border-top-left-radius: var(--radius);
  z-index: -1;
}
.split__media::after {
  content: "";
  position: absolute;
  inset: auto -16px -16px auto;
  width: 120px;
  height: 120px;
  border-bottom: 4px solid var(--orange);
  border-right: 4px solid var(--orange);
  border-bottom-right-radius: var(--radius);
  z-index: -1;
}
.split__body h2 { margin-bottom: 18px; }
.split__body .lead { margin-bottom: 22px; }

.checklist { display: grid; gap: 14px; margin-bottom: 30px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-weight: 500;
}
.checklist svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}
.section--dark .checklist li, .section--green .checklist li { color: #d8e6e0; }

/* ============================================================
   BANDA CTA ASESORAMIENTO
   ============================================================ */
.cta-band {
  position: relative;
  background: var(--green-900);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(640px 320px at 88% 20%, rgba(235, 102, 28, 0.22), transparent 65%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding-block: clamp(56px, 7vw, 88px);
}
.cta-band h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: 14px; }
.cta-band p { color: #b9cdc6; max-width: 52ch; }
.cta-band__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  justify-self: end;
}
.cta-band__phone small {
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9fbbb1;
  font-size: 0.9rem;
}
.cta-band__phone a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  transition: color 0.2s;
}
@media (hover: hover) {
.cta-band__phone a:hover { color: #ff8a45; }
}
.cta-band__actions { display: flex; gap: 14px; margin-top: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-950);
  color: #a9c4bb;
  padding-top: clamp(56px, 7vw, 84px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 52px;
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.95rem; max-width: 34ch; }

.footer-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links { display: grid; gap: 10px; font-size: 0.97rem; }
.footer-links a { transition: color 0.2s, padding-left 0.2s; }
@media (hover: hover) {
.footer-links a:hover { color: var(--orange); padding-left: 5px; }
}

.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.97rem; }
.footer-contact svg { flex: 0 0 auto; width: 18px; height: 18px; fill: var(--orange); margin-top: 3px; }
@media (hover: hover) {
.footer-contact a:hover { color: var(--orange); }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.87rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 13px; }
@media (hover: hover) {
.footer-legal a:hover { color: var(--orange); }
}

/* ============================================================
   PÁGINAS INTERNAS
   ============================================================ */
.page-hero {
  position: relative;
  background: var(--green-950);
  color: #fff;
  padding-block: clamp(72px, 10vw, 128px) clamp(56px, 7vw, 88px);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 340px at 82% 0%, rgba(235, 102, 28, 0.16), transparent 62%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
  mask-image: linear-gradient(to bottom, #000, transparent 130%);
}
.page-hero h1 { font-size: clamp(2.7rem, 6.4vw, 4.8rem); margin-bottom: 16px; }
.page-hero .lead { color: #b9cdc6; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8faba2;
  margin-bottom: 22px;
}
.breadcrumb a { color: #c9dcd5; }
@media (hover: hover) {
.breadcrumb a:hover { color: var(--orange); }
}
.breadcrumb span[aria-hidden] { color: var(--orange); }

/* Tarjetas de características / valores */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
@media (hover: hover) {
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(235, 102, 28, 0.4); }
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  border-radius: 14px;
  margin-bottom: 20px;
}
.feature-card__icon svg { width: 28px; height: 28px; fill: var(--orange); }
.feature-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.97rem; }

/* Cifras */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.4vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
}
.stat span {
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fbbb1;
}
.section--white .stat span, .section:not(.section--dark):not(.section--green) .stat span { color: var(--muted); }
.section--white .stat b, .section:not(.section--dark):not(.section--green) .stat b { color: var(--green-800); }
.section--white .stat b i, .section:not(.section--dark):not(.section--green) .stat b i { color: var(--orange); font-style: normal; }

/* Grid de marcas */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.brand-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 104px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  filter: grayscale(1);
  opacity: 0.8;
  transition: filter 0.3s, opacity 0.3s, transform 0.3s, box-shadow 0.3s;
}
@media (hover: hover) {
.brand-cell:hover { filter: none; opacity: 1; transform: translateY(-4px); box-shadow: var(--shadow-sm); }
}
.brand-cell img { max-height: 100%; max-width: 100%; object-fit: contain; }

.brands-featured {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 44px;
}
.brands-featured .brand-cell {
  height: 128px;
  filter: none;
  opacity: 1;
  border: 1px solid rgba(235, 102, 28, 0.35);
  background: linear-gradient(180deg, #fff, #fbf8f4);
}

/* Ofertas */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.offer-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
}
.offer-card__media {
  display: block;
  position: relative;
  background: var(--green-900);
  min-height: 100%;
}
.offer-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 11px;
  background: var(--orange);
  color: #fff;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.offer-card__body { padding: 24px 26px; }
.offer-card__body h3 { font-size: 1.45rem; margin-bottom: 10px; }
.offer-card__body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }

/* Contacto */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-info-card {
  background: var(--green-900);
  color: #eaf2ef;
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(420px 240px at 100% 0%, rgba(235, 102, 28, 0.2), transparent 65%);
}
.contact-info-card h3 { color: #fff; font-size: 1.6rem; margin-bottom: 24px; }
.contact-info-card li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-card svg { flex: 0 0 auto; width: 22px; height: 22px; fill: var(--orange); margin-top: 3px; }
.contact-info-card b { display: block; color: #fff; font-family: var(--font-display); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.95rem; }
@media (hover: hover) {
.contact-info-card a:hover { color: var(--orange); }
}
.contact-hours {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  color: #b9cdc6;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.form-field label {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: var(--green-800);
}
.form-field label i { color: var(--orange); font-style: normal; }
.form-field input,
.form-field textarea {
  font: inherit;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fbfaf7;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(235, 102, 28, 0.14);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--muted); margin-bottom: 20px; }
.form-check input { margin-top: 4px; accent-color: var(--orange); width: 17px; height: 17px; }
.form-check a { color: var(--green-800); text-decoration: underline; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 16px; }
.form-status { margin-top: 14px; font-weight: 600; color: var(--green-700); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* Detalle de oferta */
.offer-detail__media {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: clamp(18px, 3vw, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-detail__media img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}

/* Lightbox (visor de imagen ampliada) */
.offer-detail__media { position: relative; }
.offer-detail__media img { cursor: zoom-in; }
.offer-detail__zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: var(--green-900);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}
.offer-detail__zoom svg { width: 15px; height: 15px; fill: var(--orange); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(4, 33, 28, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  overflow: auto;
  padding: clamp(14px, 3vw, 40px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  margin: auto;
  max-width: min(94vw, 860px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transform: scale(0.94);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}
.lightbox.is-open img { transform: scale(1); }
.lightbox img.is-zoomed {
  max-height: none;
  border-radius: 6px;
  cursor: zoom-out;
}
.lightbox__tools {
  position: fixed;
  top: 18px;
  right: 22px;
  display: flex;
  gap: 10px;
  z-index: 2;
}
.lightbox__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.25s, transform 0.25s, opacity 0.25s;
}
@media (hover: hover) {
.lightbox__btn:hover { background: var(--orange); }
}
.lightbox__btn:disabled { opacity: 0.35; pointer-events: none; }
.lightbox__btn svg { width: 20px; height: 20px; fill: currentColor; }
@media (hover: hover) {
.lightbox__close:hover { transform: rotate(90deg); }
}
@media (hover: hover) {
.lightbox__close:hover { background: var(--orange); transform: rotate(90deg); }
}
.lightbox__hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

/* Compartir en redes */
.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.share-row > span {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--muted);
  margin-right: 4px;
}
.share-row a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
@media (hover: hover) {
.share-row a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
}
.share-row a svg { width: 18px; height: 18px; fill: var(--green-800); transition: fill 0.25s; }
@media (hover: hover) {
.share-row a:hover svg { fill: #fff; }
}

/* Contenido legal */
.legal-content { max-width: 840px; }
.legal-content h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  color: var(--green-800);
  margin: 2.2em 0 0.7em;
  padding-top: 1.4em;
  border-top: 2px solid var(--line);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-content h3 {
  font-size: 1.2rem;
  color: var(--green-700);
  margin: 1.6em 0 0.5em;
  text-transform: none;
  letter-spacing: 0.02em;
}
.legal-content p { margin-bottom: 1em; color: #3d4f49; }
.legal-content ul { margin: 0 0 1.2em; padding-left: 4px; display: grid; gap: 8px; }
.legal-content ul li {
  position: relative;
  padding-left: 22px;
  color: #3d4f49;
}
.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--orange);
}
.legal-content a { color: var(--green-700); text-decoration: underline; text-underline-offset: 3px; }
@media (hover: hover) {
.legal-content a:hover { color: var(--orange); }
}
.legal-content strong { color: var(--ink); }
.legal-table-wrap { overflow-x: auto; margin-bottom: 1.6em; border-radius: 10px; border: 1px solid var(--line); }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--white);
}
.legal-content th {
  background: var(--green-900);
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-align: left;
  padding: 12px 14px;
}
.legal-content td { padding: 11px 14px; border-top: 1px solid var(--line); color: #3d4f49; vertical-align: top; }
.legal-content tr:nth-child(even) td { background: #faf9f6; }

/* Socios */
.partners-band img {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   ANIMACIONES DE ENTRADA
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
.reveal { opacity: 1; transform: none; }
html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:last-child { grid-column: 1 / -1; min-height: 320px; }
  .catalogs { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 34px; }
}

@media (max-width: 900px) {
.nav-cta { display: none; }
.nav-toggle { display: flex; }
.nav-menu {
    display: none;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 88vw);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--green-950);
    padding: calc(var(--header-h) + 30px) 26px 40px;
    overflow-y: auto;
    z-index: 99;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
  }
.nav-menu.is-open {
    display: flex;
    animation: menuSlideIn 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  }
@keyframes menuSlideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }
.nav-toggle { position: relative; z-index: 101; }
.nav-menu > li > a,
  .nav-menu > li > button {
    width: 100%;
    justify-content: space-between;
    padding: 15px 8px;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
  }
.dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    margin: 4px 0 10px;
    display: none;
  }
.has-dropdown.is-open .dropdown { display: block; }
.has-dropdown.is-open .caret { transform: rotate(180deg); }
.dropdown a { color: #eaf2ef; padding: 9px 10px; }
  @media (hover: hover) {
  .dropdown a:hover { background: rgba(235, 102, 28, 0.16); }
  }
.dropdown small { color: #9fbbb1; }
.dropdown img { width: 38px; height: 50px; }
.split, .split--reverse { grid-template-columns: 1fr; }
.split--reverse > .split__media { order: 0; }
.cta-band__inner { grid-template-columns: 1fr; }
.cta-band__phone { justify-self: start; }
.contact-grid { grid-template-columns: 1fr; }
.offers-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
.topbar__group--right { display: none; }
.hero { min-height: auto; }
.hero__stats { grid-template-columns: repeat(2, 1fr); }
.pillars { grid-template-columns: 1fr; }
.pillar { min-height: 340px; }
.catalogs { grid-template-columns: 1fr; }
.feature-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; gap: 34px; }
.footer-bottom { flex-direction: column; align-items: flex-start; }
.offer-card { grid-template-columns: 1fr; }
.offer-card__media { min-height: 200px; position: relative; }
.offer-card__media img { position: static; height: 200px; }
.form-row { grid-template-columns: 1fr; }
.btn { width: 100%; }
.hero__actions .btn { width: auto; flex: 1 1 220px; }
.catalog-card__actions .btn, .cta-band__actions .btn { flex: 1 1 auto; }
}
/* ============================================================
   FLOTANTES · AVISO DE COOKIES · HORARIO EN VIVO
   Añadido en la revisión de calidad. Todo el bloque respeta:
   - los resplandores se ENCIENDEN al acercarse, no están puestos en reposo
   - todo hover dentro de @media (hover: hover)
   - los flotantes se apartan solos de la barra de cookies, sin JS
   ============================================================ */

/* ---------- Columna de botones flotantes ---------- */
.floaters {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.35s ease;
}
.floater {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  /* En reposo, sombra NEUTRA. El color se enciende al acercarse. */
  box-shadow: 0 10px 26px rgba(4, 33, 28, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.floater svg { width: 26px; height: 26px; }

.floater--wa  { background: #25d366; }
.floater--wa svg { fill: #fff; }

.floater--tel { background: var(--green-900); border: 2px solid rgba(235, 102, 28, 0.55); }
.floater--tel svg { width: 22px; height: 22px; fill: var(--orange); }

.floater--top {
  background: var(--green-950);
  border: 2px solid rgba(235, 102, 28, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.floater--top svg { width: 20px; height: 20px; fill: var(--orange); }
.floater--top.is-visible { opacity: 1; visibility: visible; transform: none; }

@media (hover: hover) {
  /* El giro es lo que separa a WhatsApp de un botón que solo se infla */
  .floater--wa:hover  { transform: scale(1.1) rotate(6deg); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45); }
  .floater--tel:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: 0 0 24px rgba(235, 102, 28, 0.35); }
  .floater--top:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: 0 0 24px rgba(235, 102, 28, 0.35); }
}

/* La barra de cookies NUNCA tapa un flotante: se apartan solos.
   La altura NO se estima: js/main.js la mide y la publica en --cookie-h.
   Con un número fijo fallaba en móvil, donde la barra mide 154 px y no 70. */
body:has(.cookie-bar:not([hidden])) .floaters {
  transform: translateY(calc(-1 * var(--cookie-h, 70px) - 12px));
}

@media (max-width: 640px) {
  .floaters { right: 14px; bottom: 14px; gap: 10px; }
  .floater { width: 50px; height: 50px; }
}

/* ---------- Aviso de cookies: barra de una línea, nunca una tarjeta ---------- */
.cookie-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 210;
  background: var(--green-950);
  border-top: 2px solid var(--orange);
  color: #cfe0da;
  padding: 10px 0;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}
.cookie-bar[hidden] { display: none; }
.cookie-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-bar p { font-size: 0.9rem; margin: 0; max-width: 78ch; }
.cookie-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.cookie-bar .btn { flex: 0 0 auto; }

@media (max-width: 640px) {
  .cookie-bar p { font-size: 0.85rem; }
  .cookie-bar .btn { width: 100%; }
}

/* ---------- Horario con la franja de HOY destacada ---------- */
.hours { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.12); }

.hours__state {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hours__state .dot { width: 8px; height: 8px; border-radius: 50%; }
.hours__state--open   { background: rgba(52, 211, 153, 0.14); border: 1px solid rgba(52, 211, 153, 0.5); color: #6ee7b7; }
.hours__state--open .dot   { background: #34d399; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); animation: pulse 2s infinite; }
.hours__state--closed { background: rgba(235, 102, 28, 0.12); border: 1px solid rgba(235, 102, 28, 0.45); color: #ffb98c; }
.hours__state--closed .dot { background: var(--orange); }

.hours__list { display: grid; gap: 4px; }
.hours__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.95rem;
  transition: transform 0.4s cubic-bezier(.2,.65,.2,1), border-color 0.4s, background 0.4s;
}
.hours__row b { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #eaf2ef; }
.hours__row span { color: #b9cdc6; font-variant-numeric: tabular-nums; }

/* La fila de HOY, destacada en fijo: es lo que más "viva" hace la página */
.hours__row--today {
  background: rgba(235, 102, 28, 0.12);
  border-color: rgba(235, 102, 28, 0.45);
  box-shadow: 0 0 22px rgba(235, 102, 28, 0.14);
}
.hours__row--today span { color: var(--orange); font-weight: 600; }

@media (hover: hover) {
  .hours__row:hover { transform: translateX(6px); border-color: rgba(255, 255, 255, 0.18); }
}

/* ---------- Píldora del hero: en móvil no puede partirse en dos líneas ---------- */
@media (max-width: 480px) {
  .hero__tag { font-size: 0.78rem; letter-spacing: 0.1em; padding: 7px 14px; }
}

/* ---------- Pantallas BAJAS: el aviso de cookies no puede tapar el CTA ----------
   Medido a 1440x760 (un portátil corriente): el botón de la portada acababa en
   728 px y la barra de cookies empezaba en 682. El fallo NO se ve a 1440x900,
   que es donde todo el mundo mira. Se sube el contenido de la portada, porque
   encoger la barra no daba de sí para los 46 px que faltaban. */
@media (max-height: 860px) {
  .hero__inner { padding-block: 30px; }
  .hero--graphic .hero__inner { padding-bottom: 22px; }
  .hero h1 { margin-bottom: 14px; }
  .hero__lead { margin-bottom: 22px; }
  .hero__actions { margin-bottom: 18px; }
}

/* ---------- Acciones bajo el mapa ----------
   El mapa embebido es OpenStreetMap: sin API key y sin cookies de terceros.
   Google Maps se ofrece como ENLACE, que es lo que de verdad quiere quien
   busca Street View o indicaciones desde su móvil. Así se tiene lo bueno de
   los dos: cero rastreo al cargar la página, y Google a un clic. */
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.map-actions .btn svg { width: 17px; height: 17px; }

@media (max-width: 640px) {
  .map-actions .btn { flex: 1 1 100%; }
}

/* ---------- Firma del estudio ----------
   En la MISMA línea del copyright, no en un renglón propio: así no le añade
   altura al pie. El nombre va en el color de marca para que se lea como firma
   y no como nota a pie. */
.footer-credit {
  color: #7d968e;
  font-size: 0.82rem;
  white-space: nowrap;   /* que no parta «Diseñado y / desarrollado» */
}
.footer-credit a {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
@media (hover: hover) {
  .footer-credit a:hover { color: #ff8a45; }
}
