/* ══════════════════════════════════════════════════
   IMPR3X — Sistema de diseño
   Filosofía: oscuro, editorial, industrial refinado
   Tipografía: Syne (display) + Inter Tight (body)
══════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────── */
:root {
  --ink:      #0c0c0c;
  --paper:    #f5f4f1;
  --night:    #111010;
  --coal:     #1a1918;
  --ash:      #2a2826;
  --mist:     #e8e6e1;
  --fog:      #c4c1bb;
  --smoke:    #7a776f;
  --accent:   #87b0ca;
  --accent-d: #5f8fac;
  --white:    #ffffff;
  --wa:       #25d366;

  --f-display: 'Syne', sans-serif;
  --f-body:    'Inter Tight', sans-serif;

  --nav-h:  68px;
  --w:      1320px;
  --gutter: clamp(20px, 4vw, 60px);
  --sec:    clamp(56px, 7vw, 100px);
  --ease:   cubic-bezier(0.19, 1, 0.22, 1);
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--night);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── TIPO ─────────────────────────────────────── */
.d-hero {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  text-transform: uppercase;
  word-break: normal;
  hyphens: none;
}
.d-xl {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: .9;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.d-lg {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.d-md {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.tag {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--smoke);
}
.tag--accent { color: var(--accent); }
.body-lg  { font-size: 1.05rem; font-weight: 300; line-height: 1.7; color: var(--fog); }
.body-md  { font-size: .92rem;  font-weight: 400; line-height: 1.7; color: var(--fog); }
.body-sm  { font-size: .8rem;   font-weight: 400; line-height: 1.65; color: var(--smoke); }

/* ── LAYOUT ──────────────────────────────────── */
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 var(--gutter); }
.sec  { padding: var(--sec) 0; }

/* ── BOTONES ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-body); font-weight: 600;
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 26px; border: none; transition: all .25s var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn-dark   { background: var(--white);  color: var(--ink); }
.btn-dark:hover  { background: var(--accent); }
.btn-ghost  { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.4); }
.btn-ghost-ink { background: transparent; color: var(--ink); border: 1px solid rgba(0,0,0,.2); }
.btn-ghost-ink:hover { background: var(--ink); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: var(--accent-d); }
.btn-wa     { background: var(--wa); color: var(--white); }
.btn-wa:hover { background: #1ab954; }
.btn-wa svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

.lnk {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-body); font-weight: 500;
  font-size: .73rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--smoke); transition: color .2s, gap .25s var(--ease); background: none; border: none;
}
.lnk:hover { color: var(--white); gap: 13px; }
.lnk--accent { color: var(--accent); }
.lnk--accent:hover { color: var(--white); }

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.filled {
  background: rgba(17,16,16,.92);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,.07);
}
.nav__in {
  max-width: var(--w); width: 100%; margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav__logo {
  font-family: var(--f-display); font-weight: 800;
  font-size: 1.55rem; letter-spacing: -.03em; text-transform: uppercase;
  flex-shrink: 0;
}
.nav__logo span { color: var(--accent); }
.nav__links {
  display: flex; gap: 32px; list-style: none;
  flex: 1; justify-content: center;
}
.nav__links a {
  font-size: .72rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.5); transition: color .2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav__ham span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all .3s; }
.nav__ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__drawer {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--night); z-index: 199;
  flex-direction: column; padding: 40px var(--gutter);
  overflow-y: auto;
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(2rem, 6vw, 3rem); letter-spacing: -.02em; text-transform: uppercase;
  color: rgba(255,255,255,.35); padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.nav__drawer a:hover { color: var(--white); }
.nav__drawer .btn-wa { margin-top: 28px; width: fit-content; }

@media (max-width: 900px) {
  .nav__links, .nav__actions .btn-wa { display: none; }
  .nav__ham { display: flex; }
}

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(135,176,202,.07) 0%, transparent 65%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(135,176,202,.04) 0%, transparent 60%);
}
.hero__noise {
  position: absolute; inset: 0; z-index: 0; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}
.hero__body {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  align-items: end;
  gap: 0;
  position: relative; z-index: 1;
  padding: clamp(40px,6vw,100px) var(--gutter) 0;
  max-width: var(--w); margin: 0 auto; width: 100%;
}
.hero__copy { min-width: 0; overflow: hidden; display: flex; flex-direction: column; justify-content: center; padding: clamp(40px,5vw,80px) var(--gutter) clamp(40px,5vw,80px) calc(var(--gutter) + max(0px,(100vw - var(--w))/2)); gap: 24px; }
.hero__eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: ''; width: 32px; height: 1px;
  background: var(--accent);
}
.hero__h1 { color: var(--white); overflow-wrap: break-word; word-break: break-word; }
.hero__h1 .outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,.25);
  color: transparent;
}
.hero__h1 .accent { color: var(--accent); }
.hero__sub {
  margin-top: 28px;
  max-width: 400px;
  font-size: 1rem; font-weight: 300; line-height: 1.72;
  color: rgba(255,255,255,.45);
}
.hero__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero__img {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero__img-inner {
  width: 100%; max-width: 480px;
  aspect-ratio: 3/4;
  position: relative;
}
.hero__img img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: bottom center;
  filter: drop-shadow(0 40px 80px rgba(135,176,202,.15));
}
.hero__img-badge {
  position: absolute; top: 32px; right: 0;
  background: var(--coal); border: 1px solid rgba(255,255,255,.08);
  padding: 10px 16px;
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--smoke);
}
.hero__img-badge strong { display: block; font-family: var(--f-display); font-weight: 800; font-size: 1.6rem; color: var(--accent); letter-spacing: -.02em; margin-bottom: 1px; }
.hero__scroll {
  padding: 0 var(--gutter) 32px;
  max-width: var(--w); margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}
.hero__scroll-line { flex: 1; height: 1px; background: rgba(255,255,255,.08); }
.hero__scroll-txt {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.2); padding: 0 20px;
}
@media (max-width: 768px) {
  .hero__body { grid-template-columns: 1fr; }
  .hero__img { display: none; }
}

/* ── MARQUEE ─────────────────────────────────── */
.marquee-bar {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 13px 0;
  background: var(--coal);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 24px;
  padding: 0 32px;
  font-size: .67rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.35); white-space: nowrap; flex-shrink: 0;
}
.marquee-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ── LLAVEROS SECTION ────────────────────────── */
.llaveros-sec { background: var(--night); padding: var(--sec) 0; }
.llaveros-layout {
  display: grid; grid-template-columns: 300px 1fr;
  gap: clamp(40px, 6vw, 96px); align-items: start;
}
.llaveros-sticky {
  position: sticky; top: calc(var(--nav-h) + 28px);
}
.llaveros-sticky .d-md { margin: 14px 0 20px; }
.llaveros-sticky p { font-size: .9rem; color: rgba(255,255,255,.4); line-height: 1.75; margin-bottom: 24px; }
.price-band {
  border: 1px solid rgba(135,176,202,.25);
  padding: 16px 20px; margin-bottom: 28px;
}
.price-band__main {
  font-family: var(--f-display); font-weight: 800;
  font-size: 1.5rem; color: var(--accent); letter-spacing: -.02em;
  margin-bottom: 6px;
}
.price-band__main small { font-size: .75rem; font-weight: 700; color: var(--smoke); letter-spacing: .04em; }
.price-band__tiers {
  display: flex; flex-direction: column; gap: 3px;
  margin-top: 8px;
  font-size: .72rem; color: rgba(255,255,255,.3); letter-spacing: .04em;
}
.prod-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.prod-card {
  aspect-ratio: 1; overflow: hidden; cursor: pointer;
  background: var(--coal); position: relative;
}
.prod-card img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 5%;
  transition: transform .6s var(--ease), filter .4s;
}
.prod-card:hover img { transform: scale(1.08); filter: brightness(1.08); }
.prod-card__cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  transform: translateY(100%); transition: transform .35s var(--ease);
}
.prod-card:hover .prod-card__cap { transform: translateY(0); }
.prod-card__cap-name {
  font-size: .65rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
}
.prod-card__cap-desc { font-size: .62rem; color: rgba(255,255,255,.4); margin-top: 2px; }
@media (max-width: 900px) { .llaveros-layout { grid-template-columns: 1fr; } .llaveros-sticky { position: static; } }
@media (max-width: 480px) { .prod-grid { grid-template-columns: repeat(2,1fr); } }

