/* ============================================================
   EPMC · El Productor Mas Caro
   Identidad sonora · CSS principal (v2)
   ============================================================ */

:root {
  --bg: #050505;
  --bg-2: #131313;
  --bg-3: #1c1c1c;
  --text: #FAFAF7;
  --muted: rgba(250, 250, 247, 0.62);
  --red: #FF1E3C;
  --orange: #FF7A29;
  --rose: #FF4D6D;
  --wine: #7A0F22;
  --gold: #FFC53D;
  --border: rgba(250, 250, 247, 0.16);
  --border-strong: rgba(250, 250, 247, 0.34);
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-mono: 'Space Mono', 'Consolas', monospace;
  --radius: 14px;
  --header-h: 76px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; scrollbar-width: thin; scrollbar-color: var(--red) var(--bg); }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
svg { display: block; }

::selection { background: var(--red); color: #fff; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- Ruido analógico sobre todo ---------- */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 250;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 25s steps(5) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--red), var(--wine)); border-radius: 99px; border: 2px solid var(--bg); }

/* ---------------- Tipografía --------------- */

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.02em; line-height: 0.95; }

h1 { font-size: clamp(3rem, 8vw, 6.5rem); text-wrap: balance; }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); text-wrap: balance; }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }

.display { font-family: var(--font-display); text-transform: uppercase; }
.mono, .tag, .price, .kbd { font-family: var(--font-mono); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); }
.muted { color: var(--muted); }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }

/* Texto contorneado */
.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(250, 250, 247, 0.6);
}
.outline--faint { -webkit-text-stroke: 1px rgba(250, 250, 247, 0.14); }

/* Texto holograma dorado */
.hologram {
  background: linear-gradient(100deg, var(--gold), var(--orange) 35%, var(--rose) 65%, var(--gold));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: holo 45s linear infinite;
}
@keyframes holo { to { background-position: 220% 0; } }

/* Línea holograma bajo texto */
.hl-under {
  position: relative;
}
.hl-under::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12em;
  height: 0.09em;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--rose));
  filter: blur(0.3px);
  box-shadow: 0 0 14px rgba(255, 197, 61, 0.35);
}

/* ---------------- Utilidades --------------- */

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.section--alt { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }

.sec-num {
  position: absolute;
  top: 26px;
  right: 4%;
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 13rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(250, 250, 247, 0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 20px;
  background: rgba(5, 5, 5, 0.4);
  backdrop-filter: blur(4px);
}
.tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 12px var(--red); }

.section-head { max-width: 760px; margin-bottom: clamp(2.4rem, 5vw, 4rem); position: relative; z-index: 1; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------------- Divisor EQ --------------- */

.eq-divider { display: flex; align-items: center; justify-content: center; gap: 5px; height: 44px; margin: 0 auto; max-width: 480px; opacity: 0.7; }
.eq-divider i { width: 5px; border-radius: 99px; background: linear-gradient(var(--red), var(--wine)); animation: eq 1.5s ease-in-out infinite; }
.eq-divider span { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.3em; color: var(--muted); text-transform: uppercase; margin: 0 18px; }

/* Barras EQ genéricas (las llena el JS) */
.eq { display: inline-flex; align-items: center; gap: 3px; height: 100%; }
.eq i { width: 100%; height: 20%; background: var(--gold); border-radius: 1px; animation: eq 1.5s ease-in-out infinite; transform-origin: center; }
@keyframes eq {
  0%, 100% { height: 28%; }
  50% { height: 78%; }
}

/* ---------------- Botones --------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  text-align: center;
}
.btn:active { transform: scale(0.97); }

.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 30px rgba(255, 30, 60, 0.35); }
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .55s ease;
}
.btn--primary:hover { background: #ff3049; box-shadow: 0 14px 40px rgba(255, 30, 60, 0.5); transform: translateY(-2px); }
.btn--primary:hover::after { transform: translateX(130%); }

.btn--ghost { background: rgba(5, 5, 5, 0.5); color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--text); transform: translateY(-2px); box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4); }

.btn--gold { background: var(--gold); color: #000; box-shadow: 0 10px 30px rgba(255, 197, 61, 0.25); }
.btn--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .55s ease;
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255, 197, 61, 0.45); }
.btn--gold:hover::after { transform: translateX(130%); }

/* ---------------- Header --------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.97);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transition: background .3s ease;
}
.site-header.is-scrolled { background: rgba(5, 5, 5, 1); border-bottom-color: var(--border-strong); }

.header-inner { width: min(1180px, 92%); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.45rem; letter-spacing: 0.04em; min-height: 44px; }
.logo-mark { color: var(--red); position: relative; }
.logo-mark::after { content: ""; position: absolute; right: -3px; top: -2px; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0.2; } }
.logo-sub { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.22em; color: var(--muted); display: block; line-height: 1.2; margin-top: 2px; }

.nav-desktop { display: flex; align-items: center; gap: 6px; }

.nav-link {
  position: relative;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--text);
  transition: color .15s ease, background .15s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }

.nav-drop { position: relative; }
.nav-drop-btn { display: inline-flex; align-items: center; gap: 8px; }
.nav-drop-btn .chev { transition: transform .2s ease; font-size: 0.7em; color: var(--red); }
.nav-drop:hover .nav-drop-btn .chev, .nav-drop.open .nav-drop-btn .chev { transform: rotate(180deg); }

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 300px;
  background: rgba(19, 19, 19, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  box-shadow: var(--shadow);
}
.nav-drop:hover .nav-drop-menu, .nav-drop.open .nav-drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-drop-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background .15s ease, padding .15s ease;
}
.nav-drop-item:hover { background: rgba(255, 255, 255, 0.05); padding-left: 18px; }
.nav-drop-item strong { font-weight: 600; font-size: 0.98rem; }
.nav-drop-item span { display: block; font-family: var(--font-mono); font-size: 0.68rem; color: var(--muted); margin-top: 3px; letter-spacing: 0.06em; }
.nav-drop-item .d-price { font-family: var(--font-mono); font-size: 0.72rem; color: var(--red); white-space: nowrap; transition: transform .18s ease; }
.nav-drop-item:hover .d-price { transform: translateX(3px); }

.nav-cta { margin-left: 14px; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--text); transition: transform .25s ease, opacity .25s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  background: #050505;
  padding: 32px 6%;
  display: none;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); text-transform: uppercase; font-size: 1.7rem; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-menu .m-sub { font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted); display: block; letter-spacing: 0.08em; margin-top: 2px; }
.mobile-menu .btn { margin-top: 18px; font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.03em; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------------- Hero --------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 55% at 78% 20%, rgba(122, 15, 34, 0.55) 0%, transparent 60%),
    radial-gradient(45% 45% at 15% 85%, rgba(255, 122, 41, 0.16) 0%, transparent 60%),
    var(--bg);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250,250,247,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,250,247,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(70% 70% at 50% 30%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 30%, #000 0%, transparent 80%);
}

/* Palabra gigante de fondo */
.hero-word {
  position: absolute;
  right: -2%;
  top: 8%;
  z-index: -1;
  font-family: var(--font-display);
  font-size: clamp(8rem, 26vw, 24rem);
  line-height: 0.8;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(250, 250, 247, 0.08);
  pointer-events: none;
  user-select: none;
  transform: rotate(8deg);
}

/* Scanlines */
.hero-scan {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, transparent 0 2px, rgba(0, 0, 0, 0.22) 2px 4px);
  opacity: 0.5;
}

