/* ── Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --verde: #5FA55A;
  --turquesa: #01B4BC;
  --amarillo: #F6D51F;
  --naranja: #FA8925;
  --coral: #FA5457;
  --negro: #3A3F44;
  --gris: #6B7280;
  --bg: #FAFAF8;
  --radius-card: 20px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Nunito', sans-serif; background: var(--bg); color: var(--negro); line-height: 1.5; overflow-x: hidden; }
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.c-turquesa { color: var(--turquesa); }
.c-naranja { color: var(--naranja); }
.c-coral { color: var(--coral); }

/* ── Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--verde); color: #fff;
  padding: 14px 28px; border-radius: 100px;
  font-weight: 600; font-size: 15px;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #4d8f49; transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--negro);
  padding: 12px 24px; border-radius: 100px;
  font-weight: 600; font-size: 14px;
  border: 1.5px solid rgba(0,0,0,0.2); cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--negro); background: rgba(0,0,0,0.04); }

/* ── Reveal animation — ver definición al final del archivo */

/* ── Section commons */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 80px 48px; }
.section-label-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--verde) 60%, white) 0%, var(--verde) 50%, color-mix(in srgb, var(--verde) 85%, black) 100%);
  color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 28px;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--verde) 40%, transparent),
              inset 0 1.5px 0 rgba(255,255,255,0.4),
              inset 0 -2px 0 rgba(0,0,0,0.12);
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.section-title {
  font-size: clamp(22px, 2.6vw, 38px); font-weight: 900;
  line-height: 1.15; letter-spacing: -0.02em;
  max-width: 900px; margin-bottom: 48px;
}
.section-cta-center { text-align: center; margin-top: 48px; }

/* Squiggle underline en títulos */
@keyframes squiggleDraw {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}
@keyframes floatDecor {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-8px) rotate(6deg); }
}
@keyframes floatDecorAlt {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-6px) rotate(-8deg); }
}
.title-squiggle {
  position: relative;
  display: inline;
}
.title-squiggle::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
}
.reveal.visible .title-squiggle::after,
.visible .title-squiggle::after,
.title-squiggle::after {
  animation: squiggleDraw 0.6s cubic-bezier(0.34,1.2,0.64,1) 0.5s both;
}
/* Decorativos flotantes junto a títulos */
.title-deco {
  position: absolute;
  pointer-events: none;
}
.title-deco--star {
  width: 22px; height: 22px;
  animation: floatDecor 3.5s ease-in-out infinite;
}
.title-deco--dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  animation: floatDecorAlt 4s ease-in-out infinite;
}
.title-deco--swoosh {
  width: 36px; height: 28px;
  animation: floatDecor 4.5s ease-in-out infinite;
}
.section-title-wrap {
  position: relative;
  display: block;
}
.title-squiggle--coral::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10' preserveAspectRatio='none'%3E%3Cpath d='M0,7 C25,1 50,9 75,5 C100,1 125,9 150,5 C170,2 185,8 200,5' fill='none' stroke='%23FA5457' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.title-squiggle--turquesa::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10' preserveAspectRatio='none'%3E%3Cpath d='M0,7 C25,1 50,9 75,5 C100,1 125,9 150,5 C170,2 185,8 200,5' fill='none' stroke='%2301B4BC' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.title-squiggle--amarillo::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10' preserveAspectRatio='none'%3E%3Cpath d='M0,7 C25,1 50,9 75,5 C100,1 125,9 150,5 C170,2 185,8 200,5' fill='none' stroke='%23F6D51F' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.title-squiggle--verde::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10' preserveAspectRatio='none'%3E%3Cpath d='M0,7 C25,1 50,9 75,5 C100,1 125,9 150,5 C170,2 185,8 200,5' fill='none' stroke='%235FA55A' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.section-inner--center { text-align: center; }
.section-inner--center .section-label-pill { margin-left: auto; margin-right: auto; }
.section-inner--center .section-title { margin-left: auto; margin-right: auto; }

.section-header-inline {
  display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.section-title-inline {
  font-size: clamp(30px, 3.8vw, 56px); font-weight: 900;
  letter-spacing: -0.02em; line-height: 1.15; color: var(--negro);
}

/* ── HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 88px; padding: 0;
  display: flex; align-items: center;
  background: rgba(255,243,240,0.6);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  transition: background 0.3s, backdrop-filter 0.3s, transform 0.35s ease, opacity 0.35s ease;
}
.header.hide-nav {
  transform: translateY(-100%);
  opacity: 0;
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.header.scrolled {
  background: rgba(250,250,248,0.88);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
}
.header-logo { height: 56px; width: auto; margin-top: 6px; }
.header-nav { display: flex; gap: 20px; align-items: center; }
.header-nav a { font-size: 15px; font-weight: 500; color: var(--negro); opacity: 0.7; transition: color 0.2s, opacity 0.2s, font-weight 0.2s; }
.header-nav a:hover { opacity: 1; font-weight: 800; }
.header-nav a:nth-child(1):hover { color: var(--verde); }
.header-nav a:nth-child(2):hover { color: var(--turquesa); }
.header-nav a:nth-child(3):hover { color: var(--naranja); }
.header-nav a:nth-child(4):hover { color: var(--coral); }
.header-nav a:nth-child(5):hover { color: var(--verde); }
.header-nav .nav-cta-btn {
  opacity: 1;
  background: linear-gradient(160deg, color-mix(in srgb, var(--verde) 60%, white) 0%, var(--verde) 50%, color-mix(in srgb, var(--verde) 85%, black) 100%);
  color: #fff; font-weight: 700; font-size: 13px;
  padding: 8px 18px; border-radius: 100px;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--verde) 35%, transparent),
              inset 0 1.5px 0 rgba(255,255,255,0.4),
              inset 0 -2px 0 rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.header-nav .nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--verde) 45%, transparent),
              inset 0 1.5px 0 rgba(255,255,255,0.4),
              inset 0 -2px 0 rgba(0,0,0,0.12);
}
.header-login {
  font-size: 13px; font-weight: 700; color: var(--coral);
  border: 1.5px solid var(--coral); border-radius: 100px;
  padding: 7px 20px;
  background: transparent;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
}
.header-login:hover {
  background: var(--coral);
  color: #fff;
}
.menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--negro); padding: 4px; line-height: 0;
}
.menu-btn-icon { display: block; transition: transform 0.3s; }
.menu-btn .bar { transition: transform 0.3s ease, opacity 0.3s ease; transform-box: fill-box; transform-origin: center; }
.menu-open .menu-btn .bar1 { transform: translateY(4.9px) rotate(45deg); }
.menu-open .menu-btn .bar2 { opacity: 0; }
.menu-open .menu-btn .bar3 { transform: translateY(-5.1px) rotate(-45deg); }

/* ── MENU OVERLAY */
.menu-overlay {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(250,250,248,0.88);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  padding: 100px 8vw 48px;
  display: flex; flex-direction: column; gap: 0;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
  overflow: hidden;
}
/* Halos de fondo */
.menu-overlay::before,
.menu-overlay::after {
  content: ''; position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.menu-overlay::before {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(250,84,87,0.10) 0%, transparent 70%);
  top: -60px; right: -60px;
  filter: blur(40px);
}
.menu-overlay::after {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(1,180,188,0.09) 0%, transparent 70%);
  bottom: 80px; left: -40px;
  filter: blur(40px);
}
.menu-halo-yellow {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(246,213,31,0.08) 0%, transparent 70%);
  bottom: 200px; right: -20px;
  filter: blur(40px);
}
.menu-overlay > *:not(.menu-halo-yellow) { position: relative; z-index: 1; }