/* ── TROFEOS SECTION ─────────────────────────── */
.trofeos-sec {
  background: var(--paper); color: var(--ink);
  padding: var(--sec) 0;
}
.trofeos-sec .tag { color: var(--smoke); }
.trofeos-sec .d-xl { color: var(--ink); }
.trofeos-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,80px); align-items: end;
  margin-bottom: clamp(40px,5vw,72px);
}
.trofeos-header__copy h2 { margin: 14px 0 20px; }
.trofeos-header__copy p { max-width: 380px; color: var(--smoke); font-size: .92rem; line-height: 1.75; }
.trofeos-header__prices { display: flex; gap: 3px; }
.p-tile {
  flex: 1; background: var(--mist); padding: 20px 18px;
}
.p-tile__lbl { font-size: .62rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--smoke); margin-bottom: 6px; }
.p-tile__val { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; color: var(--ink); letter-spacing: -.02em; }
.p-tile__val small { font-size: .75rem; font-weight: 500; color: var(--smoke); }
.p-tile__note { font-size: .68rem; color: var(--smoke); margin-top: 4px; }
.trofeos-sublbl {
  font-size: .65rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--fog); margin-bottom: 12px;
  padding-bottom: 10px; border-bottom: 1px solid var(--mist);
}
.trofeos-sublbl--dark { color: var(--smoke); border-color: rgba(255,255,255,.08); }
.grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.tile {
  aspect-ratio: 1; overflow: hidden;
  background: var(--mist); position: relative;
}
.tile.dark { background: var(--coal); }
.tile img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 5%;
  transition: transform .55s var(--ease);
}
.tile:hover img { transform: scale(1.06); }
@media (max-width: 768px) {
  .trofeos-header { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: repeat(2,1fr); }
}

