/* ═══════════════════════════════════════════════════
   ÓSCAR OVALLE · SHANGROOVE · PROGRAMA SCALE
   Retro-cartoon fiel al brandbook — crema, mascota casete, paleta viva
═══════════════════════════════════════════════════ */

/* ── 1. TOKENS ─────────────────────────────────── */
:root {
  --cream:       #f4f5f0;
  --cream-raised:#eceee5;
  --card:        #ffffff;
  --ink:         #1d2944;
  --ink-soft:    #4a5573;
  --ink-border:  #d8dbcf;
  --purple:      #512179;
  --purple-dim:  #6d3ea1;
  --green-deep:  #10493a;
  --yellow:      #ffc801;
  --yellow-ink:  #3a2600;
  --mint:        #66d8be;
  --sky:         #51b8fb;
  --maroon:      #ab222e;
  --red:         #fe3511;
  --pink:        #fbdcda;

  --display: 'Alfa Slab One', 'Georgia', serif;
  --body:    'Poppins', system-ui, sans-serif;
  --script:  'Caveat', cursive;

  --fs-label:   clamp(0.65rem, 0.6rem + 0.2vw,  0.78rem);
  --fs-body:    clamp(0.97rem, 0.9rem + 0.25vw,  1.1rem);
  --fs-lead:    clamp(1.1rem,  1rem  + 0.4vw,    1.3rem);
  --fs-h3:      clamp(1.2rem,  1.1rem + 0.5vw,   1.6rem);
  --fs-h2:      clamp(1.9rem,  1.3rem + 2.6vw,   3.4rem);
  --fs-h1:      clamp(2.3rem,  1.6rem + 3.2vw,   4.6rem);
  --fs-display: clamp(2.6rem,  1.7rem + 4.5vw,   6.5rem);
  --fs-num:     clamp(4rem,    2.5rem + 6vw,     8rem);

  --gap: clamp(1.25rem, 5vw, 3rem);
  --sec: clamp(4rem, 9vw, 8rem);
  --r-sm: 14px; --r-md: 22px; --r-lg: 32px;
  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
  /* Sombra "stamp" translúcida: si fuera el mismo color sólido que el relleno,
     letras y líneas contiguas se funden entre sí (bug real detectado en QA visual). */
  --stamp-shadow: 3px 3px 0 rgba(29, 41, 68, .2);
  --stamp-shadow-light: 3px 3px 0 rgba(244, 245, 240, .55);
}

/* ── 2. RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream-raised); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 10px; border: 2px solid var(--cream-raised); }
body {
  font-family: var(--body); font-size: var(--fs-body); line-height: 1.65;
  color: var(--ink); background: var(--cream); overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 1.5px 1.5px, rgba(29,41,68,.05) 1.5px, transparent 0);
  background-size: 26px 26px;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--body); border: none; background: none; }

/* ── 3. UTILITIES ───────────────────────────────── */
.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--gap); }
.label {
  font-family: var(--body); font-size: var(--fs-label); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: .5em;
}
.label::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.label--purple { color: var(--purple); }
.label--purple::before { background: var(--purple); }
.label--green  { color: var(--green-deep); }
.label--green::before  { background: var(--green-deep); }
.label--cream  { color: var(--cream); }
.label--cream::before { background: var(--yellow); }

.stamp-title {
  font-family: var(--display); color: var(--ink);
  text-shadow: var(--stamp-shadow);
  letter-spacing: 0; line-height: 1.22;
}

[data-reveal] { opacity: 0; clip-path: inset(0 0 100% 0); transition: opacity 0.65s var(--ease-expo), clip-path 0.65s var(--ease-expo); }
[data-reveal].is-visible { opacity: 1; clip-path: inset(0 0 0% 0); }
[data-reveal="fade"] { clip-path: none; transform: translateY(22px); transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo); }
[data-reveal="fade"].is-visible { opacity: 1; transform: none; }