.hero-grid { width: min(1180px, 92%); margin-inline: auto; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }

.hero-eyebrow { display: flex; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-bottom: 26px; }
.hero-eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--red); box-shadow: 0 0 8px var(--red); }

.hero-title { font-size: clamp(3rem, 7vw, 5.6rem); max-width: 13ch; }
.hero-title .hl { color: var(--red); }

/* Glitch */
.glitch { position: relative; display: inline-block; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}
.glitch::before { color: var(--rose); z-index: -1; animation: glitchA 30s infinite steps(2, end); }
.glitch::after { color: var(--gold); z-index: -2; animation: glitchB 25s infinite steps(2, end); }
@keyframes glitchA {
  0%, 84% { clip-path: inset(0 0 100% 0); transform: none; opacity: 0; }
  85% { clip-path: inset(12% 0 62% 0); transform: translate(-5px, 2px); opacity: 0.9; }
  89% { clip-path: inset(58% 0 8% 0); transform: translate(4px, -2px); opacity: 0.9; }
  92% { clip-path: inset(30% 0 45% 0); transform: translate(-3px, 1px); opacity: 0.9; }
  96% { clip-path: inset(0 0 100% 0); transform: none; opacity: 0; }
}
@keyframes glitchB {
  0%, 81% { clip-path: inset(0 0 100% 0); transform: none; opacity: 0; }
  82% { clip-path: inset(70% 0 12% 0); transform: translate(5px, 2px); opacity: 0.9; }
  86% { clip-path: inset(8% 0 70% 0); transform: translate(-4px, -2px); opacity: 0.9; }
  90% { clip-path: inset(45% 0 30% 0); transform: translate(3px, 1px); opacity: 0.9; }
  95% { clip-path: inset(0 0 100% 0); transform: none; opacity: 0; }
}

.hero-sub { max-width: 52ch; margin: 28px 0 34px; font-size: clamp(1.08rem, 1.8vw, 1.3rem); color: var(--muted); }
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-meta { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 12px 28px; }
.hero-meta li { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; }
.hero-meta li::before { content: "●"; color: var(--gold); font-size: 0.6rem; text-shadow: 0 0 8px var(--gold); }

.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.3em; color: var(--muted); text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--red), transparent); animation: scrollHint 13s ease-in-out infinite; }
@keyframes scrollHint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------------- Widget Antes / Después ---------------- */

.ab-featured-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.ab-featured-head .af-label { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.ab-featured-head .af-live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.2em; color: var(--gold); }
.ab-featured-head .af-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); animation: blink 1s steps(1) infinite; }

.ab-widget {
  position: relative;
  cursor: pointer;
  background: linear-gradient(160deg, rgba(28, 28, 28, 0.92), rgba(5, 5, 5, 0.96));
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow), 0 0 60px rgba(122, 15, 34, 0.25);
  overflow: hidden;
}
.ab-widget::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 197, 61, 0.05) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: holo 45s linear infinite;
  pointer-events: none;
}
.ab-widget > * { position: relative; z-index: 1; }
.ab-widget audio { display: none; }

.ab-title { display: block; font-family: var(--font-display); font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.ab-tag { display: inline-block; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(255, 197, 61, 0.35); padding: 4px 10px; border-radius: 999px; margin-bottom: 16px; }

.ab-toggle { display: flex; gap: 8px; margin-bottom: 16px; }
.ab-btn { flex: 1; padding: 11px 0; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; background: transparent; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); cursor: pointer; transition: all .18s ease; }
.ab-btn:hover { border-color: var(--border-strong); color: var(--text); }
.ab-btn.is-active { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 0 18px rgba(255, 30, 60, 0.35); }