/* ── HOSTELERÍA ──────────────────────────────── */
.host-sec { background: var(--night); padding: var(--sec) 0; }
.host-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.host-img-main {
  aspect-ratio: 1; overflow: hidden; background: var(--coal);
}
.host-img-main img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 5%;
  transition: transform .6s var(--ease);
}
.host-img-main:hover img { transform: scale(1.05); }
.host-copy {
  background: var(--coal); padding: clamp(32px,5vw,64px);
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
}
.host-copy h2 { margin: 12px 0 0; }
.host-prods-list { display: flex; flex-direction: column; gap: 2px; margin-top: 4px; }
.host-prod {
  display: flex; align-items: center; gap: 0;
  background: var(--ash);
}
.host-prod__accent { width: 3px; align-self: stretch; background: var(--accent); flex-shrink: 0; }
.host-prod__body { padding: 12px 16px; }
.host-prod__name { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.host-prod__desc { font-size: .75rem; color: rgba(255,255,255,.35); margin-top: 2px; }
@media (max-width: 768px) { .host-layout { grid-template-columns: 1fr; } }

/* ── PERSONALIZACIÓN ─────────────────────────── */
.pers-sec { background: var(--coal); padding: var(--sec) 0; }
.pers-header { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; margin-bottom: clamp(40px,5vw,72px); }
.pers-header p { color: rgba(255,255,255,.4); font-size: .92rem; line-height: 1.75; }
.pers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.pers-item { background: var(--ash); padding: clamp(24px,3vw,40px) 24px; }
.pers-icon { font-size: 1.6rem; margin-bottom: 16px; }
.pers-title {
  font-family: var(--f-display); font-weight: 700;
  font-size: .95rem; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 10px;
}
.pers-desc { font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.7; }
@media (max-width: 900px) {
  .pers-header { grid-template-columns: 1fr; }
  .pers-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) { .pers-grid { grid-template-columns: 1fr; } }

/* ── GALERÍA TRABAJOS ────────────────────────── */
.gallery-sec { background: var(--night); padding: var(--sec) 0; }
.gallery-header { display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: clamp(28px,4vw,52px); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  grid-auto-rows: 200px;
  gap: 2px;
}
.gal-cell { overflow: hidden; background: var(--coal); position: relative; }
.gal-cell.span2 { grid-column: span 2; }
.gal-cell.span3 { grid-column: span 3; }
.gal-cell.tall  { grid-row: span 2; }
.gal-cell img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 4%;
  transition: transform .6s var(--ease);
}
.gal-cell.light { background: var(--paper); }
.gal-cell.light img { filter: none; }
.gal-cell:hover img { transform: scale(1.07); }
.gal-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 14px;
  background: linear-gradient(transparent 50%, rgba(0,0,0,.6));
  opacity: 0; transition: opacity .3s;
}
.gal-cell:hover .gal-overlay { opacity: 1; }
.gal-label { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3,1fr); grid-auto-rows: 160px; }
  .gal-cell.span3 { grid-column: span 3; }
  .gal-cell.span2 { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 140px; }
  .gal-cell.span3 { grid-column: span 2; }
}

