/* ─── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Variables ───────────────────────────────────────── */
:root {
  --bg:           #05050A;
  --bg-card:      #0F0F17;
  --bg-elevated:  #111118;
  --border:       rgba(255,255,255,0.06);
  --border-accent:rgba(212,83,126,0.35);
  --accent:       #D4537E;
  --accent-soft:  #ED93B1;
  --accent-glow:  rgba(212,83,126,0.2);
  --text:         #F1F1F5;
  --muted:        #A8A8BF;
  --faint:        #6C6C86;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ─── Animations reveal ───────────────────────────────── */
.reveal, .reveal-left, .reveal-scale {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.2,0.9,0.4,1.1),
              transform 0.6s cubic-bezier(0.2,0.9,0.4,1.1);
}
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-28px); }
.reveal-scale { transform: scale(0.94); }
.reveal.visible, .reveal-left.visible, .reveal-scale.visible {
  opacity: 1; transform: none;
}

/* ─── Palabra "curada" animada tipo gusano ────────────── */
.curada {
  display: inline-block;
  font-weight: 700;
  font-style: normal;
  color: #D4537E;
}

/* Desktop: animación letra por letra */
@media (min-width: 1025px) {
  .curada .c {
    display: inline-block;
    background: linear-gradient(135deg, #ED93B1, #D4537E);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: worm 1.4s ease-in-out infinite;
  }
  .curada .c:nth-child(1) { animation-delay: 0s; }
  .curada .c:nth-child(2) { animation-delay: 0.08s; }
  .curada .c:nth-child(3) { animation-delay: 0.16s; }
  .curada .c:nth-child(4) { animation-delay: 0.24s; }
  .curada .c:nth-child(5) { animation-delay: 0.32s; }
  .curada .c:nth-child(6) { animation-delay: 0.40s; }
  @keyframes worm {
    0%, 60%, 100% { transform: translateY(0); }
    30%           { transform: translateY(-6px); }
  }
}

/* Mobile / tablet: solo negrita y rosa, sin animación */
@media (max-width: 1024px) {
  .curada .c {
    display: inline;
    color: #D4537E;
    animation: none;
  }
}

/* ─── Tipos de negocio ────────────────────────────────── */
.negocios-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.negocio-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 0.35rem 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}
.negocio-badge:hover {
  border-color: var(--border-accent);
  color: var(--accent-soft);
}
.negocio-badge span { font-size: 1rem; }

/* ─── Nav ─────────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(5,5,10,0.85);
  backdrop-filter: blur(14px);
  z-index: 100;
}
.logo {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
}
.logo em { color: var(--accent); font-style: normal; font-weight: 600; }
.logo sub { font-size: 0.65rem; color: var(--faint); vertical-align: baseline; }
.nav-right { display: flex; gap: 1rem; align-items: center; }
.nav-link {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--accent-soft); }
.btn-nav {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover { background: var(--accent-soft); transform: translateY(-1px); }

/* ─── Bars animation ──────────────────────────────────── */
.bars-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  padding: 3rem 2rem 0;
  height: 90px;
}
.bar {
  width: 10px;
  border-radius: 4px 4px 0 0;
  background: var(--accent);
  opacity: 0.7;
  animation: bounce 1.2s ease-in-out infinite;
}
.bar:nth-child(1){height:30%;animation-delay:0s}
.bar:nth-child(2){height:70%;animation-delay:.1s}
.bar:nth-child(3){height:50%;animation-delay:.2s}
.bar:nth-child(4){height:90%;animation-delay:.15s}
.bar:nth-child(5){height:60%;animation-delay:.05s}
.bar:nth-child(6){height:40%;animation-delay:.25s}
.bar:nth-child(7){height:80%;animation-delay:.1s}
.bar:nth-child(8){height:55%;animation-delay:.3s}
.bar:nth-child(9){height:35%;animation-delay:.18s}
.bar:nth-child(10){height:75%;animation-delay:.08s}
.bar:nth-child(11){height:45%;animation-delay:.22s}
.bar:nth-child(12){height:65%;animation-delay:.12s}
@keyframes bounce { 0%,100%{transform:scaleY(1)} 50%{transform:scaleY(0.35)} }

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  padding: 2.5rem 2rem 3rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
  background: rgba(212,83,126,0.1);
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 40px;
  border: 1px solid rgba(212,83,126,0.2);
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #fff, #F4B8CC);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.hero h1 em {
  background: linear-gradient(135deg, #ED93B1, #D4537E);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-style: normal;
}
@media (max-width: 600px) { .hero h1 { font-size: 1.75rem; } }
.hero p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.hero-sub {
  font-size: 0.82rem;
  color: var(--faint);
  font-family: var(--font-mono);
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Buttons ─────────────────────────────────────────── */
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 0.7rem 1.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 12px var(--accent-glow);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,83,126,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 0.7rem 1.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-sans);
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(212,83,126,0.08);
  transform: translateY(-2px);
}