.ab-controls { display: flex; align-items: center; gap: 12px; }
.ab-controls .p-btn {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(5, 5, 5, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.ab-controls .p-btn:hover { border-color: var(--red); box-shadow: 0 0 18px rgba(255, 30, 60, 0.35); }
.ab-controls .p-btn:active { transform: scale(0.94); }
.ab-controls .p-btn svg { width: 16px; height: 16px; fill: currentColor; }
.ab-controls .p-btn .ico-pause { display: none; }
.ab-widget.is-playing .p-btn .ico-play { display: none; }
.ab-widget.is-playing .p-btn .ico-pause { display: block; }
.ab-widget.is-playing { border-color: rgba(255, 30, 60, 0.55); box-shadow: var(--shadow), 0 0 60px rgba(255, 30, 60, 0.28); }
.ab-seek { flex: 1; height: 4px; background: rgba(255, 255, 255, 0.1); border-radius: 99px; position: relative; cursor: pointer; }
.ab-seek .p-progress { position: absolute; inset: 0 auto 0 0; width: 0%; border-radius: 99px; background: linear-gradient(90deg, var(--red), var(--gold)); box-shadow: 0 0 10px rgba(255, 197, 61, 0.5); }
.ab-seek .p-thumb { position: absolute; right: -6px; top: 50%; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); transform: translateY(-50%); box-shadow: 0 0 12px var(--gold); }
.ab-time { flex: none; min-width: 88px; text-align: right; font-size: 0.72rem; color: var(--muted); }

.ab-empty { display: none; flex-direction: column; align-items: center; gap: 8px; text-align: center; padding: 22px 12px; }
.ab-widget.is-empty .ab-empty { display: flex; }
.ab-widget.is-empty .ab-controls, .ab-widget.is-empty .ab-toggle, .ab-widget.is-empty .ab-title, .ab-widget.is-empty .ab-tag { display: none; }
.ab-empty .ico { font-size: 1.7rem; color: var(--muted); }
.ab-empty p { font-size: 0.85rem; color: var(--muted); }
.ab-empty .mono { font-size: 0.62rem; letter-spacing: 0.1em; color: rgba(250, 250, 247, 0.4); }
.ab-empty .btn { margin-top: 6px; }
.ab-empty input[type="file"] { display: none; }

/* Consola A/B + espectro en vivo */
.ab-widget.is-empty .ab-console, .ab-widget.is-empty .ab-spectrum, .ab-widget.is-empty .ab-visual { display: none; }

.ab-spectrum {
  display: block;
  width: 100%;
  height: 58px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(5, 5, 5, 0.6);
  margin-bottom: 14px;
}

.ab-visual { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.ab-spectrum-wrap { position: relative; flex: 1; min-width: 0; }
.ab-spectrum-wrap .ab-spectrum { margin-bottom: 0; }

.ab-vinyl {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0 1px, rgba(5, 5, 5, 0) 1px 3px),
    #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 24px rgba(255, 30, 60, 0.16);
  position: relative;
  animation: vinyl-spin 3.2s linear infinite;
  animation-play-state: paused;
}
.ab-widget.is-playing .ab-vinyl { animation-play-state: running; }
.ab-vinyl-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 14px rgba(255, 30, 60, 0.5);
}
@keyframes vinyl-spin { to { transform: rotate(360deg); } }

.ab-mode {
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex;
  gap: 2px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.55);
  z-index: 2;
}
.ab-mode-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 10px;
  min-height: 44px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.ab-mode-btn:hover { color: var(--text); }
.ab-mode-btn.is-active { background: var(--red); color: #fff; }

.ab-console { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.ab-console .ab-core { flex: 1; min-width: 0; }
.ab-console .ab-controls { gap: 10px; }

.ab-key {
  flex: none;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(5, 5, 5, 0.72);
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.ab-key b { font-family: var(--font-display); font-size: 1.35rem; line-height: 1; font-weight: 400; }
.ab-key span { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.12em; text-transform: uppercase; }
.ab-key:hover { border-color: var(--text); color: var(--text); transform: translateY(-1px); }
.ab-key:active { transform: scale(0.95); }
.ab-key.is-active { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 0 22px rgba(255, 30, 60, 0.5); }

/* ---------------- Duelo: IA promedia vs criterio humano ---------------- */
.duel-slot { position: relative; z-index: 1; }

.duel-widget {
  background: linear-gradient(160deg, rgba(28, 28, 28, 0.96), rgba(5, 5, 5, 0.98));
  border-color: var(--border-strong);
  border-radius: 20px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow), 0 0 80px rgba(122, 15, 34, 0.2);
}
.duel-widget.is-empty .duel-stage { display: none; }

.duel-stage {
  position: relative;
  height: clamp(180px, 26vw, 240px);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  cursor: ew-resize;
  touch-action: none;
  --pos: 50%;
}
.duel-canvas { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 0; margin: 0; }

.duel-guide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  background: linear-gradient(var(--red), var(--gold));
  box-shadow: 0 0 16px rgba(255, 197, 61, 0.4);
  transform: translateX(-1px);
  pointer-events: none;
}

.duel-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  pointer-events: none;
}
.duel-grip {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.85);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  box-shadow: 0 0 24px rgba(255, 197, 61, 0.45);
  transition: transform .15s ease;
}
.duel-stage.dragging .duel-grip { transform: scale(1.12); }

