/* ===== UY.PHOTOSHOP — hoja de estilo unica ===== */

@font-face {
  font-family: 'Anton';
  src: url('../fonts/anton-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

:root {
  --bg: #121212;
  --surface: #1E1E1E;
  --surface-2: #262626;
  --line: #2E2E2E;
  --text: #F5F5F5;
  --muted: #BDBDBD;
  --gold: #D4AF37;
  --gold-dim: #A8862A;
  --gold-lite: #E7C55C;
  --marca: #F4E225;
  --ok: #4CAF7D;

  --max: 1200px;
  --pad: clamp(1rem, 4vw, 2.5rem);
  --r: 12px;
  --header-h: 68px;

  --shadow: 0 12px 32px rgba(0, 0, 0, .45);
  --glow: 0 10px 30px rgba(212, 175, 55, .22);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --grad-gold: linear-gradient(135deg, var(--gold-lite) 0%, var(--gold) 45%, #B8912C 100%);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px 620px at 50% -8%, rgba(212, 175, 55, .10), transparent 62%),
    radial-gradient(900px 500px at 100% 42%, rgba(212, 175, 55, .045), transparent 60%);
  background-repeat: no-repeat;
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  animation: aparecer .5s ease both;
}
body.no-scroll { overflow: hidden; }
@keyframes aparecer { from { opacity: 0; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 5px;
}

h1, h2, h3, .display {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  line-height: .98;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0;
}

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(3.5rem, 9vw, 6.5rem); position: relative; }
.section--tint {
  background-image: linear-gradient(180deg, #1B1B1B 0%, #191919 45%, #151515 100%);
}
/* hairline dorada que separa los bloques sin cortar de golpe */
.section--tint::before,
.section--tint::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--line) 18%, rgba(212, 175, 55, .45) 50%, var(--line) 82%, transparent);
}
.section--tint::before { top: 0; }
.section--tint::after { bottom: 0; opacity: .5; }

.eyebrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .65rem;
}
.section-head { margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.section-head h2 { font-size: clamp(1.9rem, 5.5vw, 3rem); }
.section-head p { color: var(--muted); max-width: 56ch; margin: .85rem 0 0; }
.rule {
  width: 54px; height: 3px; margin-top: 1rem; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, .12));
  transition: width .85s var(--ease-out) .15s;
}
.reveal .rule { width: 0; }
.reveal.is-in .rule { width: 54px; }

/* ---------- botones ---------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: .95rem;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease),
              background-color .22s, border-color .22s, color .22s;
  cursor: pointer; text-align: center;
}
.btn:active { transform: translateY(0) scale(.97); }
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

/* brillo que cruza el boton al pasar el mouse */
.btn::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -140%; width: 55%; z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-18deg); opacity: 0;
}
.btn:hover::after { animation: brillo .75s var(--ease-out); }
@keyframes brillo {
  from { left: -140%; opacity: 1; }
  to { left: 160%; opacity: 1; }
}

.btn--gold {
  background: var(--grad-gold); background-size: 160% 160%; color: #17130A;
  box-shadow: 0 6px 18px rgba(212, 175, 55, .18);
  transition: transform .28s var(--ease-out), box-shadow .28s, background-position .5s var(--ease);
}
.btn--gold:hover { background-position: 100% 0; transform: translateY(-2px); box-shadow: var(--glow); }
.btn--ghost { border: 1px solid var(--line); color: var(--text); }
.btn--ghost:hover {
  border-color: var(--gold); color: var(--gold); transform: translateY(-2px);
  background: rgba(212, 175, 55, .06); box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
}
.btn--wa { background: linear-gradient(135deg, #2EE375, #25D366 55%, #14a34c); color: #06301A; }
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37, 211, 102, .3); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

/* ---------- header ---------- */
.header {
  position: fixed; inset: 0 0 auto; z-index: 90; height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .35s var(--ease), border-color .35s, backdrop-filter .35s, height .35s var(--ease);
  border-bottom: 1px solid transparent;
}
/* velo superior para que el logo se lea sobre fotos claras */
.header::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .78), rgba(0, 0, 0, .25) 62%, transparent);
  transition: opacity .35s;
}
.header.is-solid::before { opacity: 0; }
.header.is-solid {
  background: linear-gradient(180deg, rgba(20, 20, 20, .95), rgba(18, 18, 18, .88));
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line);
}
/* barra de progreso de lectura */
.header::after {
  content: ''; position: absolute; left: 0; bottom: -1px; height: 2px;
  width: var(--progreso, 0%); border-radius: 0 2px 2px 0;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold) 60%, var(--gold-lite));
  opacity: 0; transition: opacity .35s;
}
.header.is-solid::after { opacity: 1; }
.header__inner { display: flex; align-items: center; gap: 1rem; width: 100%; }

