/* VOLEA — demo pádel nocturno (14-jul-2026)
   Territorio: noche ultravioleta. #12081F + violeta #8B5CFF + naranja #FF7A1A.
   Unbounded. Hero: cámara 3D scroll-scrubbed. Marquee con velocidad de scroll. */

@font-face {
  font-family: 'Unbounded';
  src: url('/assets/fonts/unbounded-var.woff2') format('woff2');
  font-weight: 300 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  --night: #12081f;
  --night-2: #1b0e2e;
  --uv: #8b5cff;
  --uv-soft: #b596ff;
  --orange: #ff7a1a;
  --ball: #d4e157;
  --snow: #f2edff;
  --snow-dim: #9d92b8;
  --line: rgba(242, 237, 255, .14);
  --disp: 'Unbounded', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --pad: clamp(20px, 5vw, 74px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--night);
  color: var(--snow);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--orange); color: var(--night); }
img, video, canvas { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- tipografía ---------- */
.kicker {
  font-family: var(--disp); font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--uv-soft); font-weight: 500; margin-bottom: 18px;
}
h1, h2, h3 { font-family: var(--disp); font-weight: 700; line-height: 1.04; letter-spacing: -.01em; }
h2 { font-size: clamp(28px, 4vw, 52px); }
h1 em, h2 em { font-style: normal; color: var(--uv-soft); }
h3 { font-size: 21px; }

/* split por letras */
.split .ch {
  display: inline-block;
  opacity: 0; transform: translateY(.6em) rotate(6deg);
  transition: opacity .5s ease, transform .6s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i) * 28ms);
}
.split.in .ch { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .split .ch { opacity: 1; transform: none; transition: none; } }

/* ---------- reveals ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 30px; border-radius: 999px;
  font-family: var(--disp); font-size: 13px; font-weight: 600; letter-spacing: .04em;
  transition: background .3s, color .3s, border-color .3s, transform .3s, box-shadow .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: var(--night); box-shadow: 0 12px 40px -14px rgba(255, 122, 26, .8); }
.btn-orange:hover { background: var(--snow); }
.btn-line { border: 1.5px solid rgba(242, 237, 255, .35); color: var(--snow); }
.btn-line:hover { border-color: var(--uv-soft); color: var(--uv-soft); }
.btn-dark { background: var(--night); color: var(--snow); }
.btn-dark:hover { background: var(--night-2); }
.btn-lg { padding: 20px 40px; font-size: 14.5px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; gap: 32px;
  padding: 16px var(--pad);
  transition: background .35s, box-shadow .35s, padding .35s;
}
.nav.scrolled {
  background: rgba(18, 8, 31, .88);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: 11px; padding-bottom: 11px;
}
.nav-logo { font-family: var(--disp); font-size: 21px; font-weight: 800; margin-right: auto; }
.nav-logo i { font-style: normal; color: var(--ball); font-size: 13px; vertical-align: middle; }
.nav-links { display: flex; gap: 26px; font-family: var(--disp); font-size: 12.5px; font-weight: 500; letter-spacing: .04em; }
.nav-links a { color: var(--snow-dim); padding: 4px 0; position: relative; transition: color .25s; }
.nav-links a:hover { color: var(--snow); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--orange); border-radius: 2px; transition: width .3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--uv); color: var(--snow); border-radius: 999px;
  padding: 11px 22px; font-family: var(--disp); font-size: 12.5px; font-weight: 600;
  transition: background .3s, color .3s;
}
.nav-cta:hover { background: var(--orange); color: var(--night); }
.burger { display: none; }

/* menú móvil */
.menu {
  position: fixed; inset: 0; z-index: 55; background: var(--night);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--pad);
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.menu.open { opacity: 1; pointer-events: auto; }
.menu-list li a {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--disp); font-size: clamp(28px, 7.5vw, 44px); font-weight: 700; padding: 14px 0;
}
.menu-list small { font-size: 12px; color: var(--orange); font-family: var(--sans); font-weight: 700; }
.menu-foot { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; color: var(--snow-dim); }
.menu-foot a { color: var(--uv-soft); font-weight: 600; }