.duel-tag {
  position: absolute;
  top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(3px);
  pointer-events: none;
  transition: color .2s ease, border-color .2s ease;
}
.duel-tag b { font-size: 1.5rem; }
.duel-tag em { font-family: var(--font-mono); font-style: normal; font-size: 0.6rem; letter-spacing: 0.14em; }
.duel-tag--a { left: 12px; color: var(--muted); border: 1px solid var(--border); }
.duel-tag--b { right: 12px; color: var(--red); border: 1px solid rgba(255, 30, 60, 0.45); }
.duel-stage.side-a .duel-tag--a { color: var(--gold); border-color: rgba(255, 197, 61, 0.5); }
.duel-stage.side-b .duel-tag--b { color: var(--gold); border-color: rgba(255, 197, 61, 0.5); }

.duel-meta { display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.duel-hint { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); text-align: center; }
.duel-hint b { color: var(--red); }

.duel-cta { margin-top: 26px; text-align: center; }

/* ---------------- Trabajos grid ---------------- */

.works-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.work-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: border-color .2s ease, transform .2s ease; }
.work-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.work-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.w-title { font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.03em; }
.w-service { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(255, 197, 61, 0.3); padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.work-card .ab-widget { box-shadow: none; border: 1px solid var(--border); }

/* ---------------- Catálogo --------------- */

.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.cat-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s ease, transform .2s ease; }
.cat-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.cat-cover { aspect-ratio: 1; overflow: hidden; background: var(--bg-3); }
.cat-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cat-card:hover .cat-cover img { transform: scale(1.04); }
.cat-info { padding: 16px 16px 18px; }
.cat-role { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.cat-info h3 { font-size: 1.12rem; margin-top: 8px; line-height: 1.05; }
.cat-meta { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.cat-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.cat-link { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); border: 1px solid var(--border-strong); border-radius: 999px; padding: 12px 14px; min-height: 44px; display: inline-flex; align-items: center; transition: all .2s ease; }
.cat-link:hover { background: var(--red); border-color: var(--red); color: #fff; }
@media (max-width: 640px) {
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-info { padding: 12px; }
  .cat-info h3 { font-size: 0.95rem; }
  .cat-links { gap: 6px; }
  .cat-link { padding: 12px 10px; font-size: 0.64rem; min-height: 44px; }
}

/* ---------------- Marquee --------------- */

.marquee { border-block: 1px solid var(--border); overflow: hidden; padding: 20px 0; background: var(--bg); position: relative; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marquee 275s linear infinite; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
}
.marquee-track span:nth-child(odd) { -webkit-text-stroke: 1px rgba(250, 250, 247, 0.3); color: transparent; }
.marquee-track span:nth-child(even) { color: var(--text); }
.marquee-track span::after { content: "✦"; color: var(--red); font-size: 0.8em; text-shadow: 0 0 10px var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------- Value grid --------------- */

.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 60% at 50% 0%, rgba(255, 30, 60, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.value-card:hover::after { opacity: 1; }
.value-card .v-ico { width: 42px; height: 42px; margin-bottom: 16px; display: grid; place-items: center; font-size: 1.15rem; color: var(--gold); border: 1px solid var(--border); border-radius: 10px; background: rgba(5, 5, 5, 0.5); }
.value-card .v-ico::before { content: ""; }
.value-card h3 { font-size: 1.1rem; text-transform: uppercase; margin-bottom: 8px; }
.value-card p { font-size: 0.92rem; color: var(--muted); }

/* ---------------- Services grid --------------- */

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  opacity: 0;
  transition: opacity .22s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 0% 100%, rgba(255, 30, 60, 0.06), transparent 55%);
  pointer-events: none;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }

.s-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.s-num { font-family: var(--font-mono); font-size: 0.72rem; color: var(--red); letter-spacing: 0.2em; white-space: nowrap; }
.s-num em { font-style: normal; color: rgba(250, 250, 247, 0.35); margin-left: 6px; }

/* onda de la tarjeta */
.s-wave { width: 100%; height: 26px; margin-top: 4px; }
.s-wave svg { width: 100%; height: 100%; }
.s-wave path { stroke: var(--red); stroke-width: 1.4; fill: none; opacity: 0.35; transition: opacity .25s ease, stroke .25s ease; }
.service-card:hover .s-wave path { opacity: 0.9; stroke: var(--gold); }

.service-card h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin: 8px 0 10px; }
.service-card p { color: var(--muted); font-size: 0.96rem; }
.service-card .s-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--border); padding-top: 18px; position: relative; z-index: 1; }
.service-card .price { color: var(--text); }
.service-card .price small { color: var(--muted); font-size: 0.72em; }
.service-card .s-link { font-family: var(--font-mono); font-size: 0.78rem; color: var(--red); letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 10px 4px; margin: -10px -4px; }
.service-card .s-link::after { content: "→"; transition: transform .18s ease; }
.service-card:hover .s-link::after { transform: translateX(4px); }

/* ---------------- Feature bands --------------- */

