/* Office Mochis — Landing estática (sin frameworks).
   Tokens del design system en ./tokens/*.css; aquí los componentes de la página.
   Mobile-first: base = teléfono; min-width para pantallas mayores.
   (Las fuentes de Google se cargan con <link> en el HTML, no por @import.) */

@import './tokens/fonts.css';
@import './tokens/colors.css';
@import './tokens/typography.css';
@import './tokens/spacing.css';
@import './tokens/effects.css';
@import './tokens/base.css';

/* ===== Base extra ===== */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { -webkit-tap-highlight-color: transparent; overflow-x: clip; }
section[id] { scroll-margin-top: 96px; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: max(var(--container-pad), env(safe-area-inset-left));
  padding-right: max(var(--container-pad), env(safe-area-inset-right));
}
.icon { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.icon-fill { fill: currentColor; stroke: none; }
/* Titular = texto grande: le basta 3:1, y el 600 da 3.29. El 500 se queda
   en 2.59 y no llega ni para texto grande. */
.hl { color: var(--om-orange-600); }
/* Titular sobre azul marino: ahi el naranja de marca da 5.47:1 y se queda. */
.on-dark .hl, .section-navy .hl { color: var(--om-orange-500); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--om-navy-900); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { left: 0; }

.dots {
  background-image: radial-gradient(var(--om-orange-500) 2.4px, transparent 2.4px);
  background-size: 17px 17px;
  position: absolute;
}

/* ===== Botones ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  box-sizing: border-box; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 800; letter-spacing: 0.01em; line-height: 1.15;
  text-align: center; text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-card); }
.btn:active { transform: translateY(1px); box-shadow: none; }
.btn-md { min-height: 48px; padding: 8px 24px; font-size: 17px; }
.btn-lg { min-height: 56px; padding: 10px 30px; font-size: 18px; }
.btn-xl { min-height: 64px; padding: 12px 38px; font-size: 20px; }
.btn-block { display: flex; width: 100%; }
.btn-primary { background: var(--om-orange-500); color: var(--text-on-brand); }
/* El hover ACLARA. Oscurecer rompería el contraste con la letra azul marino:
   el 600 se queda en 4.31:1 y no pasa. */
.btn-primary:hover, .btn-primary:active { background: var(--om-orange-300); color: var(--text-on-brand); }
.btn-navy { background: var(--om-navy-900); color: #fff; }
.btn-navy:hover, .btn-navy:active { background: var(--om-blue-800); color: #fff; }
.btn-whatsapp { background: var(--om-whatsapp); color: var(--text-on-brand); }
.btn-whatsapp:hover, .btn-whatsapp:active { background: var(--om-whatsapp-hover); color: var(--text-on-brand); }
.btn-outline { background: transparent; color: var(--om-navy-900); border-color: var(--om-navy-900); }
.btn-outline:hover, .btn-outline:active { background: rgba(29,39,87,0.06); color: var(--om-navy-900); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.85); }
.btn-outline-light:hover, .btn-outline-light:active { background: rgba(255,255,255,0.12); color: #fff; }

/* ===== Badges ===== */
.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px;
  border-radius: var(--radius-pill); font-family: var(--font-display);
  font-weight: 800; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.2;
}
.badge-nuevo { background: var(--om-orange-500); color: var(--text-on-brand); }
.badge-promo { background: var(--om-yellow); color: var(--om-navy-900); }
.badge-oficial { background: var(--om-navy-900); color: #fff; }
.badge-garantia { background: var(--om-sky-100); color: var(--om-blue-800); }

/* ===== Píldoras de contacto ===== */
.pill {
  display: inline-flex; align-items: center; gap: 12px; text-decoration: none;
  border-radius: var(--radius-pill); padding: 10px 30px 10px 10px;
  transition: background var(--dur-fast) var(--ease-out);
}
.pill-whatsapp { background: var(--om-whatsapp); color: var(--text-on-brand); }
.pill-whatsapp:hover, .pill-whatsapp:active { background: var(--om-whatsapp-hover); color: var(--text-on-brand); }
.pill-phone { background: var(--om-navy-900); color: #fff; }
.pill-phone:hover, .pill-phone:active { background: var(--om-blue-800); color: #fff; }
.pill-icon {
  width: 46px; height: 46px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; flex: none;
}
.pill-whatsapp .pill-icon { color: var(--om-whatsapp-dark); }
.pill-phone .pill-icon { color: var(--om-navy-900); }
.pill-text { display: flex; flex-direction: column; line-height: 1.1; }
.pill-label { font-size: 12.5px; font-weight: 700; opacity: 0.85; letter-spacing: 0.06em; text-transform: uppercase; }
.pill-text b { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: 0.02em; white-space: nowrap; }

/* ===== Benefit badge (icono + dos líneas) ===== */
.benefit { display: flex; align-items: center; gap: 14px; text-align: left; text-decoration: none; }
.benefit-icon {
  width: 52px; height: 52px; flex: none; border-radius: 50%;
  background: var(--om-orange-500); color: var(--text-on-brand); display: grid; place-items: center;
}
.benefit-icon.benefit-navy { background: var(--om-navy-900); }
.benefit-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.benefit-text b {
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-sm);
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--om-navy-900);
}
.benefit-text span { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.4; }

/* ===== Secciones y encabezados ===== */
.section { padding: clamp(48px, 8vw, 76px) 0; position: relative; }
.section-white { background: #fff; }
.section-gray { background: var(--om-gray-50); }
.section-navy { background: linear-gradient(180deg, var(--om-navy-900) 0%, #16204A 100%); overflow: hidden; }
.stack-40 { display: flex; flex-direction: column; gap: 40px; }
.stack-36 { display: flex; flex-direction: column; gap: 36px; position: relative; }
.section-heading { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; max-width: 760px; margin: 0 auto; }
.section-heading.align-left { align-items: flex-start; text-align: left; margin: 0; }
.section-heading h2 { text-transform: uppercase; letter-spacing: -0.015em; line-height: 1.12; font-weight: 800; }
.section-heading h2.on-dark { color: #fff; }
.section-sub { font-size: var(--text-lg); color: var(--text-muted); line-height: 1.55; }
.section-sub.on-dark { color: rgba(255,255,255,0.85); }
.eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--om-orange-700);
  display: inline-flex; align-items: center; gap: 10px;
}
/* El filete es decoración pura: ahí el naranja de marca sí se queda. */
.eyebrow-line { width: 26px; height: 3px; background: var(--om-orange-500); border-radius: 2px; flex: none; }
/* Sobre azul marino no hace falta oscurecer —el 300 da 7.62:1—, así que en las
   secciones oscuras vuelve el naranja vivo. */
.section-navy .eyebrow { color: var(--om-orange-300); }
.align-left .eyebrow .eyebrow-line:last-child { display: none; }

/* ===== Header / topbar / navbar ===== */
.site-header { position: sticky; top: 0; z-index: 60; }
.topbar { background: var(--om-navy-900); color: #fff; font-size: 15px; }
.topbar-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; padding-top: 8px; padding-bottom: 8px; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item .icon { color: var(--om-orange-300); }
.topbar-phone { margin-left: auto; color: #fff; text-decoration: none; font-weight: 700; }
.topbar-address, .topbar-hours { display: none; }

.navbar { background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-subtle); position: relative; }
.navbar-row { display: flex; align-items: center; gap: 18px; padding-top: 12px; padding-bottom: 12px; }
.navbar-logo { display: inline-flex; flex: none; }
.navbar-logo img { height: 40px; width: auto; }
.navbar-links { display: none; }
.nav-link {
  font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--om-navy-900);
  text-decoration: none; padding: 12px 14px; border-radius: var(--radius-sm);
  border-bottom: 3px solid transparent; display: inline-block; box-sizing: border-box;
}
.nav-link:hover { color: var(--om-orange-700); }
.nav-link.is-active { color: var(--om-orange-700); border-bottom-color: var(--om-orange-500); }
.navbar-actions { flex: none; margin-left: auto; display: flex; align-items: center; gap: 10px; }
.navbar-cta { display: none; }
.nav-burger {
  width: var(--hit-target); height: var(--hit-target); border-radius: var(--radius-md);
  border: 2px solid var(--om-navy-900); background: #fff; color: var(--om-navy-900);
  cursor: pointer; display: grid; place-items: center; flex: none;
}
.nav-burger .icon-close { display: none; }
.nav-open .nav-burger { background: var(--om-navy-900); color: #fff; }
.nav-open .nav-burger .icon-menu { display: none; }
.nav-open .nav-burger .icon-close { display: block; }

.nav-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border-subtle); box-shadow: var(--shadow-card-hover);
  padding: 10px var(--container-pad) 20px; flex-direction: column; gap: 2px;
  max-height: calc(100dvh - 130px); overflow-y: auto; overscroll-behavior: contain;
}
.nav-open .nav-menu { display: flex; }
.nav-menu-link {
  font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--om-navy-900);
  text-decoration: none; padding: 14px 16px; border-radius: var(--radius-sm); display: block; min-height: var(--hit-target); box-sizing: border-box;
}
.nav-menu-link:hover, .nav-menu-link:active { background: var(--om-orange-50); color: var(--om-navy-900); }
.nav-menu-cta { margin-top: 12px; }

@media (min-width: 640px) {
  .topbar-address { display: inline-flex; }
  .navbar-logo img { height: 48px; }
  .navbar-cta { display: inline-flex; }
  .nav-menu-cta { display: none; }
}
@media (min-width: 1120px) {
  .topbar-hours { display: inline-flex; }
  .navbar-links { display: flex; gap: 4px; margin-left: auto; align-items: center; }
  .navbar-actions { margin-left: 0; }
  .nav-burger, .nav-menu { display: none !important; }
}

/* ===== Hero ===== */
.hero { background: linear-gradient(180deg, var(--om-gray-25) 0%, #fff 100%); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
  padding-top: clamp(32px, 6vw, 56px); padding-bottom: clamp(48px, 7vw, 64px);
}
.hero-copy { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.hero-copy h1 { font-size: clamp(34px, 4.2vw, 58px); font-weight: 900; text-transform: uppercase; line-height: 1.06; }
.hero-lead { font-size: var(--text-lg); color: var(--text-muted); max-width: 520px; }
.hero-lead b { color: var(--text-body); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-benefits { display: flex; gap: 16px 28px; flex-wrap: wrap; margin-top: 10px; }
.hero-visual { position: relative; margin-bottom: 36px; }
.hero-visual .dots { top: -26px; right: -20px; width: 150px; height: 110px; opacity: 0.55; }
/* .dots no tiene tamaño propio, se lo da el modificador. Esta regla se fue con
   las ~35 reglas .fb-* al desmontar el flipbook y el <div> se quedó midiendo
   0×0: la decoración de la sección del catálogo llevaba días sin verse. */
.section-navy .dots-catalog { top: 36px; left: 26px; width: 140px; height: 90px; opacity: 0.35; }
.hero-visual > img {
  border-radius: var(--radius-xl); box-shadow: var(--shadow-float); position: relative;
  width: 100%; aspect-ratio: 10 / 8.4; object-fit: cover;
}
.hero-card {
  position: absolute; left: 12px; bottom: -24px; background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover); padding: 14px 18px; display: flex; align-items: center; gap: 14px;
}
.hero-card-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--om-orange-500); color: var(--text-on-brand); display: grid; place-items: center; flex: none; }
.hero-card b { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--om-navy-900); display: block; }
.hero-card span > span { font-size: 15px; color: var(--text-muted); }

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; }
  .hero-card { left: -22px; padding: 16px 22px; }
  .hero-card b { font-size: 20px; }
  .hero-visual { margin-bottom: 0; }
}