/* ---------- HERO fly-through ---------- */
.fly { height: 340vh; position: relative; }
.fly-sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.fly-sticky canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.fly-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--pad);
  opacity: 0; pointer-events: none;
  transition: opacity .5s ease;
}
.fly-overlay.on { opacity: 1; pointer-events: auto; }
.fly-o1 h1 { font-size: clamp(44px, 8.6vw, 118px); margin: 6px 0 22px; text-shadow: 0 10px 60px rgba(18, 8, 31, .9); }
.fly-o2, .fly-o3 { align-items: flex-start; justify-content: flex-end; padding-bottom: 16vh; }
.fly-o2 h2, .fly-o3 h2 { font-size: clamp(30px, 5.2vw, 66px); text-shadow: 0 10px 50px rgba(18, 8, 31, .95); }
.fly-sub { max-width: 52ch; color: var(--snow-dim); font-size: 17px; margin-top: 14px; text-shadow: 0 4px 24px rgba(18, 8, 31, .9); }
.fly-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.fly-hint {
  position: absolute; bottom: 26px; left: var(--pad);
  font-family: var(--disp); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--snow-dim);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@media (prefers-reduced-motion: reduce) {
  .fly { height: auto; }
  .fly-sticky { position: relative; height: 100svh; }
  .fly-overlay { opacity: 0; }
  .fly-overlay.fly-o1 { opacity: 1; position: relative; }
  .fly-o2, .fly-o3 { display: none; }
  .fly-hint { animation: none; }
}

/* ---------- marquee con velocidad ---------- */
.vmarquee { overflow: hidden; background: var(--uv); color: var(--night); padding: 14px 0; }
.vmarquee-track {
  display: flex; gap: 30px; width: max-content; align-items: center;
  font-family: var(--disp); font-size: 18px; font-weight: 700; white-space: nowrap;
  will-change: transform;
}
.vmarquee-track i { font-style: normal; color: var(--ball); font-size: 11px; }

/* ---------- cifras ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: clamp(50px, 8vh, 90px) var(--pad);
  gap: 22px;
}
.stat { border-left: 3px solid var(--orange); padding-left: 20px; }
.stat b { display: block; font-family: var(--disp); font-weight: 800; font-size: clamp(32px, 3.8vw, 54px); line-height: 1.1; color: var(--uv-soft); }
.stat span { font-size: 13px; color: var(--snow-dim); }

/* ---------- club ---------- */
.club { padding: clamp(60px, 10vh, 120px) var(--pad); background: var(--night-2); }
.club-head { margin-bottom: 44px; }
.club-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.ccard { border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--night); transition: transform .45s cubic-bezier(.2,.7,.2,1), border-color .45s; }
.ccard:hover { transform: translateY(-7px); border-color: rgba(139, 92, 255, .6); }
.ccard-media { aspect-ratio: 4 / 2.9; overflow: hidden; }
.ccard-media video { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1) hue-rotate(-6deg); }
.ccard-body { padding: 24px 26px 26px; }
.ccard-body h3 { margin-bottom: 8px; color: var(--uv-soft); }
.ccard-body p { font-size: 14.5px; color: var(--snow-dim); }
.ccard-solo { display: flex; flex-direction: column; gap: 14px; justify-content: center; height: 100%; background: linear-gradient(160deg, rgba(139, 92, 255, .18), transparent 65%); }
.ccard-solo .btn { align-self: flex-start; margin-top: 8px; }

/* ---------- manifiesto ---------- */
.manifesto { min-height: 145vh; position: relative; }
.manifesto-sticky {
  position: sticky; top: 0; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 var(--pad);
}
.manifesto-text {
  max-width: 18ch;
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(28px, 5.4vw, 64px); line-height: 1.14;
}
.manifesto-text .w { color: rgba(242, 237, 255, .14); transition: color .35s; }
.manifesto-text .w.lit { color: var(--snow); }
.manifesto-text .w.lit:nth-child(3n) { color: var(--orange); }