.menu-close {
  position: absolute; top: 18px; right: 18px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  cursor: pointer;
  color: var(--coral);
  font-size: 20px; line-height: 1;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: opacity 0.2s, transform 0.2s; z-index: 2;
}
.menu-close:hover { opacity: 0.85; transform: scale(0.95); }
.menu-overlay.open { opacity: 1; pointer-events: all; transform: translateY(0); }

/* Links — animación de entrada */
.menu-links { display: flex; flex-direction: column; gap: 4px; list-style: none; padding: 0; margin: 0; }
.menu-links li { opacity: 0; transform: translateY(10px); transition: opacity 0.28s ease, transform 0.28s ease; }
.menu-links li:nth-child(1) { transition-delay: 0.05s; }
.menu-links li:nth-child(2) { transition-delay: 0.09s; }
.menu-links li:nth-child(3) { transition-delay: 0.13s; }
.menu-links li:nth-child(4) { transition-delay: 0.17s; }
.menu-overlay.open .menu-links li { opacity: 1; transform: translateY(0); }
.menu-dashboard-btn { opacity: 0; transform: translateY(10px); transition: opacity 0.28s ease 0.22s, transform 0.28s ease 0.22s; }
.menu-overlay.open .menu-dashboard-btn { opacity: 1; transform: translateY(0); }
.menu-bottom { opacity: 0; transform: translateY(8px); transition: opacity 0.28s ease 0.27s, transform 0.28s ease 0.27s; }
.menu-overlay.open .menu-bottom { opacity: 1; transform: translateY(0); }

.menu-link {
  display: flex; align-items: center; gap: 14px;
  font-size: clamp(20px, 5.5vw, 52px); font-weight: 800;
  letter-spacing: -0.02em; color: var(--negro);
  text-decoration: none; white-space: nowrap;
  transition: opacity 0.2s;
  line-height: 1.25;
}
.menu-link:hover { opacity: 0.7; }
.menu-dot {
  display: block; width: 7px; height: 7px;
  border-radius: 50%; flex-shrink: 0; flex-grow: 0;
  margin-top: 2px;
}
.menu-link--coral    { color: var(--coral);    } .menu-link--coral    .menu-dot { background: var(--coral); }
.menu-link--verde    { color: var(--verde);    } .menu-link--verde    .menu-dot { background: var(--verde); }
.menu-link--turquesa { color: var(--turquesa); } .menu-link--turquesa .menu-dot { background: var(--turquesa); }
.menu-link--naranja  { color: var(--naranja);  } .menu-link--naranja  .menu-dot { background: var(--naranja); }

.menu-dashboard-btn {
  margin-top: 24px;
  width: 100%;
  background: var(--turquesa); color: #fff; border: none;
  border-radius: 100px; padding: 14px 24px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: background 0.2s;
}
.menu-dashboard-btn:hover { background: #009aa1; }

.menu-bottom { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.menu-social { display: flex; gap: 14px; align-items: center; }
.menu-social a { display: flex; line-height: 0; opacity: 0.85; transition: opacity 0.2s; }
.menu-social a:hover { opacity: 1; }
.menu-social svg { width: 28px; height: 28px; }
.menu-copyright { font-size: 11px; color: rgba(80,80,80,0.45); margin: 0; letter-spacing: 0.01em; }

/* ── HERO */
.hero { height: 100svh; display: flex; flex-direction: column; padding-top: 88px; background: linear-gradient(155deg, #FFFCF9 0%, #FFF9F3 45%, #FFF3EC 100%); overflow: hidden; position: relative; }
.hero-content {
  max-width: 1200px; margin: 0 auto; padding: 24px 48px 40px;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; align-items: center;
  width: 100%; flex: 1;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 16px;
}
/* hero decorations */
.hd-svg {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s);
  pointer-events: none; z-index: 2;
  animation: none;
  transform: rotate(var(--r, 0deg));
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.1));
}
.hero-instrument {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s);
  height: auto;
  pointer-events: none;
  z-index: 1;
  transform: rotate(var(--r, 0deg));
  filter:
    drop-shadow(0 12px 28px rgba(0,0,0,0.10))
    drop-shadow(0 -4px 14px rgba(255,220,140,0.20))
    drop-shadow(0 0 22px rgba(255,255,255,0.28));
  animation: none;
  opacity: 0.95;
}
.hero-instrument.hi-extra { display: none; }

/* ── Hero ambient lighting & texture */
.hero-halo {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}
.hero-halo--left {
  width: 65%; height: 80%;
  left: -8%; top: 10%;
  background: radial-gradient(ellipse at 45% 50%,
    rgba(255,241,200,0.38) 0%,
    rgba(255,223,170,0.16) 40%,
    transparent 70%);
  filter: blur(70px);
  animation: haloBreathe 9s ease-in-out infinite;
}
.hero-halo--right {
  width: 58%; height: 92%;
  right: -5%; top: 3%;
  background: radial-gradient(ellipse at 55% 46%,
    rgba(220,200,255,0.24) 0%,
    rgba(195,225,255,0.14) 45%,
    transparent 72%);
  filter: blur(90px);
  animation: haloBreathe 12s ease-in-out infinite 2s;
}
@keyframes haloBreathe {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.04); }
}
.hero-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 85% 35% at 25% 75%, rgba(255,200,140,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 70% 45% at 75% 25%, rgba(180,210,255,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 95% 25% at 50% 95%, rgba(255,170,200,0.03) 0%, transparent 70%);
  filter: blur(50px);
}
/* up-down suave */
@keyframes hdFloat {
  0%, 100% { transform: rotate(var(--r, 0deg)) translateY(0); }
  50%       { transform: rotate(var(--r, 0deg)) translateY(-12px); }
}
/* deriva diagonal */
@keyframes hdDrift {
  0%, 100% { transform: rotate(var(--r, 0deg)) translate(0, 0); }
  33%       { transform: rotate(var(--r, 0deg)) translate(8px, -10px); }
  66%       { transform: rotate(var(--r, 0deg)) translate(-6px, -6px); }
}
/* balanceo con rotación */
@keyframes hdSway {
  0%, 100% { transform: rotate(var(--r, 0deg)); }
  25%       { transform: rotate(calc(var(--r, 0deg) + 12deg)) translateY(-6px); }
  75%       { transform: rotate(calc(var(--r, 0deg) - 10deg)) translateY(4px); }
}
/* rebote rápido */
@keyframes hdBob {
  0%, 100% { transform: rotate(var(--r, 0deg)) translateY(0) scale(1); }
  40%       { transform: rotate(var(--r, 0deg)) translateY(-14px) scale(1.05); }
  60%       { transform: rotate(var(--r, 0deg)) translateY(-10px) scale(1.02); }
}
/* pulso + flotación */
@keyframes hdPulse {
  0%, 100% { transform: rotate(var(--r, 0deg)) scale(1) translateY(0); }
  50%       { transform: rotate(var(--r, 0deg)) scale(1.1) translateY(-8px); }
}
/* zigzag lateral */
@keyframes hdZig {
  0%, 100% { transform: rotate(var(--r, 0deg)) translate(0, 0); }
  25%       { transform: rotate(var(--r, 0deg)) translate(-10px, -8px); }
  50%       { transform: rotate(var(--r, 0deg)) translate(0, -14px); }
  75%       { transform: rotate(var(--r, 0deg)) translate(10px, -8px); }
}
/* giro suave continuo */
@keyframes hdSpin {
  0%   { transform: rotate(var(--r, 0deg)) translateY(0); }
  25%  { transform: rotate(calc(var(--r, 0deg) + 8deg)) translateY(-8px); }
  50%  { transform: rotate(var(--r, 0deg)) translateY(-12px); }
  75%  { transform: rotate(calc(var(--r, 0deg) - 8deg)) translateY(-8px); }
  100% { transform: rotate(var(--r, 0deg)) translateY(0); }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: transparent;
  border: 1.5px solid var(--turquesa);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turquesa);
  white-space: nowrap;
  margin-bottom: 6px;
}
.hero-title {
  font-size: clamp(32px, 4vw, 64px); font-weight: 900;
  line-height: 1.12; letter-spacing: -0.02em;
  color: #2A2D3A;
}
.hero-sub { font-size: clamp(16px, 1.4vw, 20px); font-weight: 500; color: var(--gris); max-width: 100%; margin-top: 6px; }
.hero-stats {
  display: flex; gap: 28px; margin-top: 4px;
}
.hero-stat {
  display: flex; flex-direction: column; gap: 2px;
}
.hero-stat-num {
  font-size: clamp(22px, 2vw, 30px); font-weight: 900; line-height: 1;
  letter-spacing: -0.03em; color: var(--negro);
}
.hero-stat-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gris); opacity: 0.7;
}