.band {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: clamp(2rem, 5vw, 3.2rem);
  overflow: hidden;
}
.band--pkg { background: radial-gradient(80% 120% at 100% 0%, rgba(122, 15, 34, 0.55) 0%, transparent 55%), var(--bg-2); }
.band--pkg::after { content: "−20%"; position: absolute; right: -14px; bottom: -30px; font-family: var(--font-display); font-size: clamp(6rem, 14vw, 11rem); color: transparent; -webkit-text-stroke: 1px rgba(255, 197, 61, 0.28); pointer-events: none; }
.band--prod { background: radial-gradient(80% 120% at 0% 100%, rgba(255, 122, 41, 0.16) 0%, transparent 55%), var(--bg-2); }
.band--prod::after { content: "♪"; position: absolute; right: 30px; bottom: 16px; font-size: clamp(4rem, 9vw, 7rem); color: rgba(255, 122, 41, 0.22); pointer-events: none; }
.band--urg { background: linear-gradient(120deg, rgba(255, 30, 60, 0.14), transparent 60%), var(--bg-2); border-color: rgba(255, 30, 60, 0.4); }
.band--urg::after { content: "24–48h"; position: absolute; right: 22px; top: 18px; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.18em; color: var(--red); border: 1px solid rgba(255, 30, 60, 0.5); padding: 6px 12px; border-radius: 999px; }

.band-grid { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.band h3 { margin-bottom: 10px; }
.band p { color: var(--muted); max-width: 58ch; }

.band-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--border-strong); color: var(--muted); }
.chip--red { border-color: rgba(255, 30, 60, 0.5); color: #fff; background: rgba(255, 30, 60, 0.08); }

/* ---------------- Process --------------- */

.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
.step { position: relative; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 24px; overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.step:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 4.6rem);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 197, 61, 0.35);
  position: absolute;
  right: 14px;
  top: 6px;
  line-height: 1;
}
.step .st-label { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.2em; color: var(--red); text-transform: uppercase; display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.95rem; max-width: 40ch; }

/* ---------------- Stats / trust --------------- */

.trust-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 34px; }
.stat { text-align: center; padding: 26px 16px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-2); position: relative; overflow: hidden; }
.stat::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--red)); opacity: 0.6; }
.stat b { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); display: block; color: var(--text); }
.stat b em { font-style: normal; color: var(--red); }
.stat span { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

.quote {
  position: relative;
  border-left: 3px solid var(--red);
  padding: 6px 0 6px 24px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
  color: var(--text);
  max-width: 46ch;
}
.quote::before { content: "“"; position: absolute; left: -14px; top: -18px; font-family: var(--font-display); font-size: 3.4rem; color: var(--gold); }
.quote small { display: block; margin-top: 10px; font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; }

/* ---------------- Pricing table --------------- */

.price-wrap { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg-2); }
.price-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 16px;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid var(--border);
  transition: background .15s ease, padding-left .15s ease;
  text-decoration: none;
  color: inherit;
}
.price-row:last-child { border-bottom: 0; }
.price-row:hover { background: rgba(255, 255, 255, 0.03); padding-left: 32px; }
.price-row .p-name { font-weight: 600; }
.price-row .p-name small { display: block; font-weight: 400; color: var(--muted); font-size: 0.82rem; margin-top: 3px; }
.price-row .p-price { font-family: var(--font-mono); color: var(--text); font-size: 1.05rem; }
.price-row .p-note { font-family: var(--font-mono); font-size: 0.76rem; color: var(--muted); text-align: right; }

.price-row--highlight { background: linear-gradient(90deg, rgba(255, 30, 60, 0.12), transparent 70%); border-inline: 2px solid rgba(255, 30, 60, 0.5); }
.price-row--highlight .p-price { color: var(--gold); text-shadow: 0 0 14px rgba(255, 197, 61, 0.4); }

.price-note { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); }
.price-note::before { content: "✓"; color: var(--gold); }

/* ---------------- FAQ --------------- */

.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; background: var(--bg-2); overflow: hidden; transition: border-color .2s ease; }
.faq-item.open { border-color: rgba(255, 30, 60, 0.5); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 22px;
  cursor: pointer;
}
.faq-q .q-num { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em; margin-right: 6px; }
.faq-q .faq-ico { font-family: var(--font-mono); color: var(--red); font-size: 1.2rem; transition: transform .2s ease; }
.faq-item.open .faq-q .faq-ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: 0.96rem; }

/* ---------------- Form --------------- */

.form-section { position: relative; }
.form-section .form-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(60% 70% at 50% 0%, rgba(122, 15, 34, 0.4) 0%, transparent 60%); pointer-events: none; }

.form-card {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-inline: auto;
  background: rgba(19, 19, 19, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--rose));
}
.form-card h2 { margin-bottom: 10px; }
.form-card > p { color: var(--muted); margin-bottom: 30px; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }

.field label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field label .req { color: var(--red); }

.field-hint { font-size: 0.78rem; line-height: 1.45; color: var(--muted); }

.input, select.input, textarea.input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 15px;
  transition: border-color .18s ease, box-shadow .18s ease;
  appearance: none;
}
select.input {
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}
.input::placeholder { color: rgba(250, 250, 247, 0.3); }
.input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(255, 30, 60, 0.15), 0 0 24px rgba(255, 30, 60, 0.12); }
textarea.input { min-height: 120px; resize: vertical; }

.field.is-invalid .input { border-color: var(--red); box-shadow: 0 0 0 3px rgba(255, 30, 60, 0.15); }
.field.is-invalid label { color: var(--red); }
.field .err { display: none; font-family: var(--font-mono); font-size: 0.68rem; color: var(--red); letter-spacing: 0.04em; }
.field.is-invalid .err { display: block; }

.check { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--muted); cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--red); }

