/* EcoRitmo — styles.css */
:root {
  --bg:           #f6f1e6;  /* beige cálido — base EcoRitmo */
  --bg-deep:      #ede4d2;  /* beige profundo */
  --surface:      #fffdf7;  /* crema para tarjetas */
  --surface-hi:   #ffffff;
  --text:         #1c2b1e;  /* tinta verde bosque */
  --muted:        rgba(28,43,30,0.66);
  --line:         rgba(61,110,64,0.16);
  --fuchsia:      #3e8e46;  /* verde hoja del logo (primario) */
  --fuchsia-soft: #337a3a;
  --violet:       #2e7d32;  /* verde profundo */
  --violet-soft:  #58b15c;  /* verde claro (acento) */
  --red:          #d9483b;  /* urgencia (suavizado) */
  --shadow:       0 24px 60px rgba(30,64,38,0.10);
  --radius:       28px;
  --maxw:         1180px;   /* ancho máximo del contenido centrado */
  --pad:          clamp(16px, 4vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
strong { font-weight: 700; }

/* ── Page background ── */
.page-bg {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(circle at 12% 15%, rgba(88,177,92,0.14), transparent 32%),
    radial-gradient(circle at 84% 20%, rgba(201,143,45,0.08), transparent 28%),
    radial-gradient(circle at 50% 88%, rgba(62,142,70,0.06), transparent 24%),
    linear-gradient(180deg, #f2ecdd 0%, #f8f4ea 55%, #f6f1e6 100%);
}
/* Grano de film — le quita el look "plantilla" plano */
.page-bg::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; pointer-events: none;
}

/* ── Header ── */
/* Barra clara para combinar con el logo (azul marino sobre fondo blanco) */
.site-header {
  position: sticky; top: 0; z-index: 50;
  /* Needed so the mobile dropdown positions under the bar */
  isolation: isolate;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  /* Barra full-width, pero el contenido se alinea al contenedor central (max-width) */
  padding-block: 10px;
  padding-inline: max(var(--pad), calc((100% - var(--maxw)) / 2));
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(36,74,44,0.10);
  box-shadow: 0 4px 20px rgba(30,64,38,0.05);
}
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-logo { height: 58px; width: auto; max-width: min(300px, 62vw); display: block; }
.brand-copy { display: none; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a,
.nav-distributor {
  text-decoration: none; color: #33523c; font-size: 0.95rem; font-weight: 600;
  transition: color 0.2s;
}
.site-nav a:hover,
.nav-distributor:hover { color: var(--fuchsia); }
.header-cta { min-height: 44px; padding-inline: 20px; font-size: 0.9rem; }
.header-actions { display: flex; align-items: center; gap: 12px; }

/* Botón "Hazte distribuidor": mismo estilo que el resto del nav */
.nav-distributor {
  cursor: pointer; font-family: inherit; background: none; border: 0; padding: 0;
}

/* Menú hamburguesa (solo móvil) */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 9px; cursor: pointer;
  background: rgba(62,142,70,0.08); border: 1px solid rgba(62,142,70,0.25);
  border-radius: 12px;
}
.nav-toggle span {
  display: block; height: 2.5px; width: 100%; border-radius: 2px;
  background: #33523c; transition: transform 0.25s, opacity 0.2s;
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  background: rgba(14,30,18,0.55); backdrop-filter: blur(4px);
  animation: fadeUp 0.25s ease;
}
.modal-card {
  position: relative; width: 100%; max-width: 520px; max-height: 92vh; overflow-y: auto;
  background: var(--surface); border-radius: 22px; padding: 28px clamp(20px, 4vw, 34px);
  box-shadow: 0 30px 80px rgba(14,30,18,0.4); border: 1px solid var(--line);
}
.modal-close {
  position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(46,94,52,0.05); color: var(--muted);
  cursor: pointer; font-size: 1rem; transition: all 0.2s;
}
.modal-close:hover { background: rgba(224,36,52,0.10); color: #c41828; }
.modal-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--fuchsia-soft);
  background: rgba(62,142,70,0.10); padding: 5px 12px; border-radius: 999px;
}
.modal-head h3 { font-family: "Space Grotesk", sans-serif; font-size: clamp(1.4rem, 3.5vw, 1.8rem); margin: 12px 0 8px; line-height: 1.2; }
.modal-head > p { color: var(--muted); line-height: 1.6; margin: 0 0 14px; }
.modal-perks { list-style: none; margin: 0 0 8px; padding: 0; display: grid; gap: 7px; }
.modal-perks li { font-size: 0.92rem; color: var(--text); }
.modal-form { display: grid; gap: 14px; margin-top: 18px; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-form .field span { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.modal-form input, .modal-form textarea, .modal-form select {
  width: 100%; padding: 11px 14px; border-radius: 12px; border: 1px solid var(--line);
  font: inherit; font-size: 0.95rem; background: #fff; color: var(--text); box-sizing: border-box;
}
.modal-form input:focus, .modal-form textarea:focus, .modal-form select:focus { outline: none; border-color: var(--fuchsia); }
.modal-status { font-size: 0.9rem; margin: 4px 0 0; min-height: 1.4em; }
.modal-status.ok  { color: #0c8a4a; }
.modal-status.err { color: #c81e3c; }

/* Combo país + número */
.phone-combo {
  display: flex; gap: 8px; align-items: stretch;
}
.phone-combo-cc {
  flex: 0 0 auto;
  padding: 11px 10px; border-radius: 12px; border: 1px solid var(--line);
  font: inherit; font-size: 0.88rem; background: #fff; color: var(--text);
  cursor: pointer; appearance: auto;
}
/* Specificity override: beats .modal-form select (0-1-1) */
.phone-combo .phone-combo-cc {
  width: 48%; max-width: 200px;
}
.phone-combo-cc:focus { outline: none; border-color: var(--fuchsia); }
.phone-combo input[type="tel"] {
  flex: 1 1 0; min-width: 0; margin: 0;
}

@media (max-width: 520px) {
  .modal-card { padding: 22px 16px; border-radius: 18px 18px 0 0; max-height: 96vh; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal-row { grid-template-columns: 1fr; }
  .phone-combo .phone-combo-cc { width: 44%; max-width: none; font-size: 0.83rem; }
}

/* ── Layout helpers ── */
/* Todo el contenido se centra dentro de un ancho máximo consistente */
.hero, .section, .proof-strip, .order-section {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.eyebrow, .screen-kicker {
  margin: 0;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.73rem;
  color: var(--fuchsia-soft);
}

/* ── Buttons ── */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 26px;
  border-radius: 999px; border: 1px solid transparent;
  font: inherit; font-weight: 700; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary {
  background: linear-gradient(135deg, #58b15c, #2e7d32);
  color: white;
  box-shadow: 0 14px 32px rgba(62,142,70,0.30);
}
.button-secondary {
  background: rgba(46,94,52,0.05);
  border-color: var(--line); color: var(--text);
}
.button:disabled { opacity: 0.55; cursor: wait; pointer-events: none; }
.is-hidden { display: none !important; }

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px; align-items: center;
  padding-top: 56px; padding-bottom: 72px;
  background: linear-gradient(150deg, #eaf3e6 0%, #faf7ee 55%, #ffffff 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(88,177,92,0.15), transparent 50%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-copy h1 {
  margin: 12px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem,5vw,5rem);
  line-height: 1.04; letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero-accent {
  color: #2e7d32;
  font-weight: 700;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(88,177,92,0.16);
  font-size: 0.82rem; font-weight: 700;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: #ff2e3e;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,46,62,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(255,46,62,0); }
}
.hero-text { color: var(--muted); line-height: 1.65; margin-top: 18px; font-size: 1.05rem; }
.hero-price { color: #fff; }
.hero-price-tag {
  display: inline-block; padding: 2px 10px; border-radius: 8px;
  background: rgba(62,142,70,0.10); border: 1px solid rgba(62,142,70,0.35);
  color: #2e7d32; font-weight: 700; white-space: nowrap;
}
/* Equivalente en USD (TRM) — discreto junto al precio en COP */
.usd-equiv { font-weight: 500; opacity: 0.75; font-size: 0.92em; white-space: nowrap; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-risk-free {
  margin: 14px 0 0; font-size: 0.9rem; color: var(--muted);
}
.hero-risk-free strong { color: #2e7d32; }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.hero-proof p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.45; }
.hero-proof strong { color: var(--text); }
.hero-proof-avatars { display: flex; }
.hero-proof-avatars span {
  width: 36px; height: 36px;
  margin-left: -10px; first-child-margin-left: 0;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(154,209,150,0.95), rgba(51,122,58,0.95));
}
.hero-proof-avatars span:first-child { margin-left: 0; }

/* ── Hero visual ── */
.hero-media {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 28px 60px rgba(51,122,58,0.18),
    0 0 0 1px rgba(46,94,52,0.10);
}
.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(14,30,18,0.08) 72%,
    rgba(14,30,18,0.28) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.hero-photo-badge {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.92rem;
  color: #1c2b1e;
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  margin-top: 0;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(62,142,70,0.18);
  box-shadow: 0 10px 28px rgba(51,122,58,0.14);
  backdrop-filter: blur(10px);
}
/* ── Phone mockup (hero) ── */
.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  filter: drop-shadow(0 32px 64px rgba(51,122,58,0.22));
}
.phone-frame {
  background: #fff;
  border-radius: 44px;
  border: 2px solid rgba(51,122,58,0.18);
  box-shadow:
    0 0 0 6px rgba(51,122,58,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.8);
  overflow: hidden;
}
.phone-notch {
  width: 90px; height: 20px;
  background: #13281a;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
}
.phone-screen {
  padding: 0;
  background: #ece5dd;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
/* WhatsApp header */
.wapp-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 10px;
  background: #58b15c;
  color: #fff;
}
.wapp-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.wapp-info { display: flex; flex-direction: column; line-height: 1.3; }
.wapp-info strong { font-size: 0.82rem; }
.wapp-info span { font-size: 0.7rem; opacity: 0.85; }
/* Chat area */
.wapp-chat {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wapp-msg {
  position: relative;
  max-width: 88%;
  padding: 8px 10px 18px;
  border-radius: 10px;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #111;
}
.wapp-msg time {
  position: absolute; right: 8px; bottom: 4px;
  font-size: 0.6rem; color: rgba(0,0,0,0.45);
}
.wapp-msg--in {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.wapp-msg--out {
  background: #d9fdd3;
  border-radius: 10px 0 10px 10px;
  align-self: flex-end;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
/* Reproductor de audio dentro del chat */
.wapp-player {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
  width: 88%;
}
.wapp-player-icon {
  grid-row: 1 / 3;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #58b15c;
  color: #fff;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  padding-left: 2px;
}
.wapp-player-wave {
  display: flex; align-items: center; gap: 2px; height: 18px;
}
.wapp-player-wave span {
  display: block; width: 3px; border-radius: 2px;
  background: #58b15c;
  animation: wave-bar 1.1s ease-in-out infinite alternate;
}
.wapp-player-wave span:nth-child(1) { height: 6px; animation-delay: 0s; }
.wapp-player-wave span:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.wapp-player-wave span:nth-child(3) { height: 9px; animation-delay: 0.2s; }
.wapp-player-wave span:nth-child(4) { height: 16px; animation-delay: 0.05s; }
.wapp-player-wave span:nth-child(5) { height: 8px; animation-delay: 0.15s; }
.wapp-player-wave span:nth-child(6) { height: 13px; animation-delay: 0.25s; }
.wapp-player-wave span:nth-child(7) { height: 6px; animation-delay: 0s; }
.wapp-player-wave span:nth-child(8) { height: 11px; animation-delay: 0.18s; }
.wapp-player-wave span:nth-child(9) { height: 16px; animation-delay: 0.08s; }
.wapp-player-wave span:nth-child(10) { height: 7px; animation-delay: 0.22s; }
@keyframes wave-bar {
  from { transform: scaleY(0.4); opacity: 0.6; }
  to   { transform: scaleY(1);   opacity: 1; }
}
.wapp-player-meta {
  display: flex; flex-direction: column; line-height: 1.2;
}
.wapp-player-meta strong { font-size: 0.64rem; color: #13281a; }
.wapp-player-meta span   { font-size: 0.6rem;  color: rgba(0,0,0,0.5); }
/* Badge flotante */
.phone-badge {
  position: absolute;
  right: -18px; bottom: 40px;
  background: #fff;
  border: 1px solid rgba(62,142,70,0.22);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(51,122,58,0.18);
  backdrop-filter: blur(6px);
  min-width: 180px;
}
.phone-badge-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #58b15c, #2e7d32);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}
.phone-badge strong { font-size: 0.78rem; color: #13281a; display: block; }
.phone-badge span   { font-size: 0.68rem; color: var(--muted); }
@media (max-width: 640px) {
  .phone-mockup { max-width: 240px; }
  .phone-badge  { right: -10px; bottom: 30px; min-width: 150px; }
}
.hero-visual {
  position: relative;
  width: 100%; max-width: 480px;
  padding: 40px 32px 32px;
  border-radius: 36px;
  background: rgba(46,94,52,0.05);
  border: 1px solid rgba(46,94,52,0.14);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 50% 0%, rgba(88,177,92,0.18), transparent 60%);
}
.hv-waveform {
  display: flex; align-items: flex-end; gap: 5px;
  height: 120px; padding: 0 4px;
}
.hv-bar {
  flex: 1; height: var(--h);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--fuchsia), var(--violet));
  opacity: 0.85;
  transform-origin: bottom center;
}
.hv-badge {
  display: flex; align-items: center; gap: 14px;
  margin-top: 24px; padding: 16px 18px;
  border-radius: 18px;
  background: rgba(46,94,52,0.06);
  border: 1px solid rgba(46,94,52,0.14);
}
.hv-badge-icon { font-size: 1.8rem; }
.hv-badge strong { display: block; font-family: "Space Grotesk", sans-serif; }
.hv-badge span { font-size: 0.85rem; color: var(--muted); }
.hv-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.hv-tags span {
  padding: 6px 13px; border-radius: 999px;
  background: rgba(46,94,52,0.06);
  border: 1px solid rgba(46,94,52,0.14);
  font-size: 0.82rem; color: var(--muted);
}

/* ── Proof strip ── */
.proof-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; margin-bottom: 88px;
}
.proof-strip div {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.92rem; line-height: 1.55;
}
.proof-strip strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1.5rem; color: var(--text); }

/* ── Section shared ── */
.section { margin-bottom: 96px; }
.section-head { max-width: 680px; margin: 0 auto 36px; text-align: center; }
.section-head h2, .order-intro h2 {
  margin: 10px 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem,4.5vw,3.8rem);
  letter-spacing: -0.05em; line-height: 1.0;
}
.section-head p, .order-intro p { color: var(--muted); line-height: 1.65; margin: 0; }

/* ── Samples section ── */
.samples-section .section-head { margin-bottom: 22px; }

/* Banner horizontal de la sección de géneros */
.genres-banner {
  position: relative; margin: 0 auto 24px; border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow);
}
.genres-banner img {
  width: 100%; height: clamp(150px, 24vw, 300px); object-fit: cover; display: block;
}
.genres-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,30,18,0.05) 0%, rgba(14,30,18,0.55) 100%);
}
.genres-banner-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 18px 22px; color: #fff; font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: clamp(1rem, 2.6vw, 1.4rem); line-height: 1.25;
}

/* Nota de géneros */
.genres-note {
  max-width: 720px; margin: 0 auto 32px; padding: 14px 22px;
  border-radius: 18px; text-align: center; line-height: 1.6;
  color: var(--text); font-size: 0.96rem;
  background: linear-gradient(135deg, rgba(88,177,92,0.12), rgba(51,122,58,0.10));
  border: 1px solid rgba(154,209,150,0.25);
}
.genres-note strong { color: var(--fuchsia-soft); }

/* Grid de géneros (reproductor) */
.genres-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px; max-width: 920px; margin: 0 auto;
}
.genre-btn {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 22px 14px; cursor: pointer; min-height: 180px;
  background-size: cover; background-position: center; background-color: rgba(46,94,52,0.06);
  border: 1px solid var(--line); border-radius: 12px;
  color: #fff; font: inherit;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), border-color 0.25s, box-shadow 0.25s;
}
.genre-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(6,12,20,0.7));
  pointer-events: none;
}
.genre-btn::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(88,177,92,0.25), transparent 70%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.genre-btn:hover { transform: translateY(-4px) scale(1.03); border-color: var(--fuchsia); box-shadow: 0 14px 34px rgba(88,177,92,0.22); }
.genre-btn:hover::after { opacity: 1; }
.genre-icon { font-size: 1.9rem; line-height: 1; position: relative; z-index: 1; transition: transform 0.25s; }
.genre-btn:hover .genre-icon { transform: scale(1.2) rotate(-6deg); }
.genre-name { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 0.92rem; position: relative; z-index: 1; }
.genre-play {
  position: relative; z-index: 1;
  width: 28px; height: 28px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: #fff;
  background: rgba(88,177,92,0.55); transition: all 0.25s;
}
.genre-btn:hover .genre-play { background: var(--fuchsia); color: #0d2113; }
.genre-btn.playing {
  background: linear-gradient(150deg, var(--fuchsia), var(--violet));
  border-color: transparent; box-shadow: 0 16px 40px rgba(88,177,92,0.4);
}
.genre-btn.playing .genre-name { color: #fff; }
.genre-btn.playing .genre-play { background: #fff; color: var(--fuchsia); }
.genre-btn.playing .genre-play::before { content: ""; }

/* Player flotante */
.player-fixed {
  position: fixed; left: clamp(12px,4vw,32px); right: clamp(12px,4vw,32px); bottom: -200px;
  z-index: 80; transition: bottom 0.45s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}
.player-fixed.active { bottom: 20px; pointer-events: auto; }
.player-box {
  max-width: 760px; margin: 0 auto;
  display: flex; align-items: center; gap: 18px;
  padding: 14px 18px; border-radius: 22px;
  background: linear-gradient(145deg, #ffffff, #f3eee0);
  border: 1px solid rgba(62,142,70,0.30);
  box-shadow: 0 22px 60px rgba(30,64,38,0.18);
  backdrop-filter: blur(20px);
}
.eq-visualizer { display: flex; gap: 4px; align-items: flex-end; min-width: 46px; height: 36px; }
.eq-bar { width: 5px; height: 16px; border-radius: 3px; background: linear-gradient(180deg, var(--fuchsia-soft), var(--fuchsia)); animation: eqDance 0.6s ease-in-out infinite; }
.eq-bar:nth-child(2){animation-delay:.1s} .eq-bar:nth-child(3){animation-delay:.2s} .eq-bar:nth-child(4){animation-delay:.1s} .eq-bar:nth-child(5){animation-delay:0s}
.eq-visualizer.paused .eq-bar { height: 5px; animation: none; }
@keyframes eqDance { 0%,100%{height:12px} 50%{height:34px} }
.player-info { flex: 1; min-width: 0; }
.player-info h4 { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: 1rem; color: var(--fuchsia-soft); }
.player-info p { margin: 3px 0 0; font-size: 0.82rem; color: var(--muted); }
.audio-player { width: 220px; height: 34px; flex-shrink: 0; }
.player-cta {
  flex-shrink: 0; text-decoration: none; white-space: nowrap;
  padding: 9px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  color: #fff; background: linear-gradient(135deg, var(--fuchsia), var(--violet));
}
.close-player {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 999px;
  background: rgba(154,209,150,0.12); border: 1px solid rgba(62,142,70,0.30);
  color: var(--fuchsia-soft); cursor: pointer; transition: all 0.2s;
}
.close-player:hover { background: rgba(154,209,150,0.25); }
@media (max-width: 720px) {
  .player-box { flex-wrap: wrap; gap: 12px; }
  .player-info { order: -1; width: 100%; }
  .audio-player { width: 100%; order: 1; }
  .player-cta { flex: 1; text-align: center; }
}
.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.sample-empty {
  grid-column: 1/-1;
  padding: 48px 24px;
  border-radius: var(--radius);
  border: 2px dashed rgba(46,94,52,0.16);
  text-align: center; color: var(--muted);
}
.sample-empty-icon { font-size: 3rem; margin-bottom: 12px; }
.sample-empty p { margin: 0; line-height: 1.7; }
.sample-empty code {
  font-family: monospace; font-size: 0.88em;
  background: rgba(46,94,52,0.10); padding: 2px 6px; border-radius: 6px;
}
.sample-card {
  padding: 20px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: border-color 0.2s;
}
.sample-card.is-playing { border-color: var(--fuchsia); }
.sc-top { display: flex; align-items: center; gap: 14px; }
.sc-icon { font-size: 2rem; flex: 0 0 auto; }
.sc-meta { flex: 1; min-width: 0; }
.sc-title { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-genre { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 3px; }
.sc-play-btn {
  width: 48px; height: 48px; flex: 0 0 auto;
  border: 0; border-radius: 999px;
  background: linear-gradient(135deg, var(--fuchsia), var(--violet-soft));
  color: white; font-size: 1rem; cursor: pointer;
  transition: transform 0.15s;
}
.sc-play-btn:hover { transform: scale(1.08); }
.sc-progress-wrap { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.sc-progress-bar {
  flex: 1; height: 6px; border-radius: 999px;
  background: rgba(46,94,52,0.14); cursor: pointer; overflow: hidden;
}
.sc-progress-fill {
  width: 0; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--fuchsia), var(--violet-soft));
  transition: width 0.2s linear;
}
.sc-time { font-size: 0.8rem; color: var(--muted); min-width: 32px; text-align: right; }
.samples-hint { margin-top: 28px; color: var(--muted); font-size: 0.95rem; }
.samples-hint a { color: var(--fuchsia-soft); text-decoration: none; }
.samples-hint a:hover { text-decoration: underline; }

/* ── CTA de sección ── */
.section-cta { text-align: center; margin-top: 40px; }
.section-cta .button { min-height: 56px; padding: 0 34px; font-size: 1.05rem; }
.cta-microcopy { margin: 12px 0 0; font-size: 0.88rem; color: var(--muted); }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.steps article {
  padding: 28px 24px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); backdrop-filter: blur(16px);
}
.steps span { color: var(--violet-soft); font-family: "Space Grotesk", sans-serif; font-size: 0.88rem; }
.steps h3 { margin: 10px 0 8px; font-family: "Space Grotesk", sans-serif; font-size: 1.25rem; }
.steps p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 0.95rem; }

/* ── Order section ── */
/* Una sola columna: intro arriba + chat a lo ancho debajo (se lee mejor) */
.order-section {
  display: block;
  margin-bottom: 96px;
}
.order-intro { position: static; max-width: 760px; margin: 0 auto 28px; text-align: center; }
.order-intro h2 { margin: 10px 0 16px; }
.order-intro .order-bullets { display: inline-grid; text-align: left; }
/* ── Vista pública (link del correo) ── */
.return-view { padding-top: 40px; padding-bottom: 20px; }
.return-view-card {
  max-width: 680px; margin: 0 auto; padding: 32px clamp(20px, 4vw, 40px);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); text-align: center;
}
.return-view-card h2 { font-family: "Space Grotesk", sans-serif; font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 8px 0 10px; }
.return-view-card .eyebrow { justify-content: center; }
.rv-sub { color: var(--muted); margin: 0 0 20px; line-height: 1.6; }
.rv-track {
  margin: 14px 0; padding: 16px; border-radius: 16px; text-align: left;
  background: linear-gradient(150deg, rgba(201,143,45,0.08), rgba(62,142,70,0.06));
  border: 1px solid rgba(222,190,120,0.28);
}
.rv-track.rv-final { background: linear-gradient(150deg, rgba(52,211,153,0.12), rgba(16,185,129,0.06)); border-color: rgba(16,185,129,0.35); }
.rv-track-label { margin: 0 0 8px; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 0.95rem; }
.rv-track audio { width: 100%; height: 42px; }
.rv-foot { margin: 18px 0 0; font-size: 0.85rem; color: var(--muted); }
.rv-foot a { color: var(--fuchsia); font-weight: 700; }
.rv-msg { color: var(--muted); }
.rv-generating { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 24px; color: var(--muted); }

/* ── Barra de medios de pago ── */
.paybar {
  max-width: var(--maxw); margin: 8px auto 40px; padding: 0 var(--pad);
  text-align: center;
}
/* Barra debajo del chat: bloque centrado normal (fuera del grid del order-section) */
.paybar-under-chat { margin: -60px auto 80px; }
.paybar-title {
  margin: 0 0 14px; font-size: 0.92rem; font-weight: 600; color: var(--muted);
}
.paybar-items {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.paybar-item {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 12px;
  background: #fff; border: 1px solid var(--line);
  font-weight: 700; font-size: 0.9rem; color: var(--text);
  box-shadow: 0 4px 14px rgba(30,64,38,0.06);
  white-space: nowrap;
}
/* Colores de marca reconocibles */
.pm-visa   { color: #1a1f71; font-style: italic; letter-spacing: 0.02em; }
.pm-mc     { color: #eb001b; }
.pm-paypal { color: #003087; }
.pm-nequi  { color: #200050; background: #fff; border-color: rgba(218,0,125,0.35); }
.pm-breb   { color: #0a0a0a; background: #fff; border-color: rgba(10,10,10,0.28); font-weight: 800; }
.pm-mp     { color: #009ee3; }
.pm-bank   { color: #2e7d32; }
.pm-card   { color: var(--text); }

/* ── Tarjeta de precio con conversor ── */
.price-card {
  margin: 20px 0 8px; padding: 22px 24px; border-radius: 22px;
  background: linear-gradient(150deg, rgba(88,177,92,0.10), rgba(51,122,58,0.06));
  border: 1px solid rgba(62,142,70,0.28);
  box-shadow: 0 12px 34px rgba(30,64,38,0.08);
}
.price-card-label {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fuchsia-soft); margin-bottom: 6px;
}
.price-card-main {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 3.4rem); line-height: 1; letter-spacing: -0.03em;
  color: var(--text);
}
.price-card-main .price-card-cur { font-size: 0.42em; color: var(--muted); font-weight: 600; margin-left: 4px; }
.price-card-alt { margin-top: 6px; font-size: 1.15rem; font-weight: 600; color: var(--muted); }
.price-card-convert {
  margin-top: 16px; padding-top: 16px; border-top: 1px dashed rgba(62,142,70,0.25);
  display: flex; flex-direction: column; gap: 8px;
}
.price-card-convert label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
#fxSelect {
  width: 100%; padding: 12px 14px; border-radius: 12px; cursor: pointer;
  border: 1px solid var(--line); background: #fff; color: var(--text);
  font: inherit; font-size: 1rem;
}
#fxSelect:focus { outline: none; border-color: var(--fuchsia); }

.order-bullets { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.order-bullets li { color: var(--muted); font-size: 0.95rem; }

/* ── Wizard ── */
.wizard-card.is-storage { display: none; }  /* form oculto: solo almacena datos del chat */
.wizard-card {
  padding: 28px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); backdrop-filter: blur(18px);
}

/* ── Chat conversacional (a lo ancho, la conversación fluye en la página) ── */
.chat-card {
  display: flex; flex-direction: column;
  max-width: 900px; margin: 0 auto;   /* ancho cómodo para leer, centrado */
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  /* sin altura fija ni scroll interno: crece con la conversación */
}
.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  background: rgba(46,94,52,0.03);
  border-radius: var(--radius) var(--radius) 0 0;
}
.chat-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 1.3rem;
  background: linear-gradient(135deg, var(--fuchsia), var(--violet));
}
.chat-header-copy { display: grid; line-height: 1.3; flex: 1; }
.chat-header-copy strong { font-family: "Space Grotesk", sans-serif; font-size: 1rem; }
.chat-header-copy span { font-size: 0.78rem; color: #16a34a; }
.chat-restart-btn {
  margin-left: auto; flex-shrink: 0;
  font-size: 0.75rem; font-weight: 600; color: var(--muted);
  background: none; border: 1px solid var(--line); border-radius: 999px;
  padding: 4px 10px; cursor: pointer; transition: all 0.18s;
  white-space: nowrap;
}
.chat-restart-btn:hover { color: var(--fuchsia); border-color: var(--fuchsia); background: rgba(62,142,70,0.06); }

.chat-messages {
  padding: 22px clamp(16px, 3vw, 28px);
  display: flex; flex-direction: column; gap: 14px;
  /* sin overflow: la conversación se lee en la página */
}
.chat-msg { display: flex; max-width: 90%; scroll-margin-bottom: 96px; }
.chat-msg-bubble {
  padding: 11px 15px; border-radius: 18px; line-height: 1.55; font-size: 0.96rem;
  white-space: pre-wrap; word-break: break-word;
}
.chat-msg.bot { align-self: flex-start; }
.chat-msg.bot .chat-msg-bubble {
  background: rgba(46,94,52,0.06); color: var(--text);
  border-bottom-left-radius: 5px;
}
.chat-msg.user { align-self: flex-end; }
.chat-msg.user .chat-msg-bubble {
  background: linear-gradient(135deg, var(--fuchsia), var(--violet));
  color: #fff; border-bottom-right-radius: 5px;
}
/* animación de entrada */
.chat-msg { animation: chatIn 0.28s ease both; }
@keyframes chatIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* indicador "escribiendo…" */
.chat-typing { display: inline-flex; gap: 4px; padding: 14px 16px; }
.chat-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(11,28,46,0.4);
  animation: chatDot 1.2s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes chatDot { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-5px); opacity: 1; } }

/* Indicador "componiendo" dentro del chat */
.chat-composing { display: flex; align-items: center; gap: 10px; }
.chat-composing small { color: var(--muted); font-size: 0.78rem; }
.chat-composing-eq { display: inline-flex; gap: 3px; align-items: flex-end; height: 20px; flex-shrink: 0; }
.chat-composing-eq span {
  width: 4px; height: 6px; border-radius: 2px;
  background: linear-gradient(180deg, var(--fuchsia), var(--violet));
  animation: chatEq 0.8s ease-in-out infinite;
}
.chat-composing-eq span:nth-child(2){animation-delay:.15s}
.chat-composing-eq span:nth-child(3){animation-delay:.30s}
.chat-composing-eq span:nth-child(4){animation-delay:.10s}
@keyframes chatEq { 0%,100%{height:6px} 50%{height:20px} }

/* Mensajes "ricos" (audio, letra, botones): ocupan ancho cómodo, no se encogen */
.chat-msg.rich { max-width: 100%; width: 100%; align-self: stretch; }
.chat-msg.rich > .chat-msg-bubble { width: 100%; max-width: 560px; background: transparent; padding: 0; }

/* Tarjetas de canción dentro del chat (adelanto y final) */
.chat-song-card {
  margin: 0 0 12px; padding: 16px 18px; border-radius: 16px;
  background: linear-gradient(150deg, rgba(201,143,45,0.10), rgba(62,142,70,0.06));
  border: 1px solid rgba(222,190,120,0.30);
  box-shadow: 0 6px 20px rgba(30,64,38,0.06);
}
.chat-song-final {
  background: linear-gradient(150deg, rgba(52,211,153,0.14), rgba(16,185,129,0.06));
  border-color: rgba(16,185,129,0.40);
}
.chat-song-label {
  margin: 0 0 10px; font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--text); display: flex; align-items: center; gap: 8px;
}
.chat-song-tag {
  font-family: "DM Sans", sans-serif; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--fuchsia-soft);
  background: rgba(201,143,45,0.14); padding: 2px 8px; border-radius: 999px;
}
.chat-song-card audio { width: 100%; height: 44px; display: block; }
.chat-song-foot { font-size: 0.85rem; color: var(--muted); margin: 4px 0 0; }
.chat-dl-btn {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  padding: 10px 20px; border-radius: 999px; text-decoration: none;
  background: linear-gradient(135deg, #10b981, #059669); color: #fff;
  font-weight: 700; font-size: 0.92rem; transition: transform 0.15s;
}
.chat-dl-btn:hover { transform: translateY(-2px); }

/* letra dentro del chat */
.chat-lyrics {
  margin-top: 8px; width: 100%;
  background: rgba(0,0,0,0.03); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px; font-family: "DM Sans", sans-serif; font-size: 0.9rem; line-height: 1.7;
  resize: vertical; min-height: 180px; color: var(--text);
}

/* zona de input: pegada abajo (sticky) mientras la conversación se lee arriba */
.chat-input-zone {
  position: sticky; bottom: 0; z-index: 3;
  border-top: 1px solid var(--line); padding: 12px clamp(14px, 3vw, 28px);
  background: var(--surface); border-radius: 0 0 var(--radius) var(--radius);
}
.chat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.chat-chips:empty { display: none; }
.chat-chip {
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
  border: 1px solid rgba(46,94,52,0.28); background: rgba(46,94,52,0.04);
  color: var(--text); font: inherit; font-size: 0.9rem; transition: all 0.15s;
}
.chat-chip:hover { background: var(--fuchsia); border-color: var(--fuchsia); color: #fff; transform: translateY(-1px); }
.chat-input-row { display: flex; align-items: flex-end; gap: 8px; }
.chat-input-row textarea {
  flex: 1; resize: none; max-height: 120px; min-height: 44px;
  padding: 11px 14px; border-radius: 22px; border: 1px solid var(--line);
  font: inherit; font-size: 0.96rem; line-height: 1.4; background: #fff; color: var(--text);
}
.chat-input-row textarea:focus { outline: none; border-color: var(--fuchsia); }
.chat-input-row textarea:disabled { background: rgba(0,0,0,0.03); cursor: not-allowed; }
.chat-send {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--fuchsia), var(--violet)); color: #fff; font-size: 1.1rem;
  display: grid; place-items: center; transition: transform 0.15s, opacity 0.15s;
}
.chat-send:hover { transform: scale(1.06); }
.chat-send:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
/* botón de acción dentro del chat (aprobar letra, etc.) */
.chat-action-btn {
  margin-top: 6px; padding: 11px 22px; border-radius: 999px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--fuchsia), var(--violet)); color: #fff;
  font: inherit; font-weight: 700; font-size: 0.95rem; transition: transform 0.15s;
}
.chat-action-btn:hover { transform: translateY(-2px); }
.wizard-top { margin-bottom: 20px; }
.wizard-progress { width: 100%; height: 8px; background: rgba(46,94,52,0.06); border-radius: 999px; overflow: hidden; }
.wizard-progress-bar { width: 0; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--fuchsia), var(--violet-soft)); }
.wizard-step-label { margin: 10px 0 0; color: var(--muted); font-size: 0.88rem; }
.wizard-screen { display: none; }
.wizard-screen.is-active { display: block; }
.wizard-screen h3 {
  margin: 10px 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem,3.5vw,2.5rem); letter-spacing: -0.04em; line-height: 1.1;
}
.wizard-screen p { color: var(--muted); line-height: 1.6; margin: 0 0 10px; }

