/* ═══════════════════════════════════════════════
   DAVE TOMAS — styles.css · v20260526-r3
   High-conversion landing · Dark + Pink + Turquoise
   ═══════════════════════════════════════════════ */

/* ── Design tokens ───────────────────────────── */
:root {
  --black:      #080808;
  --black-2:    #0e0e0e;
  --black-3:    #161616;
  --white:      #f0ede8;
  --white-72:   rgba(240,237,232,.72);
  --white-40:   rgba(240,237,232,.40);
  --white-15:   rgba(240,237,232,.15);
  --white-06:   rgba(240,237,232,.06);

  --gold:       #C4A84F;
  --gold-lt:    #DFC07A;
  --gold-glow:  rgba(196,168,79,.28);
  --gold-06:    rgba(196,168,79,.06);
  --gold-12:    rgba(196,168,79,.12);
  --gold-20:    rgba(196,168,79,.20);

  --pink:       #D4698A;
  --pink-lt:    #F07097;
  --pink-glow:  rgba(212,105,138,.35);
  --pink-12:    rgba(212,105,138,.12);
  --pink-20:    rgba(212,105,138,.20);

  --turq:       #2AABB8;
  --turq-12:    rgba(42,171,184,.12);
  --turq-20:    rgba(42,171,184,.20);
  --indigo:     #3D35A8;

  --font: 'Montserrat', sans-serif;

  /* 8 px grid */
  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-5:  2.5rem;
  --sp-6:  3rem;
  --sp-8:  4rem;
  --sp-10: 5rem;
  --sp-12: 6rem;
  --sp-16: 8rem;
  --sp-20: 10rem;

  --ease-out:  cubic-bezier(.16,1,.3,1);
  --ease-io:   cubic-bezier(.87,0,.13,1);
  --ease-snap: cubic-bezier(.34,1.56,.64,1);

  --max: 1200px;
  --gutter: 2rem;
}

/* ── Reset ───────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (hover:none) { body { cursor: auto; } }
a, button { cursor: none; }
@media (hover:none) { a, button { cursor: auto; } }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Film-grain */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .032;
  pointer-events: none;
  z-index: 9999;
}

/* ── Container ───────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ════════════════════════════════════════════════ */
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--turq));
  z-index: 200;
  transition: width .05s linear;
}

/* ════════════════════════════════════════════════
   CUSTOM CURSOR
   ════════════════════════════════════════════════ */
.c-cursor-dot,
.c-cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
}
.c-cursor-dot {
  width: 5px; height: 5px;
  background: var(--pink);
  transition: transform .08s var(--ease-out), opacity .2s ease;
}
.c-cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(212,105,138,.5);
  transition: transform .18s var(--ease-out),
              width .25s var(--ease-out),
              height .25s var(--ease-out),
              opacity .2s ease;
}
body.cursor-link .c-cursor-ring { width: 54px; height: 54px; border-color: var(--pink); }
body.cursor-link .c-cursor-dot  { transform: translate(-50%,-50%) scale(0); }
@media (hover:none) { .c-cursor-dot, .c-cursor-ring { display: none; } }

/* ════════════════════════════════════════════════
   TYPOGRAPHY SCALE
   ════════════════════════════════════════════════ */
.section-label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: var(--sp-3);
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem; height: 1px;
  background: var(--pink);
  flex-shrink: 0;
}
.section-label--turq { color: var(--turq); }
.section-label--turq::before { background: var(--turq); }
.section-label--gold  { color: var(--gold); }
.section-label--gold::before  { background: var(--gold); }

.section-title {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--white);
}
.section-header { margin-bottom: var(--sp-12); }

/* ════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
}
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--card-delay, 0s);
}
.reveal.safe { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 2.1rem;
  min-height: 44px;
  font-family: var(--font);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  overflow: hidden;
  transition: color .3s var(--ease-out),
              border-color .3s var(--ease-out),
              transform .25s var(--ease-snap),
              box-shadow .3s ease;
  will-change: transform;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  transform: translateX(-101%);
  transition: transform .4s var(--ease-out);
  z-index: 0;
}
.btn:hover::after  { transform: translateX(0); }
.btn > * { position: relative; z-index: 1; }

/* Pink — primary */
.btn--pink {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn--pink::after { background: var(--pink-lt); }
.btn--pink:hover  {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--pink-glow);
}

