/* ==========================================================================
   ELEVI — Rediseño visual · editorial industrial
   Serif expresiva (Fraunces) + grotesca (Archivo) + industrial (Oswald)
   Paleta cálida sobre negro profundo · acento ámbar
   ========================================================================== */

:root {
  /* Tinta / oscuros */
  --ink: #0a0d0f;
  --ink-2: #0f1418;
  --char: #151c21;      /* superficie de tarjeta en oscuro */
  --char-2: #1b242a;

  /* Claros / papel */
  --paper: #f5f2ea;     /* off-white cálido, editorial */
  --paper-2: #efece2;
  --mist: #e7e4d8;
  --white: #ffffff;

  /* Acentos */
  --amber: #7fbf3a;     /* verde ELEVI · acento principal */
  --amber-soft: #a4d76e;
  --amber-deep: #6aa62f; /* verde hover */
  --blue: #1f7bff;      /* marca ELEVI */
  --blue-deep: #0a5bd6;
  --green: #7fa63f;     /* WhatsApp / éxito */
  --green-deep: #688a30;

  /* Texto */
  --text: #191f24;
  --muted: #67727b;
  --muted-dark: rgba(255, 255, 255, .60);

  /* Líneas */
  --line: rgba(20, 28, 33, .14);
  --line-strong: rgba(20, 28, 33, .28);
  --line-dark: rgba(255, 255, 255, .12);

  /* Tipos */
  --serif: "Fraunces", "Georgia", "Times New Roman", serif;
  --sans: "Archivo", system-ui, -apple-system, sans-serif;
  --indu: "Oswald", "Archivo", sans-serif; /* industrial · números y etiquetas */

  /* Layout */
  --shell: 1380px;
  --pad: clamp(20px, 4vw, 68px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* Grano reutilizable */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.drawer-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }
::selection { background: var(--amber); color: #fff; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: 8px; left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Shell / secciones ---------- */
.section-shell {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding-inline: var(--pad);
}
.section-light { background: var(--paper); }
.section-mist  { background: var(--paper-2); }
.section-ink   { background: var(--ink); color: var(--white); position: relative; }
.section-blue  { background: var(--ink-2); color: var(--white); position: relative; }

/* Grano sutil sobre superficies oscuras */
.section-ink::before,
.section-blue::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 180px;
  opacity: .05;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.section-ink > *, .section-blue > * { position: relative; z-index: 1; }

/* ---------- Tipografía base ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin-top: 0; }
p { margin-top: 0; }

.eyebrow {
  margin: 0 0 20px;
  display: inline-block;
  font-family: var(--indu);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -.018em;
}
h2 em { font-style: italic; color: var(--amber); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(46px, 7vw, 88px);
}
.section-heading > p {
  margin: 0;
  max-width: 44ch;
  font-size: 15px;
  color: var(--muted);
}
.heading-on-dark > p { color: var(--muted-dark); }

/* ---------- Botones ---------- */
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--white); color: var(--ink); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.button-light:hover { background: var(--amber); color: #fff; box-shadow: 0 14px 36px rgba(127,191,58,.4); }
.button-ghost { border-color: rgba(255,255,255,.4); color: var(--white); }
.button-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--amber); }
.button-amber { background: var(--amber); color: #fff; }
.button-amber:hover { background: var(--amber-deep); }
.button-green { background: var(--green); color: var(--white); }
.button-green:hover { background: var(--green-deep); }
.button.disabled { opacity: .4; pointer-events: none; }

/* ==========================================================================
   NAVEGACIÓN
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled,
.site-header.menu-open {
  background: rgba(10, 13, 15, .82);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: rgba(255,255,255,.08);
}
.nav-shell {
  width: min(100%, var(--shell));
  height: 78px;
  margin: 0 auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { justify-self: start; }
.brand-plate {
  display: inline-flex;
  align-items: center;
  height: 30px;
}
.brand img { height: 30px; width: auto; display: block; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(10px, 2vw, 32px); }
.desktop-nav a {
  position: relative;
  padding-block: 8px;
  font-size: 13px;
  letter-spacing: .01em;
  color: rgba(255,255,255,.75);
  transition: color .25s;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 2px;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.quote-trigger {
  min-height: 40px;
  padding: 9px 15px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  transition: border-color .25s, background .25s;
}
.quote-trigger:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); }
.quote-count {
  display: inline-grid;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  place-items: center;
  border-radius: 999px;
  background: var(--amber);
  color: #fff;
  font-family: var(--indu);
  font-size: 10px;
  font-weight: 600;
}
.nav-cta {
  min-height: 40px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  transition: background .25s, transform .25s;
}
.nav-cta:hover { background: var(--amber); color: #fff; transform: translateY(-1px); }
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  color: var(--white);
}
.menu-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  margin: 7px auto;
  background: currentColor;
  transition: transform .25s;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }
.mobile-nav {
  padding: 16px var(--pad) 26px;
  background: rgba(10,13,15,.98);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--line-dark);
}
.mobile-nav a,
.mobile-nav button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
  font-size: 15px;
  text-align: left;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #06090b;
  color: var(--white);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.06) brightness(.82);
}
/* Capas de atmósfera: viñeta + resplandor ámbar central */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(70% 55% at 68% 42%, rgba(127,191,58,.42), rgba(127,191,58,.10) 42%, transparent 66%),
    radial-gradient(120% 90% at 50% 50%, transparent 38%, rgba(4,7,9,.55) 78%, rgba(4,7,9,.9) 100%),
    linear-gradient(180deg, rgba(6,9,11,.55) 0%, rgba(6,9,11,.05) 30%, rgba(6,9,11,.55) 72%, rgba(6,9,11,.94) 100%);
}
.hero::after { z-index: 0; opacity: .06; }

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--shell));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(118px, 15vh, 172px) var(--pad) 42px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.hero-kicker {
  display: inline-block;
  font-family: var(--indu);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.hero-tag {
  font-family: var(--indu);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.hero-title {
  align-self: center;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(auto, max-content) minmax(70px, 1fr) minmax(auto, max-content);
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 8.4vw, 138px);
  line-height: .92;
  letter-spacing: -.02em;
}
.hero-title span { display: block; }
.hero-title .accent { font-style: italic; font-weight: 400; }
.hero-title i {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.15), rgba(255,255,255,.7), rgba(255,255,255,.15));
}