/* ===== Trust strip ===== */
.trust { background: var(--om-navy-900); padding: 26px 0; }
.trust-row { display: grid; grid-template-columns: 1fr; gap: 18px 34px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--om-orange-500); color: var(--text-on-brand); display: grid; place-items: center; flex: none; }
.trust-text { display: flex; flex-direction: column; min-width: 0; }
.trust-text b { font-family: var(--font-display); font-weight: 800; font-size: 16.5px; color: #fff; text-transform: uppercase; letter-spacing: 0.03em; }
.trust-text span { font-size: 14.5px; color: rgba(255,255,255,0.72); }
@media (min-width: 560px) { .trust-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1120px) { .trust-row { display: flex; flex-wrap: wrap; justify-content: space-between; } }

/* ===== Categorías ===== */
.cat-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 560px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
.cat-card {
  position: relative; display: flex; align-items: flex-end; border-radius: var(--radius-lg);
  overflow: hidden; height: 228px; text-decoration: none; box-shadow: var(--shadow-card);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.cat-card:active { transform: translateY(-2px); }
.cat-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.cat-card:hover > img { transform: scale(1.05); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(29,39,87,0) 42%, rgba(29,39,87,0.82) 100%); }
.cat-body { position: relative; padding: 18px 20px; display: flex; align-items: center; gap: 12px; width: 100%; box-sizing: border-box; }
.cat-icon { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--om-orange-500); color: var(--text-on-brand); display: grid; place-items: center; }
.cat-text { display: flex; flex-direction: column; min-width: 0; }
.cat-label { font-family: var(--font-display); font-weight: 800; font-size: var(--text-xl); color: #fff; text-transform: uppercase; line-height: 1.15; }
.cat-count { font-size: var(--text-sm); color: rgba(255,255,255,0.85); }
.cat-arrow {
  margin-left: auto; width: 40px; height: 40px; flex: none; border-radius: 50%;
  background: rgba(255,255,255,0.18); color: #fff; display: grid; place-items: center;
  transition: background var(--dur-fast) var(--ease-out);
}
.cat-card:hover .cat-arrow, .cat-card:active .cat-arrow { background: var(--om-orange-500); }

/* ===== CTAs bajo el catálogo =====
   Resto del flipbook eliminado el 2026-08-05: el catálogo pasó a
   /catalogo/ (El Mosaico). Solo sobrevive la fila de botones. */
.fb-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Productos destacados ===== */
.prod-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 560px) { .prod-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1120px) { .prod-grid { grid-template-columns: repeat(4, 1fr); } }
.prod-card {
  background: var(--surface-card); border-radius: var(--radius-lg); border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card); overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.prod-media { position: relative; background: var(--om-gray-25); aspect-ratio: 4 / 3.4; display: grid; place-items: center; padding: 18px; box-sizing: border-box; }