/* Outline — secondary */
.btn--outline {
  background: transparent;
  color: var(--white-72);
  border-color: rgba(240,237,232,.28);
}
.btn--outline::after { background: rgba(240,237,232,.06); }
.btn--outline:hover  {
  color: var(--white);
  border-color: rgba(240,237,232,.55);
  transform: translateY(-2px);
}

/* Gold — decorative / footer */
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold::after { background: var(--gold-lt); }
.btn--gold:hover  {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--gold-glow);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--white-72);
  border-color: var(--white-15);
}
.btn--ghost::after { background: var(--white-06); }
.btn--ghost:hover  { color: var(--white); border-color: var(--white-40); transform: translateY(-2px); }

.btn--lg { padding: 1.05rem 2.6rem; font-size: .72rem; min-height: 52px; }

/* ════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.75rem var(--gutter);
  transition: background .5s ease, padding .4s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1.1rem var(--gutter);
  border-color: var(--white-06);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.05em;
  background: linear-gradient(135deg, var(--pink) 0%, var(--turq) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links li { position: relative; }
.nav__links a {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white-40);
  padding-bottom: 3px;
  transition: color .25s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav__links a:hover        { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active       { color: var(--white); }
.nav__links a.active::after{ transform: scaleX(1); }

.nav__cta-link {
  padding: .55rem 1.35rem !important;
  border: 1px solid var(--pink-20) !important;
  color: var(--pink) !important;
  transition: background .25s ease, border-color .25s ease, color .25s ease !important;
}
.nav__cta-link::after { display: none !important; }
.nav__cta-link:hover  {
  background: var(--pink) !important;
  border-color: var(--pink) !important;
  color: var(--white) !important;
}
.nav__presskit {
  font-size: .65rem !important;
  font-weight: 600 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: var(--turq) !important;
  transition: opacity .25s ease !important;
}
.nav__presskit:hover { opacity: .7 !important; }
.nav__presskit::after { display: none !important; }

/* ── Language toggle ────────────────────── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: var(--sp-2);
}
.lang-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--white-40);
  font-family: var(--font);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .28rem .55rem;
  min-height: 28px;
  cursor: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.lang-btn.active {
  color: var(--pink);
  border-color: var(--pink-20);
  background: var(--pink-12);
}
.lang-btn:hover:not(.active) { color: var(--white-72); border-color: var(--white-15); }
@media (hover:none) { .lang-btn { cursor: auto; } }
@media (max-width: 768px) { .lang-toggle { margin-left: auto; margin-right: var(--sp-2); } }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  padding: 8px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block; width: 22px; height: 1px;
  background: var(--white);
  transition: all .3s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--white-40); font-size: 1.4rem;
  min-height: 44px; min-width: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s ease;
}
.mobile-menu__close:hover { color: var(--white); }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.mobile-menu a {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 800; letter-spacing: -.04em;
  color: var(--white-72);
  transition: color .25s ease;
  min-height: 44px;
  display: flex; align-items: center;
}
.mobile-menu a:hover { color: var(--pink); }

/* ════════════════════════════════════════════════
   HERO — image overlay, staggered entrance
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Background video layer */
.hero__bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  background-color: var(--black);
}
/* Desktop: portrait video → contain para ver cuerpo entero */
@media (min-width: 1024px) {
  .hero__bg-video {
    object-fit: contain;
  }
}
/* Atmospheric gradient fallback (also used when photo is present as overlay) */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,.88) 0%, rgba(8,8,8,.42) 45%, rgba(8,8,8,.92) 100%),
    radial-gradient(ellipse 110% 80% at 50% 110%, rgba(212,105,138,.2) 0%, transparent 55%),
    radial-gradient(ellipse 65% 55% at 12% 50%, rgba(42,171,184,.1) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 88% 20%, rgba(61,53,168,.12) 0%, transparent 55%);
}

.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .35;
}

.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 8rem var(--gutter) 4rem;
  max-width: 860px;
  width: 100%;
}

.hero__eyebrow {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--turq);
  margin-bottom: 2rem;
}