.hero-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(28px, 6vw, 90px);
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-trust p {
  margin: 0 0 16px;
  font-family: var(--indu);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
}
.trust-logos img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .5;
  transition: opacity .3s;
}
.trust-logos img:hover { opacity: .95; }

.hero-pitch { justify-self: end; width: min(100%, 480px); }
.hero-pitch p {
  margin: 0 0 24px;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,.86);
}
.hero-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

/* Animación de entrada del hero */
.hero-kicker,
.hero-tag,
.hero-title span,
.hero-title i,
.hero-foot {
  opacity: 0;
  transform: translateY(26px);
  animation: heroRise 1s var(--ease-out) forwards;
}
.hero-tag { animation-delay: .05s; }
.hero-title span:first-child { animation-delay: .18s; }
.hero-title i { animation-delay: .3s; transform: scaleX(.3); transform-origin: center; }
.hero-title .accent { animation-delay: .42s; }
.hero-foot { animation-delay: .58s; }
@keyframes heroRise {
  to { opacity: 1; transform: translateY(0) scaleX(1); }
}

/* ==========================================================================
   MANIFIESTO
   ========================================================================== */
.manifesto { padding: clamp(90px, 12vw, 176px) 0; }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(40px, 9vw, 140px);
  align-items: end;
}
.manifesto-grid h2 { font-size: clamp(38px, 5.4vw, 78px); }
.manifesto-copy { max-width: 520px; }
.manifesto-copy p { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; color: #3a444c; }
.manifesto-copy p + p { margin-top: 20px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--amber);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  transition: gap .3s var(--ease);
}
.text-link span { color: var(--amber); transition: transform .3s var(--ease); }
.text-link:hover { gap: 20px; }
.text-link:hover span { transform: translate(3px, -3px); }