.prod-media img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; transition: transform var(--dur-med) var(--ease-out); }
.prod-card:hover .prod-media img { transform: scale(1.045); }
.prod-tag { position: absolute; top: 14px; left: 14px; z-index: 1; }
.prod-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prod-body h3 { font-weight: 800; font-size: var(--text-xl); color: var(--om-navy-900); text-transform: uppercase; line-height: 1.15; }
.prod-sku { font-size: var(--text-sm); color: var(--text-muted); font-weight: 600; }
.prod-desc { font-size: var(--text-sm); color: var(--text-muted); margin-top: 2px; }
.prod-cta { margin-top: auto; padding-top: 14px; }

.promo-banner {
  background: var(--om-yellow); border-radius: var(--radius-xl); padding: 24px clamp(20px, 4vw, 34px);
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap; box-shadow: var(--shadow-card);
}
.promo-icon { width: 58px; height: 58px; border-radius: 50%; background: var(--om-navy-900); color: var(--om-yellow); display: grid; place-items: center; flex: none; }
.promo-text { flex: 1 1 280px; min-width: 0; }
.promo-text b {
  font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: clamp(19px, 2.6vw, 24px);
  color: var(--om-navy-900); text-transform: uppercase; display: block; line-height: 1.1;
}
.promo-text span { color: var(--om-navy-900); font-weight: 600; }