.hero__headline {
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.05em;
  color: var(--white);
  margin-bottom: 2rem;
}
/* highlights in pink (default) */
.hero__headline em {
  font-style: normal;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* "ritmo" — gradiente pink→turq + shimmer suave como stat-num */
em.ritmo {
  background: linear-gradient(
    135deg,
    var(--pink)    0%,
    var(--turq)   45%,
    var(--pink-lt) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ritmoShimmer 5s ease-in-out infinite;
}
@keyframes ritmoShimmer {
  0%   { background-position: 0%   center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0%   center; }
}

.hero__sub {
  font-size: clamp(.82rem, 1.3vw, .95rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-72);
  margin-bottom: 2.5rem;
  max-width: 46ch;
  margin-left: auto; margin-right: auto;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__proof {
  font-size: .78rem;
  letter-spacing: .06em;
  color: rgba(240,237,232,.5);
  margin-top: -.5rem;
  margin-bottom: var(--sp-6);
  text-transform: uppercase;
}

.value-prop__support {
  font-size: .9rem;
  color: rgba(240,237,232,.55);
  line-height: 1.65;
  margin-top: .5rem;
  margin-bottom: var(--sp-6);
}

.booking__guarantees {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.booking__guarantee {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(240,237,232,.6);
}
.booking__guarantee-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--turq);
  flex-shrink: 0;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero__scroll-line {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--pink));
  animation: scrollPulse 2.4s var(--ease-io) infinite;
}
.hero__scroll-label {
  font-size: .5rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--white-40);
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════ */
.marquee-belt {
  background: var(--pink);
  padding: .75rem 0;
  overflow: hidden; line-height: 1;
}
.marquee-belt__track {
  display: flex; gap: 2.5rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-belt__track span {
  font-size: .58rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(8,8,8,.8); white-space: nowrap;
}
.marquee-belt__track .sep { font-size: .4rem; color: rgba(8,8,8,.3); letter-spacing: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════
   REELS — VIDEO NATIVO
   ════════════════════════════════════════════════ */
.reels {
  padding: var(--sp-20) 0;
  background: var(--black-2);
}
.reels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--sp-12);
  align-items: start;
}
.reel-item {
  width: 100%;
}

/* ── Player ── */
.reel-player {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #0d0d0d;
  border-radius: .75rem;
  overflow: hidden;
  cursor: pointer;
}
/* placeholder mientras no hay video */
.reel-player::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg,
      oklch(22% .04 330 / .9) 0%,
      oklch(14% .02 220 / .95) 100%);
}
.reel-video {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .4s ease;
}

/* ── Botón volumen ── */
.reel-volume {
  position: absolute;
  bottom: 1rem; right: 1rem;
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s var(--ease-snap), border-color .2s;
  z-index: 2;
}
.reel-volume:hover {
  background: rgba(0,0,0,.82);
  border-color: rgba(255,255,255,.3);
  transform: scale(1.08);
}
.reel-volume svg { width: 1.1rem; height: 1.1rem; pointer-events: none; }

/* muteado → muestra el icono con X; con sonido → muestra el icono con ondas */
.reel-volume .vol-icon { width: 1rem; height: 1rem; display: block; }
.reel-volume .vol-icon--muted { color: rgba(255,255,255,.8); }
.reel-volume .vol-icon--sound { display: none; color: var(--pink); }
.reel-volume.is-unmuted .vol-icon--muted { display: none; }
.reel-volume.is-unmuted .vol-icon--sound { display: block; }
.reel-volume.is-unmuted { border-color: var(--pink); }

.reels__statement {
  max-width: 48rem;
  margin: var(--sp-16) auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reels__title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--sp-5);
}
.reels__desc {
  font-size: clamp(.88rem, 1.3vw, 1rem);
  line-height: 1.85;
  color: var(--white-60);
  font-weight: 300;
  margin-bottom: var(--sp-4);
}
.reels__support {
  font-size: .8rem;
  line-height: 1.75;
  color: var(--white-40);
  font-weight: 300;
  font-style: italic;
}

/* ════════════════════════════════════════════════
   VALUE PROPOSITION
   ════════════════════════════════════════════════ */
.value-prop {
  padding: var(--sp-20) 0;
  background: var(--black);
  text-align: center;
}
.value-prop .section-label {
  justify-content: center;
}
.value-prop .section-label::before { display: none; }
.value-prop__statement {
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.2;
  color: var(--white);
  max-width: 24ch;
  margin: 0 auto var(--sp-5);
}
.value-prop__desc {
  font-size: .88rem;
  line-height: 1.88;
  color: var(--white-72);
  font-weight: 300;
  max-width: 52ch;
  margin: 0 auto var(--sp-8);
}

/* ════════════════════════════════════════════════
   SERVICIOS — editorial list
   ════════════════════════════════════════════════ */