/* ==========================================================================
   SERVICIOS + INDUSTRIAS — bloques "feature" (imagen + texto alternados)
   Tratamiento tipográfico grotesco (Archivo bold) · etiqueta azul ELEVI
   ========================================================================== */
.services   { padding: clamp(80px, 11vw, 150px) 0; }

.feature-stack { display: grid; gap: clamp(58px, 9vw, 128px); margin-top: clamp(30px, 5vw, 56px); }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
}
.feature-row.reverse .feature-media { order: 2; }

/* Media */
.feature-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--char);
  box-shadow: 0 30px 70px rgba(5,8,10,.28);
}
.feature-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.feature-row:hover .feature-media img { transform: scale(1.045); }
.feature-badge {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10,13,15,.66);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--indu);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.feature-badge b { color: var(--amber); font-weight: 600; }

/* Texto */
.feature-copy { max-width: 520px; }
.feature-label {
  margin: 0 0 16px;
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--blue);
}
.feature-title {
  margin: 0 0 20px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.04;
  letter-spacing: -.022em;
  color: var(--text);
}
.feature-title em { font-style: normal; color: var(--amber); }
.feature-text {
  margin: 0;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.62;
  color: var(--muted);
}

/* Sobre fondo oscuro (servicios) */
.section-ink .feature-title { color: #fff; }
.section-ink .feature-text  { color: rgba(255,255,255,.7); }

/* Stats en línea (servicios) */
.feature-stats { display: flex; flex-wrap: wrap; gap: clamp(26px, 4vw, 52px); margin-top: 30px; }
.feature-stat strong {
  display: block;
  font-family: var(--indu);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  color: var(--amber);
  white-space: nowrap;
}
.feature-stat span { display: block; margin-top: 6px; font-size: 13px; line-height: 1.4; color: var(--muted); }
.section-ink .feature-stat span { color: rgba(255,255,255,.6); }

/* Chips de industria */
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 0; padding: 0; list-style: none; }
.feature-tags li {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
  color: #4c565d;
}

/* Enlace de acción estilo grotesco */
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--amber);
  transition: gap .3s var(--ease);
}
.feature-link svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.feature-link:hover { gap: 15px; }
.feature-link:hover svg { transform: translate(3px, -3px); }

/* ==========================================================================
   CATÁLOGO / TIENDA
   ========================================================================== */
.catalog { padding: clamp(90px, 11vw, 156px) 0; }
.catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: 58px;
}
.catalog-intro p { color: var(--muted); font-size: 15px; }
.catalog-intro .button { margin-top: 16px; }
.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) minmax(280px, 1.5fr) 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(20,28,33,.05);
}
.catalog-toolbar label,
.filter-group { display: grid; gap: 8px; }
.catalog-toolbar label > span,
.filter-group > span {
  font-family: var(--indu);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.catalog-toolbar input,
.catalog-toolbar select,
.drawer-footer select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--text);
  transition: border-color .25s, box-shadow .25s;
}
.catalog-toolbar input:focus,
.catalog-toolbar select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(127,191,58,.14);
}
.segmented { display: grid; grid-template-columns: repeat(3, 1fr); border-radius: 10px; overflow: hidden; }
.segmented button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-right: 0;
  background: var(--paper);
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  transition: background .25s, color .25s;
}
.segmented button:last-child { border-right: 1px solid var(--line); }
.segmented button.active { background: var(--ink); color: var(--white); }
.clear-filters {
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: var(--amber);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.clear-filters:hover { text-decoration: underline; }
.catalog-status {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 22px 4px 28px;
  font-family: var(--indu);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.catalog-status #resultCount { color: var(--text); font-weight: 600; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(127,191,58,.4);
  box-shadow: 0 30px 66px rgba(20,28,33,.14);
}
.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9e6dc;
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-sequence {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(10,13,15,.82);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-family: var(--indu);
  font-size: 9.5px;
  letter-spacing: .06em;
}
.product-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--indu);
  font-size: 9.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-meta span:last-child { color: var(--amber); }