/* hero swipe carousel */
.hero-swipe {
  position: relative;
  width: 100%;
  max-width: 670px;
  aspect-ratio: 1/1;
  height: auto;
  margin: 0 auto;
  align-self: center;
}

.hs-card {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 28px 64px rgba(0,0,0,0.16),
    0 0 48px rgba(120,80,200,0.08),
    0 0 0 3px rgba(255,255,255,0.88);
  will-change: transform, opacity;
  transform-origin: bottom center;
  z-index: 1;
}
.hs-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hs-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 35%, transparent 65%);
  pointer-events: none;
}
.hs-card-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: transparent;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 12px;
}
.hs-card-bottom span {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hs-card-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c);
  flex-shrink: 0;
  margin-bottom: 5px;
  border: none;
  box-shadow: 0 0 8px 2px color-mix(in srgb, var(--c) 70%, transparent);
}
.hs-card-icon img { display: none; }
.hs-card-bottom em {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-style: normal;
  margin-top: 4px;
}

/* ── WAVE SEPARATORS */
.wave-sep {
  position: relative; z-index: 2;
  margin-bottom: -2px; line-height: 0;
}
.wave-sep svg { display: block; width: 100%; }
section { position: relative; overflow: visible; }

/* ── QUÉ ES BABIDIBU */
.que-es {
  background-image: radial-gradient(circle, rgba(95,165,90,0.15) 1.5px, transparent 1.5px),
                    radial-gradient(circle, rgba(246,213,31,0.18) 1.5px, transparent 1.5px),
                    linear-gradient(180deg, #EDE6FF 0%, #f0ecff 100%);
  background-size: 28px 28px, 56px 56px, 100% 100%;
  background-position: 0 0, 14px 14px, 0 0;
}
.que-es .section-label-pill {
  background: linear-gradient(160deg, color-mix(in srgb, var(--turquesa) 60%, white) 0%, var(--turquesa) 50%, color-mix(in srgb, var(--turquesa) 85%, black) 100%);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--turquesa) 40%, transparent), inset 0 1.5px 0 rgba(255,255,255,0.4), inset 0 -2px 0 rgba(0,0,0,0.12);
}
.cards-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card {
  background: var(--bg); border-radius: var(--radius-card);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}
.service-card:nth-child(1) { --tilt: -1.5deg; }
.service-card:nth-child(2) { --tilt: 0deg; }
.service-card:nth-child(3) { --tilt: 1.5deg; }
.service-card.visible { transform: rotate(var(--tilt, 0deg)); }
.service-card:hover {
  transform: rotate(0deg) translateY(-8px) !important;
  box-shadow: 0 20px 48px rgba(0,0,0,0.14);
}
.service-card-img {
  width: 100%; height: 90px; overflow: visible; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding-top: 20px; position: relative;
}
.service-card-img::before {
  content: '';
  position: absolute;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--icon-bg, rgba(95,165,90,0.12));
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
  position: relative;
}
.service-card-img img.service-card-svg {
  width: 72px; height: 72px; object-fit: contain;
}
.service-card:hover .service-card-img img { transform: scale(1.12) rotate(-4deg); }
.service-card-body {
  padding: 16px 24px 24px; flex: 0; position: relative;
}
.service-card h3 { font-size: clamp(18px, 1.6vw, 22px); font-weight: 900; margin-bottom: 10px; }
.service-card p {
  font-size: clamp(14px, 1.1vw, 16px); color: var(--negro); font-weight: 500; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card-line { position: absolute; bottom: 0; left: 12px; right: 12px; height: 8px; border-radius: 8px 8px 0 0; }

/* ── NUESTROS UNIVERSOS */
.universos { background: #FFFBEA; position: relative; overflow-x: hidden; }
.universos .section-inner { max-width: 1400px; position: relative; z-index: 2; padding-top: 100px; padding-bottom: 110px; }
.universos .hd-svg { z-index: 0; }

.artists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-top: 16px;
}
.artist-card {
  border-radius: 24px; overflow: hidden;
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--g1) 30%, transparent),
              0 2px 8px rgba(0,0,0,0.08);
  aspect-ratio: 3/4;
}
.artist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px color-mix(in srgb, var(--g1) 45%, transparent),
              0 4px 16px rgba(0,0,0,0.1);
}
.artist-card-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
}
.artist-card-photo-wrap {
  position: absolute; inset: 0;
}
.artist-card-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  display: block; transition: transform 0.5s ease;
}
.artist-card-footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 56px 16px 20px;
  background: linear-gradient(to top,
    color-mix(in srgb, var(--g1) 90%, black) 0%,
    color-mix(in srgb, var(--g1) 60%, transparent) 60%,
    transparent 100%);
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.artist-card-name {
  font-size: clamp(12px, 1vw, 15px); font-weight: 900; color: #fff;
  letter-spacing: -0.01em; text-transform: none;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  line-height: 1.2; white-space: nowrap;
}
.artist-card-cta {
  font-size: 11px; font-weight: 700; white-space: nowrap; align-self: flex-start;
  color: #fff;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.55);
  padding: 5px 14px; border-radius: 100px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px) saturate(1.2);
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