/* ===== Reparación ===== */
.rep-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 960px) { .rep-grid { grid-template-columns: 1fr 1.1fr; gap: 48px; } }
.rep-visual { position: relative; }
.rep-visual > img {
  border-radius: var(--radius-xl); background: var(--om-gray-50); border: 1px solid var(--border-subtle);
  width: 100%; aspect-ratio: 4 / 4.4; object-fit: contain; padding: 24px; box-sizing: border-box;
}
.rep-tag { position: absolute; top: 18px; left: 18px; }
.rep-copy { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.rep-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 12px 24px; }
@media (min-width: 560px) { .rep-list { grid-template-columns: 1fr 1fr; } }
.rep-list li { display: flex; align-items: center; gap: 10px; font-size: var(--text-base); }
.rep-check { width: 26px; height: 26px; border-radius: 50%; background: var(--om-orange-100); color: var(--om-orange-700); display: grid; place-items: center; flex: none; }
.rep-check .icon { stroke-width: 3; }
.rep-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }

/* ===== Nosotros ===== */
.about { background: var(--om-orange-500); padding: clamp(44px, 6vw, 58px) 0; position: relative; overflow: hidden; }
.about-circle { position: absolute; border-radius: 50%; }
.about-circle-1 { top: -90px; right: -60px; width: 300px; height: 300px; background: rgba(255,255,255,0.12); }
.about-circle-2 { bottom: -120px; left: -40px; width: 260px; height: 260px; background: rgba(29,39,87,0.16); }
.about-row { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; position: relative; }
.about-copy { flex: 1 1 420px; color: var(--text-on-brand); min-width: 0; }
.about-copy h2 { color: #fff; text-transform: uppercase; font-size: var(--text-3xl); font-weight: 900; }
.about-copy p { font-size: var(--text-lg); margin-top: 12px; max-width: 640px; color: rgba(255,255,255,0.94); }
.about-pills { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Contacto ===== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.15fr; } }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-badges { display: flex; flex-direction: column; gap: 16px; }
.contact-map { width: 100%; height: 190px; border-radius: var(--radius-lg); border: 1px solid var(--border-strong); display: block; }
.contact-form {
  background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle); padding: clamp(20px, 4vw, 32px);
  display: flex; flex-direction: column; gap: 18px;
}
.contact-form h3 { text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field label { font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); color: var(--om-navy-900); }
.field .req { color: var(--om-orange-700); }
.field input, .field textarea {
  width: 100%; box-sizing: border-box; min-height: var(--hit-target-lg); padding: 0 18px;
  border-radius: var(--radius-md); border: 2px solid var(--border-strong); outline: none;
  font-family: var(--font-body); font-size: var(--text-base); color: var(--text-body); background: #fff;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field textarea { min-height: 0; padding: 14px 18px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--om-orange-500); box-shadow: 0 0 0 4px var(--om-orange-100); }
.field .hint { font-size: var(--text-xs); color: var(--text-muted); }
.form-note { font-size: var(--text-xs); color: var(--text-muted); text-align: center; }

/* ===== Footer ===== */
.footer { background: var(--om-navy-900); color: #fff; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 560px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1120px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer h4 {
  font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--om-orange-300); margin: 0 0 14px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; }
