/* ============================================================
   AO PRODUCCIÓN Y EVENTOS — Premium cinematic single-page site
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --bg-card: #131313;
  --accent: #D01E1E;
  --accent-deep: #8a0f0f;
  --accent-glow: rgba(208, 30, 30, 0.45);
  --text: #ffffff;
  --text-dim: #cccccc;
  --text-mute: #7d7d7d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --maxw: 1140px;
  --pad-x: clamp(20px, 4vw, 64px);
  --pad-y: clamp(60px, 8vw, 110px);

  --carousel-duration: 24s;

  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Offset for fixed nav when jumping to anchors */
.section,
#hero,
#services,
#eventos,
#marcas,
#contacto,
#about {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Typography ───────────────────────────────────────── */

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(28px, 4.5vw, 60px); font-weight: 900; }
h2 { font-size: clamp(20px, 3.2vw, 48px); font-weight: 900; }
h3 { font-size: clamp(13px, 1.2vw, 17px); font-weight: 700; letter-spacing: 0.02em; line-height: 1.2; }
h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; }

p { margin: 0 0 1em; color: var(--text-dim); text-wrap: pretty; }
.lead { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.7; color: var(--text-dim); max-width: 64ch; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
}

/* ─── Layout ───────────────────────────────────────────── */

.section {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
}
.section--no-rule { border-bottom: none; }
/* A · Profundidad: leve variación tonal alternada entre secciones */
.section:nth-of-type(even) { background-color: #0d0d0d; }
/* D · Separador fino: línea de acento que se desvanece en los bordes
   (más elegante que la regla roja sólida de lado a lado). */
.section:not(.section--no-rule)::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: min(1100px, 82%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208,30,30,0.55), transparent);
}

.section__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.section-title {
  position: relative;
  padding-left: 28px;
  margin: 0 0 56px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0; top: 6%;
  width: 4px; height: 88%;
  background: var(--accent);
}
.section-title .eyebrow { display: block; margin-bottom: 14px; }

.section-title h2,
.about__title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.08;
}

.insta-line-top { font-size: 22px; display: block; }
.insta-line-bot { font-size: 34px; display: block; }

.section-title--center {
  padding-left: 0;
  text-align: center;
}
.section-title--center::before { display: none; }

.deco-bar {
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto 32px;
  border-radius: 2px;
}

.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) {
  .cols-2 { grid-template-columns: 1fr; }
}

/* ─── Nav ──────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 240ms ease, backdrop-filter 240ms ease, padding 240ms ease;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 10px var(--pad-x);
  border-bottom: 1px solid var(--line);
}
.nav.is-scrolled .nav__brand img { opacity: 1; transition: opacity 0.4s ease; }
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__brand img { height: 54px; width: auto; opacity: 0.35; }
.nav__brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 11px;
  color: var(--text);
}
.nav__brand-text small {
  display: block;
  font-size: 8px;
  color: var(--text-mute);
  letter-spacing: 0.32em;
  font-weight: 500;
  margin-top: 1px;
}

/* Burger always visible, links always hidden (open via burger) */
.nav__burger {
  width: 44px; height: 44px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 0;
  position: relative;
  transition: background 200ms ease, border-color 200ms ease;
}
.nav__burger:hover { border-color: var(--accent); background: rgba(208,30,30,0.06); }
.nav__burger span {
  position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--text);
  transition: transform 240ms ease, opacity 180ms ease, background 200ms ease;
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 24px; }
.nav.is-menu-open .nav__burger { border-color: var(--accent); background: rgba(208,30,30,0.08); }
.nav.is-menu-open .nav__burger span { background: var(--accent); }
.nav.is-menu-open .nav__burger span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav.is-menu-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-menu-open .nav__burger span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* Compact dropdown menu (anchored under burger, top-right) */

/* CTA hidden — accessible from menu */
.nav__cta { display: none; }

.nav__links {
  position: absolute;
  top: calc(100% + 8px);
  right: var(--pad-x);
  width: 240px;
  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line-strong);
  border-top: 2px solid var(--accent);
  border-radius: 14px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  visibility: hidden;
  z-index: 99;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}
.nav.is-menu-open .nav__links {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  padding: 12px 16px;
  border: 0;
  position: relative;
  transition: color 160ms ease, background 160ms ease, padding-left 200ms ease;
  text-align: left;
}
.nav__links a:not(.nav__links-cta):hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  padding-left: 22px;
}
.nav__links a::after { display: none; }

/* CTA inside dropdown */
.nav__links-cta {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 16px !important;
  background: var(--accent);
  color: var(--text) !important;
  border: 0;
  transition: background 200ms ease;
}
.nav__links-cta:hover {
  background: var(--text) !important;
  color: var(--bg) !important;
  padding-left: 16px !important;
}

/* Backdrop dimmer — disabled in compact mode */
.nav-backdrop {
  position: fixed; inset: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  z-index: 98;
}
.nav.is-menu-open ~ .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* ─── Hero ─────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  background: var(--bg);
  border-bottom: 2px solid var(--accent);
}
.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
  /* zoom + corrimiento lateral: saca del encuadre la marca de agua
     (destello IA) que trae el video en la esquina inferior derecha */
  transform: scale(1.18) translateX(5%) translateZ(0);
  backface-visibility: hidden;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.60);
  z-index: 1;
}
.hero__fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px var(--pad-x) 80px;
  width: 100%;
  max-width: 1100px;
}
.hero__logo-wrap {
  display: inline-block;
  position: relative;
  margin-bottom: 36px;
}
.hero__logo {
  width: clamp(264px, 43vw, 552px);
  height: auto;
  filter: drop-shadow(0 0 60px var(--accent-glow));
}
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(12px, 1.3vw, 17px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero__tagline span { display: inline-block; }
.hero__tagline .dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.4em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
}
.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-mute);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroScrollIn 800ms ease 2.6s forwards;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--text-mute), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes heroScrollIn { to { opacity: 1; } }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* hero entrance variants */
[data-hero-variant="cinematic"] .hero__logo {
  animation: heroLogoCinematic 1800ms cubic-bezier(.2,.7,.2,1) both;
}
[data-hero-variant="cinematic"] .hero__tagline { animation: heroFadeUp 900ms ease 1200ms both; }
[data-hero-variant="cinematic"] .hero__sub { animation: heroFadeUp 900ms ease 1500ms both; }