/* ── 4. BUTTONS ─────────────────────────────────── */
/* Sombra dura con blur mínimo: evita el artefacto de antialiasing del
   box-shadow 0-blur sobre border-radius pill, sin los problemas de stacking
   context que introduce la técnica de pseudo-elemento cuando el botón usa
   `transform` en :hover (transform crea su propio stacking context y "se come"
   un ::after con z-index negativo). */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  padding: 0.95em 2rem; border-radius: 100px;
  font-family: var(--body); font-size: var(--fs-body); font-weight: 700;
  position: relative; white-space: nowrap;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0.5px var(--ink);
  transition: transform 150ms var(--ease-expo), box-shadow 150ms var(--ease-expo);
}
.btn:active { transform: translate(2px,2px) !important; box-shadow: 2px 2px 0.5px var(--ink) !important; }

.btn--yellow { background: var(--yellow); color: var(--yellow-ink); }
@media (hover: hover) and (pointer: fine) { .btn--yellow:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0.5px var(--ink); } }

.btn--outline { background: var(--cream); color: var(--ink); }
@media (hover: hover) and (pointer: fine) { .btn--outline:hover { background: var(--mint); transform: translate(-2px,-2px); box-shadow: 6px 6px 0.5px var(--ink); } }

.btn--purple { background: var(--purple); color: var(--cream); border-color: var(--ink); }
@media (hover: hover) and (pointer: fine) { .btn--purple:hover { background: var(--purple-dim); transform: translate(-2px,-2px); box-shadow: 6px 6px 0.5px var(--ink); } }