/* Intro highlights */
.intro-highlights { display: grid; gap: 12px; margin-top: 22px; }
.ih-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 16px;
  background: rgba(46,94,52,0.05); border: 1px solid rgba(46,94,52,0.10);
}
.ih-icon { font-size: 1.6rem; flex: 0 0 auto; }
.ih-item strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 0.98rem; }
.ih-item span { display: block; font-size: 0.83rem; color: var(--muted); margin-top: 2px; }

/* Fields */
.field { display: grid; gap: 8px; margin-top: 18px; }
.field.full { width: 100%; }
.field > span { color: var(--fuchsia-soft); font-size: 0.92rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid rgba(46,94,52,0.14); border-radius: 16px;
  background: rgba(46,94,52,0.04); color: var(--text);
  font: inherit; font-size: 1rem;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: rgba(88,177,92,0.5);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(11,28,46,0.45); }
.field textarea { resize: vertical; }
.phone-row { display: grid; grid-template-columns: minmax(150px,200px) 1fr; gap: 10px; }

/* Plan picker */
.plan-picker-label {
  margin: 18px 0 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.plan-picker {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}
.plan-card {
  position: relative;
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 16px 18px;
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(46,94,52,0.14);
  background: rgba(255,255,255,0.72);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.plan-card:hover { transform: translateY(-1px); }
.plan-card.is-active {
  border-color: rgba(62,142,70,0.55);
  box-shadow: 0 0 0 3px rgba(62,142,70,0.12);
  background: linear-gradient(135deg, rgba(88,177,92,0.08), rgba(51,122,58,0.06));
}
.plan-card.is-test {
  border-style: dashed;
}
.plan-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  color: var(--text);
}
.plan-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
}
.plan-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}
.plan-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(201,143,45,0.12);
  color: #b07c22;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.field-hint {
  margin: -4px 0 0;
  font-size: 0.82rem;
  color: #0c8a4a;
}