.logo { display: flex; flex-direction: column; line-height: 1; margin-right: auto; }
.logo img {
  height: 38px; width: auto; display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .6));
  transition: height .35s var(--ease), transform .35s var(--ease-out), filter .35s;
}
.logo:hover img { transform: translateY(-1px) scale(1.02); filter: drop-shadow(0 3px 14px rgba(244, 226, 37, .28)); }
.header.is-solid .logo img { height: 32px; }
/* variante en texto (la usa el panel de administracion) */
.logo b {
  font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.32rem; letter-spacing: .02em;
}
.logo b span { color: var(--gold); }
.logo small {
  font-size: .5rem; letter-spacing: .2em; color: var(--muted);
  text-transform: uppercase; margin-top: 3px;
}

.nav { display: flex; gap: 1.6rem; }
.nav a {
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); padding-block: .4rem; position: relative;
  transition: color .25s var(--ease), transform .25s var(--ease-out);
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lite));
  transition: right .3s var(--ease-out);
}
.nav a:hover { color: var(--text); transform: translateY(-1px); }
.nav a.is-active { color: var(--text); }
.nav a:hover::after, .nav a.is-active::after { right: 0; }

.header__actions { display: flex; align-items: center; gap: .5rem; }
.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 8px;
  color: var(--muted); position: relative;
  transition: color .22s, background-color .22s, transform .25s var(--ease-out);
}
.icon-btn:hover { color: var(--gold); background: rgba(255, 255, 255, .06); transform: translateY(-1px); }
.icon-btn:active { transform: scale(.92); }
.icon-btn svg { width: 21px; height: 21px; }