.btn--pulse { animation: pulse-btn 2.6s ease-in-out infinite; }
@keyframes pulse-btn {
  0%,100%{ box-shadow: 4px 4px 0.5px var(--ink), 0 0 0 0 rgba(255,200,1,0); }
  50%{ box-shadow: 4px 4px 0.5px var(--ink), 0 0 0 8px rgba(255,200,1,.35); }
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes float-up { 0%,100%{transform:translateY(0) rotate(-3deg)} 50%{transform:translateY(-6px) rotate(3deg)} }
@keyframes wiggle { 0%,100%{transform:rotate(-3deg)} 50%{transform:rotate(3deg)} }

/* ── MASCOTA — apariciones decorativas a lo largo de la página ──── */
.mascot-float {
  width: clamp(64px, 8vw, 104px); height: auto; position: absolute; z-index: 3;
  filter: drop-shadow(3px 3px 0 rgba(29,41,68,.25));
  opacity: 0; transform: scale(.4) rotate(-25deg);
  transition: opacity 550ms var(--ease-expo), transform 650ms var(--ease-expo);
}
/* "Camina": rebote vertical + balanceo lateral + giro leve, simulando zancada */
.mascot-float.is-visible { opacity: 1; animation: mascotWalk 2.4s ease-in-out 650ms infinite; }
@keyframes mascotWalk {
  0%   { transform: translate(0, 0)    rotate(calc(var(--mascot-rot, -8deg) - 4deg)); }
  25%  { transform: translate(6px, -9px) rotate(calc(var(--mascot-rot, -8deg) + 3deg)); }
  50%  { transform: translate(12px, 0)  rotate(calc(var(--mascot-rot, -8deg) - 4deg)); }
  75%  { transform: translate(6px, -9px) rotate(calc(var(--mascot-rot, -8deg) + 3deg)); }
  100% { transform: translate(0, 0)    rotate(calc(var(--mascot-rot, -8deg) - 4deg)); }
}
@media (prefers-reduced-motion: reduce) { .mascot-float.is-visible { animation: none; transform: rotate(var(--mascot-rot, -8deg)); } }
@media (max-width: 700px) { .mascot-float { width: clamp(44px, 14vw, 60px); } }

/* ── 5. NAV ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: 1.1rem var(--gap);
  background: rgba(244,245,240,0);
  transition: background 220ms var(--ease-quart), padding 220ms var(--ease-quart), box-shadow 220ms;
}
.nav.scrolled {
  background: rgba(244,245,240,.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 0.6rem var(--gap);
  box-shadow: 0 2px 0 var(--ink-border);
}
.nav__logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; min-width: 0; }
.nav__logo img { width: 58px; height: 58px; object-fit: contain; flex-shrink: 0; transition: width 220ms, height 220ms; }
.nav.scrolled .nav__logo img { width: 42px; height: 42px; }
.nav__logo-word { font-family: var(--display); font-size: 1.05rem; color: var(--ink); letter-spacing: -.01em; white-space: nowrap; transition: font-size 220ms; }
.nav.scrolled .nav__logo-word { font-size: .88rem; }
.nav__cta { font-size: .8rem; padding: .6em 1.4em; flex-shrink: 0; transition: padding 220ms, font-size 220ms; }
.nav.scrolled .nav__cta { font-size: .72rem; padding: .5em 1.1em; }

/* Móvil: logo+texto+CTA no caben en una fila a tamaño desktop — se achican
   y el wordmark se oculta bajo ~380px para que la mascota respire. */
@media (max-width: 600px) {
  .nav { padding: .7rem .9rem; gap: .5rem; }
  .nav.scrolled { padding: .5rem .9rem; }
  .nav__logo img { width: 46px; height: 46px; }
  .nav.scrolled .nav__logo img { width: 36px; height: 36px; }
  .nav__logo-word { font-size: .82rem; }
  .nav__cta { font-size: .68rem; padding: .55em 1em; }
  .nav.scrolled .nav__cta { font-size: .64rem; padding: .5em .9em; }
}
@media (max-width: 400px) {
  .nav__logo-word { display: none; }
}

/* ── 6. VSL HERO ─────────────────────────────────── */
.vsl-hero {
  min-height: 100dvh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: clamp(5.5rem,12vw,9rem) var(--gap) clamp(3rem,6vw,5rem);
  text-align: center; position: relative; overflow: hidden;
}
.vsl-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(102,216,190,.35) 0%, transparent 65%),
              radial-gradient(ellipse 60% 50% at 85% 80%, rgba(255,200,1,.25) 0%, transparent 65%);
  pointer-events: none;
}
.vsl-hero__eyebrow { margin-bottom: 1.5rem; }
.vsl-notice { display: inline-flex; align-items: center; gap: .6em; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.vsl-notice__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: blink 1.8s ease-in-out infinite; flex-shrink: 0; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.vsl-hero__title {
  font-family: var(--display); font-size: clamp(1.9rem, 1.3rem + 4vw, 4.6rem);
  line-height: 1.28; letter-spacing: 0; margin-bottom: 1.25rem; max-width: 17ch;
  margin-left: auto; margin-right: auto; color: var(--ink); text-shadow: var(--stamp-shadow);
}
.vsl-hero__title .accent { color: var(--maroon); }

.vsl-hero__sub {
  font-size: var(--fs-lead); color: var(--ink-soft); max-width: 52ch;
  margin: 0 auto 2.5rem; line-height: 1.6; font-weight: 500;
}

.vsl-frame {
  width: 100%; max-width: 860px; margin: 0 auto; aspect-ratio: 16/9;
  border-radius: var(--r-md); overflow: hidden; position: relative;
  border: 4px solid var(--ink); box-shadow: 8px 8px 0 var(--purple);
  background: var(--ink);
}
.vsl-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.vsl-frame__pending {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  background: linear-gradient(160deg, var(--purple) 0%, var(--ink) 100%);
  color: var(--cream); text-align: center; padding: 1.5rem;
}
.vsl-frame__pending img { width: 68px; height: 68px; animation: wiggle 3.2s ease-in-out infinite; }
.vsl-frame__pending strong { font-family: var(--display); font-size: 1.05rem; letter-spacing: -.01em; }
.vsl-frame__pending span { font-size: .8rem; color: rgba(244,245,240,.7); max-width: 34ch; }

.vsl-hero__ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ── 7. SPLIT HERO ──────────────────────────────── */
.hero {
  min-height: 100dvh; display: grid; grid-template-columns: 48% 52%;
  overflow: hidden; background: var(--ink);
}
.hero__photo { position: relative; overflow: hidden; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 55%, var(--cream) 100%); pointer-events: none; }
.hero__badge {
  position: absolute; top: 1.5rem; left: 1.5rem; z-index: 2;
  background: var(--yellow); color: var(--yellow-ink); font-family: var(--display);
  font-size: .68rem; padding: .5em 1em; border-radius: 100px; border: 3px solid var(--ink);
  transform: rotate(-4deg); box-shadow: 3px 3px 0 var(--ink);
}
.hero__content { background: var(--cream); display: flex; flex-direction: column; justify-content: center; padding: clamp(5rem,10vw,8rem) var(--gap) clamp(3.5rem,7vw,5rem) 2.5rem; position: relative; z-index: 1; }
.hero__label { margin-bottom: 1.5rem; }
.hero__name { font-family: var(--display); font-size: var(--fs-display); line-height: 1.12; letter-spacing: 0; color: var(--ink); margin-bottom: 1rem; text-shadow: var(--stamp-shadow); }
.hero__name span { display: block; }
.hero__name .accent { color: var(--purple); }
.hero__script { font-family: var(--script); font-size: clamp(1.5rem,3vw,2.1rem); color: var(--maroon); margin-bottom: 1.25rem; }
.hero__headline { font-size: var(--fs-lead); color: var(--ink-soft); max-width: 38ch; margin-bottom: 2.25rem; line-height: 1.55; font-weight: 500; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.25rem; }
.hero__creds { display: flex; flex-wrap: wrap; gap: 1.75rem; padding-top: 1.5rem; border-top: 3px dashed var(--ink-border); }
.hero__cred-num { font-family: var(--display); font-size: clamp(1.1rem,2vw,1.6rem); color: var(--ink); }
.hero__cred-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-top: .2rem; font-weight: 600; }