.footer-logo img { height: 52px; width: auto; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1; }
.footer-logo-text .t1 { font-family: var(--font-display); font-weight: 900; font-size: 22px; color: var(--om-orange-500); letter-spacing: 0.01em; }
.footer-logo-text .t2 { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: #fff; letter-spacing: 0.26em; }
.footer-brand p { color: rgba(255,255,255,0.75); font-size: var(--text-sm); max-width: 300px; }
.footer-slogan { font-family: var(--font-display); font-style: italic; font-weight: 700; color: var(--om-orange-300); font-size: 15px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: var(--text-sm); padding: 2px 0; }
.footer-links a:hover, .footer-links a:active { color: var(--om-orange-300); }
/* Sin esto hereda --text-link (azul) sobre el azul marino del pie: 2.20:1,
   ilegible. En blanco da 14.19:1. */
.footer-bottom a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover, .footer-bottom a:active { color: var(--om-orange-300); }
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list > * { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.88); font-size: var(--text-sm); line-height: 1.5; text-decoration: none; }
.footer-list .icon { color: var(--om-orange-300); margin-top: 2px; }
.footer-list a:hover, .footer-list a:active { color: var(--om-orange-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14); margin-top: 44px; padding-top: 20px;
  display: flex; gap: 8px 16px; flex-wrap: wrap; align-items: center;
  font-size: var(--text-xs); color: rgba(255,255,255,0.6);
}
.footer-handle { margin-left: auto; }