/* ── ARTIST MODAL */
.artist-modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.artist-modal.open { opacity: 1; pointer-events: all; }
.artist-modal-inner {
  background: #fff; border-radius: 24px; overflow: hidden;
  display: grid; grid-template-columns: 38% 62%;
  max-width: 860px; width: 100%; height: 460px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  position: relative;
}
.artist-modal-close {
  position: absolute; top: 16px; right: 20px; z-index: 10;
  background: rgba(255,255,255,0.9); border: none; border-radius: 50%;
  width: 36px; height: 36px; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.artist-modal-left {
  position: relative;
  overflow: hidden;
}
.artist-modal-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  position: absolute; inset: 0;
}
.artist-modal-right {
  padding: 28px 36px 32px; overflow-y: hidden;
  display: flex; flex-direction: column; justify-content: flex-start; gap: 16px;
  background-image: radial-gradient(circle, rgba(0,0,0,0.055) 1px, transparent 1px);
  background-size: 18px 18px;
  min-height: 0;
}
.artist-modal-num { display: none; }
.artist-modal-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.artist-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 60%, white) 0%, var(--accent) 50%, color-mix(in srgb, var(--accent) 85%, black) 100%);
  color: #fff;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 35%, transparent),
              inset 0 1.5px 0 rgba(255,255,255,0.4),
              inset 0 -2px 0 rgba(0,0,0,0.12);
  border: none;
}
.artist-modal-logo { max-width: 180px; max-height: 80px; width: auto; height: auto; object-fit: contain; margin-bottom: 12px; }
.artist-modal-name-text {
  font-size: clamp(30px, 3.5vw, 52px); font-weight: 900;
  letter-spacing: -0.03em; line-height: 1.05; color: var(--negro);
}
.artist-modal-desc {
  font-size: 14px; font-weight: 400; line-height: 1.45;
  color: rgba(13,13,13,0.55); max-width: 420px;
}
.spotify-label { display: none; }
.spotify-wrap {
  background: color-mix(in srgb, var(--sc) 12%, white);
  border: 1.5px solid color-mix(in srgb, var(--sc) 35%, transparent);
  border-radius: 14px;
  padding: 6px;
}
.artist-modal-socials { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 4px; }
.artist-modal-socials { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  text-decoration: none; border: none;
  color: #fff;
  background: linear-gradient(160deg, color-mix(in srgb, var(--sc) 55%, white) 0%, var(--sc) 50%, color-mix(in srgb, var(--sc) 88%, black) 100%);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.5),
              inset 0 -2px 0 rgba(0,0,0,0.15);
  transition: transform 0.2s;
}
.social-btn:hover {
  transform: translateY(-3px);
}

/* ── IMPACTO */
.impacto {
  background-color: #fff;
  background-image: radial-gradient(circle, rgba(250,84,87,0.12) 1.5px, transparent 1.5px),
                    radial-gradient(circle, rgba(1,180,188,0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px, 56px 56px;
  background-position: 0 0, 14px 14px;
  padding: 0;
  margin: 0;
  position: relative;
}
.impacto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 72' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,36 C240,72 480,0 720,36 C960,72 1200,0 1440,36 L1440,0 L0,0 Z' fill='%23FFFBEA'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  pointer-events: none;
  z-index: 1;
}
.impacto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 48px 90px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.impacto-header { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.impacto-pill-wrap {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.impacto-pill {
  background: linear-gradient(160deg, color-mix(in srgb, var(--turquesa) 60%, white) 0%, var(--turquesa) 50%, color-mix(in srgb, var(--turquesa) 85%, black) 100%) !important;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--turquesa) 40%, transparent),
              inset 0 1.5px 0 rgba(255,255,255,0.4),
              inset 0 -2px 0 rgba(0,0,0,0.12) !important;
}
.impacto-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  color: var(--negro);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
}
.impacto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.impacto-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 32px;
  gap: 12px;
  position: relative;
  transition: transform 0.3s ease;
}
.impacto-stat:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(0,0,0,0.08);
}
.impacto-stat:hover { transform: translateY(-4px); }
.impacto-icon {
  width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin-bottom: 4px;
}
.impacto-stat:nth-child(1) .impacto-icon { background: color-mix(in srgb, var(--coral) 14%, white); }
.impacto-stat:nth-child(2) .impacto-icon { background: color-mix(in srgb, var(--turquesa) 14%, white); }
.impacto-stat:nth-child(3) .impacto-icon { background: color-mix(in srgb, var(--verde) 14%, white); }
.impacto-icon-img { width: 64px; height: 64px; object-fit: contain; }
.impacto-num { font-size: clamp(40px, 4vw, 64px); font-weight: 900; line-height: 1; font-variant-numeric: tabular-nums; width: 100%; display: block; text-align: center; }
.impacto-stat:nth-child(1) .impacto-num { color: var(--coral); }
.impacto-stat:nth-child(2) .impacto-num { color: var(--turquesa); }
.impacto-stat:nth-child(3) .impacto-num { color: var(--verde); }
.impacto-lbl { font-size: clamp(14px, 1.2vw, 16px); color: var(--gris); font-weight: 700; line-height: 1.4; }

/* ── ÚLTIMOS LANZAMIENTOS */
.lanzamientos {
  background-color: #EDFAF1;
  background-image:
    linear-gradient(rgba(180,210,185,0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,210,185,0.22) 1px, transparent 1px);
  background-size: 32px 32px;
  position: relative;
  margin-top: -72px;
  z-index: 1;
  overflow: hidden;
}
.lanzamientos::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 55% at 16% 58%, rgba(246,213,31,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 84% 42%, rgba(250,84,87,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 50% 88%, rgba(1,180,188,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 78% 75%, rgba(250,137,37,0.06) 0%, transparent 60%);
  filter: blur(55px);
}

/* ── Lanzamientos decorative elements */
.lanz-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: var(--op, 0.7);
  width: var(--s);
  height: auto;
  left: var(--x, auto);
  top: var(--y, auto);
  right: var(--xr, auto);
  bottom: var(--yb, auto);
  transform: rotate(var(--r, 0deg));
  filter:
    drop-shadow(0 10px 24px rgba(0,0,0,0.10))
    drop-shadow(0 -3px 12px rgba(255,220,140,0.18));
  animation: var(--a, lanzFloat) var(--t, 6s) ease-in-out infinite var(--d, 0s);
}
.lanz-note {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  width: var(--s);
  height: var(--s);
  left: var(--x, auto);
  top: var(--y, auto);
  right: var(--xr, auto);
  bottom: var(--yb, auto);
  transform: rotate(var(--r, 0deg));
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
  animation: var(--a, lanzNoteFloat) var(--t, 7s) ease-in-out infinite var(--d, 0s);
}
.lanz-star {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  width: var(--s);
  height: var(--s);
  left: var(--x, auto);
  top: var(--y, auto);
  right: var(--xr, auto);
  bottom: var(--yb, auto);
  transform: rotate(var(--r, 0deg));
  animation: lanzTwinkle var(--t, 4s) ease-in-out infinite var(--d, 0s);
}
@keyframes lanzFloat {
  0%, 100% { transform: rotate(var(--r, 0deg)) translateY(0); }
  50%       { transform: rotate(var(--r, 0deg)) translateY(-10px); }
}
@keyframes lanzSway {
  0%, 100% { transform: rotate(var(--r, 0deg)) translateY(0); }
  33%       { transform: rotate(calc(var(--r, 0deg) + 6deg)) translateY(-8px); }
  66%       { transform: rotate(calc(var(--r, 0deg) - 5deg)) translateY(-4px); }
}
@keyframes lanzNoteFloat {
  0%, 100% { transform: rotate(var(--r, 0deg)) translateY(0) scale(1); }
  50%       { transform: rotate(calc(var(--r, 0deg) + 8deg)) translateY(-12px) scale(1.04); }
}
@keyframes lanzTwinkle {
  0%, 100% { opacity: 0.55; transform: scale(1) rotate(var(--r, 0deg)); }
  50%       { opacity: 0.25; transform: scale(0.80) rotate(calc(var(--r, 0deg) + 20deg)); }
}
.lanzamientos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 72' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,36 C240,0 480,72 720,36 C960,0 1200,72 1440,36 L1440,0 L0,0 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  pointer-events: none;
  z-index: 1;
}
.lanzamientos .section-inner { position: relative; z-index: 2; padding-top: 110px; padding-bottom: 100px; }
.lanz-pill {
  background: linear-gradient(160deg, color-mix(in srgb, #FA8925 60%, white) 0%, #FA8925 50%, color-mix(in srgb, #FA8925 85%, black) 100%);
  box-shadow: 0 6px 16px color-mix(in srgb, #FA8925 40%, transparent),
              inset 0 1.5px 0 rgba(255,255,255,0.4),
              inset 0 -2px 0 rgba(0,0,0,0.12);
}
.babidibutv-banner { background: #FFF3F0; padding: 32px 40px; }
.babidibutv-inner {
  max-width: 1100px; margin: 0 auto;
  background: linear-gradient(135deg, #FFFBEA 0%, #FFF3F0 100%);
  border-radius: 24px;
  padding: 32px 48px;
  display: flex; align-items: center; gap: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.babidibutv-logo { height: 90px; width: auto; flex-shrink: 0; }
.babidibutv-desc { flex: 1; font-size: clamp(14px, 1.2vw, 16px); color: rgba(58,63,68,0.7); line-height: 1.65; margin: 0; text-align: center; }
.babidibutv-btn {
  flex-shrink: 0;
  font-size: 15px; font-weight: 700; color: var(--negro); text-decoration: none;
  padding: 14px 28px; border-radius: 100px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--amarillo) 60%, white) 0%, var(--amarillo) 50%, color-mix(in srgb, var(--amarillo) 85%, black) 100%);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--amarillo) 40%, transparent), inset 0 1.5px 0 rgba(255,255,255,0.5), inset 0 -2px 0 rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.babidibutv-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px color-mix(in srgb, var(--amarillo) 50%, transparent), inset 0 1.5px 0 rgba(255,255,255,0.5), inset 0 -2px 0 rgba(0,0,0,0.1); }
.lanz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Microinteracciones premium ───────────────────────────────── */

.lanz-item {
  display: flex; flex-direction: column; gap: 0;
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.35s ease;
  will-change: transform;
}

.lanz-item:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 48px rgba(0,0,0,0.14),
    0 8px 20px rgba(0,0,0,0.06),
    0 0 0 1px rgba(255,255,255,0.9);
}