/* ---------- tarifas ---------- */
.price-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 26px);
  padding: 0 var(--pad) clamp(60px, 10vh, 110px);
}
.price-card {
  border: 1px solid var(--line); border-radius: 22px; padding: 32px 30px;
  display: grid; gap: 10px; justify-items: start;
  background: var(--night-2);
}
.price-card span { font-family: var(--disp); font-size: 11px; font-weight: 600; letter-spacing: .18em; color: var(--snow-dim); }
.price-card b { font-family: var(--disp); font-weight: 800; font-size: clamp(40px, 4.6vw, 62px); line-height: 1; }
.price-card b i { font-style: normal; font-size: 18px; color: var(--snow-dim); }
.price-card p { font-size: 13.5px; color: var(--snow-dim); }
.price-card.hot { background: var(--uv); border-color: var(--uv); }
.price-card.hot span, .price-card.hot p { color: rgba(242, 237, 255, .85); }

/* ---------- CTA ---------- */
.cta {
  padding: clamp(80px, 13vh, 150px) var(--pad); text-align: center;
  background:
    radial-gradient(55% 85% at 50% 115%, rgba(139, 92, 255, .35), transparent 70%),
    var(--night-2);
}
.cta h2 { font-size: clamp(38px, 6.4vw, 84px); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 34px 0 20px; }
.cta-note { font-size: 13.5px; color: var(--snow-dim); }

/* ---------- footer ---------- */
.footer { padding: 62px var(--pad) 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(26px, 4vw, 60px); margin-bottom: 46px; }
.footer-logo { font-family: var(--disp); font-size: 24px; font-weight: 800; }
.footer-logo i { font-style: normal; color: var(--ball); font-size: 14px; }
.footer-brand p { margin-top: 12px; font-size: 14px; color: var(--snow-dim); max-width: 34ch; }
.footer-col h4 { font-family: var(--disp); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--uv-soft); margin-bottom: 14px; font-weight: 600; }
.footer-col li { font-size: 14.5px; color: var(--snow-dim); padding: 4px 0; }
.footer-col a:hover { color: var(--uv-soft); }
.footer-legal {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--snow-dim);
}
.footer-legal a:hover { color: var(--uv-soft); }

/* ---------- interiores ---------- */
.page-hero { padding: clamp(130px, 20vh, 190px) var(--pad) clamp(36px, 6vh, 62px); max-width: 980px; }
.page-hero h1 { font-size: clamp(34px, 5.8vw, 76px); margin: 6px 0 20px; }
.page-hero p { color: var(--snow-dim); font-size: 17px; max-width: 54ch; }

.flist { padding: 10px var(--pad) clamp(60px, 10vh, 110px); display: grid; gap: clamp(14px, 2vw, 22px); }
.frow {
  display: grid; grid-template-columns: 70px 1fr 1.4fr auto; gap: clamp(16px, 3vw, 40px);
  align-items: center;
  border: 1px solid var(--line); border-radius: 18px; padding: 26px clamp(20px, 3vw, 36px);
  background: var(--night-2);
  transition: border-color .35s, transform .35s;
}
.frow:hover { border-color: rgba(255, 122, 26, .5); transform: translateX(6px); }
.frow > span { font-family: var(--disp); font-weight: 800; font-size: 24px; color: var(--orange); }
.frow h3 { font-size: 19px; }
.frow small { display: block; margin-top: 4px; font-family: var(--disp); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--uv-soft); }
.frow p { font-size: 14px; color: var(--snow-dim); }
.frow b { font-family: var(--disp); font-size: 17px; font-weight: 700; color: var(--ball); white-space: nowrap; }