[data-hero-variant="spotlight"] .hero__logo {
  animation: heroLogoSpot 1400ms cubic-bezier(.2,.7,.2,1) both;
}
[data-hero-variant="spotlight"] .hero__tagline { animation: heroFadeUp 800ms ease 900ms both; }
[data-hero-variant="spotlight"] .hero__sub { animation: heroFadeUp 800ms ease 1200ms both; }

[data-hero-variant="pulse"] .hero__logo {
  animation: heroLogoPulse 2200ms cubic-bezier(.2,.7,.2,1) both;
}
[data-hero-variant="pulse"] .hero__tagline { animation: heroFadeUp 900ms ease 1500ms both; }
[data-hero-variant="pulse"] .hero__sub { animation: heroFadeUp 900ms ease 1800ms both; }

@keyframes heroLogoCinematic {
  0%   { opacity: 0; transform: scale(1.4); filter: blur(40px) brightness(2); }
  60%  { opacity: 1; filter: blur(4px) brightness(1.3); }
  100% { opacity: 1; transform: scale(1); filter: blur(0) brightness(1) drop-shadow(0 0 60px var(--accent-glow)); }
}
@keyframes heroLogoSpot {
  0%   { opacity: 0; transform: scale(0.6); clip-path: circle(0% at 50% 50%); }
  100% { opacity: 1; transform: scale(1); clip-path: circle(100% at 50% 50%); }
}
@keyframes heroLogoPulse {
  0%   { opacity: 0; transform: scale(0.4); filter: drop-shadow(0 0 0 var(--accent)); }
  35%  { opacity: 1; transform: scale(1.08); filter: drop-shadow(0 0 90px var(--accent)); }
  55%  { transform: scale(0.96); }
  75%  { transform: scale(1.04); filter: drop-shadow(0 0 80px var(--accent-glow)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 60px var(--accent-glow)); }
}
@keyframes heroFadeUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* hero FX layers */
.hero__beam {
  position: absolute;
  top: -10%;
  width: 36vw;
  height: 140vh;
  background: linear-gradient(to bottom, transparent, var(--accent-glow), transparent);
  filter: blur(48px);
  opacity: 0;
  mix-blend-mode: screen;
  transform-origin: top center;
}
.hero__beam--1 { left: 10%;  transform: rotate(18deg);  animation: beam 6s ease-in-out 1.2s infinite, beamIn 900ms ease 0.6s both; }
.hero__beam--2 { left: 50%;  transform: translateX(-50%) rotate(-12deg); animation: beam2 7s ease-in-out 0.8s infinite, beamIn 900ms ease 0.4s both; }
.hero__beam--3 { right: 8%;  transform: rotate(-22deg); animation: beam 8s ease-in-out 1.6s infinite, beamIn 900ms ease 0.9s both; }
@keyframes beamIn { from { opacity: 0; } to { opacity: 0.35; } }
@keyframes beam {
  0%, 100% { opacity: 0.18; }
  50%      { opacity: 0.5; }
}
@keyframes beam2 {
  0%, 100% { opacity: 0.12; }
  50%      { opacity: 0.4; }
}

.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(208,30,30,0.07), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.6), transparent 70%),
    radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.4), transparent 60%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
}
.hero__noise {
  position: absolute; inset: 0;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero__corner {
  position: absolute;
  width: 64px; height: 64px;
  border: 1px solid var(--line-strong);
  opacity: 0;
  animation: cornerIn 800ms ease 2.2s both;
}
.hero__corner--tl { top: 24px; left: 24px; border-right: 0; border-bottom: 0; }
.hero__corner--tr { top: 24px; right: 24px; border-left: 0; border-bottom: 0; }
.hero__corner--bl { bottom: 24px; left: 24px; border-right: 0; border-top: 0; }
.hero__corner--br { bottom: 24px; right: 24px; border-left: 0; border-top: 0; }
@keyframes cornerIn { from { opacity: 0; transform: scale(0.7); } to { opacity: 1; transform: scale(1); } }

/* ─── Generic reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 120ms; }
.reveal--delay-2 { transition-delay: 240ms; }
.reveal--delay-3 { transition-delay: 360ms; }

/* ─── Quiénes Somos ────────────────────────────────────── */
.about {
  text-align: center;
  position: relative;
}
/* A · Brillo rojo sutil detrás de "Quiénes Somos" para dar profundidad */
.about::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 90%);
  height: 320px;
  background: radial-gradient(ellipse at center, rgba(208,30,30,0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.about__inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about__title {
  font-size: clamp(24px, 3.8vw, 56px);
  margin: 0 0 44px;
}
.about__body {
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.3;
  color: var(--text-dim);
  font-weight: 400;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 72px auto 0;
  max-width: 900px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 4px;
  padding: 30px 22px 28px;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.stat-card__icon {
  display: block;
  color: var(--accent);
  margin-bottom: 20px;
}
.stat-card__num {
  font-family: 'Unbounded', system-ui, sans-serif;
  font-weight: 900;
  font-size: 37px;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.stat-card__label {
  font-family: 'Unbounded', system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.4;
}
.stat-card__desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #b0b0b0;
  margin: 0;
}

/* ─── Service section common ───────────────────────────── */
.service__copy h2 { margin-bottom: 24px; }
.service__copy .lead { margin-bottom: 32px; }

.bullets { list-style: none; padding: 0; margin: 0 0 32px; }
.bullets li {
  position: relative;
  padding: 16px 0 16px 32px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
}
.bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 16px var(--accent-glow);
}
.bullets li:last-child { border-bottom: 0; }

.sub-block {
  margin-bottom: 32px;
}
.sub-block h3 {
  color: var(--accent);
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.sub-block p {
  margin: 0;
  color: var(--text-dim);
}

/* Stacked images for Iluminación */
.stacked-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  height: 100%;
  min-height: 540px;
}
.stacked-images .placeholder { aspect-ratio: auto; height: 100%; }

/* Equipment brand row */
.equip-brands {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.equip-brands__label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.07em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.equip-brands__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}
.equip-brands__item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  text-transform: uppercase;
  text-align: center;
  padding: 16px 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 220ms ease, color 220ms ease, background 220ms ease;
}
.equip-brands__item:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(208,30,30,0.04);
}
@media (max-width: 900px) { .equip-brands__row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .equip-brands__row { grid-template-columns: repeat(2, 1fr); } }