.form-foot { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; align-items: stretch; }
.form-note { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; text-align: center; }
.form-promise { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.field.is-hidden { display: none; }

.cupos-hero { margin-top: 20px; }
.cupos-widget {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 10px 16px;
  background: rgba(5, 5, 5, 0.6);
  margin-bottom: 16px;
  max-width: 100%;
}
.cupos-badge { display: inline-flex; align-items: center; gap: 10px; }
.cupos-widget .cupos-dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); animation: blink 1s steps(1) infinite; }
.cupos-widget b { color: var(--gold); }
.cupos-widget.is-out { border-color: rgba(255, 30, 60, 0.5); color: var(--muted); }
.cupos-widget.is-out .cupos-dot { background: var(--red); box-shadow: 0 0 10px var(--red); animation: none; }
.cupos-widget.is-out b { color: var(--red); }
.cupos-bar { display: inline-flex; align-items: center; gap: 4px; height: 10px; }
.cupos-bar .seg { display: inline-block; width: 12px; height: 8px; border-radius: 2px; background: rgba(255, 255, 255, 0.12); animation: eq 1.5s ease-in-out infinite; }
.cupos-bar .seg.is-on { background: var(--gold); }
.cupos-widget.is-out .seg.is-on { background: var(--red); }
.cupos-widget.is-out .cupos-bar .seg { animation: none; }
.cupos-bar .seg:nth-child(1) { animation-delay: 0s; }
.cupos-bar .seg:nth-child(2) { animation-delay: .06s; }
.cupos-bar .seg:nth-child(3) { animation-delay: .12s; }
.cupos-bar .seg:nth-child(4) { animation-delay: .18s; }
.cupos-bar .seg:nth-child(5) { animation-delay: .24s; }
.cupos-bar .seg:nth-child(6) { animation-delay: .30s; }
.cupos-bar .seg:nth-child(7) { animation-delay: .36s; }
.cupos-bar .seg:nth-child(8) { animation-delay: .42s; }
.cupos-bar .seg:nth-child(9) { animation-delay: .48s; }
.cupos-bar .seg:nth-child(10) { animation-delay: .54s; }
.cupos-bar .seg:nth-child(11) { animation-delay: .60s; }
.cupos-bar .seg:nth-child(12) { animation-delay: .66s; }
.cupos-widget.is-low { border-color: rgba(255, 190, 0, 0.6); animation: cuposPulse 1.6s ease-in-out infinite; }
@keyframes cuposPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

.cupos-alert {
  display: none;
  border: 1px solid rgba(255, 30, 60, 0.5);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--red);
  background: rgba(255, 30, 60, 0.08);
}
.cupos-alert.show { display: block; }

.cupos-admin {
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(5, 5, 5, 0.94);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.cupos-admin .ca-body { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cupos-admin .ca-toggle { padding: 2px 8px; font-size: 0.8rem; line-height: 1.2; border-color: var(--gold); color: var(--gold); }
.cupos-admin .ca-short { display: none; font-weight: 700; color: var(--gold); }
.cupos-admin.is-min { padding: 6px 10px; gap: 6px; touch-action: none; user-select: none; cursor: grab; }
.cupos-admin.is-min:active { cursor: grabbing; }
.cupos-admin.is-min .ca-body { display: none; }
.cupos-admin.is-min .ca-label,
.cupos-admin.is-min .ca-count { display: none; }
.cupos-admin.is-min .ca-short { display: inline-block; font-size: 0.82rem; }
.cupos-admin.is-min .ca-toggle { padding: 3px 10px; font-size: 0.82rem; }
.cupos-admin .ca-label { color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; }
.cupos-admin .ca-count { color: var(--muted); }
.cupos-admin .ca-btns { display: flex; gap: 6px; }
.cupos-admin button {
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 5px 10px;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.cupos-admin button:hover { border-color: var(--red); color: var(--red); }
.cupos-admin .ca-totallabel { display: flex; align-items: center; gap: 6px; color: var(--muted); }
.cupos-admin .ca-total { width: 46px; background: var(--bg); border: 1px solid var(--border-strong); border-radius: 6px; color: var(--text); font-family: var(--font-mono); padding: 4px 6px; }

.form-ok { display: none; text-align: center; padding: 26px 10px; }
.form-ok.show { display: block; animation: fadeIn .3s ease; }
.form-ok .ok-ico { font-size: 2.6rem; color: var(--gold); display: block; margin-bottom: 14px; text-shadow: 0 0 24px rgba(255, 197, 61, 0.5); }
.form-ok h3 { color: var(--text); margin-bottom: 10px; }
.form-ok p { color: var(--muted); max-width: 46ch; margin-inline: auto; }

/* ---------------- Footer --------------- */

.site-footer { border-top: 1px solid var(--border); padding: clamp(3rem, 6vw, 5rem) 0 2.4rem; position: relative; }
.footer-wave { position: absolute; top: -1px; left: 0; right: 0; height: 34px; }
.footer-wave svg { width: 100%; height: 100%; }
.footer-wave path { stroke: rgba(255, 30, 60, 0.35); stroke-width: 1.5; fill: none; }

.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); max-width: 38ch; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text); font-size: 0.95rem; opacity: 0.85; transition: opacity .15s ease, color .15s ease; }
.footer-col a:hover { opacity: 1; color: var(--red); }

.footer-pay { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pay-chip { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.08em; color: var(--muted); border: 1px solid var(--border); border-radius: 8px; padding: 7px 12px; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--border); font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--red); }

/* ---------------- Service page hero --------------- */