/* Sin zoom de video — la card completa es la que se mueve */
.lanz-video-wrap { position: relative; width: 100%; padding-top: 62%; background: #000; overflow: hidden; }
.lanz-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.lanz-meta {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 4px; padding: 12px 16px 16px;
}
.lanz-icon { display: none; }
.lanz-info { display: contents; }
.lanz-artist { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(58,63,68,0.4); }
.lanz-name { font-size: 16px; font-weight: 800; color: var(--negro); letter-spacing: -0.02em; margin: 0; line-height: 1.25; }
.yt-lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,0.9);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.yt-lightbox.open { opacity: 1; pointer-events: all; }
.yt-lightbox-inner { position: relative; width: 100%; max-width: 900px; aspect-ratio: 16/9; }
.yt-lightbox-frame { width: 100%; height: 100%; }
.yt-lightbox-frame iframe { width: 100%; height: 100%; border-radius: 12px; }
.yt-lightbox-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none; color: #fff; font-size: 32px; cursor: pointer;
}

/* ── CONTACTO */
.contacto { background: #FFF3F0; padding: 12px 40px 80px; }
.contacto-pill {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(105deg, #FA5457 0%, #FA8925 25%, #F6D51F 50%, #5FA55A 75%, #01B4BC 100%);
  background-size: 200% 200%;
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 36px 52px;
  overflow: hidden;
  transition: background-position 0.8s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(250,84,87,0.2);
}
.contacto-pill::after {
  content: '';
  position: absolute; top: 0; left: -120%; width: 80%; height: 100%;
  background: linear-gradient(105deg, transparent 10%, rgba(255,255,255,0.15) 50%, transparent 90%);
  transform: skewX(-10deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.contacto-pill:hover::after { left: 160%; }
.contacto-pill:hover {
  background-position: 100% 100%;
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(250,84,87,0.3);
}
.contacto-title {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  white-space: nowrap;
}
.contacto-body strong { color: #fff; font-weight: 800; }
.contacto-body {
  flex: 1;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin: 0;
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 40px;
}
.btn-contacto {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--negro);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15), inset 0 1.5px 0 rgba(255,255,255,0.8);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-contacto { animation: btnPulse 2.8s ease-in-out infinite; }
.btn-contacto:hover { transform: translateY(-2px) scale(1.04) !important; box-shadow: 0 10px 28px rgba(0,0,0,0.2); animation: none; }
@keyframes btnPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
  50% { transform: scale(1.04); box-shadow: 0 10px 28px rgba(0,0,0,0.22); }
}
.contacto-illus-img {
  position: absolute;
  bottom: 0;
  right: 16px;
  height: 190px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
}

/* ── FORM */
.form-section { background: #fff; }
.form-wrap { max-width: 680px; margin: 0 auto; padding: 80px 48px; }
.form-header { margin-bottom: 40px; }
.form-heading { font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; letter-spacing: -0.01em; margin-bottom: 10px; }
.form-intro { font-size: 16px; font-weight: 400; color: var(--gris); }
.form-intro { font-size: 16px; color: var(--gris); }
.wizard-progress { margin-bottom: 40px; }
.wizard-steps { display: flex; align-items: center; gap: 0; }
.wizard-step { display: flex; align-items: center; gap: 8px; flex: none; }
.wizard-step-dot {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.15); background: #fff;
  transition: all 0.3s;
}
.wizard-step.active .wizard-step-dot { border-color: var(--verde); background: var(--verde); }
.wizard-step.done .wizard-step-dot { border-color: var(--verde); background: var(--verde); }
.wizard-step-label { font-size: 13px; font-weight: 500; color: var(--gris); }
.wizard-step.active .wizard-step-label { color: var(--negro); font-weight: 600; }
.wizard-step-line { flex: 1; height: 2px; background: rgba(0,0,0,0.1); margin: 0 12px; min-width: 40px; }
.wizard-panel { display: none; }
.wizard-panel.active { display: block; }
.wizard-panel-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gris); margin-bottom: 24px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--negro); }
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 12px; font-size: 15px; font-family: inherit;
  background: #fff; color: var(--negro); transition: border-color 0.2s;
  outline: none;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--verde); }