/* Microfonía list */
.mic-list { list-style: none; padding: 0; margin: 0; }
.mic-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.mic-list li:last-child { border-bottom: 0; }
.mic-list .ico {
  width: 48px; height: 48px;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: grid; place-items: center;
  border-radius: 4px;
  font-size: 22px;
}
.mic-list .body strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}
.mic-list .body span {
  color: var(--text-dim);
  font-size: 16px;
  font-weight: 300;
}

/* ─── Brands carousel ──────────────────────────────────── */
.brands-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brands-row {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 var(--pad-x);
}
.brands-row__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-left: 18px;
}
.brands-row__label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 22px;
  background: var(--accent);
}
.brands-row__viewport {
  position: relative;
  overflow: hidden;
}
.brands-row__edge {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.brands-row__edge--l { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.brands-row__edge--r { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.brands-row__track {
  display: flex;
  gap: 32px;
  width: max-content;
  will-change: transform;
}
.brands-row--left .brands-row__track {
  animation: brandScrollLeft var(--carousel-duration) linear infinite;
}
.brands-row--right .brands-row__track {
  animation: brandScrollRight var(--carousel-duration) linear infinite;
}
.brands-row__viewport:hover .brands-row__track {
  animation-play-state: paused;
}
@keyframes brandScrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes brandScrollRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (max-width: 768px) {
  .brands-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .brands-row__label { padding-left: 16px; font-size: 11px; }
}

.brands__item {
  flex: 0 0 auto;
  width: 260px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bg-card);
  text-align: center;
  padding: 16px;
  position: relative;
  transition: color 220ms ease, border-color 220ms ease, transform 200ms ease, background 200ms ease;
  text-decoration: none;
}
.brands__item-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 0.85;
  transition: opacity 280ms ease;
}
.brands__item-logo--color {
  filter: none;
  opacity: 0.85;
}.brands__item-logo--white {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.brands__item:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(208, 30, 30, 0.05);
  transform: translateY(-2px);
}
.brands__item:hover .brands__item-logo {
  filter: brightness(0) invert(1);
  opacity: 1;
}
.brands__item:hover .brands__item-logo--color {
  filter: none;
  opacity: 1;
}
.brands__item-num {
  position: absolute;
  top: 6px; left: 6px;
  font-size: 9px;
  color: var(--text-mute);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.brands-section .section-title { margin-bottom: 32px; }

/* ─── Fiestas y Galas: marcas dominantes ───────────────────── */
.brands-section--dominant .section-title {
  margin-bottom: 20px;
}
.brands-section--dominant .brands-stack {
  gap: 40px;
  padding: 48px 0;
}
.brands-section--dominant .brands__item {
  width: 220px;
  height: 160px;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.brands-section--dominant .brands-row__label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text);
}
@media (max-width: 768px) {
  .brands-section--dominant .brands__item { width: 160px; height: 120px; font-size: 13px; }
}

/* ─── Testimonials ─────────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr; } }
.testimonial {
  position: relative;
  padding: 44px 32px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}
/* B · Hover que levanta la tarjeta */
.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(208,30,30,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
/* D · Comilla como marca de agua elegante en la esquina */
.testimonial__quote {
  position: absolute;
  top: 4px;
  right: 22px;
  z-index: 0;
  font-family: var(--font-display);
  font-size: 130px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.12;
  margin: 0;
  font-weight: 900;
  pointer-events: none;
}
.testimonial__body, .testimonial__attrib { position: relative; z-index: 1; }
.testimonial__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 28px;
  font-weight: 300;
}
.testimonial__attrib strong {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 12px;
  color: var(--text);
  text-transform: uppercase;
  display: block;
}
.testimonial__attrib span {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── Instagram: cuenta + badge verificado ─────────────────── */
.insta__account {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 36px;
}
.insta__account-link {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #fff;
  transition: opacity 200ms ease;
}
.insta__account-link:hover { opacity: 0.75; }
.insta__account-tick { flex-shrink: 0; width: 28px; height: 28px; }
.insta__followers {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-mute);
  margin-left: 4px;
}

/* ─── Instagram: carrusel responsivo ───────────────────────── */
.insta__carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.insta__carousel::-webkit-scrollbar { display: none; }
.insta__carousel-slide {
  flex: 0 0 calc(33.333% - 8px);
  scroll-snap-align: start;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: block;
  transition: border-color 240ms ease;
}
.insta__carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.insta__carousel-slide:hover { border-color: var(--accent); }
.insta__carousel-slide:hover img { transform: scale(1.04); }
@media (max-width: 900px) {
  .insta__carousel-slide { flex: 0 0 calc(50% - 6px); }
}
@media (max-width: 560px) {
  .insta__carousel-slide { flex: 0 0 calc(78% - 6px); }
}

/* ─── Contact ──────────────────────────────────────────── */
#contacto.section { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); }
#contacto .section-title { margin-bottom: 30px; }
#contacto .section-title .eyebrow { margin-bottom: 8px; }
.contact__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.contact__form-wrap { width: 100%; max-width: 100%; }
.contact__info-wrap { width: 100%; max-width: 820px; }

.contact__form {
  display: grid;
  gap: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  border-radius: 20px;
  padding: 24px 30px;
}
.contact__row { display: grid; gap: 14px 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .contact__row { grid-template-columns: 1fr; } }

.field { position: relative; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 9px 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: border-color 200ms ease;
  appearance: none;
  -webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 58px; line-height: 1.45; }
.field select {
  background: var(--bg);
  padding-right: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23D01E1E' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--accent); }
.field__err {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 6px;
  font-family: var(--font-display);
  min-height: 14px;
}

.field input[type="date"] {
  color-scheme: dark;
  color: var(--text);
  font-family: var(--font-body);
}
.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5) sepia(1) saturate(8) hue-rotate(335deg);
  cursor: pointer;
}