/* ===== FAB WhatsApp ===== */
.wa-fab {
  position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 90; display: flex; align-items: center; gap: 12px;
  background: var(--om-whatsapp); color: var(--text-on-brand); text-decoration: none; border-radius: var(--radius-pill);
  padding: 10px 12px; box-shadow: 0 10px 30px rgba(24,138,65,0.45);
  transition: padding var(--dur-med) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.wa-fab:hover, .wa-fab:active { background: var(--om-whatsapp-hover); color: var(--text-on-brand); padding-right: 26px; }
.wa-fab-icon { width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--om-whatsapp-dark); display: grid; place-items: center; flex: none; }
.wa-fab-label {
  font-family: var(--font-display); font-weight: 800; font-size: 17px; white-space: nowrap;
  max-width: 0; overflow: hidden; transition: max-width var(--dur-med) var(--ease-out);
}
.wa-fab:hover .wa-fab-label, .wa-fab:active .wa-fab-label { max-width: 220px; }

/* ===== Preguntas frecuentes ===== */
.faq { background: var(--om-gray-50); }
.faq .section-heading { margin-bottom: 36px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--surface-card); border: 1px solid var(--om-gray-200);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  overflow: hidden; transition: border-color var(--dur-fast) var(--ease-out);
}
.faq-item[open] { border-color: var(--om-orange-300); }
.faq-item > summary {
  cursor: pointer; list-style: none; padding: 18px 52px 18px 22px; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg);
  color: var(--om-navy-900); line-height: 1.35;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-lg); }
.faq-item > summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 11px; height: 11px;
  border-right: 2.5px solid var(--om-orange-500); border-bottom: 2.5px solid var(--om-orange-500);
  transform: translateY(-70%) rotate(45deg); transition: transform var(--dur-fast) var(--ease-out);
}
.faq-item[open] > summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { color: var(--text-muted); line-height: 1.6; }

@media (prefers-reduced-motion: reduce) {
  .faq-item, .faq-item > summary::after { transition: none; }
}

/* ===== Paginas interiores (categorias y servicios) ===== */
.pg-hero { padding-top: clamp(28px, 5vw, 48px); }
.pg-crumbs {
  font-size: var(--text-sm); color: var(--text-muted);
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 18px;
}
.pg-crumbs a { color: var(--om-orange-700); text-decoration: none; }
.pg-crumbs a:hover { text-decoration: underline; }
.pg-head { display: flex; flex-direction: column; gap: 16px; max-width: 820px; }
.pg-head h1 {
  text-transform: uppercase; letter-spacing: -0.015em; line-height: 1.1;
  font-weight: 800; font-size: var(--text-4xl); color: var(--om-navy-900);
}
.pg-lead { font-size: var(--text-lg); color: var(--text-muted); line-height: 1.6; }
.pg-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