.cart-count {
  position: absolute; top: 4px; right: 3px; min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 9px; background: var(--grad-gold); color: #17130A;
  font-size: .62rem; font-weight: 600; display: none; place-items: center; line-height: 1;
  box-shadow: 0 2px 8px rgba(212, 175, 55, .45);
}
.cart-count.is-on { display: grid; }
.cart-count.pop { animation: pop .45s var(--ease-out); }
@keyframes pop {
  0% { transform: scale(.3); }
  55% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.burger { display: none; }

/* ---------- drawer movil ---------- */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); z-index: 100;
  background: linear-gradient(180deg, #1F1F1F, #171717);
  border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform .42s var(--ease-out), box-shadow .42s;
  display: flex; flex-direction: column; overflow-y: auto;
}
.drawer.is-open { transform: none; box-shadow: -24px 0 60px rgba(0, 0, 0, .55); }
.drawer.is-open nav a { animation: entraLat .45s var(--ease-out) both; }
.drawer.is-open nav a:nth-child(1) { animation-delay: .06s; }
.drawer.is-open nav a:nth-child(2) { animation-delay: .11s; }
.drawer.is-open nav a:nth-child(3) { animation-delay: .16s; }
.drawer.is-open nav a:nth-child(4) { animation-delay: .21s; }
.drawer.is-open nav a:nth-child(5) { animation-delay: .26s; }
.drawer.is-open nav a:nth-child(6) { animation-delay: .31s; }
@keyframes entraLat { from { opacity: 0; transform: translateX(22px); } }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--pad); border-bottom: 1px solid var(--line);
}
.drawer__head h3 { font-size: 1.05rem; }
.drawer__body { padding: 1.1rem var(--pad); flex: 1; }
.drawer__foot { padding: 1.1rem var(--pad); border-top: 1px solid var(--line); background: var(--bg); }
.drawer nav { display: flex; flex-direction: column; gap: .25rem; }
.drawer nav a {
  padding: .8rem 0; border-bottom: 1px solid var(--line);
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: .9rem;
  transition: color .22s, padding-left .28s var(--ease-out);
}
.drawer nav a:hover, .drawer nav a.is-active { color: var(--gold); padding-left: .5rem; }
.scrim {
  position: fixed; inset: 0; z-index: 95; background: rgba(0, 0, 0, .65);
  opacity: 0; pointer-events: none; transition: opacity .3s;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.scrim.is-on { opacity: 1; pointer-events: auto; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: min(100svh, 780px);
  display: flex; align-items: flex-end; padding-top: var(--header-h);
  overflow: hidden; isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s var(--ease); background-size: cover; background-position: center;
  transform: scale(1.05);
}
/* zoom lento mientras la imagen esta a la vista */
.hero__slide.is-on { opacity: 1; animation: kenburns 9s var(--ease) forwards; }
@keyframes kenburns {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, var(--bg) 2%, rgba(18, 18, 18, .72) 42%, rgba(18, 18, 18, .35) 100%),
    linear-gradient(to right, rgba(18, 18, 18, .9) 0%, rgba(18, 18, 18, .25) 62%, transparent 100%);
}
/* resplandor dorado que respira detras del titulo */
.hero::after {
  content: ''; position: absolute; z-index: -1; left: -10%; bottom: -20%;
  width: min(760px, 90vw); height: min(760px, 90vw); border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(212, 175, 55, .16), transparent 66%);
  animation: respirar 9s ease-in-out infinite;
}
@keyframes respirar {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}
.hero__inner { padding-block: clamp(2.5rem, 7vw, 4.5rem); width: 100%; }
.hero__inner > * { animation: entraArriba .95s var(--ease-out) both; }
.hero__inner > *:nth-child(1) { animation-delay: .1s; }
.hero__inner > *:nth-child(2) { animation-delay: .24s; }
.hero__inner > *:nth-child(3) { animation-delay: .36s; }
.hero__inner > *:nth-child(4) { animation-delay: .48s; }
@keyframes entraArriba { from { opacity: 0; transform: translateY(26px); } }
.hero h1 { font-size: clamp(2.7rem, 11vw, 5.5rem); max-width: 15ch; }
.hero h1 .gold {
  display: block;
  background: linear-gradient(100deg, #F3DC8A 0%, var(--gold) 42%, #B8912C 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.hero__lead {
  color: var(--muted); font-size: clamp(1rem, 2.4vw, 1.15rem);
  max-width: 42ch; margin: 1.4rem 0 2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero__dots { display: flex; gap: 7px; margin-top: 2.5rem; }
.hero__dots button {
  width: 26px; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, .28);
  transition: background .35s var(--ease), width .35s var(--ease-out);
}
.hero__dots button:hover { background: rgba(255, 255, 255, .55); }
.hero__dots button.is-on {
  background: linear-gradient(90deg, var(--gold), var(--gold-lite)); width: 40px;
  box-shadow: 0 0 12px rgba(212, 175, 55, .55);
}

/* ---------- tira de confianza ---------- */
.trust { border-block: 1px solid var(--line); background: linear-gradient(180deg, #1C1C1C, #171717); }
.trust__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px; background: var(--line);
}
.trust__item {
  background: var(--surface); padding: 1.5rem var(--pad);
  display: flex; gap: .85rem; align-items: center;
  transition: background .3s var(--ease);
}
.trust__item:hover { background: linear-gradient(135deg, #232323, #1C1C1C); }
.trust__item svg {
  width: 26px; height: 26px; color: var(--gold); flex-shrink: 0;
  transition: transform .35s var(--ease-out);
}
.trust__item:hover svg { transform: translateY(-2px) scale(1.1); }
.trust__item b { display: block; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.trust__item span { font-size: .78rem; color: var(--muted); }

/* ---------- pasos ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.5rem; }
.step { position: relative; transition: transform .35s var(--ease-out); }
.step:hover { transform: translateY(-4px); }
.step__n {
  font-family: 'Anton', sans-serif; font-size: 1.05rem; letter-spacing: .06em;
  background: linear-gradient(90deg, var(--gold), var(--gold-lite));
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.step svg {
  width: 30px; height: 30px; color: var(--gold); margin-bottom: .9rem;
  transition: transform .4s var(--ease-out), filter .4s;
}
.step:hover svg { transform: scale(1.12) rotate(-4deg); filter: drop-shadow(0 4px 12px rgba(212, 175, 55, .4)); }
.step h3 { font-size: 1.02rem; margin-block: .35rem .5rem; letter-spacing: .04em; }
.step p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- carruseles horizontales ---------- */
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr);
  gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: .75rem; scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.rail > * { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.rail-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.rail-nav { display: flex; gap: .5rem; }
.rail-nav button {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--muted);
  transition: border-color .25s, color .25s, transform .3s var(--ease-out), background .25s;
}
.rail-nav button:hover {
  border-color: var(--gold); color: var(--gold); transform: scale(1.08);
  background: rgba(212, 175, 55, .07);
}
.rail-nav button:active { transform: scale(.94); }
.rail-nav svg { width: 17px; height: 17px; }

/* ---------- categorias ---------- */
.cat-card {
  position: relative; aspect-ratio: 3 / 4; border-radius: var(--r); overflow: hidden;
  background: var(--surface-2); display: flex; align-items: flex-end; justify-content: center;
  padding: 1rem; text-align: center; border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), border-color .3s, box-shadow .4s;
}
.cat-card:hover {
  transform: translateY(-5px); border-color: var(--gold-dim);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .45);
}
.cat-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .5; transition: opacity .35s var(--ease), transform .6s var(--ease-out);
}
.cat-card:hover img { opacity: .78; transform: scale(1.08); }
/* velo inferior para que el nombre se lea siempre */
.cat-card::after {
  content: ''; position: absolute; inset: auto 0 0; height: 62%; pointer-events: none;
  background: linear-gradient(to top, rgba(10, 10, 10, .92), transparent);
  transition: opacity .35s;
}
.cat-card:hover::after { opacity: .8; }
.cat-card span {
  position: relative; z-index: 1; font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .9);
  transition: color .3s, letter-spacing .35s var(--ease-out);
}
.cat-card:hover span { color: var(--gold-lite); letter-spacing: .18em; }