.section-title__lead {
  margin: 14px 0 0;
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--text-dim);
  line-height: 1.6;
  font-weight: 300;
  max-width: 560px;
}

.field--checkboxes > label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 9px;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 10px;
}
@media (max-width: 640px) { .checkbox-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .checkbox-grid { grid-template-columns: 1fr; } }
.field--checkboxes .checkbox-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-dim);
  font-weight: 400;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
  user-select: none;
}
.field--checkboxes .checkbox-item:hover { border-color: var(--line-strong); color: var(--text); }
.checkbox-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  padding: 0;
  margin: 0;
  border: 1.5px solid var(--line-strong);
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color 180ms ease, background 180ms ease;
}
.checkbox-item input[type="checkbox"]:checked {
  border-color: var(--accent);
  background: var(--accent);
}
.checkbox-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.field--checkboxes .checkbox-item:has(input:checked),
.field--checkboxes .checkbox-item.is-checked {
  border-color: var(--accent);
  background: rgba(208, 30, 30, 0.06);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 26px;
  background: var(--accent);
  color: var(--text);
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease, letter-spacing 220ms ease;
}
.btn:hover { background: var(--text); color: var(--bg); letter-spacing: 0.08em; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.45); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn--ghost { background: transparent; border: 1px solid var(--accent); }
.btn--ghost:hover { background: var(--accent); color: var(--text); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(208,30,30,0.4); }

.contact__success {
  background: rgba(208,30,30,0.08);
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.contact__success h3 { color: var(--accent); margin-bottom: 12px; }

.contact__info {
  background: var(--bg-2);
  padding: 40px 44px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
}
.contact__info h3 { grid-column: 1 / -1; margin-bottom: 20px; font-size: 16px; }
.contact__person { padding: 16px 0; border-bottom: 0; }
.contact__person:last-of-type { border-bottom: 0; }
@media (max-width: 620px) {
  .contact__info { grid-template-columns: 1fr; column-gap: 0; }
}
.contact__person strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--text);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  line-height: 1.2;
}
.contact__person .role {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.07em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
  font-weight: 600;
}
.contact__person a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 16px;
  font-weight: 400;
  padding: 6px 0;
  transition: color 200ms ease;
}
.contact__person a:hover { color: var(--accent); }
.contact__person svg { flex-shrink: 0; color: var(--accent); }