/* Final review */
.final-review {
  margin-top: 20px; padding: 18px; border-radius: 18px;
  background: rgba(46,94,52,0.05); border: 1px solid rgba(46,94,52,0.10);
}
.final-review h4 { margin: 0 0 12px; font-family: "Space Grotesk", sans-serif; }
.final-review ul { margin: 0; padding-left: 0; list-style: none; display: grid; gap: 6px; }
.final-review li { font-size: 0.9rem; color: var(--muted); }
.final-review li strong { color: var(--text); }
.checkout-hint {
  margin-top: 16px; padding: 18px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(88,177,92,0.1), rgba(51,122,58,0.12));
  border: 1px solid rgba(46,94,52,0.14);
}
.checkout-hint-eyebrow { margin: 0 0 8px; font-size: 0.8rem; color: var(--fuchsia-soft); }
.checkout-hint h4 { margin: 0 0 6px; font-family: "Space Grotesk", sans-serif; }
.checkout-hint p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* Wizard actions */
.wizard-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 20px; }
.form-status { min-height: 20px; margin-top: 12px; font-size: 0.92rem; }
.form-status.is-error { color: #c81e3c; }
.form-status.is-success { color: #0c8a4a; }

/* ── Preview panel (escuchar antes de pagar) ── */
.preview-panel {
  margin-top: 24px; padding: 28px;
  background: linear-gradient(160deg, rgba(88,177,92,0.10), rgba(51,122,58,0.08));
  border: 1px solid rgba(62,142,70,0.28);
  border-radius: var(--radius);
}
.preview-head { margin-bottom: 20px; }
.preview-head h3 { margin: 4px 0 8px; font-size: 1.3rem; }
.preview-head p { color: var(--text-muted); font-size: 0.95rem; }

.preview-spinner {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; padding: 28px 0; color: var(--text-muted);
}
.preview-spinner-ring {
  width: 48px; height: 48px; border-radius: 50%;
  border: 4px solid rgba(62,142,70,0.2);
  border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.preview-player { margin: 16px 0; display: flex; flex-direction: column; gap: 14px; }
.preview-track {
  padding: 14px 16px; border-radius: 16px;
  background: linear-gradient(150deg, rgba(201,143,45,0.10), rgba(62,142,70,0.08));
  border: 1px solid rgba(222,190,120,0.28);
}
.preview-track-label {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 0.95rem;
  margin: 0 0 10px; color: var(--fuchsia-soft, #c026d3);
}
.preview-player audio { width: 100%; height: 40px; border-radius: 999px; }

.preview-pay-cta {
  margin-top: 20px; padding: 20px;
  background: rgba(255,255,255,0.6); border-radius: 12px;
  text-align: center;
}
.preview-pay-note { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; }
.preview-pay-price { font-size: 0.85rem; color: var(--text-muted); margin-top: 10px; }

/* ── Delivery panel (sala de espera, solo sesión) ── */
.delivery-panel {
  margin-top: 24px; padding: 28px;
  background: linear-gradient(160deg, rgba(88,177,92,0.10), rgba(51,122,58,0.08));
  border: 1px solid rgba(62,142,70,0.28);
  border-radius: var(--radius);
}
.delivery-head h3 {
  margin: 8px 0 8px; font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.03em;
}
.delivery-head p { margin: 0 0 8px; color: var(--muted); line-height: 1.6; }
.delivery-pay-cta {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(62,142,70,0.22);
}
.delivery-pay-cta p { margin: 0 0 14px; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.delivery-session-note {
  font-size: 0.82rem !important; color: var(--violet-soft) !important;
  padding: 10px 12px; border-radius: 10px;
  background: rgba(46,94,52,0.08); margin-top: 10px !important;
}
.delivery-progress {
  height: 8px; border-radius: 999px; background: rgba(46,94,52,0.12);
  margin: 20px 0 16px; overflow: hidden;
}
.delivery-progress-bar {
  height: 100%; width: 12%; border-radius: 999px;
  background: linear-gradient(90deg, var(--fuchsia), var(--fuchsia-soft));
  transition: width 0.6s ease;
}
.delivery-steps {
  list-style: none; margin: 0 0 18px; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.delivery-step {
  font-size: 0.78rem; text-align: center; padding: 8px 6px; border-radius: 10px;
  color: var(--muted); background: rgba(46,94,52,0.05); border: 1px solid transparent;
}
.delivery-step.is-active {
  color: var(--text); border-color: rgba(88,177,92,0.35);
  background: rgba(88,177,92,0.12); font-weight: 600;
}
.delivery-step.is-done { color: #0c8a4a; background: rgba(12,138,74,0.10); }
.delivery-status-card {
  padding: 20px; border-radius: 16px; background: rgba(255,255,255,0.65);
  border: 1px solid var(--line); text-align: center;
}
.delivery-pulse {
  width: 14px; height: 14px; border-radius: 50%; margin: 0 auto 12px;
  background: var(--fuchsia); animation: deliveryPulse 1.4s ease-in-out infinite;
}
.delivery-pulse.is-hidden { display: none; }
.delivery-pulse.is-done { animation: none; background: #0c8a4a; }
@keyframes deliveryPulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(88,177,92,0.5); }
  50% { transform: scale(1.15); opacity: 0.85; box-shadow: 0 0 0 10px rgba(88,177,92,0); }
}
#deliveryStatusText { margin: 0; font-size: 1rem; line-height: 1.5; }
.delivery-ref { margin: 10px 0 0; font-size: 0.82rem; color: var(--muted); }
.delivery-downloads { margin-top: 18px; }
.delivery-downloads .result-track { margin-bottom: 12px; }
.delivery-email-note {
  margin-top: 14px; font-size: 0.88rem; color: var(--muted);
  padding: 12px 14px; border-radius: 12px; background: rgba(46,94,52,0.06);
}
@media (max-width: 640px) {
  .delivery-steps { grid-template-columns: repeat(2, 1fr); }
}

/* ── Payment panel ── */
.payment-panel {
  margin-top: 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(46,94,52,0.14);
  box-shadow: 0 8px 40px rgba(14,30,18,0.10), 0 2px 8px rgba(14,30,18,0.06);
  overflow: hidden;
}

/* Order summary bar */
.pp-order-summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: linear-gradient(135deg, #fef9f0, #fff8ed);
  border-bottom: 1px solid #f5d79e;
}
.pp-os-label { margin: 0 0 6px; font-size: 0.82rem; color: var(--muted); }
.pp-os-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.pp-os-amount {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem; font-weight: 800; color: var(--text); line-height: 1;
}
.pp-os-badge {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em;
  background: #fef3c7; color: #92400e;
  padding: 3px 10px; border-radius: 999px;
  white-space: nowrap;
}
.pp-os-meta { margin: 0; font-size: 0.8rem; color: var(--muted); }
.pp-os-meta strong { color: var(--text); }
.pp-os-trust {
  display: flex; flex-direction: column; gap: 4px; align-self: center;
  text-align: right;
}
.pp-os-trust span { font-size: 0.8rem; color: var(--muted); white-space: nowrap; }

/* Step labels */
.pp-step-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--muted);
  margin: 0 0 14px;
}
.pp-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 999px;
  background: var(--fuchsia); color: #fff;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}

/* Methods section */
.pp-methods-section { padding: 22px 24px 20px; border-bottom: 1px solid var(--line); }
.pp-pane-section { padding: 22px 24px 24px; }

/* Method tabs grid */
.pp-methods { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 0; }
.pp-method {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 12px 6px 10px; text-align: center;
  border-radius: 14px; border: 2px solid var(--line);
  background: #fafafa; color: var(--text);
  font: inherit; cursor: pointer; transition: all 0.18s;
}
.pp-method:hover { border-color: rgba(62,142,70,0.4); background: #f3eee0; }
.pp-method.is-active {
  border-color: var(--fuchsia);
  background: rgba(62,142,70,0.07);
  box-shadow: 0 0 0 3px rgba(62,142,70,0.12);
}
.pp-method-icon { font-size: 1.4rem; line-height: 1; }
.pp-method strong { font-size: 0.78rem; font-weight: 700; line-height: 1.2; }
.pp-method-sub { display: none; font-size: 0.72rem; color: var(--muted); line-height: 1.3; }
.pp-method.is-active .pp-method-sub { display: block; }

@media (max-width: 480px) {
  .pp-methods { grid-template-columns: repeat(2,1fr); }
  .pp-order-summary { flex-direction: column; }
  .pp-os-trust { flex-direction: row; text-align: left; }
  .pp-methods-section, .pp-pane-section { padding-left: 16px; padding-right: 16px; }
  .pp-order-summary { padding: 16px; }
}

/* Pane content */
.pp-pane { display: none; }
.pp-pane.is-active { display: block; animation: fadeUp 0.3s ease; }
.pp-pane-intro {
  color: var(--muted); margin: 0 0 20px; line-height: 1.65;
  padding: 14px 16px;
  background: rgba(46,94,52,0.04); border-radius: 12px;
  border-left: 3px solid var(--fuchsia);
}
.pp-pane-note { margin-top: 14px; font-size: 0.92rem; min-height: 18px; }
.pp-pane-note.is-success { color: #0c8a4a; }
.pp-pane-note.is-error { color: #c81e3c; }

/* CTA buttons inside panes — full width */
.pp-cta-btn { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }

/* Trust footer */
.pp-trust-footer {
  margin: 20px 0 0; text-align: center;
  font-size: 0.78rem; color: var(--muted);
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Nequi box */
.nequi-box {
  padding: 20px; margin-bottom: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(88,177,92,0.1), rgba(51,122,58,0.12));
  border: 1px solid rgba(46,94,52,0.14);
}
.nequi-step { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; color: var(--text); line-height: 1.5; }
.nequi-step:last-child { margin-bottom: 0; }
.nequi-step span {
  flex: 0 0 auto; width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; background: var(--fuchsia); color: white;
  font-weight: 700; font-size: 0.85rem;
}
/* Logos de métodos de pago manual (Nequi + Bre-B), alineados a la misma altura */
.pay-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  margin: 4px 0 12px;
  padding: 14px 16px; border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(46,94,52,0.12);
}
.pay-logo {
  height: 34px; width: auto; display: block;
  object-fit: contain;
}
.pay-logo-sep {
  font-size: 0.8rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.nequi-number {
  text-align: center; margin: 16px 0;
  padding: 16px; border-radius: 14px;
  background: rgba(46,94,52,0.08);
}
.nequi-number span {
  display: block; font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem; font-weight: 700; letter-spacing: 0.05em;
}
.nequi-number small { display: block; color: var(--muted); margin-top: 4px; }

/* Manual form */
.manual-form .button { width: 100%; margin-top: 20px; }
.file-drop {
  position: relative; margin-top: 4px;
  border: 2px dashed rgba(46,94,52,0.24); border-radius: 16px;
  background: rgba(46,94,52,0.04); cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.file-drop:hover { border-color: rgba(88,177,92,0.5); }
.file-drop.has-file { border-color: var(--fuchsia); border-style: solid; background: rgba(88,177,92,0.08); }
.file-drop input[type="file"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer;
}
.file-drop-inner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 22px 16px; pointer-events: none;
}
.file-drop-icon { font-size: 1.4rem; }
.file-drop-text { color: var(--muted); font-size: 0.95rem; }

.paypal-buttons { min-height: 50px; }

/* ── Mercado Pago Brick container ── */
.mp-brick-container {
  min-height: 120px;
  border-radius: 14px;
  overflow: hidden;
}
.mp-brick-loading {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 32px 16px; color: var(--muted); font-size: 0.88rem;
}
.mp-brick-loading p { margin: 0; }
.mp-brick-loading-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 999px;
  background: var(--line); animation: mpDotPulse 1.2s infinite ease-in-out;
}
.mp-brick-loading-dot:nth-child(1) { animation-delay: 0s; }
.mp-brick-loading-dot:nth-child(2) { animation-delay: 0.2s; }
.mp-brick-loading-dot:nth-child(3) { animation-delay: 0.4s; }
.mp-brick-loading { flex-direction: row; gap: 6px; padding: 28px 16px; }
.mp-brick-loading p { margin: 0 0 0 8px; }
@keyframes mpDotPulse {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.8); }
  40%            { opacity: 1;    transform: scale(1); }
}

/* ── Selección de voz (pills visuales) ── */
.field-label { display: block; font-size: 0.9rem; color: var(--muted); margin-bottom: 10px; }
/* Selector de voz — 2 col móvil, 3 tablet, 5 desktop */
.voice-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 480px) { .voice-options { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .voice-options { grid-template-columns: repeat(5, 1fr); } }

.voice-opt {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 18px 10px 14px; border-radius: 18px; cursor: pointer; text-align: center;
  background: rgba(46,94,52,0.04); border: 2px solid var(--line);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.voice-opt:hover { border-color: rgba(88,177,92,0.5); transform: translateY(-2px); }
.voice-opt input { position: absolute; opacity: 0; pointer-events: none; }
.voice-icon { font-size: 2rem; line-height: 1; }
.voice-name { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--text); }
.voice-sub { font-size: 0.72rem; color: var(--muted); line-height: 1.3; }
.voice-opt:has(input:checked) {
  border-color: var(--fuchsia);
  background: linear-gradient(150deg, rgba(88,177,92,0.18), rgba(51,122,58,0.13));
  box-shadow: 0 8px 24px rgba(88,177,92,0.25);
  transform: translateY(-2px);
}
/* Opción "Libre" ocupa la fila completa en móvil para no quedar sola */
.voice-opt:first-child { grid-column: span 2; }
@media (min-width: 480px) { .voice-opt:first-child { grid-column: span 1; } }

/* ── Casos de uso con imágenes ── */
.use-cases-section { padding: 60px clamp(18px, 4vw, 48px); }
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.use-case-card {
  display: block; text-decoration: none; color: inherit;
  border-radius: 16px; overflow: hidden; cursor: pointer;
  background: rgba(46,94,52,0.04); border: 1px solid rgba(46,94,52,0.10);
  transition: all 0.3s ease; position: relative;
}
.use-case-cta {
  display: block; margin: 0 16px 18px; font-size: 0.88rem; font-weight: 700;
  color: var(--fuchsia-soft); transition: color 0.2s;
}
.use-case-card:hover .use-case-cta { color: #064a96; }
.use-case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(88,177,92,0.3);
  box-shadow: 0 16px 40px rgba(88,177,92,0.2);
}
.use-case-card img {
  width: 100%; height: 200px; object-fit: cover; display: block;
  transition: transform 0.3s ease;
}
.use-case-card:hover img { transform: scale(1.08); }
.use-case-card h3 {
  font-family: "Space Grotesk", sans-serif; font-size: 1.1rem; font-weight: 700;
  margin: 18px 16px 8px; color: var(--text);
}
.use-case-card p {
  font-size: 0.9rem; color: var(--muted); margin: 0 16px 18px; line-height: 1.5;
}

/* ── Marquesina de derechos de autor ── */
.copyright-ticker {
  margin-top: 48px;
  padding: 20px 0;
  background: linear-gradient(90deg, rgba(88,177,92,0.15), rgba(51,122,58,0.15));
  border-top: 1px solid rgba(88,177,92,0.25);
  border-bottom: 1px solid rgba(88,177,92,0.25);
  overflow: hidden;
  position: relative;
}
.ticker-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fuchsia-soft);
  letter-spacing: 0.05em;
  padding: 0 20px;
  will-change: transform;
}
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.copyright-ticker:hover .ticker-content {
  animation-play-state: paused;
}

/* ── Caja de letra con IA ── */
.lyrics-box {
  margin: 22px 0; padding: 20px; border-radius: 20px;
  background: linear-gradient(150deg, rgba(51,122,58,0.12), rgba(88,177,92,0.08));
  border: 1px solid rgba(102,184,255,0.28);
}
.lyrics-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.lyrics-eyebrow { margin: 0; font-size: 0.8rem; color: var(--violet-soft); font-weight: 600; letter-spacing: 0.04em; }
.lyrics-head h4 { margin: 2px 0 0; font-family: "Space Grotesk", sans-serif; font-size: 1.15rem; }
.lyrics-gen-btn { min-height: 40px; padding-inline: 18px; font-size: 0.88rem; white-space: nowrap; }
.lyrics-hint { font-size: 0.85rem; color: var(--muted); margin: 12px 0; line-height: 1.5; }
.lyrics-hint.is-loading { color: var(--violet-soft); }
.lyrics-hint.is-success { color: #0c8a4a; }
.lyrics-hint.is-error { color: #c81e3c; }
#lyricsArea {
  width: 100%; resize: vertical; border-radius: 14px; padding: 14px;
  background: #ffffff; border: 1px solid var(--line); color: var(--text);
  font-family: "DM Sans", sans-serif; font-size: 0.95rem; line-height: 1.7; white-space: pre-wrap;
  transition: border-color 0.2s, opacity 0.2s;
}
#lyricsArea:focus { outline: none; border-color: var(--fuchsia); }
#lyricsArea.is-loading { opacity: 0.5; }
.lyrics-link { background: none; border: none; color: var(--violet-soft); cursor: pointer; font: inherit; font-size: 0.85rem; padding: 4px 0; }
.lyrics-link:hover { color: var(--fuchsia-soft); text-decoration: underline; }

/* ── Tarjeta de resultado (canción lista en la web) ── */
.result-card {
  text-align: left; margin-top: 12px; padding: 22px; border-radius: 20px;
  background: linear-gradient(150deg, rgba(88,177,92,0.14), rgba(51,122,58,0.12));
  border: 1px solid rgba(62,142,70,0.30);
}
.result-card h3 { margin: 0 0 6px; font-family: "Space Grotesk", sans-serif; font-size: 1.3rem; }
.result-card > p { margin: 0 0 16px; color: var(--muted); }
.result-track { margin: 14px 0; padding: 14px; border-radius: 14px; background: rgba(46,94,52,0.06); }
.result-track-title { margin: 0 0 8px; font-weight: 600; font-size: 0.95rem; }
.result-dl { display: inline-block; margin-top: 10px; min-height: 42px; padding: 10px 20px; }
.result-ref { margin: 14px 0 0; font-size: 0.8rem; color: var(--muted); }

/* ── Lyrics editor ── */
#lyricsBox { margin-top: 16px; }
/* Botones de acción ARRIBA del textarea */
.lyrics-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 12px; }
.lyrics-hint {
  font-size: 0.9rem; padding: 12px 16px; border-radius: 12px; margin: 0 0 12px;
}
.lyrics-hint:empty { display: none; }
.lyrics-hint.is-error { background: rgba(200,30,60,0.10); color: #c81e3c; }
.lyrics-hint.is-loading { background: rgba(88,177,92,0.15); color: #2e7d32; }
.lyrics-hint.is-success { background: rgba(12,138,74,0.12); color: #0c8a4a; }
.lyrics-editor {
  width: 100%; min-height: 280px; padding: 14px; resize: vertical;
  background: #ffffff; border: 1px solid var(--line); border-radius: 14px;
  color: var(--text); font-family: "DM Sans", sans-serif; font-size: 0.9rem; line-height: 1.75;
  margin-bottom: 0;
}
.lyrics-editor:focus { outline: none; border-color: var(--fuchsia); }
.lyrics-editor.is-loading { opacity: 0.6; }
.lyrics-btn {
  padding: 11px 22px; border-radius: 10px; background: rgba(88,177,92,0.12);
  border: 1px solid rgba(88,177,92,0.3); color: #2e7d32;
  font: inherit; font-size: 0.92rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.lyrics-btn:hover { background: rgba(88,177,92,0.22); }
.lyrics-btn:disabled { opacity: 0.5; cursor: not-allowed; }
/* Botón primario: generar */
.lyrics-btn-primary {
  background: linear-gradient(135deg, var(--fuchsia), var(--violet));
  border-color: transparent; color: #fff;
}
.lyrics-btn-primary:hover { filter: brightness(1.08); background: linear-gradient(135deg, var(--fuchsia), var(--violet)); }

/* ── PayPal pane ── */
#paypalLinkBtn { display: inline-flex; text-decoration: none; }
.paypal-confirm { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); }
.paypal-confirm-text { font-size: 0.9rem; color: var(--muted); margin: 0 0 10px; }

/* ── Footer ── */
.site-footer { padding: 32px 18px 40px; border-top: 1px solid rgba(46,94,52,0.06); }
.site-footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; color: var(--muted); font-size: 0.88rem; line-height: 1.8; }
.site-footer-inner p { margin: 0; }
.site-footer-inner strong { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; padding-bottom: 56px; }
  .hero-photo-wrap { max-width: 360px; margin: 0 auto; }
  .order-section { grid-template-columns: 1fr; }
  .order-intro { position: static; }
  .proof-strip { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .hero-visual { max-width: 100%; }
}

@media (max-width: 640px) {
  /* Hamburger visible, nav oculto por defecto en móvil */
  .nav-toggle { display: flex; }
  .header-cta { min-height: 40px; padding-inline: 16px; font-size: 0.85rem; }
  .brand-logo { height: 42px; max-width: min(210px, 62vw); }

  /* El nav se convierte en un panel deslizable bajo el header */
  .site-nav {
    display: none;
    flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(36,74,44,0.12);
    box-shadow: 0 8px 24px rgba(30,64,38,0.10);
    padding: 12px 0 16px;
    z-index: 49;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a,
  .nav-distributor {
    display: block; width: 100%;
    padding: 13px 24px; font-size: 1rem;
    border-radius: 0; text-align: left;
    border-bottom: 1px solid rgba(36,74,44,0.06);
  }
  .site-nav a:last-child,
  .nav-distributor { border-bottom: 0; }
  .hero-copy h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .wizard-actions { flex-wrap: wrap; }
  .wizard-card { padding: 18px; }
  .phone-row { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: repeat(2,1fr); }
  .samples-grid { grid-template-columns: 1fr; }
  /* Medios de pago compactos en móvil */
  .paybar-item { padding: 8px 12px; font-size: 0.82rem; }
  .paybar-items { gap: 8px; }
  .paybar-title { font-size: 0.85rem; }
}


/* ===== BARRA ANUNCIO "PAGAS AL ESCUCHAR" ===== */
.ctm-paybar{
  width:100%;
  background:linear-gradient(135deg,#58b15c,#2e7d32);
  color:#fff;
  overflow:hidden;
  border-bottom:1px solid rgba(11,60,120,0.25);
  box-shadow:0 6px 20px rgba(51,122,58,0.22);
}
.ctm-paybar-track{
  display:inline-flex;
  align-items:center;
  gap:16px;
  white-space:nowrap;
  padding:11px 0;
  animation:ctm-paybar-scroll 26s linear infinite;
  will-change:transform;
}
.ctm-paybar:hover .ctm-paybar-track{animation-play-state:paused;}
.ctm-paybar-item{
  font-weight:800;
  font-size:clamp(13px,2.6vw,16px);
  letter-spacing:.04em;
  text-transform:uppercase;
}
.ctm-paybar-sep{opacity:.55;font-weight:700;}
@keyframes ctm-paybar-scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
@media (prefers-reduced-motion:reduce){
  .ctm-paybar-track{animation:none;justify-content:center;width:100%;}
}

/* ===== VIDEO FULL-WIDTH ===== */
.ctm-video-full{
  width:100%;
  background:#0d2113;
}
.ctm-video-wrap{
  position:relative;
  width:100%;
  aspect-ratio:21/9;        /* banda horizontal panorámica, full-width */
  margin:0 auto;
  background:#0d2113;
  overflow:hidden;
}
@media (max-width:820px){
  .ctm-video-wrap{aspect-ratio:16/9;}   /* en móvil sube un poco el alto para que no quede muy fino */
}
.ctm-video-wrap iframe,
.ctm-video-wrap video{
  position:absolute;inset:0;width:100%;height:100%;
  border:0;display:block;object-fit:cover;
}
.ctm-video-placeholder{
  position:absolute;inset:0;
  display:flex;flex-direction:column;gap:16px;
  align-items:center;justify-content:center;
  background:
    radial-gradient(circle at 50% 42%, rgba(88,177,92,0.22), transparent 60%),
    linear-gradient(160deg,#16341f 0%,#0d2113 100%);
  color:#d7e8d2;
}
.ctm-video-play{
  width:84px;height:84px;border-radius:50%;
  background:linear-gradient(135deg,#58b15c,#2e7d32);
  box-shadow:0 12px 40px rgba(88,177,92,0.45);
  display:grid;place-items:center;
  animation:ctm-video-pulse 2.4s ease-in-out infinite;
}
.ctm-video-play span{
  width:0;height:0;margin-left:6px;
  border-top:15px solid transparent;
  border-bottom:15px solid transparent;
  border-left:25px solid #fff;
}
.ctm-video-placeholder p{
  font-weight:700;letter-spacing:.04em;font-size:15px;opacity:.9;
}
@keyframes ctm-video-pulse{
  0%,100%{box-shadow:0 12px 40px rgba(88,177,92,0.45);}
  50%{box-shadow:0 12px 54px rgba(88,177,92,0.75);}
}
@media (prefers-reduced-motion:reduce){
  .ctm-video-play{animation:none;}
}


/* ===== MEJORA GRILLA MUESTRAS: 4 columnas x 3 filas + tarjetas amigables ===== */
.genres-grid{
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  max-width:1080px;
  margin:0 auto;
}
@media (max-width:900px){ .genres-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:620px){ .genres-grid{ grid-template-columns:repeat(2,1fr); gap:12px; } }

.genre-btn{
  aspect-ratio:1/1;
  min-height:0;
  padding:14px;
  align-items:flex-end;
  justify-content:flex-start;
  text-align:left;
  border-radius:20px;
  background-color:#16341f;
  box-shadow:0 8px 22px rgba(30,64,38,0.10);
  transition:transform .28s cubic-bezier(0.34,1.56,0.64,1), box-shadow .28s, border-color .25s;
}
.genre-overlay{
  background:linear-gradient(180deg, rgba(10,24,14,0.06) 0%, rgba(10,24,14,0.18) 42%, rgba(10,24,14,0.82) 100%);
  transition:background .3s;
}
.genre-btn::after{ display:none; }  /* quitamos el glow radial viejo */
.genre-btn:hover{
  transform:translateY(-6px) scale(1.02);
  border-color:var(--fuchsia);
  box-shadow:0 20px 46px rgba(88,177,92,0.30);
}
.genre-btn:hover .genre-overlay{
  background:linear-gradient(180deg, rgba(51,122,58,0.22) 0%, rgba(10,24,14,0.32) 40%, rgba(10,24,14,0.86) 100%);
}
.genre-name{
  z-index:2;
  font-weight:700;
  font-size:1rem;
  line-height:1.2;
  text-shadow:0 2px 10px rgba(0,0,0,0.55);
}
.genre-play{
  position:absolute;
  z-index:2;
  top:12px; right:12px;
  width:44px; height:44px;
  border-radius:999px;
  font-size:.95rem;
  color:#0d2113;
  background:rgba(255,255,255,0.92);
  box-shadow:0 6px 18px rgba(0,0,0,0.28);
  transform:scale(.9);
  transition:transform .25s, background .25s, color .25s;
}
.genre-btn:hover .genre-play{
  transform:scale(1.08);
  background:var(--fuchsia);
  color:#fff;
}
.genre-btn.playing{
  border-color:transparent;
  box-shadow:0 18px 46px rgba(88,177,92,0.45);
}
.genre-btn.playing .genre-overlay{
  background:linear-gradient(180deg, rgba(88,177,92,0.30) 0%, rgba(51,122,58,0.72) 100%);
}
.genre-btn.playing .genre-name{ color:#fff; }
.genre-btn.playing .genre-play{
  background:#fff; color:var(--fuchsia); transform:scale(1.1);
}


/* ===== CHAT COMPOSITOR LLAMATIVO — "aquí empieza tu canción" ===== */
.chat-card{
  overflow:hidden;                       /* recorta esquinas de la cinta superior */
  border:2px solid var(--fuchsia);
  box-shadow:0 24px 64px rgba(88,177,92,0.24), 0 0 0 5px rgba(88,177,92,0.06);
  animation:chat-card-glow 3.4s ease-in-out infinite;
}
@keyframes chat-card-glow{
  0%,100%{ box-shadow:0 24px 64px rgba(88,177,92,0.20), 0 0 0 5px rgba(88,177,92,0.05); }
  50%{ box-shadow:0 24px 70px rgba(88,177,92,0.34), 0 0 0 6px rgba(88,177,92,0.10); }
}
/* Cinta superior "Empieza aquí" */
.chat-start-cue{
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:11px 16px; text-align:center;
  background:linear-gradient(135deg, rgba(88,177,92,0.16), rgba(51,122,58,0.12));
  color:var(--text); font-size:.94rem; font-weight:600;
  border-bottom:1px solid rgba(62,142,70,0.18);
}
.chat-start-cue strong{ color:var(--fuchsia-soft); }
.chat-start-arrow{ font-size:1.2rem; display:inline-block; animation:chat-bounce 1.4s ease-in-out infinite; }
@keyframes chat-bounce{ 0%,100%{transform:translateY(0);} 50%{transform:translateY(5px);} }

/* Header con gradiente de marca */
.chat-header{
  background:linear-gradient(135deg,#58b15c,#2e7d32);
  border-bottom:0;
  border-radius:0;                       /* la esquina la da la cinta */
}
.chat-avatar{
  position:relative;
  width:48px; height:48px; font-size:1.45rem;
  background:rgba(255,255,255,0.20);
  box-shadow:0 0 0 3px rgba(255,255,255,0.28);
}
.chat-avatar::after{                      /* punto verde "en línea" pulsante */
  content:""; position:absolute; right:-1px; bottom:-1px;
  width:13px; height:13px; border-radius:50%;
  background:#22e07a; border:2.5px solid #2e7d32;
  animation:chat-online 1.8s ease-out infinite;
}
@keyframes chat-online{
  0%{ box-shadow:0 0 0 0 rgba(34,224,122,0.7); }
  70%{ box-shadow:0 0 0 9px rgba(34,224,122,0); }
  100%{ box-shadow:0 0 0 0 rgba(34,224,122,0); }
}
.chat-header-copy strong{ color:#fff; font-size:1.1rem; }
.chat-header-copy span{ color:rgba(255,255,255,0.92); font-weight:600; }
.chat-restart-btn{ color:#fff; border-color:rgba(255,255,255,0.55); }
.chat-restart-btn:hover{ color:#2e7d32; background:#fff; border-color:#fff; }

/* ===== FIX CTA MENU MOVIL: 'Quiero mi cancion' en un solo renglon ===== */
@media (max-width: 640px){
  .header-cta{
    white-space:nowrap;          /* nunca partir en dos renglones */
    padding-inline:14px;
    font-size:0.82rem;
    min-height:38px;
    flex-shrink:0;
  }
  .brand-logo{ height:38px; }     /* logo un poco mas chico -> libera espacio */
  .header-actions{ gap:8px; }
}
@media (max-width: 380px){
  .brand-logo{ height:34px; }
  .header-cta{ padding-inline:12px; font-size:0.8rem; }
}


/* ===== TARJETA DE ERROR EN EL CHAT (canción rechazada / falló) ===== */
.chat-error-card{
  border:1px solid rgba(224,36,52,0.35) !important;
  background:linear-gradient(135deg, rgba(224,36,52,0.08), rgba(224,36,52,0.03)) !important;
}
.chat-error-text{
  margin:0 0 12px;
  color:var(--text);
  line-height:1.6;
  font-size:.95rem;
}
.chat-error-btn{
  display:inline-flex; align-items:center; gap:6px;
  padding:10px 18px; border:0; border-radius:999px; cursor:pointer;
  font:inherit; font-weight:700; font-size:.9rem; color:#fff;
  background:linear-gradient(135deg,#58b15c,#2e7d32);
  box-shadow:0 8px 22px rgba(88,177,92,0.28);
  transition:transform .15s, box-shadow .2s;
}
.chat-error-btn:hover{ transform:translateY(-1px) scale(1.03); box-shadow:0 12px 28px rgba(88,177,92,0.38); }
.chat-error-btn:disabled{ opacity:.65; cursor:default; transform:none; }


/* ══ HEADER Zentro (verde/beige) — CSS que faltaba ══════════════════════════ */
.header-bar { display:flex; align-items:center; justify-content:space-between; gap:18px; width:100%; }
.brand-logo-img { height:44px; width:44px; object-fit:contain; }
.brand-word { font-family:"Bricolage Grotesque","Space Grotesk",sans-serif; font-weight:800; font-size:1.35rem; color:#1d5c2c; letter-spacing:-0.02em; }
.brand-word .reg { font-size:0.6em; vertical-align:super; opacity:0.7; }
.site-nav { display:flex; align-items:center; gap:6px; }
.site-nav a, .nav-distributor { padding:9px 14px; border-radius:999px; text-decoration:none; color:var(--text); font-weight:600; font-size:0.95rem; background:transparent; border:none; cursor:pointer; font-family:inherit; transition:background .2s, color .2s; }
.site-nav a:hover, .nav-distributor:hover { background:rgba(62,142,70,0.10); color:#1d5c2c; }
.header-actions { display:flex; align-items:center; gap:12px; }
.header-cta { white-space:nowrap; }
.menu-btn { display:none; align-items:center; gap:8px; padding:9px 14px; border-radius:999px; border:1px solid var(--line); background:var(--surface); cursor:pointer; font-family:inherit; font-weight:600; font-size:0.9rem; color:var(--text); }
.menu-btn-icon { display:inline-flex; flex-direction:column; gap:4px; }
.menu-btn-icon i { display:block; width:16px; height:2px; background:#1d5c2c; border-radius:2px; transition:transform .25s, opacity .25s; }
.menu-btn-icon.is-close i:first-child { transform:translateY(3px) rotate(45deg); }
.menu-btn-icon.is-close i:last-child { transform:translateY(-3px) rotate(-45deg); }

/* ══ MENÚ fullscreen ══ */
.site-menu { position:fixed; inset:0; z-index:90; }
.site-menu[hidden] { display:none; }
.site-menu-bg { position:absolute; inset:0; background:rgba(14,30,18,0.45); backdrop-filter:blur(4px); }
.site-menu-panel { position:relative; z-index:1; max-width:640px; height:100%; margin-left:auto; background:linear-gradient(165deg,#f8f4ea,#eef3e6); box-shadow:-24px 0 60px rgba(14,30,18,0.18); display:flex; flex-direction:column; padding:22px clamp(20px,5vw,44px) 34px; overflow:auto; }
.site-menu-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:26px; }
.site-menu-top .brand-word { font-size:1.15rem; }
.site-menu-body { display:flex; flex-direction:column; gap:34px; flex:1; }
.site-menu-nav { display:flex; flex-direction:column; }
.menu-link { display:flex; align-items:center; gap:16px; padding:18px 6px; border:none; border-bottom:1px solid rgba(61,110,64,0.14); background:transparent; text-decoration:none; color:var(--text); font-family:inherit; cursor:pointer; text-align:left; transition:padding-left .25s, color .2s; }
.menu-link:hover { padding-left:14px; color:#1d5c2c; }
.menu-idx { font-size:0.8rem; font-weight:700; color:#58b15c; min-width:26px; }
.menu-text { font-family:"Bricolage Grotesque","Space Grotesk",sans-serif; font-size:clamp(1.5rem,4.5vw,2rem); font-weight:700; letter-spacing:-0.02em; flex:1; }
.menu-arrow { color:#3e8e46; font-size:1.3rem; opacity:0; transform:translateX(-8px); transition:opacity .25s, transform .25s; }
.menu-link:hover .menu-arrow { opacity:1; transform:none; }
.site-menu-aside { background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:20px 22px; }
.menu-aside-label { margin:0 0 10px; font-weight:700; color:#1d5c2c; }
.menu-aside-cta { display:inline-flex; align-items:center; gap:8px; padding:12px 20px; border-radius:999px; background:#3e8e46; color:#fff; font-weight:700; text-decoration:none; margin-bottom:14px; }
.menu-aside-cta:hover { background:#337a3a; }
.menu-aside-meta { margin:6px 0 0; font-size:0.9rem; color:var(--muted); }

@media (max-width: 900px) {
  .site-nav { display:none; }
  .menu-btn { display:inline-flex; }
  .header-cta { display:none; }
  .brand-logo-img { height:38px; width:38px; }
  .brand-word { font-size:1.15rem; }
}
@media (prefers-reduced-motion: reduce) {
  .menu-link, .menu-arrow, .menu-btn-icon i { transition:none; }
}

/* ══ Selector de país (Colombia / España) ══ */
.country-select {
  padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface);
  font-family: inherit; font-weight: 600; font-size: 0.9rem;
  color: var(--text); cursor: pointer;
}
.country-select:hover { border-color: #3e8e46; }
.country-select-menu { width: 100%; margin-bottom: 16px; padding: 12px 14px; border-radius: 12px; }

/* España: fuera Nequi/Bre-B, entra "a convenir" */
body.country-es .pay-only-co { display: none !important; }
body.country-es .pay-only-es { display: block !important; }
.pay-only-es[hidden] { display: none; }
body.country-es .paybar { display: none !important; }

/* ══ Producción de la canción: barra de progreso en el chat ══════════════════ */
.prod-card { display: grid; gap: 12px; }
.prod-head { display: flex; align-items: center; gap: 10px; }
.prod-disc {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 50% 50%, #fffdf7 0 22%, #3e8e46 23% 100%);
  box-shadow: inset 0 0 0 3px rgba(255,253,247,.5);
  animation: prod-spin 2.4s linear infinite;
}
@keyframes prod-spin { to { transform: rotate(360deg); } }
.prod-title { font-weight: 700; font-size: 0.98rem; line-height: 1.25; }
.prod-sub { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.prod-track {
  position: relative; height: 12px; border-radius: 999px; overflow: hidden;
  background: rgba(62,142,70,.14);
}
.prod-fill {
  height: 100%; width: 0%; border-radius: 999px;
  background: linear-gradient(90deg, #58b15c, #3e8e46 55%, #2e7d32);
  transition: width .9s cubic-bezier(.22,1,.36,1);
}
.prod-fill::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.55) 50%, transparent 80%);
  transform: translateX(-100%); animation: prod-shine 1.9s ease-in-out infinite;
}
@keyframes prod-shine { to { transform: translateX(100%); } }
.prod-meta { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--muted); }
.prod-pct { font-weight: 700; color: #2e7d32; font-variant-numeric: tabular-nums; }
.prod-steps { display: grid; gap: 6px; margin-top: 2px; }
.prod-step { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--muted); }
.prod-step .dot {
  width: 16px; height: 16px; border-radius: 50%; flex: none;
  border: 2px solid rgba(62,142,70,.35); display: grid; place-items: center;
  font-size: 10px; color: #fff; line-height: 1;
}
.prod-step.on { color: var(--text); font-weight: 600; }
.prod-step.on .dot { border-color: #3e8e46; background: #3e8e46; }
.prod-step.now .dot { border-color: #3e8e46; animation: prod-pulse 1.3s ease-in-out infinite; }
@keyframes prod-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(62,142,70,.45); } 50% { box-shadow: 0 0 0 7px rgba(62,142,70,0); } }
@media (prefers-reduced-motion: reduce) {
  .prod-disc, .prod-fill::after, .prod-step.now .dot { animation: none; }
  .prod-fill { transition: none; }
}


/* ══ Bullets debajo del chat (ancho completo) ══ */
.order-bullets-below {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px 22px; margin: 22px 0 0; padding: 18px 20px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
}

/* ══ Barra fija móvil: siempre visible ══ */
.mobile-cta { display: none; }
@media (max-width: 767px) {
  .mobile-cta {
    display: block; position: fixed; z-index: 70;
    left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom));
    padding: 15px 18px; border-radius: 999px;
    background: linear-gradient(135deg, #3e8e46, #2e7d32);
    color: #fff; font-weight: 700; font-size: 1rem; text-align: center;
    text-decoration: none; box-shadow: 0 10px 26px rgba(30,64,38,.34);
  }
  .mobile-cta:active { transform: scale(.985); }
  .mobile-cta.is-hidden { display: none; }
  body { padding-bottom: 76px; }
  .player-fixed.active { bottom: 84px; }
}

/* ══ Botones de arranque del chat ══ */
.chat-start-opts { display: grid; gap: 10px; margin-top: 10px; }
.chat-start-btn {
  display: block; width: 100%; text-align: left;
  padding: 14px 16px; border-radius: 14px; cursor: pointer;
  border: 1px solid rgba(62,142,70,.30); background: #fffdf7;
  font-family: inherit; font-size: 0.95rem; font-weight: 600; color: var(--text);
  transition: background .2s, border-color .2s, transform .15s;
}
.chat-start-btn:hover { background: #eef5e9; border-color: #3e8e46; transform: translateY(-1px); }
.chat-start-btn small { display: block; font-weight: 400; color: var(--muted); margin-top: 3px; font-size: 0.82rem; }
@media (prefers-reduced-motion: reduce) { .chat-start-btn { transition: none; } }


/* ══ HERO con video a ancho completo ══════════════════════════════════════ */
.hero.hero-video {
  position: relative;
  display: block;
  /* full-bleed real: rompe el contenedor central y ocupa TODA la pantalla */
  width: 100vw;
  max-width: none;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: clamp(460px, 78vh, 760px);
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
}
.hero.hero-video::before { content: none; }
.hero-bg-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-video-shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(12,28,16,.92) 0%, rgba(12,28,16,.74) 42%, rgba(12,28,16,.30) 72%, rgba(12,28,16,.45) 100%),
    linear-gradient(0deg, rgba(12,28,16,.55) 0%, transparent 45%);
}
.hero-video-copy {
  position: relative; z-index: 2;
  max-width: min(620px, 92%);
  padding: clamp(40px, 7vw, 88px) clamp(20px, 6vw, 72px);
  color: #fff;
}
.hero-video-copy h1 {
  margin: 14px 0 0;
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 5.2vw, 4.2rem);
  line-height: 1.05; letter-spacing: -0.03em; text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero-video-copy .hero-accent { color: #9ad196; }
.hero-video-copy .hero-text { color: rgba(255,255,255,.92); font-size: 1.05rem; margin-top: 16px; }
.hero-video-copy .hero-text strong { color: #fff; }
.hero-video-copy .hero-pill {
  background: rgba(255,255,255,.16); color: #fff;
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.22);
}
.hero-video-copy .hero-price-tag {
  background: rgba(154,209,150,.18); border-color: rgba(154,209,150,.5); color: #d8f0d4;
}
.hero-video-copy .hero-proof p { color: rgba(255,255,255,.86); }
.hero-video-copy .hero-proof strong { color: #fff; }
.hero-video-copy .hero-proof-avatars span { border-color: rgba(255,255,255,.65); }
.hero-video-copy .button-secondary {
  background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(8px);
}
.hero-video-copy .button-secondary:hover { background: rgba(255,255,255,.24); }

/* Botón de sonido */
.hero-sound {
  position: absolute; z-index: 3; right: clamp(14px, 3vw, 28px); bottom: clamp(14px, 3vw, 28px);
  padding: 10px 16px; border-radius: 999px; cursor: pointer;
  background: rgba(12,28,16,.55); color: #fff; border: 1px solid rgba(255,255,255,.30);
  backdrop-filter: blur(10px); font-family: inherit; font-weight: 600; font-size: .86rem;
}
.hero-sound:hover { background: rgba(12,28,16,.75); }

@media (max-width: 767px) {
  .hero.hero-video { min-height: clamp(520px, 88vh, 720px); }
  .hero-video-copy { max-width: 100%; padding: 34px 20px 30px; }
  .hero-video-shade {
    background:
      linear-gradient(180deg, rgba(12,28,16,.45) 0%, rgba(12,28,16,.62) 38%, rgba(12,28,16,.90) 100%);
  }
  .hero-sound { top: 14px; bottom: auto; right: 14px; padding: 8px 12px; font-size: .78rem; }
}
@media (prefers-reduced-motion: reduce) { .hero-bg-video { display: none; } }

/* El hero a ancho completo no debe generar barra horizontal */
html, body { overflow-x: hidden; max-width: 100%; }


/* ══ Adelanto en vivo mientras se produce la canción ══ */
.prod-stream {
  margin-top: 12px; padding: 12px 14px; border-radius: 14px;
  background: rgba(62,142,70,.08); border: 1px solid rgba(62,142,70,.22);
}
.prod-stream-top { font-size: .88rem; margin-bottom: 8px; }
.prod-stream-row { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.prod-stream-row span { font-size: .8rem; color: var(--muted); min-width: 74px; }
.prod-stream-row audio { flex: 1; height: 34px; max-width: 100%; }
.prod-stream-note { margin: 8px 0 0; font-size: .76rem; color: var(--muted); }

/* ══ Reproductor estilo Suno (portada + onda + controles) ══════════════════ */
.eco-player {
  display: flex; align-items: center; gap: 14px;
  padding: 12px; margin-top: 10px;
  background: linear-gradient(135deg, #ffffff, #f4f8ef);
  border: 1px solid rgba(62,142,70,.20); border-radius: 16px;
  box-shadow: 0 4px 14px rgba(30,64,38,.07);
}
.eco-cover {
  width: 62px; height: 62px; flex: none; border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, #3e8e46, #9ad196);
  display: grid; place-items: center; color: #fff; font-size: 24px;
  box-shadow: 0 3px 10px rgba(30,64,38,.18);
}
.eco-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.eco-cover.spin img, .eco-cover.spin { animation: eco-rot 8s linear infinite; }
@keyframes eco-rot { to { transform: rotate(360deg); } }
.eco-body { flex: 1; min-width: 0; }
.eco-title { font-weight: 700; font-size: .95rem; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.eco-sub { font-size: .76rem; color: var(--muted); margin-top: 2px; display: flex; align-items: center; gap: 6px; }
.eco-live { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #e0483b; animation: eco-blink 1.2s ease-in-out infinite; }
@keyframes eco-blink { 50% { opacity: .25; } }
.eco-bar { position: relative; height: 6px; border-radius: 999px; background: rgba(62,142,70,.16); margin-top: 9px; cursor: pointer; }
.eco-fill { height: 100%; width: 0%; border-radius: 999px; background: linear-gradient(90deg,#58b15c,#2e7d32); transition: width .15s linear; }
.eco-time { font-size: .72rem; color: var(--muted); margin-top: 5px; display: flex; justify-content: space-between; font-variant-numeric: tabular-nums; }
.eco-play {
  width: 46px; height: 46px; flex: none; border-radius: 50%; cursor: pointer; border: none;
  background: linear-gradient(135deg,#3e8e46,#2e7d32); color: #fff; font-size: 17px;
  display: grid; place-items: center; box-shadow: 0 4px 12px rgba(46,125,50,.34);
  transition: transform .15s cubic-bezier(.22,1,.36,1), filter .2s;
}
.eco-play:hover { filter: brightness(1.1); transform: scale(1.06); }
.eco-play:active { transform: scale(.97); }
.eco-dl {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 8px;
  padding: 7px 13px; border-radius: 999px; text-decoration: none;
  background: rgba(62,142,70,.12); color: #2e7d32; font-weight: 700; font-size: .78rem;
}
.eco-dl:hover { background: rgba(62,142,70,.2); }
@media (max-width: 480px) { .eco-cover { width: 52px; height: 52px; } .eco-play { width: 42px; height: 42px; } }
@media (prefers-reduced-motion: reduce) { .eco-cover.spin, .eco-cover.spin img, .eco-live { animation: none; } }

/* ══ ACCESO CREADORES ═══════════════════════════════════════════════════════
   Botón en la cabecera, entrada en el menú móvil y una banda antes del pie.
   Usa las variables verdes del sitio, no colores sueltos. */

.header-creadores{
  display:inline-flex; align-items:center; gap:7px;
  padding:11px 18px; border-radius:999px;
  background:transparent; color:var(--violet);
  border:1.5px solid var(--violet-soft); font-weight:700; font-size:14px;
  text-decoration:none; white-space:nowrap;
  transition:background .18s ease, color .18s ease, border-color .18s ease;
}
.header-creadores:hover{ background:var(--violet); border-color:var(--violet); color:#fff; }
@media (max-width:1080px){ .header-creadores{ display:none; } }

.menu-aside-creadores{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  margin-top:12px; padding:14px 18px; border-radius:18px;
  border:1.5px solid var(--violet-soft); color:var(--violet);
  font-weight:700; text-decoration:none;
}
.menu-aside-creadores:hover{ background:var(--violet); border-color:var(--violet); color:#fff; }

.creadores-band{
  padding:clamp(48px,7vw,86px) 20px;
  background:linear-gradient(135deg, var(--violet) 0%, var(--fuchsia) 55%, var(--violet-soft) 100%);
  color:#fff;
}
.creadores-inner{
  max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns:1.6fr 1fr; gap:clamp(28px,5vw,64px); align-items:center;
}
.creadores-kicker{
  margin:0 0 10px; font-size:13px; font-weight:700; letter-spacing:.3px;
  color:rgba(255,255,255,.82);
}
.creadores-band h2{
  margin:0 0 14px; font-size:clamp(28px,4.2vw,44px); line-height:1.1;
  letter-spacing:-.02em; text-wrap:balance; color:#fff;
}
.creadores-sub{
  margin:0 0 18px; font-size:clamp(15px,1.7vw,17.5px); line-height:1.6;
  color:rgba(255,255,255,.92); max-width:56ch;
}
.creadores-lista{ list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:10px; }
.creadores-lista li{
  background:rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.26);
  border-radius:999px; padding:8px 15px; font-size:14px;
}
.creadores-lista strong{ font-weight:800; }
.creadores-cta{ text-align:center; }
.creadores-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  width:100%; padding:20px 30px; border-radius:20px;
  background:#fff; color:var(--violet);
  font-size:clamp(17px,2vw,20px); font-weight:800; text-decoration:none;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  transition:transform .18s cubic-bezier(.22,1,.36,1), box-shadow .18s ease;
}
.creadores-btn:hover{ transform:translateY(-3px); box-shadow:0 20px 44px rgba(0,0,0,.24); }
.creadores-nota{ margin:12px 0 0; font-size:13.5px; color:rgba(255,255,255,.86); }

@media (max-width:820px){
  .creadores-inner{ grid-template-columns:1fr; text-align:center; }
  .creadores-sub{ margin-left:auto; margin-right:auto; }
  .creadores-lista{ justify-content:center; }
}
@media (prefers-reduced-motion: reduce){
  .creadores-btn{ transition:none; }
  .creadores-btn:hover{ transform:none; }
}


/* Botón de cobro de PayPal (España). Enlace directo: el cliente hace clic y
   paga, en vez de copiar un correo a mano. */
.paypal-btn{
  display:block; margin-top:10px; padding:14px 18px; border-radius:14px;
  background:#0070ba; color:#fff; font-weight:800; font-size:15.5px;
  text-align:center; text-decoration:none;
  box-shadow:0 8px 20px rgba(0,112,186,.28);
  transition:background .18s ease, transform .18s ease;
}
.paypal-btn:hover{ background:#005c99; transform:translateY(-2px); }
@media (prefers-reduced-motion: reduce){ .paypal-btn{ transition:none } .paypal-btn:hover{ transform:none } }

/* ── España: elegir Bizum o PayPal ──────────────────────────────────────────
   Dos tarjetas grandes; se toca una y solo aparecen los datos de esa. Antes se
   mostraban los dos a la vez y la gente no sabía cuál usar. */
.es-pay-picker{
  display:grid; grid-template-columns:1fr 1fr; gap:10px; margin:14px 0 4px;
}
.es-pay-opt{
  display:flex; flex-direction:column; align-items:center; gap:4px;
  padding:14px 10px; border-radius:16px; cursor:pointer; text-align:center;
  border:2px solid rgba(46,94,52,0.18); background:rgba(46,94,52,0.04);
  font:inherit; color:inherit;
  transition:border-color .18s ease, background .18s ease, transform .18s ease;
}
.es-pay-opt:hover{ border-color:rgba(88,177,92,0.55); transform:translateY(-2px); }
.es-pay-opt.is-active{
  border-color:#58b15c; background:rgba(88,177,92,0.14);
  box-shadow:0 6px 18px rgba(46,94,52,.16);
}
.es-pay-opt .pay-logo{ height:26px; width:auto; margin-bottom:2px; }
.es-pay-opt-name{ font-weight:800; font-size:15px; }
.es-pay-opt-sub{ color:var(--muted); font-size:12.5px; line-height:1.25; }
/* La marca de elegido, también sin depender del color (accesibilidad) */
.es-pay-opt.is-active .es-pay-opt-name::after{ content:" ✓"; color:#2e5e34; }
.es-pay-detail[hidden]{ display:none; }
.es-pay-hint{ margin:8px 2px 0; color:var(--muted); font-size:13.5px; line-height:1.45; }
@media (max-width:420px){ .es-pay-picker{ grid-template-columns:1fr; } }
@media (prefers-reduced-motion: reduce){
  .es-pay-opt{ transition:none } .es-pay-opt:hover{ transform:none }
}