.form-field.field-error input { border-color: var(--coral); }
.form-field.field-error::after { content: 'Campo requerido'; display: block; font-size: 12px; color: var(--coral); margin-top: 5px; }
.form-field.field-error:has([type="email"])::after { content: 'Ingresá un email válido'; }
.form-field.field-error:has([type="email"]:placeholder-shown)::after { content: 'Campo requerido'; }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field-hint { font-size: 12px; color: var(--gris); margin-top: 6px; display: block; }
.form-select { position: relative; }
.form-select-trigger {
  width: 100%; padding: 12px 16px; border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 12px; font-size: 15px; font-family: inherit;
  background: #fff; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  transition: border-color 0.2s;
}
.form-select-trigger:focus, .form-select-trigger:hover { border-color: var(--verde); outline: none; }
.form-select-menu {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff; border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  display: none; z-index: 10;
}
.form-select-menu.open { display: block; }
.form-select-option {
  width: 100%; padding: 12px 16px; border: none; background: none;
  font-size: 14px; font-family: inherit; text-align: left; cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.05); transition: background 0.15s;
}
.form-select-option:last-child { border-bottom: none; }
.form-select-option:hover { background: rgba(95,165,90,0.08); }
.form-upload {
  display: flex; flex-direction: column; align-items: center;
  padding: 32px 24px; border: 2px dashed rgba(0,0,0,0.12);
  border-radius: 16px; cursor: pointer; margin-bottom: 24px;
  transition: border-color 0.2s, background 0.2s; position: relative;
}
.form-upload:hover { border-color: var(--verde); background: rgba(95,165,90,0.04); }
.form-upload-icon { font-size: 32px; margin-bottom: 8px; color: var(--gris); }
.form-upload-text { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.form-upload-formats { font-size: 12px; color: var(--gris); }
.form-upload-files { font-size: 12px; color: var(--verde); margin-top: 8px; }

/* Uploadcare custom zone */
.uc-upload-zone {
  border: 2px dashed rgba(0,0,0,0.12); border-radius: 16px;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
  overflow: hidden;
}
.uc-upload-zone:hover, .uc-upload-zone.drag-over { border-color: var(--turquesa); background: rgba(1,180,188,0.04); }
.uc-upload-zone.drag-over { border-style: solid; }
.uc-upload-inner { display: flex; flex-direction: column; align-items: center; padding: 32px 24px; gap: 4px; }
.uc-upload-icon { font-size: 28px; color: var(--turquesa); }
.uc-upload-text { font-size: 15px; font-weight: 600; }
.uc-upload-formats { font-size: 12px; color: var(--gris); }
.uc-upload-progress { padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; }
.uc-progress-bar { height: 6px; background: rgba(0,0,0,0.08); border-radius: 99px; overflow: hidden; }
.uc-progress-fill { height: 100%; background: var(--turquesa); border-radius: 99px; transition: width 0.2s; width: 0%; }
.uc-progress-label { font-size: 13px; color: var(--gris); text-align: center; }
.uc-progress-hint { font-size: 11px; color: var(--gris); text-align: center; opacity: 0.7; margin-top: 4px; }
.uc-upload-done { display: flex; align-items: center; gap: 10px; padding: 16px 20px; }
.uc-done-icon { color: var(--verde); font-size: 18px; font-weight: 700; flex-shrink: 0; }
.uc-done-name { font-size: 14px; font-weight: 500; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.uc-remove-btn { background: none; border: none; cursor: pointer; color: var(--gris); font-size: 14px; padding: 4px; flex-shrink: 0; transition: color 0.2s; }
.uc-remove-btn:hover { color: var(--coral); }
.wizard-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.btn-wizard-next {
  background: var(--turquesa); color: #fff; border: none; border-radius: 100px;
  padding: 12px 24px; font-size: 15px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: background 0.2s;
}
.btn-wizard-next:hover { background: #019aa2; }
.btn-wizard-back {
  background: none; border: none; font-size: 14px; font-weight: 500;
  color: var(--gris); cursor: pointer; font-family: inherit;
}
.btn-wizard-back:hover { color: var(--negro); }
.btn-submit {
  background: var(--verde); color: #fff; border: none; border-radius: 100px;
  padding: 14px 28px; font-size: 15px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: background 0.2s;
}
.btn-submit:hover { background: #4d8f49; }
.form-modal-logo { display: block; }
.form-modal-card.success-state { max-width: 420px; }
.form-modal-card.success-state .form-modal-logo { margin: 0 auto 8px; }
.form-success {
  flex-direction: column; align-items: center; text-align: center;
  padding: 32px 24px 40px; gap: 14px;
}
.form-success-icon { font-size: 48px; color: var(--verde); }
.form-success-title { font-size: 28px; font-weight: 800; }
.form-success-msg { font-size: 16px; color: var(--gris); max-width: 400px; line-height: 1.6; }

/* ── FOOTER */
.footer {
  background: #FFF3F0;
  color: var(--negro);
  padding: 0;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--coral) 0%, var(--naranja) 25%, var(--amarillo) 50%, var(--verde) 75%, var(--turquesa) 100%) 1;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 60px 48px 32px; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(58,63,68,0.12); }
.footer-brand-col { display: flex; flex-direction: column; gap: 20px; }
.footer-logo { height: 48px; width: auto; }
.footer-tagline { font-size: 14px; color: rgba(58,63,68,0.55); line-height: 1.6; margin: 0; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: rgba(58,63,68,0.6);
  background: rgba(58,63,68,0.07);
  border: 1px solid rgba(58,63,68,0.12);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social-btn:hover { background: var(--coral); color: #fff; border-color: var(--coral); transform: translateY(-2px); }
.footer-links-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(58,63,68,0.4); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer-col a, .footer-col li { font-size: 14px; color: rgba(58,63,68,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--coral); }
.footer-contact-link { display: flex; align-items: center; gap: 8px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 13px; color: rgba(58,63,68,0.4); margin: 0; }


/* ── TABLET (768px–1024px, incluye iPad Mini, Air, Pro) */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Header — nav más compacto para que no se parta en 2 líneas */
  .header { padding: 0 20px; }
  .header-logo { height: 38px; }
  .header-inner { gap: 8px; }
  .header-nav { gap: 12px; }
  .header-nav a { font-size: 13px; }
  .header-cta-btn { font-size: 12px; padding: 9px 14px; }

  /* Hero — sin padding-bottom extra, overflow visible para el carousel */
  .hero { height: auto; min-height: 0; padding-bottom: 0; overflow: visible; }
  .hero-content { padding: 20px 28px 0; gap: 20px; flex: none; overflow: hidden; }
  .hero-title { font-size: clamp(26px, 3.5vw, 40px); }
  .hero-sub { font-size: 14px; }
  .hero-swipe { height: 340px; overflow: hidden; margin-right: -4px; }
  .hd-svg { display: none; }
  .hero-instrument { display: none !important; }
  .hero-instrument.hi-nube        { display: block !important; left: 64% !important; top: 14% !important; width: 70px !important; opacity: 0.85; z-index: 2 !important; }
  .hero-instrument.hi-mic         { display: block !important; left: 86% !important; top: 18% !important; width: 60px !important; opacity: 0.9  !important; z-index: 2 !important; }
  .hero-instrument.hi-auriculares { display: block !important; left: 78% !important; top: 52% !important; width: 56px !important; opacity: 0.85; z-index: 2 !important; }
  .hero-instrument.hi-extra { display: none !important; }

  /* Sections */
  .section-inner { padding: 60px 32px; }
  .universos .section-inner { padding-top: 60px; padding-bottom: 60px; }
  .lanzamientos .section-inner { padding-top: 90px; padding-bottom: 60px; }

  /* Que-es — 3 cards en 2 cols, la 3ª centrada */
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cards-grid-3 > *:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: calc(50% - 10px); margin: 0 auto; }

  /* Universos — flex para que los 5 queden 3+2 centrados */
  .artists-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
  .artists-grid .artist-card { width: calc(33.33% - 14px); flex-shrink: 0; }

  /* Impacto */
  .impacto-inner { padding: 100px 32px 70px; gap: 32px; }
  .impacto-pill-wrap { top: 60px; }
  .impacto-grid { grid-template-columns: repeat(3, 1fr); }
  .impacto-stat { padding: 32px 20px; }

  /* Lanzamientos — 3 items en 2 cols, el 3° centrado */
  .lanz-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .lanz-grid > *:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: calc(50% - 10px); margin: 0 auto; }
  .yt-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Contacto */
  .contacto { padding: 0 32px 60px; }
  .form-wrap { padding: 0 32px 60px; }

  /* Footer */
  .footer-inner { padding: 60px 32px 32px; }

  /* Artist modal */
  .artist-modal-inner { max-width: 700px; }
  .artist-modal-left { min-height: 260px; }
}

/* ── MOBILE */
@media (max-width: 767px) {
  /* Header */
  .header { padding: 0 20px; height: 60px; }
  .header-inner { justify-content: space-between; align-items: center; position: relative; padding: 0; width: 100%; }
  .header-logo { height: 36px; }
  .header-nav, .header-login { display: none; }
  .menu-btn {
    display: flex; align-items: center; justify-content: center;
    position: static;
    background: var(--coral); color: #fff;
    border-radius: 8px; padding: 0;
    width: 36px; height: 36px;
  }
  .menu-btn .bar { fill: #fff; transform-origin: center; }
  .menu-btn-icon { width: 22px; height: 22px; }
  .menu-open .menu-btn .bar1 { transform: translateY(5px) rotate(45deg); }
  .menu-open .menu-btn .bar2 { opacity: 0; }
  .menu-open .menu-btn .bar3 { transform: translateY(-5px) rotate(-45deg); }
  .header.hide-nav { transform: none; opacity: 1; }
  .menu-overlay { padding: 56px 8vw 36px; justify-content: space-between; }
  .menu-nav { display: flex; flex-direction: column; gap: 0; margin-top: 44px; }
  .menu-links { gap: 22px; justify-content: flex-start; flex: none; }
  .menu-link { font-size: clamp(28px, 8.5vw, 44px); gap: 14px; }
  .menu-dot { width: 7px; height: 7px; }
  .menu-dashboard-btn { margin-top: 28px; margin-bottom: 52px; }
  .menu-bottom { margin-top: 0; }

  /* Hero */
  .hero { padding-top: 60px; overflow: visible; height: auto; min-height: 100svh; }
  .hero-halo, .hero-texture { display: none; }
  .hero-content { display: flex; flex-direction: column; justify-content: flex-start; gap: 20px; padding: 24px 20px 32px; }
  .hero-text { height: auto; justify-content: flex-start; gap: 14px; }
  .hero-title { font-size: clamp(26px, 7vw, 34px); }
  .hero-sub { font-size: 15px; margin-top: 2px; }
  .hero-badge { font-size: 10px; padding: 5px 14px; margin-bottom: 4px; }
  .hero-stats { margin-top: 8px; }
  .hero-swipe { height: 260px; margin-top: 4px; }
  .hero-swipe .hs-card { transform: none !important; opacity: 0 !important; z-index: 1 !important; transition: opacity 0.6s ease !important; }
  .hero-swipe .hs-card.mobile-active { opacity: 1 !important; z-index: 2 !important; }
  .hs-card--chani img { object-position: center 30% !important; transform: scale(1.25) !important; transform-origin: center 30% !important; }
  .hd-svg { display: none; }
  .hero-instrument { display: none; }
  .hero-instrument.hi-nube       { display: block !important; left: 68% !important; top: 12% !important; width: 54px !important; opacity:0.85; z-index:2 !important; }
  .hero-instrument.hi-mic        { display: block !important; left: 88% !important; top: 25% !important; width: 44px !important; opacity:0.9  !important; z-index:10 !important; }
  .hero-instrument.hi-auriculares{ display: block !important; left: 70% !important; top: 44% !important; width: 38px !important; opacity:0.85; z-index:10 !important; }
  .lanz-deco { display: none; }
  .lanz-note { display: none; }
  .lanz-star { display: none; }

  /* Sections */
  .section-inner { padding: 36px 20px; }
  .universos .section-inner { padding-top: 36px; padding-bottom: 36px; }
  .lanzamientos .section-inner { padding-top: 84px; padding-bottom: 36px; }
  .cards-grid-3 { grid-template-columns: 1fr; gap: 16px; }

  /* Universos artist cards */
  .artists-grid { grid-template-columns: 1fr; gap: 16px; }

  .artist-card { aspect-ratio: 4/3; }
  .artist-card-name { font-size: 20px; white-space: normal; }
  .artist-card-footer { padding: 48px 20px 20px; }

  /* Impacto */
  .impacto-inner { padding: 60px 12px 36px; gap: 16px; }
  .impacto-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .impacto-stat { padding: 24px 16px; }
  .impacto-stat:not(:last-child)::after { display: none; }
  .impacto-stat:last-child { grid-column: 1 / -1; }
  .impacto-num { font-size: clamp(36px, 9vw, 48px); }
  .impacto-lbl { font-size: 14px; white-space: normal; max-width: 140px; min-height: 2.8em; display: flex; align-items: center; justify-content: center; text-align: center; margin: 0 auto; }
  .impacto-icon { width: 60px; height: 60px; }
  .impacto-icon-img { width: 52px; height: 52px; }

  /* Lanzamientos */
  .yt-grid { grid-template-columns: 1fr; }
  .lanz-grid { grid-template-columns: 1fr; }

  /* Contacto */
  .contacto { padding: 0 16px 60px; }
  .contacto-pill { flex-direction: column; align-items: flex-start; padding: 32px 28px; gap: 20px; }
  .contacto-title { white-space: normal; }
  .contacto-body { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.3); padding-top: 20px; }
  .form-wrap { padding: 0 20px 60px; }

  /* Artist modal — bottom sheet */
  .artist-modal { padding: 0; align-items: flex-end; }
  .artist-modal-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto; max-height: 92vh;
    border-radius: 20px 20px 0 0;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .artist-modal-left { height: 72vw; overflow: hidden; }
  .artist-modal-photo { object-fit: cover; object-position: center top; width: 100%; height: 100%; }
  .artist-modal-right {
    padding: 20px 20px 28px;
    overflow-y: auto;
    gap: 14px;
    justify-content: flex-start;
    background-image: none;
    min-height: 0;
  }
  .artist-modal-num { display: none; }
  .artist-modal-name-text { font-size: 24px; }
  .artist-modal-desc { font-size: 13px; line-height: 1.5; }
  .artist-modal-logo { max-width: 130px; max-height: 56px; margin-bottom: 0; }
  .artist-modal-tags { margin-bottom: 0; }
  .spotify-wrap { margin-top: 0; }
  .spotify-wrap iframe { width: 100% !important; height: 72px !important; }
  .artist-modal-socials { gap: 12px; margin-top: 0; }
  .social-btn { width: 38px !important; height: 38px !important; }
  .artist-modal-close { top: 10px; right: 12px; width: 32px; height: 32px; font-size: 16px; }

  /* Anchors: compensar header fijo */
  #anchor-quees, #anchor-universos, #anchor-lanzamientos { scroll-margin-top: 72px; }

  /* Que-es: ocultar decorativos que chocan con el texto en mobile */
  .section-title-wrap .title-deco { display: none; }
  .title-squiggle::after { bottom: -3px; }

  /* Reducir márgenes de títulos y pills en mobile */
  .section-label-pill { margin-bottom: 14px; }
  .section-title { margin-bottom: 24px; }
  .impacto-pill-wrap { top: 68px; }
  .impacto-inner { padding-top: 116px; }

  /* Footer: dirección en una sola línea */
  .footer-contact-link { white-space: nowrap; font-size: 13px; }

  /* Footer */
  .footer-inner { padding: 40px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-links-wrap { grid-template-columns: repeat(2,1fr); gap: 24px; }
}

/* ── FORM MODAL */
/* ── MODAL LOGIN */
.login-modal {
  position: fixed; inset: 0; z-index: 400;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.login-modal.open { opacity: 1; pointer-events: all; }
.login-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(58,63,68,0.55);
  backdrop-filter: blur(6px);
}
.login-modal-card {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: 24px;
  padding: 44px 40px 36px;
  width: 100%; max-width: 420px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14);
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
}
.login-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(0,0,0,0.06); border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--negro); transition: background 0.2s;
}
.login-modal-close:hover { background: rgba(0,0,0,0.12); }
.login-modal-logo { margin-bottom: 20px; }
.login-modal-title {
  font-size: 22px; font-weight: 900; letter-spacing: -0.02em;
  color: var(--negro); margin-bottom: 6px; text-align: center;
}
.login-modal-sub {
  font-size: 14px; color: var(--gris); text-align: center;
  margin-bottom: 28px; line-height: 1.5;
}
.login-form { width: 100%; display: flex; flex-direction: column; gap: 0; }
.btn-login {
  width: 100%; margin-top: 8px;
  background: var(--turquesa); color: #fff; border: none;
  border-radius: 100px; padding: 14px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: background 0.2s;
}
.btn-login:hover { background: #019aa2; }
.login-modal-hint {
  font-size: 13px; color: var(--gris); margin-top: 20px; text-align: center;
}
.login-modal-hint a {
  color: var(--turquesa); font-weight: 600; text-decoration: none;
}
.login-modal-hint a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .login-modal { padding: 0; align-items: flex-end; }
  .login-modal-card {
    border-radius: 20px 20px 0 0; max-width: 100%;
    padding: 32px 24px 32px;
  }
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.form-modal.open {
  opacity: 1;
  pointer-events: all;
}
.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.6);
  backdrop-filter: blur(8px);
}
.form-modal-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.form-modal.open .form-modal-card {
  transform: translateY(0);
}
.form-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.06);
  color: var(--negro);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}