.page-hero { position: relative; padding: calc(var(--header-h) + 70px) 0 70px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: -2; background: radial-gradient(55% 60% at 85% 10%, rgba(122, 15, 34, 0.5) 0%, transparent 60%), var(--bg); }
.page-hero .hero-word { top: auto; bottom: -4%; right: -2%; }
.page-hero .hero-eyebrow { margin-bottom: 22px; }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); max-width: 18ch; }
.page-hero .lead { margin: 22px 0 30px; max-width: 62ch; position: relative; z-index: 1; }
.page-hero-meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 34px; }
.page-hero-meta .meta { font-family: var(--font-mono); border-left: 2px solid var(--border-strong); padding-left: 14px; }
.page-hero-meta .meta b { display: block; color: var(--text); font-size: 1.15rem; }
.page-hero-meta .meta span { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

.page-hero-eq { position: absolute; right: 6%; top: 50%; transform: translateY(-50%); height: 180px; width: 130px; opacity: 0.55; }
.page-hero-eq .eq { height: 100%; gap: 6px; }
.page-hero-eq .eq i { background: linear-gradient(var(--gold), var(--orange)); }

/* ---------------- Includes list --------------- */

.include-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.include-item { display: flex; gap: 14px; align-items: flex-start; background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px; padding: 20px; transition: border-color .18s ease, transform .18s ease; }
.include-item:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.include-item .i-ico { color: var(--gold); font-family: var(--font-mono); font-size: 1.05rem; line-height: 1.4; }
.include-item h3 { font-family: var(--font-body); text-transform: none; font-weight: 600; font-size: 1.02rem; margin-bottom: 4px; letter-spacing: 0; }
.include-item p { color: var(--muted); font-size: 0.92rem; }

.honest-note { display: flex; gap: 14px; align-items: flex-start; border: 1px dashed rgba(255, 30, 60, 0.5); border-radius: var(--radius); padding: 20px 22px; margin-top: 22px; background: rgba(255, 30, 60, 0.05); }
.honest-note .h-ico { color: var(--red); font-size: 1.3rem; }
.honest-note p { color: var(--muted); font-size: 0.95rem; }
.honest-note a { color: var(--red); text-decoration: underline; }
.honest-note strong { color: var(--text); }

/* ---------------- Related --------------- */

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: transform .2s ease, border-color .2s ease; display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; }
.related-card::after { content: "→"; position: absolute; right: 18px; bottom: 14px; font-size: 1.4rem; color: var(--red); opacity: 0; transform: translateX(-6px); transition: all .2s ease; }
.related-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.related-card:hover::after { opacity: 1; transform: translateX(0); }
.related-card h3 { font-size: 1.15rem; }
.related-card p { color: var(--muted); font-size: 0.9rem; }
.related-card .price { margin-top: auto; }

/* ---------------- Cursor custom ---------------- */

@media (hover: hover) and (pointer: fine) {
  html.has-cursor, html.has-cursor a, html.has-cursor button, html.has-cursor input, html.has-cursor select, html.has-cursor textarea, html.has-cursor label { cursor: none; }
}
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 500;
  opacity: 0;
  will-change: transform;
}
.has-cursor .cursor-dot, .has-cursor .cursor-ring { opacity: 1; }
.cursor-dot { width: 6px; height: 6px; background: var(--red); box-shadow: 0 0 10px var(--red); transform: translate(-50%, -50%); }
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 30, 60, 0.55);
  transform: translate(-50%, -50%);
  transition: width .22s ease, height .22s ease, border-color .22s ease, background .22s ease;
}
.has-cursor .cursor-ring.is-hover { width: 54px; height: 54px; border-color: var(--gold); background: rgba(255, 197, 61, 0.06); }

html.ra-panel-open, html.ra-panel-open a, html.ra-panel-open button, html.ra-panel-open input, html.ra-panel-open select, html.ra-panel-open textarea, html.ra-panel-open label { cursor: auto; }
html.ra-panel-open .cursor-dot, html.ra-panel-open .cursor-ring { display: none; }

/* ---------------- Panel recepción / revisión técnica básica (owner) ---------------- */