.servicios {
  padding: var(--sp-20) 0;
  background: var(--black-3);
}
.servicios__top { margin-bottom: var(--sp-12); }
.servicios__top .section-header { margin-bottom: var(--sp-4); }
.servicios__intro {
  font-size: .85rem; line-height: 1.8;
  color: var(--white-72); font-weight: 300;
  max-width: 62ch;
  margin-top: var(--sp-4);
}
/* ── Service cards: 3-column image cards ── */
.servicios__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--white-06);
  border-radius: .5rem;
  overflow: hidden;
}
.srv-card {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  background: var(--black-3);
}
.srv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--turq));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
  z-index: 2;
}
.srv-card:hover::after { transform: scaleX(1); }
/* Ken Burns wrapper — handles hover zoom independently */
.srv-card__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: transform .6s var(--ease-out);
}
.srv-card:hover .srv-card__bg-wrap {
  transform: scale(1.05);
}
/* Background images — stacked, crossfade via JS */
.srv-card__bg {
  position: absolute;
  inset: -8%;
  width: 116%; height: 116%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.55) saturate(.85);
  opacity: 0;
  transition: opacity 1.8s ease, filter .5s ease;
  will-change: transform, opacity;
}
/* Each image has its own Ken Burns direction */
.srv-card__bg:nth-child(1) { animation: kenBurnsA 14s ease-in-out infinite; }
.srv-card__bg:nth-child(2) { animation: kenBurnsB 18s ease-in-out infinite; }
.srv-card__bg:nth-child(3) { animation: kenBurnsC 16s ease-in-out infinite; }
.srv-card__bg:nth-child(4) { animation: kenBurnsD 20s ease-in-out infinite; }
.srv-card:hover .srv-card__bg { filter: brightness(.65) saturate(.95); }

/* 4 Ken Burns variants — each pans a different direction */
@keyframes kenBurnsA {
  0%   { transform: scale(1.00) translate( 0%,    0%  ); }
  50%  { transform: scale(1.08) translate(-2%,   -1.5%); }
  100% { transform: scale(1.00) translate( 0%,    0%  ); }
}
@keyframes kenBurnsB {
  0%   { transform: scale(1.00) translate( 0%,    0%  ); }
  50%  { transform: scale(1.07) translate( 2%,   -2%  ); }
  100% { transform: scale(1.00) translate( 0%,    0%  ); }
}
@keyframes kenBurnsC {
  0%   { transform: scale(1.00) translate( 0%,    0%  ); }
  50%  { transform: scale(1.06) translate(-1.5%,  2%  ); }
  100% { transform: scale(1.00) translate( 0%,    0%  ); }
}
@keyframes kenBurnsD {
  0%   { transform: scale(1.00) translate( 0%,    0%  ); }
  50%  { transform: scale(1.09) translate( 1.5%,  1.5%); }
  100% { transform: scale(1.00) translate( 0%,    0%  ); }
}
.srv-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 20%,
    rgba(8,8,8,.5) 60%,
    rgba(8,8,8,.92) 100%
  );
  pointer-events: none;
}
.srv-card__content {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  width: 100%;
}
.srv-card__num {
  font-size: .5rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--pink);
}
.srv-card__title {
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: -.03em; line-height: 1.2;
  color: var(--white);
}
.srv-card__desc {
  font-size: .78rem; line-height: 1.78;
  color: var(--white-72); font-weight: 300;
  max-width: 38ch;
}
.srv-card__cta {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: 1.25rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white-72);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 2rem;
  padding: .45rem 1rem;
  text-decoration: none;
  transition: color .22s var(--ease-out), border-color .22s var(--ease-out), background .22s var(--ease-out);
}
.srv-card__cta::after {
  content: '→';
  font-size: .7rem;
  transition: transform .22s var(--ease-out);
}
.srv-card__cta:hover {
  color: var(--white);
  border-color: var(--pink);
  background: rgba(255,255,255,.05);
}
.srv-card__cta:hover::after { transform: translateX(3px); }

/* ════════════════════════════════════════════════
   BENEFITS
   ════════════════════════════════════════════════ */
.benefits {
  padding: var(--sp-12) 0;
  background: var(--black);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--white-06);
  margin-top: var(--sp-8);
}
.benefit-item {
  background: var(--black);
  padding: var(--sp-5) var(--sp-4);
  position: relative;
  overflow: hidden;
  transition: background .3s ease;
}
.benefit-item:hover { background: var(--black-2); }
.benefit-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--turq));
  transition: width .55s var(--ease-out);
}
.benefit-item:hover::after { width: 100%; }