.contact__map {
  margin-top: 24px;
  aspect-ratio: 16 / 4;
  max-height: 130px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  filter: grayscale(1) invert(0.92) contrast(0.85);
  position: relative;
  overflow: hidden;
}
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ─── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--bg);
  padding: 0;
  border-top: 2px solid var(--accent);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer__video {
  position: absolute;
  inset: 0;
  /* mismo crop que el hero: oculta la marca de agua del video */
  transform: scale(1.18) translateX(5%) translateZ(0);
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}
.footer__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  z-index: 1;
}
.footer__content {
  position: relative;
  z-index: 2;
  padding: 12px var(--pad-x) 10px;
}
.footer__logo {
  width: 200px;
  height: auto;
  margin: 0 auto 4px;
  opacity: 0.95;
}
.footer__tagline {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.footer__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.footer__meta a { color: var(--accent); }
.footer__meta a:hover { color: var(--text); }

/* Footer muted — subpages (darker + blur) */
.footer--muted .footer__video { opacity: 0.18; filter: blur(6px); }
.footer--muted .footer__video-overlay { background: rgba(10, 10, 10, 0.88); }

/* ─── Section navigation (index only) ──────────────────── */
.section-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.section-nav__dot {
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  border: none;
  padding: 0;
  outline-offset: 4px;
}
.section-nav__dot:hover { width: 28px; background: rgba(255, 255, 255, 0.55); }
.section-nav__dot.is-active { width: 32px; background: var(--accent); }

/* Hero scroll chevron */
.hero__chevron {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.45;
  animation: chevronBounce 2.4s ease-in-out infinite;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
.hero__chevron svg { display: block; }
.hero__chevron:hover { opacity: 0.95; }
@keyframes chevronBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

@media (max-width: 768px) {
  .section-nav { right: 12px; }
  .section-nav__dot { width: 14px; }
  .section-nav__dot.is-active { width: 22px; }
}

/* ─── WhatsApp float ───────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 52px;
  left: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  border: 0;
  animation: waHeartbeat 2.4s ease-in-out infinite;
}
.wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.55);
  z-index: -1;
  animation: waPulse 2.4s ease-out infinite;
}
.wa-float:hover {
  animation-play-state: paused;
  transform: scale(1.1);
}
.wa-float__label {
  position: absolute;
  left: 72px;
  background: var(--bg-2);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 200ms ease, transform 200ms ease;
  pointer-events: none;
}
.wa-float:hover .wa-float__label { opacity: 1; transform: translateX(0); }
@keyframes waHeartbeat {
  0%   { transform: scale(1); }
  12%  { transform: scale(1.1); }
  24%  { transform: scale(1); }
  38%  { transform: scale(1.06); }
  50%  { transform: scale(1); }
  100% { transform: scale(1); }
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (max-width: 600px) {
  .wa-float__label { display: none; }
}

/* ─── Utility ──────────────────────────────────────────── */
.cluster {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   MOBILE — < 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --pad-x: 20px;
    --pad-y: 64px;
  }

  body { font-size: 16px; }

  /* Typography */
  h1 { font-size: clamp(22px, 7vw, 38px); }
  h2 { font-size: clamp(16px, 5vw, 28px); }
  h3 { font-size: clamp(11px, 3vw, 15px); }
  .lead { font-size: 15px; line-height: 1.3; }
  .eyebrow { font-size: 10px; letter-spacing: 0.06em; }
  .eyebrow::before { width: 20px; }

  /* Nav — even tighter */
  .nav { padding: 10px 16px; }
  .nav.is-scrolled { padding: 8px 16px; }
  .nav__brand img { height: 46px; }
  .nav__brand-text { font-size: 11px; }
  .nav__brand-text small { font-size: 7px; letter-spacing: 0.28em; }
  .nav__burger { width: 40px; height: 40px; }
  .nav__burger span { left: 9px; right: 9px; }
  .nav__burger span:nth-child(1) { top: 12px; }
  .nav__burger span:nth-child(2) { top: 17px; }
  .nav__burger span:nth-child(3) { top: 22px; }
  .nav.is-menu-open .nav__burger span:nth-child(1),
  .nav.is-menu-open .nav__burger span:nth-child(3) { top: 17px; }

  .nav__links {
    right: 16px;
    width: calc(100vw - 32px);
    max-width: 280px;
  }

  /* Hero */
  .hero { height: 100vh; height: 100svh; }
  .hero__sticky { height: 100vh; height: 100svh; }
  .hero__content { padding: 100px 20px 80px; }
  .hero__logo { width: clamp(180px, 65vw, 280px); }
  .hero__tagline {
    font-size: 10px;
    letter-spacing: 0.05em;
    gap: 14px;
    margin-bottom: 12px;
  }
  .hero__tagline .dot { width: 4px; height: 4px; }
  .hero__sub {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .hero__corner {
    width: 36px; height: 36px;
  }
  .hero__corner--tl { top: 12px; left: 12px; }
  .hero__corner--tr { top: 12px; right: 12px; }
  .hero__corner--bl { bottom: 12px; left: 12px; }
  .hero__corner--br { bottom: 12px; right: 12px; }
  .hero__scroll { bottom: 20px; font-size: 10px; }
  .hero__scroll::after { height: 36px; }

  /* Section title */
  .section-title { padding-left: 18px; margin-bottom: 36px; }
  .section-title::before { width: 3px; }
  .deco-bar { width: 56px; height: 3px; margin-bottom: 20px; }

  /* About stats — single col on mobile */
  .about__stats {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }
  .stat-card { padding: 24px 18px; }
  .stat-card__num { font-size: 30px; }
  .about__body { font-size: 18px; line-height: 1.75; }

  /* Services — stack already happens at <900px, tighten */
  .cols-2 { gap: 40px; }
  .bullets li { font-size: 15px; padding: 12px 0 12px 26px; }
  .bullets li::before { width: 8px; height: 8px; }
  .sub-block h3 { font-size: 12px; letter-spacing: 0.03em; }
  .sub-block p { font-size: 15px; }

  /* Equipment brands — 2 cols */
  .equip-brands { margin-top: 40px; padding-top: 28px; }
  .equip-brands__row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .equip-brands__item { font-size: 12px; padding: 12px 6px; }

  /* Mic list */
  .mic-list li {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 18px 0;
  }
  .mic-list .ico { width: 40px; height: 40px; }
  .mic-list .ico svg { width: 18px; height: 18px; }
  .mic-list .body strong { font-size: 11px; letter-spacing: 0.04em; }
  .mic-list .body span { font-size: 14px; }

  /* Stacked images */
  .stacked-images { min-height: 0; gap: 16px; }
  .stacked-images .placeholder { aspect-ratio: 4/3; height: auto; }

  /* Gallery */
  .gallery__header { gap: 16px; margin-bottom: 28px; }
  .gallery__stage { aspect-ratio: 4/3; }
  .gallery__nav { width: 40px; height: 40px; }
  .gallery__nav--prev { left: 10px; }
  .gallery__nav--next { right: 10px; }
  .gallery__nav svg { width: 14px; height: 14px; }
  .gallery__counter {
    top: 12px; right: 12px;
    padding: 4px 10px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }
  .gallery__caption {
    bottom: 12px; left: 12px;
    padding: 4px 10px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }
  .gallery__slide-num { font-size: 34px; }
  .gallery__slide-num small { font-size: 10px; letter-spacing: 0.24em; }
  .gallery__slide-icon { width: 48px; height: 48px; }
  .gallery__thumbs { gap: 6px; }
  .gallery__thumb { font-size: 10px; letter-spacing: 0.14em; }

  /* Brands carousel */
  .brands { padding: 36px 0; }
  .brands__track { gap: 32px; }
  .brands__item {
    width: 210px;
    height: 132px;
    font-size: 13px;
    letter-spacing: 0.14em;
    padding: 16px;
  }
  .brands__item-num { font-size: 9px; top: 6px; left: 8px; }
  .brands__edge { width: 60px; }

  /* Testimonials */
  .testimonial { padding: 28px 22px 24px; }
  .testimonial__quote { font-size: 64px; }
  .testimonial__body { font-size: 15px; margin-bottom: 20px; }
  .testimonial__attrib strong { font-size: 13px; }
  .testimonial__attrib span { font-size: 11px; letter-spacing: 0.14em; }

  /* Instagram grid — 3 cols on mobile */
  .insta__grid { grid-template-columns: repeat(3, 1fr); gap: 3px; }
  .insta__tile-num { font-size: 22px; }
  .insta__handle { font-size: 12px; letter-spacing: 0.22em; margin-top: 24px; }

  /* Contact — keep readable on mobile */
  .contact__info { padding: 28px 22px; }
  .contact__person { padding: 20px 0; }
  .contact__person strong { font-size: 16px; letter-spacing: 0.01em; }
  .contact__person .role { font-size: 9px; letter-spacing: 0.06em; margin-bottom: 14px; }
  .contact__person a { font-size: 14px; }
  .field label { font-size: 9px; letter-spacing: 0.06em; }
  .field input, .field select, .field textarea { font-size: 15px; padding: 10px 0; }
  .btn { padding: 14px 22px; font-size: 10px; letter-spacing: 0.05em; }

  /* Footer */
  .footer__content { padding: 28px 20px 18px; }
  .footer__logo { width: 200px; margin-bottom: 8px; }
  .footer__tagline { font-size: 9px; letter-spacing: 0.06em; margin-bottom: 16px; }
  .footer__meta {
    gap: 8px 16px;
    flex-direction: column;
    font-size: 9px;
    letter-spacing: 0.06em;
    padding-top: 28px;
  }
  .footer__meta span:nth-child(2),
  .footer__meta span:nth-child(4) { display: none; }

  /* WhatsApp float — smaller */
  .wa-float {
    width: 52px; height: 52px;
    bottom: 44px; left: 16px;
  }
  .wa-float svg { width: 24px; height: 24px; }

  /* Section padding */
  .section { padding: 56px var(--pad-x); }

  /* Hero beams — softer on mobile to avoid jankyness */
  .hero__beam { width: 80vw; }
}

/* ============================================================
   SMALL MOBILE — < 420px
   ============================================================ */
@media (max-width: 420px) {
  h2 { font-size: clamp(14px, 6vw, 22px); }
  .hero__tagline {
    flex-direction: column;
    gap: 8px;
  }
  .hero__tagline .dot { display: none; }
  .hero__logo { width: 75vw; }
  .gallery__stage { aspect-ratio: 1/1; }
  .insta__grid { grid-template-columns: repeat(2, 1fr); }
  .brands__item { width: 185px; height: 120px; font-size: 12px; }
}

/* ============================================================
   AÑADIDOS — Tarjetas de portafolio (Home) y galerías inmersivas
   Reutilizan tokens existentes. No alteran la estética del sitio.
   ============================================================ */

/* ─── Tarjetas de servicios (Home) — banners en fila ───────── */
.portfolio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.portfolio-card {
  position: relative;
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(208,30,30,0.5);
  box-shadow: 0 22px 54px rgba(0,0,0,0.55), 0 0 0 1px rgba(208,30,30,0.25);
}
.portfolio-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-3);
}
/* 6 fotos × 3 s = 18 s por ciclo completo, ~0.5 s de crossfade */
.portfolio-card__media--cycle img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: cycleImg6 18s linear infinite;
}
.portfolio-card__media--cycle img:nth-child(1) { animation-delay:   0s; }
.portfolio-card__media--cycle img:nth-child(2) { animation-delay: -15s; }
.portfolio-card__media--cycle img:nth-child(3) { animation-delay: -12s; }
.portfolio-card__media--cycle img:nth-child(4) { animation-delay:  -9s; }
.portfolio-card__media--cycle img:nth-child(5) { animation-delay:  -6s; }
.portfolio-card__media--cycle img:nth-child(6) { animation-delay:  -3s; }
/* Crossfade con solapamiento: cada imagen funde su entrada ANTES de que la
   anterior funda su salida, así siempre hay ≥1 imagen a opacidad completa y
   nunca aparece el fondo negro entre fotos. Funciona para las 6 imágenes
   (stagger de 16.7%) tanto en el hero como en las galerías del home. */