.reviews-admin {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: #050505;
  overflow-y: auto;
  padding: 28px clamp(16px, 4vw, 40px) 60px;
  display: none;
}
.reviews-admin.is-open { display: block; }
.ra-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 800;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 30, 60, 0.35);
}
.ra-toggle:hover { background: #ff3049; }
.ra-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.ra-title { font-size: 1.6rem; text-transform: uppercase; letter-spacing: 0.03em; }
.ra-sub { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); margin-top: 4px; }
.ra-stats { font-family: var(--font-mono); font-size: 0.74rem; color: var(--gold); }
.ra-close {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  cursor: pointer;
}
.ra-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.ra-filters button {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.ra-filters button.is-active { background: var(--red); color: #fff; border-color: var(--red); }

.ra-audicion { margin-top: 14px; }
.ra-audicionhead { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.ra-audicionlabel { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }
.ra-texto {
  white-space: pre-wrap;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  line-height: 1.6;
}
.ra-texto.is-empty { color: var(--muted); font-style: italic; }

.ra-modal {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ra-modal.is-open { display: flex; }
.ra-modalbox {
  background: #0a0a0a;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  width: min(560px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  padding: 24px;
}
.ra-modalhead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.ra-modalhead h3 { font-size: 1.3rem; }
.ra-modal .ra-close { flex-shrink: 0; }
.ra-q { border: none; padding: 12px 0; border-bottom: 1px solid var(--border); }
.ra-q legend { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.ra-q label { display: block; font-family: var(--font-mono); font-size: 0.78rem; color: var(--text); padding: 5px 0; cursor: pointer; }
.ra-q input[type="radio"] { margin-right: 8px; accent-color: var(--red); }
.ra-q input[type="text"] { width: 100%; margin-top: 6px; background: var(--bg); border: 1px solid var(--border-strong); border-radius: 8px; color: var(--text); padding: 8px 10px; font-family: var(--font-mono); font-size: 0.78rem; }
.ra-q .ra-otra { display: none; }
.ra-aform-msg { font-family: var(--font-mono); font-size: 0.72rem; color: var(--red); margin: 10px 0 0; min-height: 1.2em; }
.ra-aformfoot { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

.ra-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 14px; }
.ra-cardhead { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.ra-name { font-size: 1.2rem; text-transform: uppercase; }
.ra-meta { font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted); letter-spacing: 0.05em; margin: 2px 0; }
.ra-link { font-family: var(--font-mono); font-size: 0.72rem; color: var(--red); word-break: break-all; display: inline-block; margin: 4px 0; }
.ra-link.is-muted { color: var(--muted); }
.ra-urg { display: inline-block; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; color: var(--red); border: 1px solid rgba(255, 30, 60, 0.5); padding: 3px 8px; border-radius: 999px; margin: 4px 0; text-transform: uppercase; }
.ra-msg { font-size: 0.9rem; color: var(--muted); margin: 6px 0; border-left: 2px solid var(--border-strong); padding-left: 12px; }
.ra-badge { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--border-strong); padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.ra-badge.is-recibida { color: var(--gold); border-color: rgba(255, 197, 61, 0.45); }
.ra-badge.is-en-audicion { color: #ff9a3c; border-color: rgba(255, 154, 60, 0.45); }
.ra-badge.is-audicion-lista { color: #5ee6ad; border-color: rgba(94, 230, 173, 0.45); }
.ra-badge.is-entregada { color: var(--muted); }
.ra-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.ra-controls label { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; display: block; }
.ra-controls .ra-full { grid-column: 1 / -1; }
.ra-controls input, .ra-controls select, .ra-controls textarea {
  width: 100%;
  margin-top: 6px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text);
  padding: 8px 10px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
}
.ra-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.ra-btn {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.ra-btn:hover { border-color: var(--red); color: #fff; }
.ra-btn--wa { background: var(--gold); color: #000; border-color: var(--gold); }
.ra-btn--wa:hover { background: #ffd866; color: #000; border-color: var(--gold); }
.ra-btn--del { color: #ff5c5c; border-color: rgba(255, 92, 92, 0.45); }
.ra-btn--del:hover { background: #ff5c5c; color: #000; border-color: #ff5c5c; }
.ra-empty { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); padding: 24px 0; }

@media (max-width: 640px) {
  .ra-controls { grid-template-columns: 1fr; }
}

/* ---------------- Login del panel (owner) ---------------- */

.owner-auth {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #050505;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.owner-auth.is-open { display: flex; }
.owner-authbox {
  width: min(380px, 100%);
  background: #0a0a0a;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 28px;
}
.owner-authbox h3 { margin: 12px 0 6px; text-transform: uppercase; }
.owner-authbox p { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; }
.owner-authbox .field { margin-bottom: 14px; }
.owner-amsg { font-family: var(--font-mono); font-size: 0.72rem; color: var(--red); min-height: 1.2em; margin: 8px 0 0; }
html.owner-auth-open, html.owner-auth-open a, html.owner-auth-open button, html.owner-auth-open input, html.owner-auth-open select, html.owner-auth-open textarea, html.owner-auth-open label { cursor: auto; }
html.owner-auth-open .cursor-dot, html.owner-auth-open .cursor-ring { display: none; }

/* ---------------- Reveal animation --------------- */

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------------- 404 --------------- */

.error-page { min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 20px 60px; }
.error-page h1 { font-size: clamp(4rem, 14vw, 9rem); color: var(--red); text-shadow: 0 0 40px rgba(255, 30, 60, 0.5); }
.error-page p { color: var(--muted); margin: 16px 0 28px; }

/* ---------------- Responsive --------------- */

@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .burger { display: flex; }
  .nav-cta { display: none; }
  .header-inner { justify-content: space-between; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-eq { display: none; }
  .hero { padding-bottom: 56px; }

  .values { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: repeat(3, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .price-row { grid-template-columns: 1fr 1fr; }
  .price-row .p-note { text-align: left; grid-column: 1 / -1; padding-top: 4px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero-word { display: none; }
  .values { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .include-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: 1fr; }
  .service-card { padding: 24px 20px; }
  .hero-meta { gap: 10px; flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }
  .sec-num { font-size: 6rem; top: 16px; right: 2%; }
  .band--urg::after { display: none; }
  .ab-console { gap: 8px; }
  .ab-key { width: 50px; height: 50px; }
  .ab-key b { font-size: 1.15rem; }
  .ab-key span { font-size: 0.48rem; }
  .ab-vinyl { width: 44px; height: 44px; }
  .price-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 20px; }
  .cupos-admin { top: calc(var(--header-h) + 8px); left: 10px; right: 10px; bottom: auto; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .cupos-admin .ca-body { justify-content: center; gap: 10px; }
  .cupos-admin button { padding: 10px 14px; font-size: 0.72rem; }
  .cupos-admin .ca-toggle { padding: 10px 12px; font-size: 0.8rem; }
  .cupos-admin.is-min { left: 50%; right: auto; transform: translateX(-50%); }
  .cupos-admin .ca-total { width: 56px; padding: 8px; }
  .ra-filters button { padding: 10px 14px; }
  .ra-q label { padding: 8px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ab-vinyl { animation: none; }
  body::after { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}