/* ---------- tarjeta de diseno ---------- */
.card { display: flex; flex-direction: column; gap: .7rem; cursor: pointer; }
.card__media {
  position: relative; border-radius: var(--r); overflow: hidden;
  background: var(--surface-2); border: 1px solid var(--line); aspect-ratio: 3 / 4;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease), border-color .3s;
}
.card:hover .card__media {
  transform: translateY(-6px); border-color: var(--gold-dim);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .5), 0 0 0 1px rgba(212, 175, 55, .12);
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.07); }
.card__media::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--r);
  box-shadow: inset 0 -70px 60px -50px rgba(0, 0, 0, .85);
  background: linear-gradient(180deg, transparent 58%, rgba(212, 175, 55, .16));
  opacity: 1; pointer-events: none;
  transition: background .45s var(--ease);
}
.card:hover .card__media::after { background: linear-gradient(180deg, transparent 42%, rgba(212, 175, 55, .3)); }
.card__tag {
  position: absolute; top: .6rem; left: .6rem; z-index: 1;
  padding: .25rem .55rem; border-radius: 5px; font-size: .62rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: rgba(18, 18, 18, .82); color: var(--gold); border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: border-color .3s, background .3s;
}
.card:hover .card__tag { border-color: var(--gold-dim); background: rgba(18, 18, 18, .92); }
.card h3 { font-size: .95rem; letter-spacing: .03em; transition: color .25s; }
.card:hover h3 { color: var(--gold-lite); }
.card__price { color: var(--muted); font-size: .82rem; }
.card__price b { color: var(--gold); font-weight: 600; }