.product-body h3 { margin-bottom: 8px; font-size: clamp(23px, 2vw, 30px); line-height: 1.02; letter-spacing: -.01em; }
.product-type { margin-bottom: 18px; color: var(--muted); font-size: 13px; }
.brand-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.brand-chip {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--mist);
  font-family: var(--indu);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .04em;
  color: #454e55;
}
.product-actions { display: grid; grid-template-columns: 1fr 1.4fr; gap: 8px; margin-top: 22px; }
.product-actions button {
  min-height: 45px;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .25s, color .25s, border-color .25s;
}
.product-actions button:first-child:hover { border-color: var(--ink); }
.product-actions .add-button { border-color: var(--ink); background: var(--ink); color: var(--white); }
.product-actions .add-button:hover { background: var(--amber); border-color: var(--amber); }
.product-actions .add-button.added { border-color: var(--green); background: var(--green); }
.empty-state {
  padding: 80px 20px;
  text-align: center;
  border: 1px dashed var(--line-strong);
  border-radius: 16px;
  background: var(--white);
}
.empty-state button { border: 0; background: transparent; color: var(--amber); font-weight: 600; }

/* ==========================================================================
   INDUSTRIAS — usa el componente .feature-* (ver bloque SERVICIOS)
   ========================================================================== */
.industries { padding: clamp(80px, 11vw, 150px) 0; }

/* ==========================================================================
   PROYECTOS
   ========================================================================== */
.projects { padding: clamp(90px, 11vw, 156px) 0; }
.project-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  grid-auto-rows: minmax(260px, 34vw);
  gap: 12px;
}
.project-card { position: relative; margin: 0; overflow: hidden; border-radius: 14px; background: #10171c; }
.project-card.project-wide { grid-column: span 2; }
.project-card:last-child { grid-column: 2 / span 2; }
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.75) brightness(.92);
  transition: transform .8s var(--ease), filter .8s;
}
.project-card:hover img { transform: scale(1.05); filter: saturate(1) brightness(1); }
.project-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(5,8,10,.88));
}
.project-card figcaption { position: absolute; z-index: 1; inset: auto 26px 26px; }
.project-card figcaption span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--indu);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber-soft);
}
.project-card figcaption strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 2.2vw, 32px);
  line-height: 1.04;
}

/* ==========================================================================
   CONTACTO
   ========================================================================== */
.contact { padding: clamp(90px, 11vw, 156px) 0; }
.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 9vw, 140px);
}
.contact-lead h2 { font-size: clamp(44px, 6vw, 88px); }
.contact-lead > p:not(.eyebrow) { max-width: 46ch; margin-top: 28px; color: rgba(255,255,255,.78); font-size: 16px; }
.contact-direct { display: grid; gap: 12px; margin-top: 40px; }
.contact-direct a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1.5px solid rgba(255,255,255,.4);
  font-size: 14px;
  font-weight: 600;
  transition: border-color .3s, gap .3s var(--ease);
}
.contact-direct a:hover { border-color: var(--amber); gap: 16px; }
.branch-tabs { background: var(--white); color: var(--text); border-radius: 18px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.28); }
.branch-switch { display: grid; grid-template-columns: 1fr 1fr; }
.branch-switch button {
  min-height: 58px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  transition: background .25s, color .25s;
}
.branch-switch button[aria-selected="true"] { background: var(--white); color: var(--text); border-bottom-color: transparent; }
.branch-panel { padding: 34px; }
.branch-details { display: grid; gap: 5px; margin-bottom: 28px; }
.branch-details p { margin-bottom: 8px; font-family: var(--indu); font-size: 9.5px; letter-spacing: .16em; color: var(--amber); }
.branch-details a { font-family: var(--serif); font-size: 26px; font-weight: 400; }
.branch-details span { margin-top: 6px; max-width: 50ch; color: var(--muted); font-size: 12.5px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label span { font-family: var(--indu); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 10px 0;
  resize: vertical;
  transition: border-color .25s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-bottom-color: var(--amber); }
.field-full { grid-column: 1 / -1; }
.contact-form .button { width: 100%; background: var(--ink); color: var(--white); }
.contact-form .button:hover { background: var(--amber); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { padding: 72px var(--pad) 26px; background: var(--ink); color: var(--white); position: relative; }
.footer-main,
.footer-bottom {
  width: min(100%, calc(var(--shell) - (2 * var(--pad))));
  margin: 0 auto;
}
.footer-main { display: grid; grid-template-columns: auto 1fr auto; gap: 50px; align-items: start; }
.footer-brand { display: inline-flex; align-items: center; height: 44px; }
.footer-brand img { height: 44px; width: auto; }
.footer-main p { max-width: 44ch; color: rgba(255,255,255,.56); font-size: 14px; }
.footer-main nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; font-size: 13px; }
.footer-main nav a { color: rgba(255,255,255,.75); transition: color .25s; }
.footer-main nav a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 62px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--indu);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