.form-modal-close:hover { background: rgba(0,0,0,0.12); }
.form-modal .form-wrap { padding: 48px 40px 40px; }
@media (max-width: 768px) {
  /* Bottom sheet — sin transform para evitar saltos con teclado iOS */
  .form-modal {
    padding: 0;
    align-items: flex-end;
  }
  .form-modal-card {
    max-height: 90dvh;          /* dvh respeta el teclado virtual */
    height: auto;
    border-radius: 20px 20px 0 0;
    width: 100%;
    transform: translateY(100%);  /* empieza abajo del viewport */
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .form-modal.open .form-modal-card {
    transform: translateY(0);
  }
  .form-modal-close {
    top: 14px;
    right: 16px;
  }
  .form-modal .form-wrap {
    padding: 20px 20px 24px;
  }
  .form-header {
    margin-bottom: 14px;
  }
  .form-heading {
    font-size: 20px;
    margin-bottom: 4px;
  }
  .form-intro {
    font-size: 13px;
    display: none;
  }
  .wizard-progress {
    margin-bottom: 16px;
  }
  .wizard-step-label {
    font-size: 11px;
  }
  .wizard-step-dot {
    width: 20px;
    height: 20px;
  }
  .wizard-panel-label {
    font-size: 11px;
    margin-bottom: 12px;
  }
  .form-field {
    margin-bottom: 10px;
  }
  .form-field label {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .form-field input,
  .form-field textarea {
    font-size: 16px;  /* evita zoom automático en iOS */
    padding: 10px 14px;
  }
  .form-field textarea {
    min-height: 70px;
  }
  .form-upload {
    padding: 16px 16px;
    margin-bottom: 12px;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
  }
  .form-upload-icon {
    font-size: 22px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .form-upload-text {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .form-upload-formats {
    font-size: 11px;
  }
  .wizard-nav {
    margin-top: 14px;
  }
  .btn-wizard-next, .btn-wizard-back {
    font-size: 14px;
    padding: 11px 18px;
  }
}

/* ── Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Cards con spring bounce */
.artist-card.reveal {
  opacity: 0;
  transform: translateY(70px) scale(0.88);
  transition: opacity 0.65s cubic-bezier(0.34,1.56,0.64,1),
              transform 0.65s cubic-bezier(0.34,1.56,0.64,1);
}
.artist-card.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: lanzVibe 5.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.artist-card.reveal.visible:nth-child(1) { animation-delay: 0s;    animation-duration: 5.2s; }
.artist-card.reveal.visible:nth-child(2) { animation-delay: -1.6s; animation-duration: 6s; }
.artist-card.reveal.visible:nth-child(3) { animation-delay: -3.1s; animation-duration: 5.5s; }
.artist-card.reveal.visible:nth-child(4) { animation-delay: -4.5s; animation-duration: 4.9s; }
.artist-card.reveal.visible:nth-child(5) { animation-delay: -2.4s; animation-duration: 5.8s; }

.artist-card.reveal.visible:hover {
  animation-play-state: paused;
}

/* ── Babidibu TV popup */
.bbtv-modal {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.bbtv-modal.open { opacity: 1; pointer-events: all; }
.bbtv-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
}
.bbtv-card {
  position: relative; z-index: 1;
  background: #fff; border-radius: 28px;
  padding: 48px 40px 40px;
  max-width: 480px; width: 90%;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.bbtv-modal.open .bbtv-card { transform: translateY(0) scale(1); }
.bbtv-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(0,0,0,0.07); border: none; border-radius: 50%;
  width: 36px; height: 36px; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.bbtv-close:hover { background: rgba(0,0,0,0.14); }
.bbtv-logo { max-width: 200px; height: auto; }
.bbtv-desc {
  font-size: 15px; line-height: 1.55; color: rgba(58,63,68,0.65);
  text-align: center; margin: 0;
}

/* Equalizador */
@keyframes eqBounce {
  0%, 100% { transform: scaleY(0.2); }
  50%       { transform: scaleY(1); }
}
.bbtv-eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 36px;
}
.bbtv-bar {
  display: block;
  width: 6px;
  height: var(--h, 60%);
  border-radius: 3px;
  background: linear-gradient(180deg, var(--coral) 0%, var(--naranja) 50%, var(--amarillo) 100%);
  transform-origin: bottom;
  animation: eqBounce 0.8s ease-in-out infinite alternate;
  animation-delay: var(--d, 0s);
}

/* Notas flotantes del popup */
@keyframes bbtvNote {
  0%   { transform: translateY(0) rotate(-10deg) scale(1); opacity: 0.7; }
  50%  { transform: translateY(-14px) rotate(8deg) scale(1.1); opacity: 1; }
  100% { transform: translateY(0) rotate(-10deg) scale(1); opacity: 0.7; }
}
.bbtv-note {
  position: absolute;
  pointer-events: none;
  width: 28px;
  opacity: 0.8;
}
.bbtv-note--1 {
  top: 18px; left: 18px;
  filter: hue-rotate(310deg) saturate(1.6);
  animation: bbtvNote 3.2s ease-in-out infinite;
}
.bbtv-note--2 {
  top: 14px; right: 22px;
  width: 22px;
  filter: hue-rotate(50deg) saturate(1.8);
  animation: bbtvNote 2.8s ease-in-out infinite 0.5s;
}
.bbtv-note--3 {
  bottom: 60px; right: 16px;
  width: 20px;
  filter: hue-rotate(160deg) saturate(1.4);
  animation: bbtvNote 3.6s ease-in-out infinite 1s;
}