/* ── 8. CREDENCIALES ────────────────────────────── */
.creds { background: var(--purple); padding: var(--sec) var(--gap); position: relative; overflow: hidden; }
.creds__eyebrow { text-align: center; margin-bottom: clamp(2rem,5vw,3.5rem); }
.creds__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.creds__item {
  background: var(--cream); border: 3px solid var(--ink); border-radius: var(--r-md);
  padding: 1.75rem 1.25rem; text-align: center; position: relative; min-width: 0;
  box-shadow: 5px 5px 0.5px var(--ink);
  transition: transform 220ms var(--ease-expo), box-shadow 220ms var(--ease-expo);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.creds__desc { overflow-wrap: break-word; }
.creds__item:nth-child(2n) { background: var(--mint); }
.creds__item:nth-child(3n) { background: var(--yellow); }
@media (hover: hover) and (pointer: fine) { .creds__item:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0.5px var(--ink); } }
.creds__num { font-family: var(--display); font-size: clamp(1.3rem,2.5vw,2rem); color: var(--ink); display: block; margin-bottom: .4rem; }
.creds__desc { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); }

/* ── 9. TICKER ──────────────────────────────────── */
.ticker { background: var(--ink); overflow: hidden; padding: 1.1rem 0; user-select: none; border-top: 4px solid var(--yellow); border-bottom: 4px solid var(--yellow); }
.ticker__track { display: flex; width: max-content; animation: ticker 26s linear infinite; }
.ticker__item { white-space: nowrap; font-family: var(--display); font-size: clamp(.75rem,1.5vw,.95rem); letter-spacing: .04em; text-transform: uppercase; color: var(--cream); padding: 0 2.25rem; display: flex; align-items: center; gap: 1.5rem; }
.ticker__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }

