/*
Theme Name: Óptica Lux
Theme URI: https://opticaluxhn.com
Author: Jen / Virtual Touch Agency
Description: Theme custom para Óptica Lux, Puerto Cortés, Honduras. Traducción literal de la landing page aprobada por el cliente.
Version: 1.0
Text Domain: optica-lux
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --blue: #00358A;
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #F8F7F5;
  --gray-light: #e8e8e6;
  --gray: #888888;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --max-w: 1200px;
  --sec: 130px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.eyebrow--blue  { color: var(--blue); }
.eyebrow--dim   { color: rgba(255,255,255,0.4); }
.eyebrow--gray  { color: var(--gray); }

.d-xl {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.03em;
}
.d-lg {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.03em;
}
.d-md {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

em.s {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-lg { padding: 20px 40px; font-size: 13px; }

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

.btn-black { background: var(--black); color: #fff; border-color: var(--black); }
.btn-black:hover { background: transparent; color: var(--black); }

.btn-white { background: #fff; color: var(--black); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; }

.btn-outline-w { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-outline-w:hover { background: #fff; color: var(--black); border-color: #fff; }

.btn-outline-b { background: transparent; color: var(--black); border-color: rgba(0,0,0,0.22); }
.btn-outline-b:hover { background: var(--black); color: #fff; border-color: var(--black); }

.btn-wa { background: var(--whatsapp); color: #fff; border-color: var(--whatsapp); }
.btn-wa:hover { background: var(--whatsapp-dark); border-color: var(--whatsapp-dark); }

/* ── NAV ── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 72px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
/* Logo SVG 375×375 cuadrado — contenido en y≈155-240, x≈27-347 */
/* Img escalado a 260px, recortar espacio vacío con margin negativo */
.nav-logo {
  width: 222px;
  height: 58px;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo img {
  width: 260px;
  height: 260px;
  max-width: none;
  margin-top: -107px;  /* (155/375)*260 = 107px */
  margin-left: -19px;  /* (27/375)*260 = 19px */
  transition: filter 0.35s;
}
.nav:not(.scrolled) .nav-logo img { filter: brightness(0) invert(1); }
.nav-btns { display: flex; align-items: center; gap: 10px; }
.nav .btn { padding: 10px 18px; font-size: 11px; }
#navTel { transition: all 0.35s; }

/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--blue);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.09;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px 80px;
}
.hero .eyebrow { margin-bottom: 24px; opacity: 0; animation: fu 0.8s ease 0.3s forwards; }
.hero h1 {
  color: #fff;
  font-size: clamp(72px, 11vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 600px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fu 0.8s ease 0.5s forwards;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fu 0.8s ease 0.7s forwards; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.35);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: fu 0.8s ease 1.2s forwards;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: pline 2.2s ease-in-out infinite;
}
@keyframes fu   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes pline { 0%,100%{opacity:.25;} 50%{opacity:.9;} }

/* ── MARQUEE / TICKER ── */
.ticker {
  overflow: hidden;
  background: var(--blue);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
  padding: 0 40px;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.28);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── PROMO BANNER ── */
.promo-banner {
  background: var(--black);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
}
.promo-banner p { color: #fff; font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.promo-banner strong { color: var(--whatsapp); font-weight: 800; }
.promo-banner .btn { padding: 12px 22px; font-size: 11px; flex-shrink: 0; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.trust-item {
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid var(--gray-light);
}
.trust-item:last-child { border-right: none; }
.trust-n {
  font-size: 72px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.05em;
}
.trust-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 1.55;
}

/* ── SERVICIOS ── */
.servicios {
  background: var(--off-white);
  padding: var(--sec) 48px;
}
.sec-head { margin-bottom: 72px; }
.sec-head .eyebrow { margin-bottom: 14px; }

/* Felix Gray–style horizontal service rows */
.srv-list { border-top: 1px solid var(--gray-light); }
.srv-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 52px 0;
  border-bottom: 1px solid var(--gray-light);
  transition: opacity 0.2s;
  cursor: default;
}
.srv-row:hover { opacity: 0.7; }
.srv-icon { width: 52px; height: 52px; flex-shrink: 0; }
.srv-row-body h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.srv-row-body p { font-size: 15px; line-height: 1.7; color: #666; max-width: 600px; }
.srv-row-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #c0c0bc;
  align-self: flex-start;
  padding-top: 6px;
}

/* ── HISTORIA ── */
.historia {
  background: var(--black);
  padding: var(--sec) 48px;
  position: relative;
  overflow: hidden;
}
.historia-ghost {
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-size: clamp(140px, 22vw, 320px);
  font-weight: 900;
  color: rgba(255,255,255,0.055);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}