.pg-body { display: flex; flex-direction: column; gap: 36px; max-width: 860px; }
.pg-block h2 {
  text-transform: uppercase; letter-spacing: -0.01em; font-weight: 800;
  font-size: var(--text-2xl); color: var(--om-navy-900); margin-bottom: 14px; line-height: 1.2;
}
.pg-block p { color: var(--text-body); line-height: 1.65; margin-bottom: 12px; }
.pg-block p:last-child { margin-bottom: 0; }
.pg-block a { color: var(--om-orange-700); }
.pg-list { display: flex; flex-direction: column; gap: 10px; margin: 0 0 12px; padding: 0; list-style: none; }
.pg-list li {
  position: relative; padding-left: 26px; line-height: 1.6; color: var(--text-body);
}
.pg-list li::before {
  content: ""; position: absolute; left: 4px; top: 0.62em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--om-orange-500);
}
.pg-list li b { color: var(--om-navy-900); }

.pg-final {
  background: var(--surface-card); border: 1px solid var(--om-gray-200);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 28px;
}
.pg-final h2 {
  text-transform: uppercase; font-weight: 800; font-size: var(--text-2xl);
  color: var(--om-navy-900); margin-bottom: 10px;
}
.pg-final p { color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }

.pg-related {
  display: grid; gap: 12px; margin-top: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.pg-rel {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  background: var(--surface-card); border: 1px solid var(--om-gray-200);
  border-radius: var(--radius-lg); padding: 16px;
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.pg-rel:hover { border-color: var(--om-orange-300); transform: translateY(-2px); }
.pg-rel-icon {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  background: var(--om-orange-500); color: var(--text-on-brand); display: grid; place-items: center;
}
.pg-rel-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pg-rel-text b {
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-sm);
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--om-navy-900); line-height: 1.25;
}
.pg-rel-text span { font-size: var(--text-xs); color: var(--text-muted); }

@media (max-width: 640px) {
  .pg-head h1 { font-size: var(--text-3xl); }
  .pg-final { padding: 22px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .pg-rel { transition: none; }
  .pg-rel:hover { transform: none; }
}

/* ===== Tira del catálogo en las páginas de categoría =====
   Un solo objetivo táctil: todo el bloque es un <a>. Las miniaturas llevan
   alt="" porque no aportan información propia — la aporta el aria-label del
   enlace. Estilo deliberadamente sordo para no competir con el contenido
   de la página, que es lo que rankea. */
.pg-tira { margin: 22px 0; }
.pg-tira-a {
  display: flex; flex-direction: column; gap: 10px;
  padding: 14px; text-decoration: none;
  background: var(--om-gray-25);
  border: 1px solid var(--om-gray-200);
  border-radius: var(--radius-lg);
  transition: border-color var(--dur-fast) var(--ease-out);
}
.pg-tira-a:hover { border-color: var(--om-orange-300); }
.pg-tira-a:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.pg-tira-imgs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.pg-tira-imgs img {
  width: 100%; height: auto; aspect-ratio: 1; object-fit: contain;
  background: #fff; border-radius: var(--radius-sm);
  border: 1px solid var(--om-gray-100);
}
.pg-tira-pie { display: flex; flex-direction: column; gap: 2px; }
.pg-tira-pie b {
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-sm);
  color: var(--om-orange-700); text-transform: uppercase; letter-spacing: 0.03em;
}
.pg-tira-pie span { font-size: var(--text-xs); color: var(--text-muted); }
@media (min-width: 560px) {
  .pg-tira-imgs { grid-template-columns: repeat(6, 1fr); }
}
@media (prefers-reduced-motion: reduce) { .pg-tira-a { transition: none; } }