/* ── 10. BIO ────────────────────────────────────── */
.bio { padding: var(--sec) var(--gap); position: relative; }
.bio__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(3rem,7vw,6rem); align-items: start; }
.bio__left { position: sticky; top: 7rem; }
.bio__eyebrow { margin-bottom: 1.25rem; }
.bio__photo-block { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--r-md); position: relative; border: 4px solid var(--ink); box-shadow: 8px 8px 0 var(--mint); max-width: 340px; }
.bio__photo-block img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.bio__cred { margin-top: 1rem; padding: .65rem 0; border-top: 2px dashed var(--ink-border); display: flex; justify-content: space-between; align-items: center; }
.bio__cred-label { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.bio__cred-val { font-family: var(--display); font-size: .82rem; color: var(--purple); }
.bio__pull-quote { font-family: var(--display); font-size: clamp(1.5rem,2vw + .6rem,2.6rem); line-height: 1.35; color: var(--ink); margin-bottom: 1.75rem; text-shadow: var(--stamp-shadow); }
.bio__body { color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.5rem; max-width: 56ch; font-size: var(--fs-lead); font-weight: 500; }
.bio__skills { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2.25rem; }
.bio__skill { font-size: .72rem; font-weight: 700; letter-spacing: .03em; padding: .5em 1.1em; border: 2px solid var(--ink); color: var(--ink); border-radius: 100px; background: var(--cream); position: relative; box-shadow: 2px 2px 0.5px rgba(29,41,68,.4); transition: transform 200ms, background 200ms, box-shadow 200ms; }
.bio__skill:hover { box-shadow: 3px 3px 0.5px rgba(29,41,68,.4); }
.bio__skill:nth-child(3n+1) { background: var(--pink); }
.bio__skill:nth-child(3n+2) { background: var(--sky); }
@media (hover: hover) and (pointer: fine) { .bio__skill:hover { transform: translateY(-2px); background: var(--yellow); } }

/* ── 11. ESTUDIO GALLERY ────────────────────────── */
.studio { padding: var(--sec) var(--gap); background: var(--green-deep); position: relative; }
.studio__header { margin-bottom: clamp(2rem,5vw,3.5rem); text-align: center; }
.studio__title { font-family: var(--display); font-size: var(--fs-h2); line-height: 1.25; color: var(--cream); margin-bottom: 1rem; text-shadow: 3px 3px 0 rgba(0,0,0,.25); }
.studio__sub { color: rgba(244,245,240,.78); max-width: 52ch; margin: 0 auto; font-size: var(--fs-body); font-weight: 500; }
/* Carrusel infinito — pausa al hover, cada slide abre el lightbox */
.studio__carousel { overflow: hidden; margin-top: clamp(2rem,5vw,3rem); position: relative; }
.studio__carousel::before, .studio__carousel::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: clamp(2rem,6vw,5rem); z-index: 2; pointer-events: none;
}
.studio__carousel::before { left: 0; background: linear-gradient(to right, var(--green-deep), transparent); }
.studio__carousel::after  { right: 0; background: linear-gradient(to left, var(--green-deep), transparent); }
.studio__track { display: flex; width: max-content; gap: 1rem; animation: studioScroll 36s linear infinite; }
@media (hover: hover) and (pointer: fine) { .studio__carousel:hover .studio__track { animation-play-state: paused; } }
@keyframes studioScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.studio__slide {
  flex: 0 0 auto; width: clamp(220px, 26vw, 320px); aspect-ratio: 4/5;
  border-radius: var(--r-sm); overflow: hidden; border: 3px solid var(--ink);
  position: relative; cursor: zoom-in; padding: 0;
  transition: transform 300ms var(--ease-expo);
}
.studio__slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease-expo); }
@media (hover: hover) and (pointer: fine) {
  .studio__slide:hover { transform: translateY(-4px) rotate(-1deg); }
  .studio__slide:hover img { transform: scale(1.08); }
}
.studio__slide:active { transform: scale(.97); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  background: rgba(16, 20, 32, .88); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity 280ms var(--ease-expo);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__img {
  max-width: min(90vw, 900px); max-height: 80vh; border-radius: var(--r-md);
  border: 4px solid var(--cream); box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  transform: scale(.92); opacity: 0; transition: transform 320ms var(--ease-expo), opacity 320ms var(--ease-expo);
}
.lightbox.is-open .lightbox__img { transform: scale(1); opacity: 1; }
.lightbox__btn {
  position: absolute; display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%; background: var(--yellow); color: var(--yellow-ink);
  border: 3px solid var(--ink); font-size: 1.3rem; font-weight: 900; cursor: pointer;
}
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev { left: 1.5rem; top: 50%; translate: 0 -50%; }
.lightbox__next { right: 1.5rem; top: 50%; translate: 0 -50%; }
@media (max-width: 700px) {
  .lightbox__prev, .lightbox__next { width: 40px; height: 40px; font-size: 1.1rem; }
  .lightbox__close { width: 40px; height: 40px; top: 1rem; right: 1rem; }
}

/* ── 12. PROCESO ────────────────────────────────── */
.process { padding-top: var(--sec); padding-bottom: var(--sec); position: relative; }
.process__header { padding: 0 var(--gap); margin-bottom: clamp(3rem,8vw,6rem); text-align: center; }
.process__title { font-family: var(--display); font-size: var(--fs-h2); line-height: 1.25; color: var(--ink); margin-bottom: 1rem; text-shadow: var(--stamp-shadow); }
.process__sub { color: var(--ink-soft); font-size: var(--fs-lead); max-width: 52ch; margin: 0 auto; font-weight: 500; }

.process__step {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: start;
  max-width: 1100px; margin: 0 auto; padding: clamp(1.75rem,4vw,3rem) var(--gap);
  border-bottom: 3px dashed var(--ink-border);
}
.process__step:last-child { border-bottom: none; }
.process__step.is-active .process__num { color: var(--cream); background: var(--maroon); transform: rotate(-4deg) scale(1.05); }
.process__num {
  font-family: var(--display); font-size: clamp(1.8rem,4vw,2.6rem);
  width: clamp(3.2rem,7vw,4.5rem); height: clamp(3.2rem,7vw,4.5rem);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 3px solid var(--ink); background: var(--yellow); color: var(--ink);
  transition: all 400ms var(--ease-quart); flex-shrink: 0;
}
.process__tag { margin-bottom: .6rem; }
.process__h3 { font-family: var(--display); font-size: var(--fs-h3); color: var(--ink); margin-bottom: .75rem; text-shadow: 2px 2px 0 rgba(29,41,68,.15); }
.process__desc { color: var(--ink-soft); max-width: 56ch; line-height: 1.7; margin-bottom: 1.25rem; font-size: var(--fs-body); font-weight: 500; }
.process__pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.process__pill { font-size: .65rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .4em 1em; border-radius: 100px; border: 2px solid var(--ink); color: var(--ink); background: var(--pink); }
.process__pill:nth-child(2) { background: var(--sky); }
.process__pill:nth-child(3) { background: var(--mint); }

/* ── 13. TESTIMONIOS ────────────────────────────── */
.testimonials { padding: var(--sec) var(--gap); background: var(--ink); }
.testimonials__header { margin-bottom: clamp(2rem,5vw,3.5rem); text-align: center; }
.testimonials__eyebrow { margin-bottom: 1rem; justify-content: center; }
.testimonials__title { font-family: var(--display); font-size: var(--fs-h2); line-height: 1.25; color: var(--cream); margin-bottom: 1rem; text-shadow: 3px 3px 0 rgba(0,0,0,.3); }
.testimonials__sub { color: rgba(244,245,240,.72); max-width: 52ch; margin: 0 auto; font-weight: 500; }

.tgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .85rem; }
.tcard {
  aspect-ratio: 9/16; border-radius: var(--r-sm); overflow: hidden; position: relative;
  border: 3px solid var(--ink); background: var(--purple);
  transition: transform 240ms var(--ease-expo);
}
.tcard iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.tcard:nth-child(4n+1) { background: var(--purple); }
.tcard:nth-child(4n+2) { background: var(--maroon); }
.tcard:nth-child(4n+3) { background: var(--green-deep); }
.tcard:nth-child(4n+4) { background: #2a3d6b; }
@media (hover: hover) and (pointer: fine) { .tcard:hover { transform: translateY(-4px) rotate(-1deg); } }
.tcard__pending {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .6rem; padding: 1rem; text-align: center;
}
.tcard__pending img { width: 34px; height: 34px; opacity: .85; }
.tcard__badge { font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--yellow); border: 2px solid var(--yellow); border-radius: 100px; padding: .3em .8em; }
.tcard__label { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem .75rem .75rem; background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 100%); }
.tcard__artist { font-family: var(--display); font-size: .68rem; color: var(--cream); text-shadow: 1px 1px 0 rgba(0,0,0,.4); }