/* ── PROCESO ─────────────────────────────────── */
.proceso-sec { background: var(--coal); padding: var(--sec) 0; }
.proceso-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: clamp(32px,4vw,56px); }
.step { background: var(--ash); padding: clamp(24px,3vw,40px) 28px; }
.step__n {
  font-family: var(--f-display); font-weight: 800;
  font-size: 4rem; line-height: 1; letter-spacing: -.04em;
  color: rgba(135,176,202,.1); margin-bottom: 20px;
}
.step__t {
  font-family: var(--f-display); font-weight: 700;
  font-size: 1rem; text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 10px;
}
.step__d { font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.75; }
@media (max-width: 900px) { .proceso-steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .proceso-steps { grid-template-columns: 1fr; } }

/* ── RESEÑAS ─────────────────────────────────── */
.resenas-sec { background: var(--night); padding: var(--sec) 0; }
.resenas-top { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-bottom: clamp(32px,4vw,56px); }
.score-block { display: flex; align-items: baseline; gap: 10px; }
.score-n {
  font-family: var(--f-display); font-weight: 800;
  font-size: 4rem; line-height: 1; letter-spacing: -.04em; color: var(--white);
}
.score-stars { font-size: 1rem; color: #f5c842; letter-spacing: 2px; }
.score-src { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--smoke); margin-top: 3px; }
.resenas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.r-card {
  background: var(--coal); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
}
.r-card::before {
  content: '"'; position: absolute; top: -12px; right: 16px;
  font-family: var(--f-display); font-size: 7rem; font-weight: 800;
  color: rgba(135,176,202,.05); line-height: 1; pointer-events: none;
}
.r-stars { font-size: .8rem; color: #f5c842; letter-spacing: 2px; }
.r-text { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.75; flex: 1; }
.r-author { font-size: .65rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--smoke); }
.r-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transition: transform .4s var(--ease); transform-origin: left;
}
.r-card:hover::after { transform: scaleX(1); }
.resenas-cta { margin-top: 28px; text-align: center; }
@media (max-width: 768px) { .resenas-grid { grid-template-columns: 1fr; } }

/* ── FAQ ─────────────────────────────────────── */
.faq-sec { background: var(--coal); padding: var(--sec) 0; }
.faq-wrap { max-width: 840px; margin: 0 auto; }
.faq-list { margin-top: clamp(32px,4vw,56px); display: flex; flex-direction: column; gap: 1px; }
.faq-item { background: var(--ash); overflow: hidden; }
.faq-btn {
  width: 100%; background: none; border: none; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; text-align: left;
}
.faq-q {
  font-family: var(--f-display); font-weight: 700;
  font-size: .95rem; letter-spacing: .03em; text-transform: uppercase; color: var(--white);
}
.faq-ico {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--accent);
  transition: transform .3s var(--ease), background .2s;
}
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--accent); color: var(--ink); }
.faq-body {
  max-height: 0; overflow: hidden;
  font-size: .88rem; color: rgba(255,255,255,.4); line-height: 1.75;
  transition: max-height .45s var(--ease), padding .3s;
  padding: 0 24px;
}
.faq-item.open .faq-body { max-height: 300px; padding-bottom: 22px; }