.historia-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.historia-left .eyebrow { margin-bottom: 24px; }
.historia-left h2 { color: #fff; }
.historia-right {
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 80px;
}
.historia-right p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  margin-bottom: 24px;
}
.historia-right p:last-child { margin-bottom: 0; }
.historia-photo { margin-top: 40px; aspect-ratio: 3/4; overflow: hidden; }
.historia-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── COMPROMISO ── */
.compromiso { background: var(--blue); padding: var(--sec) 48px; }
.compromiso-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.compromiso-text .eyebrow { margin-bottom: 24px; }
.compromiso-text h2 { color: #fff; margin-bottom: 22px; }
.compromiso-text p { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.8; max-width: 380px; }
.compromiso-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cp-photo { aspect-ratio: 3/4; overflow: hidden; }
.cp-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cp-photo--b { margin-top: 56px; }

/* ── MARCAS ── */
.marcas {
  background: var(--white);
  padding: 110px 48px;
}
.marcas-head { margin-bottom: 64px; }
.marcas-head .eyebrow { margin-bottom: 14px; }

/* Editorial brand display — desktop: centered static / mobile: auto-scroll marquee */
.marcas-brands {
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: hidden;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.marcas-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 4px;
  padding: 56px 0;
}
.marca-dup { display: none; }
.marca-pill {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--black);
  padding: 6px 28px;
  transition: color 0.18s;
  cursor: default;
}
.marca-pill:hover { color: var(--blue); }
.marca-sep {
  font-size: clamp(22px, 3vw, 38px);
  color: var(--blue);
  font-weight: 900;
  line-height: 1;
  padding: 0 4px;
}
@keyframes marcas-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marcas-collage {
  max-width: var(--max-w);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.mc-tile { aspect-ratio: 1/1; overflow: hidden; }
.mc-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.mc-tile:hover img { transform: scale(1.06); }

/* ── SEDES ── */
.sedes {
  background: var(--off-white);
  padding: var(--sec) 48px;
}
.sedes-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2px;
  background: var(--gray-light);
  border: 2px solid var(--gray-light);
  margin-top: 72px;
}
.sede-card {
  background: #fff;
  padding: 52px 48px;
  transition: background 0.22s;
}
.sede-card:hover { background: #f0f0ee; }

.sede-card--photo { padding: 0; }
.sede-body { padding: 32px 48px 52px; }
.sede-photo { aspect-ratio: 4/3; overflow: hidden; background: var(--gray-light); }
.sede-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.sede-card--photo:hover .sede-photo img { transform: scale(1.04); }

.sede-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 20px;
}
.badge-main { background: var(--blue); color: #fff; }
.badge-aso  { background: var(--gray-light); color: var(--gray); }
.badge-sec  { background: #111; color: #fff; }

.sede-card h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.sede-city { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 16px; }
.sede-addr {
  font-size: 14px; color: #666; line-height: 1.65;
  margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-light);
}
.sede-sched { margin-bottom: 28px; }
.sched-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 13px;
  border-bottom: 1px dashed var(--gray-light);
}
.sched-row:last-child { border-bottom: none; }
.sched-day { font-weight: 700; color: var(--black); }
.sched-hr  { color: #666; font-weight: 400; }

.sede-acts { display: flex; gap: 10px; flex-wrap: wrap; }
.s-tel {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 16px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; color: var(--black);
  border: 1.5px solid var(--gray-light);
  transition: border-color 0.2s;
}
.s-tel:hover { border-color: var(--black); }
.s-wa {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 16px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; color: #fff;
  background: var(--whatsapp); transition: background 0.2s;
}
.s-wa:hover { background: var(--whatsapp-dark); }
.s-dir {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 16px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; color: var(--black);
  border: 1.5px solid var(--gray-light);
  transition: border-color 0.2s;
}
.s-dir:hover { border-color: var(--black); }

/* ── HORARIOS + MAPA ── */
.horarios-mapa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.hor-panel {
  background: var(--blue);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hor-panel .eyebrow { margin-bottom: 24px; }
.hor-panel h2 { color: #fff; font-size: clamp(28px, 3vw, 42px); margin-bottom: 52px; }
.hor-list { display: grid; gap: 36px; }
.hs-block h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 12px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hs-row { display: flex; gap: 16px; padding: 5px 0; }
.hs-day { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); min-width: 110px; }
.hs-hr  { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.52); }

.map-panel { position: relative; overflow: hidden; }
.map-panel iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── CTA FINAL ── */
.cta-final {
  background: var(--black);
  padding: 160px 48px;
  text-align: center;
}
.cta-final .eyebrow { margin-bottom: 20px; color: rgba(255,255,255,0.35); }
.cta-final h2 { margin-bottom: 18px; max-width: 600px; margin-left: auto; margin-right: auto; color: #fff; }
.cta-final p { font-size: 16px; color: rgba(255,255,255,0.42); max-width: 380px; margin: 0 auto 52px; line-height: 1.7; }
.cta-acts { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--black); padding: 72px 48px 40px; }
.footer-in { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 48px; margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { width: 240px; height: 64px; overflow: hidden; }
.footer-logo img {
  width: 280px; height: 280px; max-width: none;
  margin-top: -116px; margin-left: -20px;
  filter: brightness(0) invert(1);
}

.footer-social { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.footer-social a {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-social a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.f-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.f-tag  { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.14); }

/* ── FLOATING WA ── */
.wa-fab {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 58px; height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.6); }
.wa-fab::before {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 50%;
  background: rgba(37,211,102,0.22);
  animation: wapulse 2.5s ease-in-out infinite;
}
@keyframes wapulse { 0%,100%{transform:scale(1);opacity:.7;} 50%{transform:scale(1.25);opacity:0;} }

/* ── SCROLL REVEAL ── */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: 0.1s; }
.rv.d2 { transition-delay: 0.2s; }
.rv.d3 { transition-delay: 0.3s; }
.rv.d4 { transition-delay: 0.4s; }

/* ── SVG ICONS ── */
.ico { fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ico-w { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .historia-inner { grid-template-columns: 1fr; gap: 48px; }
  .historia-right { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 48px; }
  .compromiso-inner { grid-template-columns: 1fr; gap: 40px; }
  .compromiso-text p { max-width: none; }
  .cp-photo--b { margin-top: 0; }
  .marcas-collage { grid-template-columns: repeat(3, 1fr); margin-top: 32px; gap: 6px; }
  .horarios-mapa { grid-template-columns: 1fr; }
  .map-panel { height: 360px; }
}
@media (max-width: 768px) {
  :root { --sec: 80px; }
  .nav, .wrap { padding-left: 24px; padding-right: 24px; }
  .nav { padding: 0 20px; }
  /* Logo fix: container más ancho para que LUX no se corte */
  .nav-logo { width: 174px; height: 45px; }
  .nav-logo img { width: 200px; height: 200px; margin-top: -83px; margin-left: -14px; }
  /* Ocultar botones del nav en móvil — hero ya tiene ambas CTAs + botón flotante */
  .nav-btns { display: none; }
  /* Hero móvil: cubre toda la pantalla hasta el ticker */
  .hero { height: 100vh; height: 100svh; min-height: 580px; }
  .hero-bg-img { object-position: center 25%; }
  .hero-content { padding: 0 24px 44px; }
  .hero h1 { font-size: clamp(44px, 11vw, 60px); margin-bottom: 28px; }
  .hero-content { padding: 0 24px 72px; }
  .hero-scroll { display: none; }
  /* Ocultar botón flotante WA — el hero ya lo tiene */
  .wa-fab { display: none; }
  /* Trust bar: centrar contenido */
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-light);
    padding: 32px 24px;
    justify-content: center;
  }
  .trust-item:last-child { border-bottom: none; }
  .trust-n { font-size: 52px; }
  .servicios, .sedes, .cta-final, .historia, .marcas { padding: var(--sec) 24px; }
  /* Marcas: marquee auto-scroll */
  .marcas { overflow: hidden; }
  .marcas-brands { max-width: none; margin: 0 -24px; }
  .marcas-track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    padding: 40px 0;
    animation: marcas-scroll 14s linear infinite;
  }
  .marcas-track:hover { animation-play-state: paused; }
  .marca-dup { display: unset; }
  .marca-pill { font-size: 30px; white-space: nowrap; flex-shrink: 0; }
  .marca-sep { font-size: 30px; white-space: nowrap; flex-shrink: 0; }
  /* Promo banner */
  .promo-banner { padding: 20px 24px; gap: 14px; }
  .promo-banner p { font-size: 14px; }
  /* Servicios */
  .srv-row { grid-template-columns: 44px 1fr; gap: 24px; padding: 36px 0; }
  .srv-row-num { display: none; }
  /* Sedes */
  .sedes-grid { grid-template-columns: 1fr; }
  .sede-card { padding: 40px 28px; }
  .sede-card--photo { padding: 0; }
  .sede-body { padding: 28px 28px 40px; }
  /* Horarios */
  .hor-panel { padding: 60px 24px; }
  /* Footer */
  .footer { padding: 56px 24px 32px; }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-social { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 500px) {
  .hero-actions, .cta-acts { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .cta-acts .btn { justify-content: center; }
  .sede-acts { flex-direction: column; }
  .s-tel, .s-wa, .s-dir { justify-content: center; }
}