/* ==========================================================================
   DRAWER DE COTIZACIÓN
   ========================================================================== */
.floating-quote {
  position: fixed;
  right: 18px; bottom: 84px;
  z-index: 60;
  display: none;
  min-height: 50px;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.floating-quote b { display: grid; min-width: 28px; height: 28px; place-items: center; border-radius: 999px; background: var(--amber); font-family: var(--indu); }
.drawer-backdrop { position: fixed; inset: 0; z-index: 199; background: rgba(5,8,10,.6); backdrop-filter: blur(5px); }
.quote-drawer {
  position: fixed;
  z-index: 200;
  inset: 0 0 0 auto;
  width: min(100%, 470px);
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  box-shadow: -30px 0 80px rgba(0,0,0,.26);
  transform: translateX(105%);
  transition: transform .4s var(--ease);
}
.quote-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { font-size: 40px; }
.icon-button,
.dialog-close {
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  font-size: 24px;
  transition: background .25s, color .25s;
}
.icon-button:hover, .dialog-close:hover { background: var(--ink); color: #fff; }
.drawer-items { display: grid; gap: 10px; padding: 20px 0; overflow: auto; }
.drawer-item { display: grid; grid-template-columns: 78px 1fr auto; gap: 14px; align-items: center; padding: 11px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.drawer-item img { width: 78px; height: 66px; object-fit: cover; border-radius: 8px; }
.drawer-item h3 { margin: 0 0 4px; font-family: var(--sans); font-weight: 600; font-size: 14px; line-height: 1.15; }
.drawer-item p { margin: 0; color: var(--muted); font-size: 11px; }
.drawer-item button { border: 0; background: transparent; color: var(--muted); font-size: 20px; }
.drawer-item button:hover { color: var(--amber); }
.drawer-empty { margin: auto 0; text-align: center; color: var(--muted); }
.drawer-empty a { color: var(--amber); font-weight: 600; }
.drawer-footer { display: grid; gap: 12px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.drawer-footer label { display: grid; gap: 6px; }
.drawer-footer label span { font-family: var(--indu); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.drawer-footer select { border-radius: 10px; }
.drawer-footer .button { width: 100%; }
.clear-selection { border: 0; background: transparent; color: var(--muted); font-size: 11px; }
.clear-selection:hover { color: var(--amber); }
.toast {
  position: fixed;
  z-index: 300;
  left: 50%; bottom: 30px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12.5px;
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
  transition: .35s var(--ease);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Diálogo de producto ---------- */
.product-dialog {
  width: min(960px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper);
  color: var(--text);
}
.product-dialog::backdrop { background: rgba(5,8,10,.74); backdrop-filter: blur(6px); }
.dialog-close { position: absolute; z-index: 2; top: 18px; right: 18px; background: var(--white); }
.dialog-layout { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 580px; }
.dialog-media { background: var(--mist); overflow: hidden; }
.dialog-media img { width: 100%; height: 100%; object-fit: cover; }
.dialog-body { padding: clamp(32px, 5vw, 60px); display: flex; flex-direction: column; }
.dialog-body .eyebrow { color: var(--amber); }
.dialog-body h2 { font-size: clamp(40px, 5vw, 64px); }
.spec-list { display: grid; margin: 32px 0; border-top: 1px solid var(--line); }
.spec-row { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.spec-row span { color: var(--muted); }
.spec-row strong { font-weight: 600; }
.dialog-brands { margin-bottom: 28px; }
.dialog-brands p { margin-bottom: 12px; font-family: var(--indu); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.dialog-body .button { margin-top: auto; width: 100%; }

/* ==========================================================================
   REVELADO EN SCROLL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1120px) {
  .catalog-toolbar { grid-template-columns: 1fr 1fr 1fr; }
  .search-field { grid-column: span 2; }
  .filter-group { grid-column: span 2; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .desktop-nav, .nav-actions { display: none; }
  .nav-shell { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: block; grid-column: 3; }
  .hero-title { grid-template-columns: 1fr; gap: 16px; font-size: clamp(58px, 13vw, 104px); }
  .hero-title i { width: 52%; height: 1px; }
  .hero-foot { grid-template-columns: 1fr; gap: 34px; }
  .hero-pitch { justify-self: start; width: 100%; }
  .manifesto-grid,
  .section-heading,
  .catalog-heading,
  .contact-layout { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 30px; }
  .feature-row.reverse .feature-media { order: 0; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 340px; }
  .project-card.project-wide { grid-column: span 2; }
  .project-card:last-child { grid-column: span 2; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 650px) {
  :root { --pad: 18px; }
  h2 { font-size: clamp(34px, 10vw, 54px); }
  .hero-top { flex-wrap: wrap; gap: 10px; }
  .hero-tag { display: none; }
  .hero-content { padding-top: 108px; }
  .hero-title { font-size: clamp(50px, 15vw, 80px); }
  .trust-logos { gap: 20px; }
  .trust-logos img { height: 18px; }
  .product-grid { grid-template-columns: 1fr; }
  .feature-media { aspect-ratio: 5 / 4; }
  .feature-stats { gap: 22px; }
  .catalog-toolbar { grid-template-columns: 1fr; }
  .search-field, .filter-group { grid-column: auto; }
  .catalog-status { display: grid; gap: 6px; }
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: 320px; }
  .project-card,
  .project-card.project-wide,
  .project-card:last-child { grid-column: auto; }
  .contact-form { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-main p { grid-column: auto; grid-row: auto; }
  .footer-bottom { display: grid; }
  .floating-quote { display: flex; }
  .dialog-layout { grid-template-columns: 1fr; }
  .dialog-media { min-height: 300px; }
  .dialog-body { padding-top: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-kicker, .hero-tag, .hero-title span, .hero-title i, .hero-foot { opacity: 1; transform: none; }
  .hero-video { display: none; }
  .hero { background: url("assets/poster-intro.jpg") center / cover no-repeat; }
}

/* ==========================================================================
   NÚMEROS INDUSTRIALES (Oswald) — ajustes finos
   ========================================================================== */
.spec-row strong,
.product-sequence,
.industry-number,
.hero-tag { font-family: var(--indu); font-feature-settings: "tnum" 1; }
.spec-row strong { font-weight: 500; letter-spacing: .01em; font-size: 15px; }

/* ==========================================================================
   SUCURSALES Y COBERTURA
   ========================================================================== */
.branches { padding: clamp(90px, 11vw, 150px) 0; }
.branch-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.branch-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(20,28,33,.05);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.branch-card:hover { transform: translateY(-5px); box-shadow: 0 30px 66px rgba(20,28,33,.12); border-color: rgba(127,191,58,.35); }
.branch-state {
  font-family: var(--indu);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
}
.branch-card h3 { margin: 8px 0 26px; font-size: clamp(34px, 4vw, 52px); line-height: 1; letter-spacing: -.015em; }
.branch-info { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.branch-info li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.branch-info li:last-child { border-bottom: 0; padding-bottom: 0; }
.branch-info li > span {
  font-family: var(--indu);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 4px;
}
.branch-info a, .branch-info p { margin: 0; font-size: 15px; color: var(--text); }
.branch-info li:first-child a {
  font-family: var(--indu);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .01em;
}
.branch-info a:hover { color: var(--amber); }

/* ==========================================================================
   CONTACTO SPLIT-SCREEN (Monterrey | Los Cabos)
   ========================================================================== */
.contact-split { padding: 0; overflow: hidden; }
.split-head {
  text-align: center;
  padding: clamp(80px, 10vw, 130px) var(--pad) clamp(40px, 5vw, 64px);
}
.split-head h2 { font-size: clamp(40px, 5.5vw, 78px); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  min-height: min(82vh, 760px);
}
.split-panel {
  position: relative;
  display: flex;
  overflow: hidden;
  isolation: isolate;
}
.split-media { position: absolute; inset: 0; z-index: -1; }
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.66) saturate(1.02);
  transition: transform .9s var(--ease), filter .9s;
}
.split-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5,8,10,.15) 0%, rgba(5,8,10,.55) 55%, rgba(5,8,10,.9) 100%),
    radial-gradient(90% 60% at 50% 52%, rgba(5,8,10,.55), transparent 70%);
  transition: background .5s;
}
.split-panel:hover .split-media img { transform: scale(1.05); filter: brightness(.76) saturate(1.05); }
.split-panel:hover::after { background: linear-gradient(180deg, rgba(5,8,10,.1) 0%, rgba(5,8,10,.5) 60%, rgba(5,8,10,.85) 100%); }
.split-body {
  margin: auto;
  width: min(100%, 460px);
  padding: 48px var(--pad);
  text-align: center;
  color: var(--white);
}
.split-state {
  font-family: var(--indu);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber-soft);
}
.split-city {
  margin: 12px 0 26px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 6vw, 88px);
  line-height: .96;
  letter-spacing: -.02em;
}
.split-info { display: grid; gap: 8px; margin: 0 0 32px; padding: 0; list-style: none; }
.split-info li { font-size: 14.5px; color: rgba(255,255,255,.82); }
.split-info li:first-child { font-family: var(--indu); font-size: 30px; font-weight: 500; letter-spacing: .02em; color: #fff; }
.split-info a:hover { color: var(--amber-soft); }
.split-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* ==========================================================================
   FAB · WHATSAPP (círculo, abajo-izquierda) + ENCUENTRA TU EQUIPO (derecha)
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  left: 18px; bottom: 18px;
  z-index: 61;
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(37,211,102,.45);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  animation: waPulse 2.8s var(--ease) infinite;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70%, 100% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 20px 44px rgba(37,211,102,.55); }
.whatsapp-fab svg { width: 32px; height: 32px; position: relative; z-index: 1; }

.finder-fab {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 22px 13px 15px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: 0 16px 40px rgba(31,123,255,.42);
  transition: transform .3s var(--ease), background .3s, box-shadow .3s;
}
.finder-fab:hover { transform: translateY(-3px); background: var(--blue-deep); box-shadow: 0 22px 50px rgba(31,123,255,.5); }
.finder-fab-icon {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}
.finder-fab-icon svg { width: 17px; height: 17px; }

/* ---------- Diálogo del buscador ---------- */
.finder-dialog {
  width: min(720px, calc(100% - 28px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--paper);
  color: var(--text);
}
.finder-dialog::backdrop { background: rgba(5,8,10,.76); backdrop-filter: blur(6px); }
.finder-dialog .dialog-close { position: absolute; z-index: 3; top: 16px; right: 16px; background: var(--white); }
.finder-inner { display: flex; flex-direction: column; max-height: calc(100svh - 32px); }

.finder-head { padding: clamp(30px, 4vw, 44px) clamp(30px, 4vw, 48px) 0; }
.finder-kicker {
  font-family: var(--indu);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
}
.finder-head h2 { margin: 10px 0 4px; font-size: clamp(30px, 4vw, 44px); line-height: 1.02; }
.finder-head p.finder-sub { margin: 0; color: var(--muted); font-size: 14px; }

.finder-modes { display: inline-flex; gap: 4px; margin-top: 22px; padding: 4px; background: var(--mist); border-radius: 999px; }
.finder-modes button {
  padding: 9px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: background .25s, color .25s;
}
.finder-modes button.active { background: var(--ink); color: #fff; }

.finder-progress { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.finder-progress .bar { flex: 1; height: 4px; border-radius: 999px; background: var(--mist); overflow: hidden; }
.finder-progress .bar i { display: block; height: 100%; background: var(--amber); border-radius: 999px; transition: width .4s var(--ease); }
.finder-progress .count { font-family: var(--indu); font-size: 13px; font-weight: 500; letter-spacing: .08em; color: var(--muted); }

.finder-body { padding: 26px clamp(30px, 4vw, 48px) clamp(28px, 4vw, 40px); overflow: auto; }
.finder-q { margin: 0 0 22px; font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 3vw, 34px); line-height: 1.08; letter-spacing: -.01em; }
.finder-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.finder-opt {
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--white);
  text-align: left;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  transition: border-color .2s, background .2s, transform .2s;
}
.finder-opt:hover { border-color: var(--amber); background: #f2f8ea; transform: translateY(-2px); }
.finder-opt .opt-sub { display: block; margin-top: 3px; font-family: var(--indu); font-size: 12px; font-weight: 400; letter-spacing: .04em; color: var(--muted); }
.finder-hint { margin: 16px 0 0; font-size: 13px; color: var(--muted); }

.finder-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 26px; }
.finder-back, .finder-skip {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.finder-back:hover, .finder-skip:hover { color: var(--amber); }
.finder-back[hidden] { visibility: hidden; display: inline-block !important; }

.finder-textmode { display: grid; gap: 14px; }
.finder-textmode textarea {
  width: 100%;
  min-height: 130px;
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--white);
  resize: vertical;
  font-size: 15px;
}
.finder-textmode textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(127,191,58,.14); }
.finder-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.finder-chips button {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 12.5px;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}
.finder-chips button:hover { border-color: var(--amber); color: var(--amber); }

/* ---------- Resultado ---------- */
.finder-result { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.finder-result-media { position: relative; min-height: 260px; background: var(--mist); }
.finder-result-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.finder-result-media .tag {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--amber);
  color: #fff;
  font-family: var(--indu);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.finder-result-body { padding: clamp(26px, 3.5vw, 40px); display: flex; flex-direction: column; }
.finder-result-body .finder-kicker { color: var(--amber); }
.finder-result-body h3 { margin: 8px 0 6px; font-size: clamp(28px, 3.5vw, 40px); line-height: 1; letter-spacing: -.01em; }
.finder-result-body .rec-meta { margin: 0 0 18px; font-family: var(--indu); font-size: 13px; letter-spacing: .04em; color: var(--muted); }
.finder-reasons { display: grid; gap: 9px; margin: 0 0 18px; padding: 0; list-style: none; }
.finder-reasons li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.finder-reasons li::before { content: "✔"; color: var(--green); font-weight: 700; }
.finder-alts { margin: 0 0 22px; padding: 16px 0 0; border-top: 1px solid var(--line); }
.finder-alts p { margin: 0 0 10px; font-family: var(--indu); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.finder-alts .alt-list { display: flex; flex-wrap: wrap; gap: 8px; }
.finder-alts button {
  padding: 8px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  font-size: 12.5px;
  font-weight: 600;
  transition: border-color .2s, background .2s;
}
.finder-alts button:hover { border-color: var(--amber); background: #f2f8ea; }
.finder-cta { display: grid; gap: 9px; margin-top: auto; }
.finder-cta .button { width: 100%; }

@media (max-width: 720px) {
  .finder-result { grid-template-columns: 1fr; }
  .finder-result-media { min-height: 210px; }
}
@media (max-width: 560px) {
  .finder-options { grid-template-columns: 1fr; }
}

/* ==========================================================================
   RESPONSIVE — nuevas secciones
   ========================================================================== */
@media (max-width: 900px) {
  .branch-cards { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; gap: 3px; min-height: 0; }
  .split-panel { min-height: 62vh; }
}
@media (max-width: 650px) {
  .finder-fab-text { display: none; }
  .finder-fab { padding: 13px; }
  .branch-card { padding: 30px; }
  .split-panel { min-height: 58vh; }
}