/* ── CTA FINAL ───────────────────────────────── */
.cta-sec {
  padding: clamp(80px,12vw,160px) 0;
  background: var(--paper); color: var(--ink);
  text-align: center; position: relative; overflow: hidden;
}
.cta-sec::before {
  content: 'IMPR3X';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(6rem, 20vw, 20rem); letter-spacing: -.06em;
  color: rgba(0,0,0,.04); pointer-events: none; white-space: nowrap;
  text-transform: uppercase;
}
.cta-sec .tag { color: var(--smoke); }
.cta-sec h2 { color: var(--ink); margin: 14px auto 22px; max-width: 640px; }
.cta-sec p { color: var(--smoke); max-width: 440px; margin: 0 auto 36px; font-size: .95rem; line-height: 1.75; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--ink); color: var(--white);
  padding: clamp(48px,6vw,80px) 0 28px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: clamp(24px,3vw,56px); padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__brand { font-family: var(--f-display); font-weight: 800; font-size: 1.6rem; letter-spacing: -.03em; display: block; margin-bottom: 10px; }
.footer__brand span { color: var(--accent); }
.footer__desc { font-size: .82rem; color: rgba(255,255,255,.3); line-height: 1.7; margin-bottom: 20px; }
.footer__contact a, .footer__contact p {
  font-size: .82rem; color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
  transition: color .15s;
}
.footer__contact a:hover { color: var(--white); }
.footer__col-h {
  font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.2); margin-bottom: 16px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .82rem; color: rgba(255,255,255,.4); transition: color .15s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; }
.footer__copy { font-size: .72rem; color: rgba(255,255,255,.2); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: .72rem; color: rgba(255,255,255,.2); transition: color .15s; }
.footer__legal a:hover { color: rgba(255,255,255,.6); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ── WA FLOAT ────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  width: 54px; height: 54px;
  background: var(--wa); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.35);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,.5); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ── INNER PAGE HERO ─────────────────────────── */
.page-hero {
  background: var(--night); color: var(--white);
  padding: calc(var(--nav-h) + clamp(40px,6vw,80px)) 0 clamp(48px,6vw,80px);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute;
  top: 0; right: 0; width: 40%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(135,176,202,.06), transparent 70%);
  pointer-events: none;
}
.page-hero .breadcrumb { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: 14px; }
.page-hero .breadcrumb a { transition: color .15s; }
.page-hero .breadcrumb a:hover { color: rgba(255,255,255,.5); }
.page-hero h1 { margin: 14px 0 22px; }
.page-hero__sub { max-width: 520px; font-size: 1rem; color: rgba(255,255,255,.4); line-height: 1.75; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* ── PRICE TABLE ─────────────────────────────── */
.price-tbl { width: 100%; border-collapse: collapse; font-size: .85rem; }
.price-tbl th {
  font-size: .62rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  text-align: left; padding: 10px 16px; background: var(--ash); color: rgba(255,255,255,.35);
}
.price-tbl td { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.05); color: rgba(255,255,255,.5); }
.price-tbl td:last-child { color: var(--white); font-weight: 500; }
.price-tbl tr:hover td { background: rgba(255,255,255,.02); }
.price-note { font-size: .72rem; color: rgba(255,255,255,.25); margin-top: 10px; }

/* ── REVEAL ──────────────────────────────────── */
.rev { opacity: 1; transform: none; }
.rev.in { opacity: 1; transform: none; }
.d1 { } .d2 { } .d3 { } .d4 { }

/* ── GLOBAL FIXES ── */
.rev, .rev.d1, .rev.d2, .rev.d3, .rev.d4 { opacity: 1 !important; transform: none !important; }
.prod-card img  { padding: 4% !important; }
.tile img       { padding: 4% !important; }
.gal-cell img   { padding: 3% !important; }
.host-img img, .host-img-main img { padding: 4% !important; }
.hero__img img  { padding: 5% !important; }