.grid-cards {
  display: grid; gap: clamp(1rem, 2.5vw, 1.6rem);
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
@media (max-width: 480px) {
  .grid-cards { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
}

/* ---------- filtros ---------- */
.chips { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .5rem; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0; padding: .5rem 1.05rem; border-radius: 999px; border: 1px solid var(--line);
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
  transition: border-color .25s, color .25s, background .3s var(--ease), transform .25s var(--ease-out);
}
.chip:hover { border-color: var(--gold); color: var(--text); transform: translateY(-2px); }
.chip.is-on {
  background: var(--grad-gold); border-color: var(--gold); color: #17130A;
  box-shadow: 0 6px 16px rgba(212, 175, 55, .25);
}

/* ---------- productos / precios ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; }
.price-card {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #212121 0%, var(--surface) 55%, #1A1A1A 100%);
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem;
  transition: border-color .3s, transform .35s var(--ease-out), box-shadow .35s var(--ease);
}
/* halo dorado que aparece al pasar el mouse */
.price-card::before {
  content: ''; position: absolute; top: -60%; right: -30%;
  width: 240px; height: 240px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(212, 175, 55, .18), transparent 68%);
  opacity: 0; transition: opacity .45s var(--ease), transform .6s var(--ease-out);
  transform: scale(.7);
}
.price-card:hover::before { opacity: 1; transform: scale(1); }
.price-card:hover {
  border-color: var(--gold-dim); transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .42);
}
.price-card > * { position: relative; }
.price-card h3 { font-size: 1.5rem; }
.price-card .amount {
  font-family: 'Anton', sans-serif; font-size: 2.1rem; line-height: 1;
  background: linear-gradient(100deg, var(--gold-lite), var(--gold) 55%, #B8912C);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.price-card .amount small {
  font-size: .95rem; color: var(--muted); font-family: 'Inter', sans-serif;
  -webkit-text-fill-color: var(--muted);
}
.price-card ul { list-style: none; margin: .35rem 0 1rem; padding: 0; display: grid; gap: .4rem; }
.price-card li { color: var(--muted); font-size: .85rem; display: flex; gap: .5rem; align-items: flex-start; }
.price-card li svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.price-card .btn { margin-top: auto; }
.price-card.is-soon { opacity: .62; }
.badge-soon {
  align-self: flex-start; padding: .2rem .6rem; border-radius: 5px;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--gold);
  font-size: .6rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
}

/* ---------- promos ---------- */
.promo {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--surface) 0%, #241f12 100%);
  border: 1px solid var(--gold-dim); border-radius: var(--r); padding: 1.6rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.promo::after {
  content: ''; position: absolute; top: -55%; right: -18%;
  width: 190px; height: 190px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, .17), transparent 68%);
}
.promo h3 { font-size: 1.35rem; }
.promo p { color: var(--muted); font-size: .88rem; margin: 0; }
.promo__price { display: flex; align-items: baseline; gap: .6rem; margin-top: .5rem; }
.promo__price b { font-family: 'Anton', sans-serif; font-size: 2rem; color: var(--gold); line-height: 1; }
.promo__price s { color: var(--muted); font-size: .95rem; }

/* ---------- nosotros ---------- */
.about { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .about { grid-template-columns: 1.15fr .85fr; } }
.about p { color: var(--muted); }
.about__img {
  position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  align-self: center; box-shadow: 0 18px 44px rgba(0, 0, 0, .38);
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .35s;
}
.about__img:hover { transform: translateY(-4px); border-color: var(--gold-dim); box-shadow: 0 24px 54px rgba(0, 0, 0, .5); }
.about__img img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.about__img:hover img { transform: scale(1.04); }
/* velo dorado tenue, para que la foto no quede como un recorte pegado */
.about__img::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(200deg, transparent 55%, rgba(212, 175, 55, .12));
}
/* en escritorio la foto se recorta mas apaisada: si no, queda mucho mas alta que el texto */
@media (min-width: 900px) {
  .about__img img { aspect-ratio: 5 / 4; max-height: 420px; }
}
.reasons { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .7rem; margin-top: 1.6rem; }
.reason {
  display: flex; gap: .55rem; align-items: center; font-size: .87rem;
  transition: transform .3s var(--ease-out), color .25s;
}
.reason:hover { transform: translateX(4px); color: var(--text); }
.reason svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ---------- resenas ---------- */
.review {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #212121, var(--surface) 60%, #1A1A1A);
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.4rem; display: flex; flex-direction: column; gap: .8rem;
  transition: transform .35s var(--ease-out), border-color .3s, box-shadow .35s;
}
.review:hover {
  transform: translateY(-4px); border-color: var(--gold-dim);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .4);
}
.stars {
  color: var(--gold); letter-spacing: .18em; font-size: .9rem;
  text-shadow: 0 0 14px rgba(212, 175, 55, .35);
}
.review p { margin: 0; color: var(--muted); font-size: .92rem; }
.review b { font-size: .85rem; color: var(--text); }