@keyframes cycleImg6 {
  0%    { opacity: 0; }
  4%    { opacity: 1; }
  29%   { opacity: 1; }
  33%   { opacity: 0; }
  100%  { opacity: 0; }
}
.portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.portfolio-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.portfolio-card:hover .portfolio-card__media img,
.portfolio-card:hover .portfolio-card__media video { transform: scale(1.05); }
.portfolio-card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.62) 100%);
  pointer-events: none;
  transition: background 300ms ease;
}
/* B · Al pasar el cursor se revela más la foto */
.portfolio-card:hover .portfolio-card__media::after {
  background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.45) 100%);
}
.portfolio-card__body {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.portfolio-card__eyebrow {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.portfolio-card__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(13px, 1.5vw, 22px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
  margin: 0;
  text-align: center;
}
.portfolio-card__cta {
  position: absolute;
  bottom: 16px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  padding: 7px 14px;
  border: 1px solid var(--accent);
  background: #000;
  border-radius: 999px;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.portfolio-card:hover .portfolio-card__cta {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
}
@media (max-width: 900px) {
  .portfolio-cards { grid-template-columns: 1fr; max-width: 430px; gap: 16px; }
  .portfolio-card { border-radius: 20px; }
  .portfolio-card__body { padding: 22px 20px 22px; }
  .portfolio-card__title { font-size: 22px; }
  .portfolio-card__cta { font-size: 11px; padding: 10px 14px; letter-spacing: 0.22em; }
}

/* ─── Page hero slideshow ──────────────────────────────────── */
.page-hero__slideshow {
  position: absolute;
  inset: 0;
}
.page-hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.page-hero__slide.is-active {
  opacity: 1;
}
.page-hero__slide img {
  flex: 1;
  min-width: 0;
  height: 100%;
  object-fit: cover;
}

/* ─── Banner / Hero de páginas internas ───────────────────── */
.page-hero {
  position: relative;
  width: 100%;
  height: clamp(360px, 60vh, 620px);
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 2px solid var(--accent);
}
/* Variante: hero se queda pegado atrás mientras el contenido desliza encima */
.page-hero--behind {
  position: sticky;
  top: 0;
  z-index: 0;
}
.page-hero--behind ~ * {
  position: relative;
  z-index: 1;
  background: var(--bg);
}
.page-hero--behind ~ .footer {
  background: var(--bg-2);
}
.page-hero__media {
  position: absolute; inset: 0;
}
.page-hero__media img,
.page-hero__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}
/* Slideshow en el fondo del hero — 6 fotos × 3 s */
.page-hero__media--cycle img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  opacity: 0;
  animation: cycleImg6 36s linear infinite;
}
.page-hero__media--cycle img:nth-child(1) { animation-delay:   0s; }
.page-hero__media--cycle img:nth-child(2) { animation-delay: -30s; }
.page-hero__media--cycle img:nth-child(3) { animation-delay: -24s; }
.page-hero__media--cycle img:nth-child(4) { animation-delay: -18s; }
.page-hero__media--cycle img:nth-child(5) { animation-delay: -12s; }
.page-hero__media--cycle img:nth-child(6) { animation-delay:  -6s; }
.page-hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.7) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(208,30,30,0.18), transparent 70%);
  pointer-events: none;
}
.page-hero--dark .page-hero__media::after {
  background:
    linear-gradient(180deg, rgba(5,5,5,0.72) 0%, rgba(5,5,5,0.88) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(208,30,30,0.18), transparent 70%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--pad-x) 60px;
}
.page-hero__eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.page-hero__eyebrow::before,
.page-hero__eyebrow::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 6.5vw, 90px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 16px;
  color: var(--text);
}
.page-hero__sub {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-dim);
  max-width: 720px;
}