.benefit-icon {
  width: 2rem; height: 2rem;
  color: var(--pink);
  margin-bottom: var(--sp-3);
  transition: color .3s ease, transform .35s var(--ease-snap);
}
.benefit-item:hover .benefit-icon { color: var(--turq); transform: scale(1.1) rotate(-5deg); }
.benefit-icon svg { width: 100%; height: 100%; }

.benefit-title {
  font-size: .92rem; font-weight: 700;
  letter-spacing: -.02em; color: var(--white);
  margin-bottom: var(--sp-1);
}
.benefit-desc {
  font-size: .78rem; line-height: 1.78;
  color: var(--white-40); font-weight: 300;
}

/* ════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════ */
.stats-section {
  padding: var(--sp-16) 0;
  background: var(--black-2);
  border-top: 1px solid var(--white-06);
  border-bottom: 1px solid var(--white-06);
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex; flex-direction: column; gap: .4rem;
  padding: var(--sp-6) var(--sp-5);
  border-right: 1px solid var(--white-06);
  position: relative;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }
.stat-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--turq));
  transition: width .6s var(--ease-out);
}
.stat-item.in::after { width: 100%; }

.stat-num {
  font-size: clamp(2.8rem, 5.5vw, 4rem);
  font-weight: 900; letter-spacing: -.05em;
  background: linear-gradient(135deg, var(--pink) 0%, var(--turq) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-lab {
  font-size: .6rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--white-40);
}

/* ════════════════════════════════════════════════
   CTA INLINE — mid-page
   ════════════════════════════════════════════════ */
.cta-inline {
  padding: var(--sp-12) 0;
  text-align: center;
  border-top: 1px solid var(--white-06);
  border-bottom: 1px solid var(--white-06);
  position: relative;
  overflow: hidden;
  /* Imagen fija — efecto parallax al scrollear */
  background-image: url('assets/img/cta-bg.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}
/* Overlay oscuro para que el texto sea legible */
.cta-inline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.65);
  pointer-events: none;
}
.cta-inline__inner { position: relative; z-index: 1; }
.cta-inline__text {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: var(--sp-5);
  line-height: 1.2;
}

/* ════════════════════════════════════════════════
   TESTIMONIOS — with avatar
   ════════════════════════════════════════════════ */
.testimonios {
  padding: var(--sp-20) 0 var(--sp-16);
  background: var(--black-2);
  overflow: hidden;
}
.testi-track-wrap {
  overflow: hidden;
  margin-top: var(--sp-10);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.testi-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: testiScroll 48s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes testiScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testi-card {
  background: var(--black-3);
  padding: var(--sp-6) var(--sp-5);
  display: flex; flex-direction: column; gap: var(--sp-3);
  position: relative; overflow: hidden;
  width: 340px; flex-shrink: 0;
  border: 1px solid var(--white-06);
  border-radius: .5rem;
  transition: background .3s ease, border-color .3s ease;
  cursor: default;
}
.testi-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--turq));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.testi-card:hover { background: #181818; border-color: var(--white-12); }
.testi-card:hover::after { transform: scaleX(1); }

.testi-card__stars {
  color: var(--gold);
  font-size: .72rem; letter-spacing: .12em;
}
.testi-card__quote-mark {
  font-size: 4.5rem; line-height: .6;
  color: var(--pink-12); font-weight: 900;
  font-style: normal; letter-spacing: -.05em;
  display: block; user-select: none;
}
.testi-card__quote {
  font-size: .82rem; line-height: 1.88;
  color: var(--white-72); font-weight: 300;
  font-style: italic; flex: 1;
}
.testi-card__footer {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--white-06);
}
.testi-card__avatar {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .7rem;
  letter-spacing: .04em;
  color: var(--black);
}
.testi-card__info { display: flex; flex-direction: column; gap: .2rem; }
.testi-card__name { font-size: .78rem; font-weight: 700; color: var(--white); }
.testi-card__role { font-size: .68rem; color: var(--white-40); }