/* ---------- faq ---------- */
.faq { display: grid; gap: .6rem; max-width: 780px; }
.faq details {
  background: linear-gradient(160deg, #1F1F1F, var(--surface));
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 0 1.2rem; transition: border-color .25s, background .3s, box-shadow .3s;
}
.faq details:hover { border-color: #3A3A3A; }
.faq details[open] {
  border-color: var(--gold-dim);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .3), inset 3px 0 0 -1px var(--gold);
}
.faq details[open] .faq__a { animation: abre .38s var(--ease-out) both; }
@keyframes abre { from { opacity: 0; transform: translateY(-8px); } }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.05rem 0; font-weight: 600; font-size: .95rem;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; width: 9px; height: 9px; flex-shrink: 0;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translateY(-2px); transition: transform .35s var(--ease-out);
}
.faq summary:hover::after { transform: rotate(45deg) translateY(1px); }
.faq details[open] summary::after,
.faq details[open] summary:hover::after { transform: rotate(-135deg) translateY(-2px); }
.faq .faq__a { color: var(--muted); padding-bottom: 1.15rem; margin: 0; font-size: .92rem; }

/* ---------- formulario ---------- */
.form { display: grid; gap: .9rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--line); border-radius: 8px;
  padding: .8rem .9rem; width: 100%;
  transition: border-color .25s, box-shadow .3s var(--ease), background .25s;
}
.field input:hover, .field textarea:hover { border-color: #3C3C3C; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .14);
  background: #171717;
}
.field.is-bad .err { animation: abre .3s var(--ease-out) both; }
.field textarea { resize: vertical; min-height: 118px; }
.field.is-bad input, .field.is-bad textarea { border-color: #E0574A; }
.field .err { color: #E0574A; font-size: .75rem; display: none; }
.field.is-bad .err { display: block; }
.two-col { display: grid; gap: .9rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .two-col { grid-template-columns: 1fr 1fr; } }

/* ---------- contacto ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .9fr 1.1fr; } }
.contact-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.contact-item {
  display: flex; gap: .8rem; align-items: flex-start;
  transition: transform .32s var(--ease-out);
}
.contact-item:hover { transform: translateX(5px); }
.contact-item svg {
  width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; margin-top: 3px;
  transition: transform .35s var(--ease-out), filter .35s;
}
.contact-item:hover svg { transform: scale(1.12); filter: drop-shadow(0 3px 10px rgba(212, 175, 55, .45)); }
.contact-item b { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact-item span, .contact-item a { font-size: .95rem; }
.contact-item a:hover { color: var(--gold); }

/* ---------- footer ---------- */
.footer {
  position: relative; background: linear-gradient(180deg, #111111, #0B0B0B);
  border-top: 1px solid var(--line); padding-block: 3rem 1.5rem;
}
.footer::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 50%, transparent);
  opacity: .55;
}
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer h4 { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 0 0 .9rem; font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer a { color: var(--muted); font-size: .89rem; transition: color .22s, padding-left .28s var(--ease-out); }
.footer li a:hover { color: var(--gold); padding-left: .35rem; }
.footer a:hover { color: var(--gold); }
.footer .logo img { height: 54px; }
.footer .logo:hover img { transform: translateY(-2px) scale(1.02); }
.footer__bottom {
  margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between;
  color: var(--muted); font-size: .78rem;
}
.socials { display: flex; gap: .6rem; margin-top: 1.1rem; }
.socials a {
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 8px;
  display: grid; place-items: center;
  transition: border-color .25s, color .25s, transform .3s var(--ease-out), background .3s;
}
.socials a:hover {
  border-color: var(--gold); color: var(--gold); transform: translateY(-3px);
  background: rgba(212, 175, 55, .08);
}
.socials svg { width: 18px; height: 18px; }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 80;
  display: flex; align-items: center; gap: .55rem;
  background: linear-gradient(135deg, #2EE375, #25D366 60%, #17ab52);
  color: #06301A; font-weight: 600; font-size: .9rem;
  padding: .8rem 1.15rem; border-radius: 999px;
  box-shadow: 0 8px 26px rgba(37, 211, 102, .32);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.wa-float::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .45);
  animation: latido 2.8s var(--ease-out) infinite;
}
@keyframes latido {
  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); }
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 34px rgba(37, 211, 102, .42); }
.wa-float svg { width: 21px; height: 21px; }
@media (max-width: 560px) {
  .wa-float span { display: none; }
  .wa-float { padding: .9rem; }
}