/* ── 13.5. AUDIOS — PLAYLIST + SUELTAS ─────────────── */
.audios { padding: var(--sec) var(--gap); background: var(--ink); }
.audios__header { margin-bottom: clamp(2rem,5vw,3rem); text-align: center; }
.audios__eyebrow { margin-bottom: 1rem; justify-content: center; }
.audios__title { font-family: var(--display); font-size: var(--fs-h2); line-height: 1.25; color: var(--cream); margin-bottom: 1rem; text-shadow: 3px 3px 0 rgba(0,0,0,.3); }
.audios__sub { color: rgba(244,245,240,.72); max-width: 52ch; margin: 0 auto; font-weight: 500; }
.audios__playlist { max-width: 720px; margin: 0 auto clamp(1.5rem,4vw,2.25rem); border-radius: var(--r-md); overflow: hidden; border: 3px solid var(--purple); }
.audios__playlist iframe { display: block; }
.audios__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .85rem; }
.acard { border-radius: var(--r-sm); overflow: hidden; border: 3px solid var(--ink); background: var(--purple); }
.acard iframe { display: block; }
@media (max-width: 880px) { .audios__grid { grid-template-columns: minmax(0,1fr); } }

/* ── 14. FILTRO DE CUALIFICACIÓN ─────────────────── */
.filter { padding: var(--sec) var(--gap); background: var(--yellow); position: relative; overflow: hidden; }
.filter__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.filter__title { font-family: var(--display); font-size: var(--fs-h2); line-height: 1.25; color: var(--ink); margin-bottom: 1rem; text-shadow: var(--stamp-shadow); }
.filter__sub { color: var(--yellow-ink); max-width: 56ch; margin: 0 auto clamp(2rem,5vw,3rem); font-size: var(--fs-lead); font-weight: 600; }
.filter__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; margin-bottom: clamp(2rem,5vw,3rem); }
.filter__card { background: var(--cream); border: 3px solid var(--ink); border-radius: var(--r-md); padding: 1.75rem 1.5rem; text-align: left; position: relative; min-width: 0; box-shadow: 5px 5px 0.5px var(--ink); }
.filter__num { font-family: var(--display); font-size: 1.6rem; color: var(--maroon); margin-bottom: .6rem; display: block; }
.filter__q { font-weight: 700; color: var(--ink); line-height: 1.4; }