/* ════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════ */
.faq {
  padding: var(--sp-20) 0;
  background: var(--black);
}
.faq__list {
  max-width: 780px;
  margin: var(--sp-12) auto 0;
}
.faq__item { border-top: 1px solid var(--white-06); }
.faq__item:last-child { border-bottom: 1px solid var(--white-06); }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  width: 100%; text-align: left;
  background: none; border: none;
  font-family: var(--font);
  font-size: .88rem; font-weight: 600;
  color: var(--white-72);
  transition: color .25s ease;
  min-height: 44px;
}
.faq__q:hover { color: var(--white); }
.faq__q.open  { color: var(--pink); }

.faq__icon {
  width: 1.1rem; height: 1.1rem;
  flex-shrink: 0;
  color: var(--white-40);
  transition: transform .35s var(--ease-out), color .25s ease;
}
.faq__q.open .faq__icon { transform: rotate(45deg); color: var(--pink); }

.faq__a {
  height: 0;
  overflow: hidden;
  transition: height .4s var(--ease-out);
}
.faq__a-inner {
  font-size: .82rem; line-height: 1.88;
  color: var(--white-40); font-weight: 300;
  padding-bottom: 1.75rem;
}

/* ════════════════════════════════════════════════
   CTA BAND — final push
   ════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: var(--sp-20) 0;
  background: var(--black-3);
  overflow: hidden; text-align: center;
}
.cta-band__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 50% 50%, rgba(212,105,138,.08) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 20% 80%, rgba(42,171,184,.06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 80% 20%, rgba(61,53,168,.05) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band::before,
.cta-band::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-20), transparent);
}
.cta-band::before { top: 0; }
.cta-band::after  { bottom: 0; }
.cta-band__inner  { position: relative; z-index: 1; }
.cta-band__inner h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -.05em; line-height: 1;
  margin-bottom: var(--sp-4);
}
.cta-band__desc {
  font-size: .88rem; line-height: 1.8;
  font-weight: 300; color: var(--white-72);
  max-width: 44ch; margin: 0 auto var(--sp-8);
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--white-06);
  padding: var(--sp-12) 0 var(--sp-6);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start; gap: 3rem;
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--white-06);
  margin-bottom: var(--sp-6);
}
.footer__brand { display: flex; flex-direction: column; gap: .75rem; }
.footer__logo {
  font-size: 1.4rem; font-weight: 900;
  letter-spacing: -.05em; display: inline-block;
  background: linear-gradient(135deg, var(--pink) 0%, var(--turq) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer__brand p {
  font-size: .75rem; line-height: 1.7;
  color: var(--white-40); font-weight: 300;
  max-width: 20ch;
}
.footer__copy-center {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem; text-align: center;
}
.footer__copy-center p {
  font-size: .62rem; color: var(--white-15);
  letter-spacing: .06em;
}
.footer__nav {
  display: flex; flex-direction: column;
  align-items: center; gap: .875rem;
}
.footer__nav a {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--white-40);
  transition: color .25s ease;
  min-height: 44px;
  display: flex; align-items: center;
}
.footer__nav a:hover { color: var(--pink); }
.footer__social {
  display: flex; align-items: center;
  justify-content: flex-end; gap: 1rem;
}
.social-link {
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--white-06);
  border-radius: 50%;
  color: var(--white-40);
  transition: border-color .28s ease, color .28s ease, transform .28s var(--ease-snap);
}
.social-link:hover {
  border-color: var(--pink-20);
  color: var(--pink);
  transform: translateY(-3px);
}
.social-link svg { width: .95rem; height: .95rem; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .62rem; color: var(--white-15);
  font-weight: 400; letter-spacing: .04em;
}
.footer__credit {
  text-align: center;
  font-size: .6rem; letter-spacing: .08em; color: var(--white-15);
}
.footer__credit a { color: var(--white-40); text-decoration: none; transition: color .2s ease; }
.footer__credit a:hover { color: var(--white); }
.footer__credit strong { font-weight: 700; letter-spacing: .1em; }

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .servicios__intro { max-width: 100%; }
  .servicios__cards { grid-template-columns: 1fr; gap: 2px; }
  .srv-card { min-height: 420px; }
  .srv-card__desc { max-width: 100%; }
  .reels__grid   { grid-template-columns: 1fr; gap: 2rem; }
  .benefits__grid{ grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-item     { border-right: none; border-bottom: 1px solid var(--white-06); padding: var(--sp-5) 0; }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  :root { --gutter: 1.25rem; }

  .nav__links  { display: none; }
  .nav__burger { display: flex; }

  .hero__headline { font-size: clamp(1.8rem, 7vw, 3rem); line-height: .92; }

  .benefits__grid{ grid-template-columns: 1fr; }



  .stats-grid    { grid-template-columns: repeat(2, 1fr); }



  .footer__top { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { align-items: center; }
  .footer__brand p { max-width: 100%; }
  .footer__social { justify-content: center; }
  .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }

  /* Min 64px vertical spacing on mobile */
  .reels, .value-prop, .servicios, .benefits, .testimonios, .faq, .cta-band {
    padding: var(--sp-10) 0; /* 80px — above 64px threshold */
  }
  .stats-section { padding: var(--sp-8) 0; }
  .cta-inline { padding: var(--sp-8) 0; }
  .section-header { margin-bottom: var(--sp-8); }
}