/* ─── Galería inmersiva (3-col masonry) ──────────────────── */
.immersive-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
@media (max-width: 900px) { .immersive-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .immersive-gallery { grid-template-columns: 1fr; } }

.immersive-gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 240ms ease, border-color 240ms ease;
  cursor: zoom-in;
}
.immersive-gallery__item:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.immersive-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.immersive-gallery__item:hover img { transform: scale(1.04); }
.immersive-gallery__item--wide      { grid-column: span 2; }
@media (max-width: 900px) { .immersive-gallery__item--wide { grid-column: span 2; } }
@media (max-width: 560px) { .immersive-gallery__item--wide { grid-column: span 1; } }

/* ─── CTA strip (Cotizar tu evento al final) ─────────────── */
.cta-strip {
  background: var(--bg-2);
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  text-align: center;
  padding: clamp(60px, 9vw, 110px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(208,30,30,0.12), transparent 60%);
  pointer-events: none;
}
.cta-strip__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-strip h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 50px);
}
.cta-strip p {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-dim);
  margin: 0 0 36px;
  line-height: 1.7;
}
.cta-strip .btn { font-size: 14px; }

/* ─── Página equipamiento: anchors internos ───────────────── */
.equip-anchors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.equip-anchors a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}
.equip-anchors a:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(208,30,30,0.06);
}

/* ============================================================
   OPTIMIZACIÓN DE RENDIMIENTO Y ACCESIBILIDAD (2026-06-29)
   ============================================================ */

/* <picture> transparente al layout: el <img> interior conserva
   exactamente el mismo comportamiento CSS que cuando estaba suelto.
   Permite servir WebP con fallback sin alterar ningún diseño. */
picture { display: contents; }

/* Fondos sólidos detrás de los videos: si el video tarda o no carga,
   se ve el negro de marca en vez de un hueco. */
.hero__video,
.footer__video,
.page-hero__media video { background: var(--bg); }

/* Las imágenes con width/height nativos mantienen su proporción aunque
   el CSS fije el ancho — evita saltos de layout (CLS) al cargar. */
.immersive-gallery__item img,
.insta__carousel-slide img { height: auto; }

/* Respeto por usuarios que prefieren menos movimiento (accesibilidad +
   ahorro de batería/CPU en móviles). El JS marca <html class="reduce-motion">
   según prefers-reduced-motion; visitar ?motion=1 fuerza la vista animada
   (para revisar el sitio en equipos con animaciones de SO desactivadas). */
html.reduce-motion *,
html.reduce-motion *::before,
html.reduce-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  transition-delay: 0ms !important;
  scroll-behavior: auto !important;
}
html.reduce-motion .reveal { opacity: 1 !important; transform: none !important; }
html.reduce-motion .hero__logo { filter: drop-shadow(0 0 60px var(--accent-glow)) !important; }

/* Foco visible accesible para teclado (no afecta el mouse). */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ============================================================
   FLUIDEZ (2026-07-05) — transiciones de scroll, protagonismo
   de elementos clave y micro-rendimiento
   ============================================================ */

/* ─── Barra de progreso de lectura ─────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  z-index: 300;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent) 60%, #ff4b4b);
  box-shadow: 0 0 12px rgba(208, 30, 30, 0.5);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

/* ─── Variantes de reveal (más direcciones de entrada) ─────── */
.reveal--left  { transform: translateX(-44px); }
.reveal--right { transform: translateX(44px); }
.reveal--zoom  { transform: scale(0.92); }
.reveal--blur  { filter: blur(12px); transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1), filter 700ms cubic-bezier(.2,.7,.2,1); }
.reveal--left.is-in,
.reveal--right.is-in { transform: translateX(0); }
.reveal--zoom.is-in  { transform: scale(1); }
.reveal--blur.is-in  { filter: blur(0); }

/* ─── Entradas escalonadas (hijos de grillas en cascada) ────── */
.st {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1) var(--d, 0ms),
              transform 700ms cubic-bezier(.2,.7,.2,1) var(--d, 0ms);
}
.st.is-in {
  opacity: 1;
  transform: none;
}
/* Reafirmar los hovers con transform que la regla anterior taparía */
.immersive-gallery__item.st.is-in:hover { transform: translateY(-3px); }
.testimonial.st.is-in:hover { transform: translateY(-4px); }
.portfolio-card.st.is-in:hover { transform: translateY(-4px); }

/* ─── Titulares palabra por palabra (máscara de línea) ─────── */
.split .st-w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  /* margen interno para que tildes y descendentes no se recorten */
  padding: 0.14em 0.02em;
  margin: -0.14em -0.02em;
}
.split .st-w > span {
  display: inline-block;
  transform: translateY(130%);
  transition: transform 750ms cubic-bezier(.2,.7,.2,1) var(--d, 0ms);
}
.split.is-in .st-w > span { transform: translateY(0); }

/* ─── Protagonismo de los números (stat cards) ─────────────── */
.stat-card.st::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms cubic-bezier(.2,.7,.2,1) calc(var(--d, 0ms) + 250ms);
}
.stat-card.st.is-in::before { transform: scaleX(1); }
.stat-card.st .stat-card__icon {
  opacity: 0;
  transform: scale(0.5) rotate(-8deg);
  transition: opacity 600ms ease calc(var(--d, 0ms) + 150ms),
              transform 600ms cubic-bezier(.34,1.56,.64,1) calc(var(--d, 0ms) + 150ms);
}
.stat-card.st.is-in .stat-card__icon {
  opacity: 1;
  transform: none;
}
.stat-card__num.is-counted {
  animation: numPop 550ms cubic-bezier(.34,1.56,.64,1);
}
@keyframes numPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.14); text-shadow: 0 0 34px var(--accent-glow), 0 0 12px rgba(208,30,30,0.65); }
  100% { transform: scale(1); text-shadow: none; }
}