/* ---------- modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 110; display: flex;
  align-items: center; justify-content: center; padding: var(--pad);
  background: rgba(0, 0, 0, .72);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__box {
  background: linear-gradient(165deg, #212121, var(--surface) 60%, #1A1A1A);
  border: 1px solid var(--line); border-radius: 16px;
  width: min(940px, 100%); max-height: 90svh; overflow-y: auto; position: relative;
  box-shadow: var(--shadow);
  opacity: 0; transform: translateY(24px) scale(.97);
  transition: opacity .38s var(--ease-out), transform .38s var(--ease-out);
}
.modal.is-open .modal__box { opacity: 1; transform: none; }
.modal__close {
  position: absolute; top: .7rem; right: .7rem; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(18, 18, 18, .75); color: var(--text); border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: color .25s, border-color .25s, transform .3s var(--ease-out);
}
.modal__close:hover { color: var(--gold); border-color: var(--gold); transform: rotate(90deg); }
.modal__grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 780px) { .modal__grid { grid-template-columns: 1fr 1fr; } }
.modal__media { background: var(--bg); }
.modal__media img { width: 100%; height: 100%; max-height: 62svh; object-fit: contain; }
.modal__body { padding: clamp(1.25rem, 3vw, 2rem); display: flex; flex-direction: column; gap: .9rem; }
.modal__body h2 { font-size: clamp(1.5rem, 4vw, 2rem); }

.spec { display: grid; gap: .55rem; padding: .95rem 0; border-block: 1px solid var(--line); }
.spec div { display: flex; gap: .6rem; font-size: .85rem; color: var(--muted); align-items: flex-start; }
.spec svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }

.size-opts { display: grid; gap: .5rem; }
.size-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 8px;
  cursor: pointer;
  transition: border-color .25s, background .3s var(--ease), transform .25s var(--ease-out), box-shadow .3s;
}
.size-opt:hover { border-color: var(--gold-dim); transform: translateX(3px); }
.size-opt.is-on {
  border-color: var(--gold);
  background: linear-gradient(100deg, rgba(212, 175, 55, .14), rgba(212, 175, 55, .04));
  box-shadow: 0 6px 18px rgba(212, 175, 55, .12);
}
.size-opt b { font-size: .95rem; }
.size-opt span { color: var(--gold); font-weight: 600; }
.size-opt input { position: absolute; opacity: 0; pointer-events: none; }

.total-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: .5rem;
}
.total-row span { color: var(--muted); font-size: .85rem; }
.total-row b { font-family: 'Anton', sans-serif; font-size: 1.9rem; color: var(--gold); }

/* ---------- carrito ---------- */
.cart-item {
  display: flex; gap: .8rem; padding: .9rem 0; border-bottom: 1px solid var(--line);
  animation: entraLat .4s var(--ease-out) both;
}
.cart-item img {
  width: 62px; height: 78px; object-fit: cover; border-radius: 7px;
  border: 1px solid var(--line); flex-shrink: 0; background: var(--surface-2);
}
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__info b { display: block; font-size: .89rem; }
.cart-item__info small { color: var(--muted); font-size: .78rem; }
.cart-item__price { color: var(--gold); font-weight: 600; font-size: .88rem; margin-top: .25rem; display: block; }
.qty { display: flex; align-items: center; gap: .5rem; margin-top: .45rem; }
.qty button {
  width: 25px; height: 25px; border: 1px solid var(--line); border-radius: 6px;
  display: grid; place-items: center; color: var(--muted); font-size: 1rem; line-height: 1;
}
.qty button:hover { border-color: var(--gold); color: var(--gold); }
.qty b { font-size: .85rem; min-width: 18px; text-align: center; }
.cart-item__del { color: var(--muted); align-self: flex-start; padding: .2rem; }
.cart-item__del:hover { color: #E0574A; }
.cart-item__del svg { width: 15px; height: 15px; }
.cart-empty { text-align: center; color: var(--muted); padding: 3rem 0; font-size: .9rem; }

/* ---------- configurador ---------- */
.builder { display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: 1fr; }
@media (min-width: 900px) { .builder { grid-template-columns: 1fr 1fr; align-items: start; } }
.builder__preview {
  position: sticky; top: calc(var(--header-h) + 20px);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(212, 175, 55, .08), transparent 62%),
    linear-gradient(165deg, #212121, var(--surface) 55%, #191919);
  border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1.25rem, 4vw, 2.5rem); display: grid; place-items: center; min-height: 340px;
}
@media (max-width: 899px) {
  /* que la vista previa no empuje los controles fuera de pantalla */
  .builder__preview { position: static; padding: 1.25rem; }
  .frame { max-width: min(340px, 60vw); }
}
.frame {
  position: relative; background: #0A0A0A; border-radius: 4px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .6), 0 0 0 8px #171717, 0 0 0 9px #2A2A2A;
  overflow: hidden; display: grid; place-items: center;
  width: 100%; max-width: 340px;
  transition: aspect-ratio .45s var(--ease-out), max-width .45s var(--ease-out), box-shadow .45s;
}
.frame:hover { box-shadow: 0 26px 55px rgba(0, 0, 0, .68), 0 0 0 8px #171717, 0 0 0 9px var(--gold-dim); }
.frame img { width: 100%; height: 100%; object-fit: cover; animation: aparecer .5s var(--ease-out) both; }
.frame__empty { color: #5A5A5A; font-size: .82rem; text-align: center; padding: 2rem 1rem; }
.frame__empty svg { width: 34px; height: 34px; margin: 0 auto .7rem; display: block; opacity: .5; }

.drop {
  position: relative; overflow: hidden;
  border: 2px dashed var(--line); border-radius: var(--r); padding: 1.6rem 1.1rem;
  text-align: center; cursor: pointer;
  transition: border-color .25s, background .3s var(--ease), transform .3s var(--ease-out);
}
.drop:hover, .drop.is-over {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(212, 175, 55, .09), rgba(212, 175, 55, .02));
}
.drop.is-over { transform: scale(1.02); }
.drop svg {
  width: 30px; height: 30px; color: var(--gold); margin: 0 auto .6rem; display: block;
  transition: transform .4s var(--ease-out);
}
.drop:hover svg, .drop.is-over svg { transform: translateY(-4px); }
.drop b { display: block; font-size: .92rem; }
.drop small { color: var(--muted); font-size: .78rem; }

.orient { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.orient label {
  border: 1px solid var(--line); border-radius: 8px; padding: .8rem;
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  cursor: pointer; font-size: .8rem; font-weight: 600;
  transition: border-color .25s, background .3s var(--ease), transform .28s var(--ease-out);
}
.orient label:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.orient label.is-on {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(212, 175, 55, .14), rgba(212, 175, 55, .03));
}
.orient label i {
  display: block; border: 2px solid currentColor; border-radius: 2px; color: var(--muted);
  transition: color .25s, width .35s var(--ease-out), height .35s var(--ease-out);
}
.orient label.is-on i { color: var(--gold); }
.orient .v i { width: 17px; height: 24px; }
.orient .h i { width: 24px; height: 17px; }
.orient input { position: absolute; opacity: 0; pointer-events: none; }

.note {
  background: var(--surface-2); border-left: 3px solid var(--gold); border-radius: 6px;
  padding: .85rem 1rem; font-size: .84rem; color: var(--muted);
}

/* ---------- avisos ---------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 130%);
  background: linear-gradient(135deg, #242424, var(--surface));
  border: 1px solid var(--gold); color: var(--text);
  padding: .8rem 1.3rem; border-radius: 999px; font-size: .87rem; font-weight: 600;
  z-index: 130; box-shadow: var(--shadow), 0 0 24px rgba(212, 175, 55, .18);
  opacity: 0;
  transition: transform .45s var(--ease-out), opacity .35s var(--ease);
  max-width: calc(100vw - 32px); text-align: center;
}
.toast.is-on { transform: translate(-50%, 0); opacity: 1; }

/* ---------- animacion de entrada ---------- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: none; }
/* los hijos entran uno atras del otro (--i lo pone el JS) */
.reveal--stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 65ms);
}
.reveal--stagger.is-in > * { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: grid; }
  /* el CTA vive en el menu lateral: en el header no entra */
  .hide-sm { display: none !important; }
  .section-head.rail-head { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}
@media (min-width: 901px) {
  .drawer--menu { display: none; }
}
@media (max-width: 560px) {
  .logo img { height: 32px; }
  .header.is-solid .logo img { height: 28px; }
  .footer .logo img { height: 46px; }
}
@media (max-width: 420px) {
  .trust__grid { grid-template-columns: 1fr; }
  .header__actions { gap: .15rem; }
  .icon-btn { width: 38px; height: 38px; }
  .logo img { height: 28px; }
  .header.is-solid .logo img { height: 25px; }
}

/* ---------- sin animaciones si el sistema lo pide ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__slide.is-on, .hero::after, .wa-float::before { animation: none !important; }
  .reveal, .reveal--stagger > * { opacity: 1 !important; transform: none !important; }
  .reveal .rule { width: 54px; }
}