.plans { padding: 10px var(--pad) clamp(30px, 5vh, 60px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); align-items: stretch; }
.plan { border: 1px solid var(--line); border-radius: 22px; background: var(--night-2); padding: 36px 32px; display: flex; flex-direction: column; }
.plan.hot { background: var(--uv); border-color: var(--uv); }
.plan h3 { font-size: 18px; }
.plan .p-price { font-family: var(--disp); font-weight: 800; font-size: clamp(44px, 5vw, 64px); line-height: 1; margin: 14px 0 4px; }
.plan .p-price small { font-size: 17px; }
.p-note { font-size: 13px; color: var(--snow-dim); margin-bottom: 20px; }
.plan.hot .p-note { color: rgba(242, 237, 255, .85); }
.plan ul { display: grid; gap: 9px; margin-bottom: 24px; }
.plan li { padding-left: 22px; position: relative; font-size: 14px; }
.plan li::before { content: '●'; position: absolute; left: 0; top: 5px; font-size: 9px; color: var(--ball); }
.plan .btn { margin-top: auto; }
.plans-note { padding: 0 var(--pad) clamp(60px, 9vh, 100px); color: var(--snow-dim); font-size: 14px; max-width: 72ch; }

.contact { padding: 10px var(--pad) clamp(60px, 10vh, 110px); display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(26px, 4vw, 60px); align-items: start; }
.cform { border: 1px solid var(--line); border-radius: 22px; padding: clamp(28px, 4vw, 46px); display: grid; gap: 18px; background: var(--night-2); }
.cform label { font-family: var(--disp); font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--snow-dim); display: grid; gap: 8px; }
.cform input, .cform select, .cform textarea {
  font: 500 16px var(--sans); color: var(--snow);
  background: var(--night); border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 15px; outline: none; transition: border-color .3s; width: 100%;
}
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color: var(--uv-soft); }
.cform select option { background: var(--night-2); }
.cform button { border: 0; cursor: pointer; }
.form-ok { text-align: center; padding: 40px 10px; }
.form-ok b { font-family: var(--disp); font-size: 24px; font-weight: 800; display: block; margin-bottom: 10px; color: var(--orange); }
.form-ok p { color: var(--snow-dim); }
.cinfo { display: grid; gap: 16px; }
.cinfo-card { border: 1px solid var(--line); border-radius: 18px; padding: 26px 28px; background: var(--night-2); }
.cinfo-card h3 { font-size: 17px; margin-bottom: 6px; color: var(--uv-soft); }
.cinfo-card p { font-size: 14.5px; color: var(--snow-dim); }
.cinfo-card a { color: var(--orange); font-weight: 600; }

.legal-body { padding: 10px var(--pad) clamp(60px, 10vh, 110px); max-width: 760px; color: var(--snow-dim); display: grid; gap: 16px; }
.legal-body h2 { font-size: 24px; margin-top: 18px; color: var(--snow); }

/* ---------- responsive ---------- */
@media (max-width: 1060px) {
  .club-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .stats { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .frow { grid-template-columns: 54px 1fr auto; }
  .frow p { display: none; }
  .plans { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .burger {
    display: block; position: relative;
    width: 46px; height: 46px; border: 1.5px solid var(--line); border-radius: 50%;
    background: transparent; cursor: pointer; z-index: 61;
  }
  .burger i {
    position: absolute; left: 50%; top: 50%;
    width: 18px; height: 2px; margin: -1px 0 0 -9px;
    background: var(--snow);
    transition: transform .35s; display: block;
  }
  .burger i:first-child { transform: translateY(-3.5px); }
  .burger i:last-child { transform: translateY(3.5px); }
  .burger.active i:first-child { transform: rotate(45deg); }
  .burger.active i:last-child { transform: rotate(-45deg); }

  .contact { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-strip { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; gap: 8px; }
  /* pie compacto: antes ocupaba una pantalla entera en móvil */
  .footer { padding: 40px var(--pad) 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px 18px; margin-bottom: 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { font-size: 13px; }
  .footer-col h4 { margin-bottom: 8px; }
  .footer-col li { font-size: 13px; padding: 2.5px 0; }
  .footer-legal { flex-direction: column; gap: 6px; padding-top: 16px; font-size: 11.5px; }
}