/* ─── Divider ─────────────────────────────────────────── */
.divider {
  height: 1px;
  background: radial-gradient(ellipse at center, rgba(212,83,126,0.25) 0%, rgba(255,255,255,0.02) 75%);
  margin: 0 2rem;
}

/* ─── Sections ────────────────────────────────────────── */
.section { padding: 3.5rem 2rem; max-width: 1000px; margin: 0 auto; }
.section-tag {
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}
.section-title {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(145deg, #fff, #F4C0D0);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.4rem;
}
.section-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 2rem; }

/* ─── How grid ────────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(170px,1fr)); gap: 14px; }
.how-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.4rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.how-card:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.how-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(212,83,126,0.15);
  color: var(--accent);
  font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
}
.how-card h3 { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.how-card p  { font-size: 0.75rem; color: var(--muted); line-height: 1.55; }

/* ─── Phone mockup ────────────────────────────────────── */
.phone-wrap { display: flex; justify-content: center; padding: 1rem 0 2rem; }
.phone {
  width: 230px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 1.25rem;
  box-shadow: 0 0 40px rgba(212,83,126,0.08);
}
.phone-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.phone-bar span { font-size: 0.65rem; color: var(--faint); font-family: var(--font-mono); }
.phone-bar .mesa { color: var(--accent); font-size: 0.62rem; }
.qr-box {
  width: 64px; height: 64px;
  background: var(--bg-elevated);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
}
.qr-inner { width: 40px; height: 40px; display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; }
.qr-cell { border-radius: 1px; }
.phone-label { font-size: 0.68rem; color: var(--muted); text-align: center; margin-bottom: 0.75rem; }
.nickname-input {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.72rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.song-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.song-info { font-size: 0.68rem; color: var(--text); }
.song-info span { display: block; font-size: 0.62rem; color: var(--faint); }
.free-badge {
  font-size: 0.58rem;
  background: rgba(212,83,126,0.15);
  color: var(--accent-soft);
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: 600;
}
.btn-pedir {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.75rem;
  font-family: var(--font-sans);
}

/* ─── Pricing ─────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: 12px; }
.price-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.4rem;
  transition: border-color 0.2s, transform 0.2s;
}
.price-card:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.price-card.hot {
  border: 1px solid var(--accent);
  background: linear-gradient(145deg, #120810, #0A050A);
}
.price-tag-hot {
  font-size: 0.62rem;
  background: rgba(212,83,126,0.15);
  color: var(--accent-soft);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.price-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.price-card .amount { font-size: 1.5rem; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.price-card .amount span { font-size: 0.72rem; color: var(--faint); font-weight: 400; }
.price-card p { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }
.features { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 5px; }
.feat { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.feat-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ─── CTA ─────────────────────────────────────────────── */
.cta-section {
  padding: 4.5rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 30%, rgba(212,83,126,0.07), transparent 70%);
  border: 1px solid var(--border);
  border-radius: 40px;
  max-width: 780px;
  margin: 2rem auto 3rem;
}
.cta-section h2 {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #fff, #F4B8CC);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}
.cta-section p { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.75rem; }
.cta-inline { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ──────────────────────────────────────────── */
.footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--faint);
  font-family: var(--font-mono);
}
.back-link { color: var(--accent); text-decoration: none; transition: color 0.2s; }
.back-link:hover { color: var(--accent-soft); }

/* ─── Accessibility ───────────────────────────────────── */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