@media (max-width: 480px) {
  .hero__ctas  { flex-direction: column; align-items: stretch; }
  .benefits__grid { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════
   PREFERS-REDUCED-MOTION
   All animations and transitions killed globally
   ════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  /* Kill all transitions and animations */
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  /* Show all hidden elements */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero__eyebrow,
  .hero__headline,
  .hero__sub,
  .hero__ctas,
  .hero__scroll-hint {
    opacity: 1 !important;
    transform: none !important;
  }
  /* Stop the marquee */
  .marquee-belt__track { animation: none; }
  /* Stop pulsing scroll line */
  .hero__scroll-line { animation: none; opacity: .5; }
  /* Stop film grain animation if any */
  body::before { display: none; }
}

/* ─── Floating WhatsApp button ─── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9000;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: none;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.65);
}
.wa-float svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: #fff;
}
/* pulse ring */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (hover:none) { .wa-float { cursor: auto; } }
@media (max-width: 768px) {
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 3rem; height: 3rem; }
}

/* ════════════════════════════════════════════════
   BOOKING FORM
   ════════════════════════════════════════════════ */
.booking {
  padding: var(--sp-20) 0;
  background: #080808;
  border-top: 1px solid var(--white-06);
}
.booking__header { margin-bottom: var(--sp-10); max-width: 640px; }
.booking__header .section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); white-space: nowrap; }
.booking__sub {
  font-size: .85rem; line-height: 1.8;
  color: var(--white-40); font-weight: 300;
  margin-top: var(--sp-3); max-width: 50ch;
}
.booking__form {
  display: flex; flex-direction: column; gap: 1.4rem;
  max-width: 820px;
}
.bf-row { display: grid; gap: 1.1rem; }
.bf-row--2 { grid-template-columns: 1fr 1fr; }
.bf-field { display: flex; flex-direction: column; gap: .45rem; }
.bf-field label,
.bf-label-block {
  font-size: .56rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--white-40);
}
.bf-field input {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .35rem;
  color: var(--white);
  font-family: var(--font);
  font-size: .85rem;
  padding: .82rem 1rem;
  width: 100%;
  transition: border-color .2s ease, background .2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.bf-field input:focus {
  border-color: var(--pink);
  background: rgba(255,255,255,.06);
}
.bf-field input::placeholder { color: rgba(255,255,255,.18); }
.bf-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(.35); cursor: pointer;
}
.bf-field input.bf-error {
  border-color: rgba(220,70,70,.65);
  background: rgba(220,70,70,.05);
}

/* Event type — custom dropdown */
.bf-select { position: relative; }
.bf-select__trigger {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .35rem;
  padding: .9rem 1.1rem;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  cursor: pointer; text-align: left;
  transition: border-color .2s ease, background .2s ease;
  color: rgba(255,255,255,.55);
  font-family: inherit; font-size: .82rem; font-weight: 300;
}
.bf-select__trigger:hover { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.06); }
.bf-select.is-open .bf-select__trigger,
.bf-select__trigger:focus-visible { border-color: var(--pink); outline: none; }
.bf-select__trigger.has-value { color: var(--white); }
.bf-select__chevron { flex-shrink: 0; color: rgba(255,255,255,.35); transition: transform .25s var(--ease-out); }
.bf-select.is-open .bf-select__chevron { transform: rotate(180deg); color: var(--pink); }

.bf-select__trigger.bf-error { border-color: rgba(220,70,70,.65); background: rgba(220,70,70,.05); }