/* ── 15. CTA FINAL ──────────────────────────────── */
.cta-final { background: var(--maroon); padding: var(--sec) var(--gap); position: relative; overflow: hidden; }
.cta-final::after {
  content: ''; position: absolute; right: -8%; bottom: -20%; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,200,1,.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
.cta-final__label { margin-bottom: 1.25rem; justify-content: center; }
.cta-final__h2 { font-family: var(--display); font-size: var(--fs-h1); line-height: 1.2; color: var(--cream); text-shadow: 3px 3px 0 rgba(0,0,0,.3); margin-bottom: 1.5rem; margin-top: 1rem; }
.cta-final__h2 .accent { color: var(--yellow); }
.cta-final__sub { font-size: var(--fs-lead); color: rgba(244,245,240,.85); max-width: 50ch; margin: 0 auto 2.5rem; line-height: 1.6; font-weight: 500; }
.cta-final__ctas { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.5rem; justify-content: center; }
.cta-final__checks { display: inline-flex; flex-direction: column; gap: .85rem; text-align: left; }
.cta-final__check { display: flex; align-items: flex-start; gap: .9rem; font-size: var(--fs-body); color: var(--cream); font-weight: 500; }
.check-icon {
  display: inline-flex; width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
  background: var(--yellow); align-items: center; justify-content: center;
  color: var(--yellow-ink); font-weight: 900; font-size: .75rem; margin-top: .1rem;
  border: 2px solid var(--ink); animation: float-up 3s ease-in-out infinite;
}
.cta-final__check:nth-child(2) .check-icon { animation-delay: .4s; }
.cta-final__check:nth-child(3) .check-icon { animation-delay: .8s; }

/* ── 16. FOOTER ─────────────────────────────────── */
.footer { background: var(--ink); padding: 3rem var(--gap) 2rem; }
.footer__top { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.footer__logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.footer__logo img { width: 56px; height: 56px; object-fit: contain; }
.footer__logo-word { font-family: var(--display); font-size: 1.2rem; color: var(--cream); }
.footer__tagline { font-size: .85rem; color: rgba(244,245,240,.65); line-height: 1.8; }
.footer__legal-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.5rem; border-top: 2px dashed rgba(244,245,240,.2); }
.footer__copy { font-size: .65rem; color: rgba(244,245,240,.45); }
.footer__legal-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__legal-links a { font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(244,245,240,.55); transition: color 200ms; }
.footer__legal-links a:hover { color: var(--yellow); }

/* ── 17. COOKIE BANNER ──────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%; translate: -50% 0;
  z-index: 200; width: min(520px, calc(100vw - 2rem));
  background: var(--card); border: 3px solid var(--ink); border-radius: var(--r-md);
  padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  box-shadow: 6px 6px 0 var(--ink);
  opacity: 0; pointer-events: none; transform: translateY(calc(100% + 3rem));
  transition: transform 500ms var(--ease-expo), opacity 400ms var(--ease-expo);
}
.cookie-banner[hidden] { display: flex; visibility: hidden; }
.cookie-banner.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
.cookie-banner__icon { width: 40px; height: 40px; flex-shrink: 0; }
.cookie-banner__text { flex: 1; font-size: .78rem; color: var(--ink-soft); line-height: 1.5; min-width: 200px; }
.cookie-banner__text a { color: var(--purple); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__actions { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-banner__btn { flex-shrink: 0; padding: .55em 1.3em; font-size: .7rem; font-weight: 700; text-transform: uppercase; background: var(--yellow); color: var(--yellow-ink); border: 2px solid var(--ink); border-radius: 100px; cursor: pointer; }
.cookie-banner__btn--ghost { background: transparent; color: var(--ink-soft); border: 2px solid var(--ink-border); }
@media (max-width: 820px) { .cookie-banner { bottom: 5.5rem; } }
@media (max-width: 560px) {
  .cookie-banner { padding: 1.1rem; flex-direction: column; align-items: flex-start; max-height: calc(100dvh - 7rem); overflow-y: auto; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .cookie-banner__btn { flex: 1; text-align: center; }
}
.cookie-body { transform-origin: 32px 32px; animation: cookieSway 5s var(--ease-expo) infinite; }
.chip { animation: chipGlow 3.6s ease-in-out infinite; }
.chip:nth-child(2) { animation-delay: .3s; } .chip:nth-child(3) { animation-delay: .6s; }
.chip:nth-child(4) { animation-delay: .9s; } .chip:nth-child(5) { animation-delay: 1.2s; }
.chip:nth-child(6) { animation-delay: 1.5s; } .chip:nth-child(7) { animation-delay: 1.8s; }
.chip:nth-child(8) { animation-delay: 2.1s; }
.cookie-crumb { transform-origin: center; animation: crumbFloat 2.8s ease-in-out infinite; }
.cookie-crumb:nth-child(2) { animation-delay: .4s; } .cookie-crumb:nth-child(3) { animation-delay: .8s; }
@keyframes cookieSway { 0%, 100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }
@keyframes chipGlow { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }
@keyframes crumbFloat { 0%, 100% { transform: translateY(0); opacity: .55; } 50% { transform: translateY(-3px); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .cookie-body, .chip, .cookie-crumb { animation: none; } }

/* ── 18. STICKY MOBILE ───────────────────────────── */
.sticky-cta { position: fixed; bottom: 1.25rem; left: 50%; translate: -50% 0; z-index: 80; white-space: nowrap; transform: translateY(120px); transition: transform 400ms var(--ease-expo); display: none; padding: .9em 2rem; }
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta.is-gone    { transform: translateY(120px); }

/* ── 19. RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: 50dvh 1fr; }
  .hero__photo::after { background: linear-gradient(to top, var(--cream) 0%, transparent 55%); }
  .hero__content { padding: 2rem var(--gap) 3rem; }
  .creds__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bio__inner { grid-template-columns: 1fr; }
  .bio__left { position: static; }
  .bio__photo-block { max-width: 280px; margin: 0 auto; }
  .tgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .filter__grid { grid-template-columns: 1fr; }
  .sticky-cta { display: inline-flex; }
}
@media (max-width: 600px) {
  .hero__name { font-size: clamp(2.1rem,9vw,3.4rem); }
  .creds__grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .studio__slide { width: clamp(160px, 60vw, 240px); }
  .tgrid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .process__step { grid-template-columns: auto 1fr; gap: 1rem; }
  .cta-final__ctas { flex-direction: column; }
  .cta-final__ctas .btn { width: 100%; justify-content: center; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__legal-row { flex-direction: column; align-items: flex-start; gap: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .ticker__track { animation: none; }
  [data-reveal],[data-reveal="fade"] { opacity:1 !important; clip-path:none !important; transform:none !important; transition:none !important; }
}