/* ── HERO VISUAL OVERRIDE (works with existing HTML) ── */
.hero {
  height: 100svh !important;
  background: var(--night) !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  padding-top: var(--nav-h) !important;
}
.hero__bg, .hero__noise { display: none !important; }
.hero__body {
  position: relative !important;
  z-index: 1 !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  max-width: var(--w) !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: clamp(28px,3.5vw,52px) var(--gutter) clamp(28px,3.5vw,48px) !important;
  gap: 0 !important;
  grid-template-columns: unset !important;
  align-items: unset !important;
}
/* Eyebrow */
.hero__eyebrow {
  font-size: .6rem !important;
  font-weight: 500 !important;
  letter-spacing: .18em !important;
  color: rgba(255,255,255,.25) !important;
  margin-bottom: clamp(16px,2.5vw,28px) !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.hero__eyebrow::before {
  content: '' !important;
  width: 24px !important; height: 1px !important;
  background: var(--accent) !important;
  flex-shrink: 0 !important;
}
/* H1 — big editorial type */
.hero__h1, .d-hero {
  font-family: var(--f-display) !important;
  font-weight: 800 !important;
  font-size: clamp(2rem, 5.2vw, 5.8rem) !important;
  line-height: .87 !important;
  letter-spacing: -.04em !important;
  text-transform: uppercase !important;
  color: var(--white) !important;
  word-break: normal !important;
  hyphens: none !important;
  white-space: normal !important;
  margin-bottom: clamp(16px,2.5vw,24px) !important;
}
.hero__h1 .outline, .d-hero .outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,.18) !important;
  color: transparent !important;
}
.hero__h1 .accent, .d-hero .accent { color: var(--accent) !important; }
/* Sub */
.hero__sub {
  font-size: .88rem !important;
  font-weight: 300 !important;
  line-height: 1.75 !important;
  color: rgba(255,255,255,.38) !important;
  max-width: 480px !important;
  margin-bottom: 20px !important;
}
/* Actions */
.hero__actions { margin-bottom: clamp(20px,3vw,32px) !important; }
/* Hide old image panel — hero is purely typographic */
.hero__img { display: none !important; }
/* Bottom bar with stats */
.hero__copy {
  min-width: 0 !important;
  overflow: hidden !important;
  padding-bottom: 0 !important;
}
/* Stats strip at bottom */
.hero__scroll { display: none !important; }

/* ── CONTACT FIX ── */
.contact-section { overflow: visible !important; }
.contact-left, .contact-left-panel {
  padding-top: clamp(36px,4vw,60px) !important;
}

/* ── INNER PAGE H1 FIX ── */
.page-hero h1,
.page-hero .d-xl {
  font-size: clamp(2.2rem, 4.5vw, 4.8rem) !important;
  line-height: .93 !important;
}

/* ── FAQ H2 ── */
.faq-wrap .d-xl {
  font-size: clamp(2rem, 3.5vw, 3.8rem) !important;
}

/* ── LLAVEROS STICKY H2 ── */
.llaveros-sticky h2 {
  font-size: clamp(1.1rem, 1.8vw, 1.6rem) !important;
  line-height: 1.05 !important;
}

/* ── ALL REV VISIBLE ── */
.rev, .rev.d1, .rev.d2, .rev.d3, .rev.d4 {
  opacity: 1 !important;
  transform: none !important;
}

/* ── IMAGE PADDING ── */
.prod-card img  { padding: 4% !important; }
.tile img       { padding: 4% !important; }
.gal-cell img   { padding: 3% !important; }
.host-img img, .host-img-main img { padding: 4% !important; }

/* ── SECTION H2 SIZES (home sections, not llaveros-sticky) ── */
.trofeos-sec h2,
.host-sec h2,
.pers-sec h2,
.proceso-sec h2,
.resenas-sec h2 {
  font-size: clamp(1.8rem, 3.2vw, 3.4rem) !important;
  line-height: .95 !important;
}

/* ── MEDALLAS ON HOME (light images need dark bg) ── */
#medallas .tile {
  background: var(--coal) !important;
}
#medallas .tile img {
  filter: brightness(1.05);
}

/* ── TROFEOS PAGE: 4-col grid ── */
.trofeos-sec .grid3 {
  grid-template-columns: repeat(4,1fr) !important;
}
@media (max-width:768px) {
  .trofeos-sec .grid3 { grid-template-columns: repeat(2,1fr) !important; }
}