/* ─── Cartelera: línea que recorre el borde de la card al hover ── */
@property --ao-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 3px;
  background: conic-gradient(from var(--ao-angle),
    transparent 0deg 290deg,
    rgba(255, 255, 255, 0.22) 312deg,
    rgba(255, 255, 255, 0.85) 344deg,
    #ffffff 357deg,
    transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
  z-index: 3;
}
.portfolio-card:hover::after {
  opacity: 1;
  animation: borderChase 1.4s linear infinite;
}
@keyframes borderChase { to { --ao-angle: 360deg; } }

/* ─── Cursor: punto rojo + anillo que siguen al mouse ──────── */
/* Cuelgan de <html> (no de <body>): el zoom de escritorio del body
   desalinearía las coordenadas del mouse con position:fixed. */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  will-change: transform;
}
.cursor-dot {
  width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  transition: opacity 200ms ease;
}
.cursor-ring {
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 1.5px solid rgba(208, 30, 30, 0.5);
  transition: opacity 200ms ease, width 240ms ease, height 240ms ease,
              margin 240ms ease, border-color 240ms ease, background 240ms ease;
}
html.cursor-on .cursor-dot,
html.cursor-on .cursor-ring { opacity: 1; }
.cursor-ring.is-link {
  width: 54px; height: 54px;
  margin: -27px 0 0 -27px;
  border-color: var(--accent);
  background: rgba(208, 30, 30, 0.07);
}

/* ─── Detalles que se dibujan al entrar en escena ──────────── */
/* Línea separadora inferior de cada sección */
.section:not(.section--no-rule)::after {
  transform: translateX(-50%) scaleX(0);
  transition: transform 1100ms cubic-bezier(.2,.7,.2,1) 150ms;
}
.section.is-vis:not(.section--no-rule)::after {
  transform: translateX(-50%) scaleX(1);
}
/* Guion del eyebrow crece desde la izquierda */
.section-title .eyebrow::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1) 250ms;
}
.section-title.is-in .eyebrow::before { transform: scaleX(1); }
/* Barra decorativa (Quiénes Somos) se estira al aparecer */
.deco-bar.reveal { transform: scaleX(0.15); }
.deco-bar.reveal.is-in { transform: scaleX(1); }

/* ─── Heros de subpáginas: entrada cinematográfica ─────────── */
.page-hero__eyebrow { animation: heroFadeUp 800ms ease 150ms both; }
.page-hero__sub     { animation: heroFadeUp 800ms ease 600ms both; }

/* ─── WhatsApp entra en escena tras cargar ─────────────────── */
html:not(.reduce-motion) .wa-float {
  animation: waIn 700ms cubic-bezier(.34,1.56,.64,1) 900ms both,
             waHeartbeat 2.4s ease-in-out 1.8s infinite;
}
@keyframes waIn {
  from { transform: translateX(-90px) scale(0.6); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

/* ─── Transición entre páginas (View Transitions API) ──────── */
/* Navegar entre páginas del sitio hace un crossfade suave tipo app.
   Navegadores sin soporte simplemente cargan normal. */
@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
  ::view-transition-old(root) { animation: vtFadeOut 200ms ease both; }
  ::view-transition-new(root) { animation: vtFadeIn 300ms ease both; }
}
@keyframes vtFadeOut { to { opacity: 0; } }
@keyframes vtFadeIn { from { opacity: 0; } }

/* ─── Escala de escritorio: proporción como al 75% de zoom ─── */
/* En pantallas de escritorio todo el sitio se dibuja al 75%, que es la
   proporción aprobada (más aire, tipografía menos gigante). Las alturas
   basadas en viewport (hero) se compensan para seguir llenando pantalla. */
@media (min-width: 900px) {
  body { zoom: 0.75; }
  .hero,
  .hero__sticky {
    height: calc(100vh / 0.75);
    height: calc(100svh / 0.75);
  }
  .page-hero { height: clamp(360px, 80vh, 620px); }
}

/* ─── Micro-rendimiento ────────────────────────────────────── */
/* Secciones muy por debajo del fold: el navegador no las pinta
   hasta acercarse a ellas (render más rápido del primer viewport). */
#insta, #contacto {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}
/* Carrusel de marcas en pausa cuando está fuera de pantalla */
.brands-stack.is-off .brands-row__track { animation-play-state: paused; }

/* ─── Reduced motion: los añadidos quedan en su estado final ──
   Nada de estados a medias: sin animaciones, el sitio se ve
   completo y estable desde el primer pintado (nada "aparece"
   de golpe al bajar). */
html.reduce-motion .st,
html.reduce-motion .split .st-w > span {
  opacity: 1 !important;
  transform: none !important;
}
html.reduce-motion .stat-card.st .stat-card__icon {
  opacity: 1 !important;
  transform: none !important;
}
html.reduce-motion .stat-card.st::before { transform: scaleX(1) !important; }
html.reduce-motion .section:not(.section--no-rule)::after {
  transform: translateX(-50%) scaleX(1) !important;
}
html.reduce-motion .section-title .eyebrow::before { transform: scaleX(1) !important; }
html.reduce-motion .deco-bar.reveal { transform: scaleX(1) !important; }
html.reduce-motion .page-hero__eyebrow,
html.reduce-motion .page-hero__sub {
  animation: none !important;
  opacity: 1 !important;
}
html.reduce-motion .scroll-progress { display: none; }
html.reduce-motion .portfolio-card::after { display: none; }
/* Los ciclos de fotos por CSS parten con opacity:0; sin animación quedaban
   como cajas negras. En modo reducido se muestra la primera foto fija. */
html.reduce-motion .portfolio-card__media--cycle img,
html.reduce-motion .page-hero__media--cycle img { animation: none !important; }
html.reduce-motion .portfolio-card__media--cycle img:first-child,
html.reduce-motion .page-hero__media--cycle img:first-child { opacity: 1 !important; }