.bf-types {
  display: none;
  flex-direction: column; gap: 0;
  position: absolute; z-index: 20;
  top: calc(100% + .35rem); left: 0; right: 0;
  background: #111;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: .4rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
  animation: dropIn .18s var(--ease-out) both;
}
.bf-select.is-open .bf-types { display: flex; }
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bf-type {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 1.1rem;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
  border-radius: 0;
  cursor: pointer;
  transition: background .2s ease;
  user-select: none;
}
.bf-type:last-child { border-bottom: none; }
.bf-type:hover { background: rgba(255,255,255,.05); }
.bf-type input[type="radio"] { display: none; }
.bf-type__dot {
  width: 1rem; height: 1rem; flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s ease;
}
.bf-type__dot::after {
  content: '';
  width: .45rem; height: .45rem;
  border-radius: 50%;
  background: var(--pink);
  transform: scale(0);
  transition: transform .2s var(--ease-snap);
}
.bf-type:has(input:checked) { background: rgba(220,120,160,.08); }
.bf-type:has(input:checked) .bf-type__dot { border-color: var(--pink); }
.bf-type:has(input:checked) .bf-type__dot::after { transform: scale(1); }
.bf-type span { font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 300; transition: color .2s ease; }
.bf-type:has(input:checked) span { color: var(--white); }
.bf-type.bf-type--error { background: rgba(220,70,70,.06); }

/* Submit row */
.bf-submit { padding-top: .5rem; }
.bf-submit button:disabled {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Success state */
.booking__success {
  display: none; opacity: 0;
  justify-content: center; align-items: center;
  padding: var(--sp-14) 0;
  text-align: center;
  transition: opacity .5s ease;
}
.booking__success.is-visible { opacity: 1; }
.booking__success-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.75rem;
}
.booking__success-icon {
  width: 4rem; height: 4rem; border-radius: 50%;
  border: 2px solid var(--pink);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  animation: successPop .5s var(--ease-snap) both;
}
@keyframes successPop {
  0%   { transform: scale(.5); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.booking__success-msg {
  font-size: 1.15rem; line-height: 1.65;
  color: var(--white-72); font-weight: 300;
}
.booking__success-msg strong { color: var(--white); font-weight: 700; display: block; margin-top: .3rem; }
.btn--wa-success {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25D366; color: #fff;
  font-family: var(--font); font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .75rem 1.6rem; border-radius: 2rem;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.btn--wa-success:hover { background: #1ebe5d; transform: translateY(-2px); }
.booking__success-hint {
  font-size: .72rem; color: var(--white-15);
  font-weight: 300; margin-top: -.5rem;
}

@media (max-width: 640px) {
  .bf-row--2 { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   ABOUT — Dave Tomás
   ════════════════════════════════════════════════ */
.about {
  padding: var(--sp-16) 0;
  background: var(--black-2);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.about__photo {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  aspect-ratio: 2/3;
  margin: 0;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(.9) saturate(.85);
  transition: transform .7s var(--ease-out);
  display: block;
}
.about__photo:hover img { transform: scale(1.04); }
.about__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,8,8,.65) 100%);
  pointer-events: none;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.about__name {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--white);
  line-height: .88;
  margin-top: -.25rem;
}
.about__bio {
  font-size: .9rem;
  line-height: 1.9;
  color: var(--white-72);
  font-weight: 300;
  max-width: 52ch;
}
.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .25rem;
}
.about__tags span {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--turq);
  border: 1px solid var(--turq-20);
  border-radius: 2rem;
  padding: .35rem .9rem;
  background: var(--turq-12);
  white-space: nowrap;
}
@media (max-width: 860px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .about__photo {
    aspect-ratio: 16/9;
    max-height: 340px;
  }
  .about__photo img { object-position: center 20%; }
}

/* ════════════════════════════════════════════════
   BRANDS — Logos marquee
   ════════════════════════════════════════════════ */
.brands {
  padding: var(--sp-10) 0;
  border-top: 1px solid var(--white-06);
  border-bottom: 1px solid var(--white-06);
  overflow: hidden;
}
.brands__label {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--pink);
  text-align: center;
  margin-bottom: var(--sp-6);
}
.brands__track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.brands__track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: brandsScroll 32s linear infinite;
}
.brands__track:hover { animation-play-state: paused; }
.brands__track img {
  height: 26px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: .35;
  filter: brightness(0) invert(1);
  transition: opacity .3s ease, transform .3s ease;
  flex-shrink: 0;
}
.brands__track img:hover {
  opacity: .85;
  transform: scale(1.05);
}
@keyframes brandsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .brands__track { gap: 2.5rem; }
  .brands__track img { height: 20px; max-width: 90px; }
}
