/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
  --red: #e8181f;
  --red-dark: #c01117;
  --red-glow: rgba(232, 24, 31, 0.4);
  --black: #000000;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --gray: #222222;
  --gray-light: #333333;
  --muted: #777777;
  --white: #ffffff;
  --white-soft: rgba(255,255,255,0.06);
  --white-border: rgba(255,255,255,0.09);
  --font: 'Poppins', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-red: 0 8px 32px rgba(232, 24, 31, 0.35);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===========================
   UTILS
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent { color: var(--red); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(211, 32, 39, 0.15);
  color: var(--red);
  border: 1px solid rgba(211, 32, 39, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white-border);
}
.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn--ghost {
  background: var(--white-soft);
  color: var(--white);
  border: 1.5px solid var(--white-border);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn--large {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.82rem;
}

.btn--glow {
  animation: pulse-glow 2.5s infinite;
}

.btn--spotify {
  background: #1db954;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn--spotify:hover {
  background: #17a348;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 185, 84, 0.35);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
  50% { box-shadow: 0 0 0 14px transparent; }
}

/* ===========================
   HEADER / NAV
   =========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.8);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100px;
}

.nav__logo {
  flex-shrink: 0;
}

/* LOGO IMAGE */
.logo-img-link {
  display: inline-block;
  line-height: 0;
}

.nav__logo-img {
  height: 90px;
  width: auto;
  mix-blend-mode: lighten;
  display: block;
}

.footer__logo-img {
  height: 70px;
  width: auto;
  mix-blend-mode: lighten;
  display: block;
  margin-bottom: 4px;
}

/* LOGO MARK — legacy fallback */
.logo-mark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 2px;
}

.logo-mark__wordmark {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}

.logo-mark .logo-fl {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -1px;
  line-height: 1;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.9);
}

.logo-mark .logo-arrow {
  font-size: 0.95rem;
  color: var(--white);
  margin: 0 1px;
  line-height: 1;
}

.logo-mark .logo-ow {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}

.logo-mark .logo-sub {
  display: block;
  font-size: 0.4rem;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 3px;
}

.logo-mark--lg .logo-fl,
.logo-mark--lg .logo-ow {
  font-size: 1.6rem;
}
.logo-mark--lg .logo-arrow {
  font-size: 1.2rem;
}
.logo-mark--lg .logo-sub {
  font-size: 0.48rem;
  letter-spacing: 4px;
}

/* Legacy */
.logo-text { font-size: 1.1rem; font-weight: 800; color: var(--white); }
.logo-accent { color: var(--red); }

.nav__menu {
  display: flex;
  gap: 18px;
  margin: 0 auto;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.nav__actions .btn {
  padding: 9px 18px;
  font-size: 0.8rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 65% 50%, rgba(232, 24, 31, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 100% 100%, rgba(232, 24, 31, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 0%, rgba(100,0,0,0.15) 0%, transparent 60%),
    #000000;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero__badge {
  display: inline-block;
  background: rgba(232, 24, 31, 0.12);
  color: var(--red);
  border: 1px solid rgba(232, 24, 31, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 3px;
}

/* ── MOCKUP ── */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__mockup {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.mockup__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,24,31,0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.mockup__card {
  background: rgba(18,18,18,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(232,24,31,0.1);
}

.mockup__card-header {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.mockup__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup__dot.red    { background: #ff5f57; }
.mockup__dot.yellow { background: #febc2e; }
.mockup__dot.green  { background: #28c840; }

/* Waveform */
.mockup__waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 48px;
  margin-bottom: 20px;
  padding: 0 4px;
}

.mockup__waveform span {
  flex: 1;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--red) 0%, rgba(232,24,31,0.3) 100%);
  animation: wave-hero 1.2s ease-in-out infinite;
}

.mockup__waveform span:nth-child(1)  { height: 30%; animation-delay: 0s; }
.mockup__waveform span:nth-child(2)  { height: 60%; animation-delay: 0.1s; }
.mockup__waveform span:nth-child(3)  { height: 85%; animation-delay: 0.2s; }
.mockup__waveform span:nth-child(4)  { height: 45%; animation-delay: 0.3s; }
.mockup__waveform span:nth-child(5)  { height: 100%; animation-delay: 0.4s; }
.mockup__waveform span:nth-child(6)  { height: 70%; animation-delay: 0.5s; }
.mockup__waveform span:nth-child(7)  { height: 90%; animation-delay: 0.15s; }
.mockup__waveform span:nth-child(8)  { height: 55%; animation-delay: 0.25s; }
.mockup__waveform span:nth-child(9)  { height: 75%; animation-delay: 0.35s; }
.mockup__waveform span:nth-child(10) { height: 40%; animation-delay: 0.45s; }
.mockup__waveform span:nth-child(11) { height: 80%; animation-delay: 0.05s; }
.mockup__waveform span:nth-child(12) { height: 60%; animation-delay: 0.55s; }
.mockup__waveform span:nth-child(13) { height: 95%; animation-delay: 0.2s; }
.mockup__waveform span:nth-child(14) { height: 50%; animation-delay: 0.4s; }
.mockup__waveform span:nth-child(15) { height: 35%; animation-delay: 0.6s; }

@keyframes wave-hero {
  0%, 100% { transform: scaleY(1); opacity: 0.8; }
  50%       { transform: scaleY(0.4); opacity: 0.4; }
}

/* Track */
.mockup__info { margin-bottom: 18px; }

.mockup__track {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 12px 14px;
}

.mockup__track-icon {
  width: 36px; height: 36px;
  background: #1db954;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}

.mockup__spotify-btn {
  display: inline-flex;
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  font-size: 0.82rem;
  padding: 10px 16px;
}

.mockup__track-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.mockup__track-artist {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}

.mockup__track-status {
  margin-left: auto;
  background: rgba(40,200,80,0.15);
  border: 1px solid rgba(40,200,80,0.3);
  color: #28c840;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  flex-shrink: 0;
}

/* Platforms */
.mockup__platforms {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.mockup__platforms span {
  flex: 1;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.mockup__platforms span:hover {
  background: rgba(232,24,31,0.1);
  border-color: rgba(232,24,31,0.3);
  color: var(--white);
}

.mockup__platforms span:last-child {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
}

/* Royalties */
.mockup__royalties {
  background: rgba(232,24,31,0.06);
  border: 1px solid rgba(232,24,31,0.15);
  border-radius: 12px;
  padding: 14px 16px;
}

.mockup__label {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.mockup__amount {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.mockup__up {
  font-size: 0.75rem;
  color: #28c840;
  font-weight: 600;
}

.mockup__bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.mockup__bar-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--red), #ff6b6b);
  border-radius: 4px;
  animation: bar-grow 2s ease-out forwards;
}

@keyframes bar-grow {
  from { width: 0; }
  to   { width: 72%; }
}

/* Floating badges */
.mockup__badge-floating {
  position: absolute;
  background: rgba(15,15,15,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 7px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.mockup__badge-1 {
  top: -16px; right: -20px;
  color: #1db954;
  border-color: rgba(29,185,84,0.25);
  animation-delay: 0s;
}

.mockup__badge-1 i { color: #1db954; }

.mockup__badge-2 {
  bottom: -16px; left: -20px;
  animation-delay: 1.5s;
}

.mockup__badge-2 i { color: #28c840; }

/* HERO SCROLL */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--white-border);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.85rem;
  animation: bounce 2s ease-in-out infinite;
  transition: all var(--transition);
}

.hero__scroll a:hover {
  border-color: var(--red);
  color: var(--red);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* RESPONSIVE HERO */
@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero__subtitle { margin: 0 auto 40px; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__mockup { max-width: 340px; }
  .mockup__badge-1 { right: -10px; }
  .mockup__badge-2 { left: -10px; }
}

@media (max-width: 480px) {
  .hero__stats { gap: 16px; }
  .stat-number { font-size: 1.3rem; }
  .hero__cta { flex-direction: column; align-items: center; }
  .mockup__badge-floating { display: none; }
}

/* ===========================
   BANNER
   =========================== */
.banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: #000;
}

/* Foto de fondo con overlay */
.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
  z-index: 0;
}

/* Gradiente rojo encima de la foto */
.banner__overlay-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(192,17,23,0.92) 0%,
    rgba(232,24,31,0.85) 40%,
    rgba(140,10,14,0.92) 100%);
  z-index: 1;
}

/* Patrón de puntos sobre todo */
.banner__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 2;
  pointer-events: none;
}

/* Líneas diagonales de luz */
.banner__lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.banner__lines::before {
  content: '';
  position: absolute;
  top: -60%; left: -5%;
  width: 35%; height: 220%;
  background: rgba(255,255,255,0.04);
  transform: rotate(12deg);
}

.banner__lines::after {
  content: '';
  position: absolute;
  top: -60%; right: 8%;
  width: 20%; height: 220%;
  background: rgba(255,255,255,0.03);
  transform: rotate(12deg);
}

/* Big background text */
.banner__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  color: rgba(255,255,255,0.035);
  letter-spacing: -8px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 3;
  line-height: 1;
}

/* Glow spots */
.banner__glow-1 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,80,80,0.2) 0%, transparent 70%);
  top: -100px; left: -80px;
  z-index: 2;
  pointer-events: none;
}

.banner__glow-2 {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,120,50,0.15) 0%, transparent 70%);
  bottom: -80px; right: 10%;
  z-index: 2;
  pointer-events: none;
}

.banner__notes {
  z-index: 3 !important;
}

.banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 4;
  flex-wrap: wrap;
}

/* Left icon */
.banner__left { flex-shrink: 0; }

.banner__icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  animation: float 3s ease-in-out infinite;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Center */
.banner__center {
  flex: 1;
  min-width: 280px;
}

.banner__label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.95);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
}

.banner__text {
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 22px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.banner__stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.banner__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.banner__stat span {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.banner__stat small {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.banner__sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.25);
}

/* Right CTA */
.banner__right { flex-shrink: 0; }

.btn--banner {
  background: #ffffff;
  color: var(--red);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
  white-space: nowrap;
}

.btn--banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  background: #f0f0f0;
}

.btn--banner i { transition: transform var(--transition); }
.btn--banner:hover i { transform: translateX(5px); }

@media (max-width: 768px) {
  .banner__content { flex-direction: column; text-align: center; }
  .banner__stats { justify-content: center; }
  .banner__left { display: none; }
}

/* ===========================
   SERVICES — PREMIUM
   =========================== */
.services {
  padding: 110px 0;
  background: #050505;
  position: relative;
  overflow: clip;
}

/* Background glows */
.services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.services__glow--1 {
  width: 500px; height: 500px;
  background: rgba(232,24,31,0.08);
  top: -100px; left: -100px;
}

.services__glow--2 {
  width: 400px; height: 400px;
  background: rgba(232,24,31,0.06);
  bottom: -80px; right: 10%;
}

.services__glow--3 {
  width: 300px; height: 300px;
  background: rgba(232,24,31,0.05);
  top: 40%; left: 45%;
  transform: translateX(-50%);
}

/* ── Logos tiendas digitales de fondo ── */
.services__stores-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Columnas de logos que suben */
.store-col {
  position: absolute;
  bottom: -500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  animation: storeRise linear infinite;
}

.store-col i {
  font-size: 3rem;
  opacity: 0.1;
  filter: blur(1px);
  display: block;
}

.store-col span {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  opacity: 0.07;
  filter: blur(0.8px);
  display: block;
}

@keyframes storeRise {
  0%   { transform: translateY(0); }
  100% { transform: translateY(calc(-100% - 600px)); }
}

/* Ocultar los divs vacíos de las tarjetas */
.service-card__stores { display: none; }

/* Floating music notes */
.services__notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.music-note {
  position: absolute;
  color: var(--red);
  opacity: 0;
  font-size: 1.2rem;
  animation: note-float linear infinite;
  filter: blur(0.5px);
}


@keyframes note-float {
  0%   { transform: translateY(0) rotate(0deg) scale(0.8);  opacity: 0; }
  10%  { opacity: 0.35; }
  80%  { opacity: 0.2; }
  100% { transform: translateY(-120px) rotate(25deg) scale(1.1); opacity: 0; }
}

/* GRID */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CARD */
.service-card {
  position: relative;
  background: linear-gradient(145deg, #131313 0%, #0e0e0e 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease,
              border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  border-color: rgba(232,24,31,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5),
              0 0 40px rgba(232,24,31,0.08),
              inset 0 1px 0 rgba(255,255,255,0.05);
  transform: translateY(-6px);
}

/* Shine sweep on hover */
.service-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: -100% 0;
  transition: background-position 0.6s ease;
  pointer-events: none;
}

.service-card:hover .service-card__shine {
  background-position: 200% 0;
}

/* Top accent line */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before,
.service-card--featured::before {
  opacity: 1;
}

/* Featured card */
.service-card--featured {
  background: linear-gradient(145deg, #1a0808 0%, #110505 100%);
  border-color: rgba(232,24,31,0.2);
}

/* Number */
.service-card__number {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(232,24,31,0.07);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -2px;
  transition: color 0.3s ease;
}

.service-card:hover .service-card__number {
  color: rgba(232,24,31,0.12);
}

/* Icon wrapper */
.service-card__icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(232,24,31,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--red);
  background: rgba(232,24,31,0.06);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card__icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(232,24,31,0.15);
  transition: all 0.3s ease;
}

.service-card:hover .service-card__icon {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 24px rgba(232,24,31,0.4);
}

.service-card:hover .service-card__icon-ring {
  inset: -10px;
  border-color: rgba(232,24,31,0.25);
}

/* Body */
.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s ease;
}

.service-card:hover .service-card__title {
  color: var(--red);
}

.service-card__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* Feature list */
.service-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.service-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}

.service-card:hover .service-card__features li {
  color: rgba(255,255,255,0.65);
}

.service-card__features li i {
  color: var(--red);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}
/* ===========================
   PLAYLISTS — 3 CARDS
   =========================== */
.playlists {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.playlists__bg { display: none; }

.playlists__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

/* CARD */
.pl-card {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pl-card:hover {
  border-color: rgba(29,185,84,0.3);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 30px rgba(29,185,84,0.06);
}

/* COVER */
.pl-card__cover {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.pl-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.pl-card:hover .pl-card__img {
  transform: scale(1.05);
}

/* Play overlay */
.pl-card__play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.pl-card:hover .pl-card__play-overlay { opacity: 1; }

.pl-play-btn {
  width: 60px; height: 60px;
  background: #1db954;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(29,185,84,0.5);
}
.pl-play-btn:hover {
  transform: scale(1.1);
  background: #17a348;
}

/* INFO */
.pl-card__info {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pl-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #1db954;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pl-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.pl-card__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.pl-card__desc strong { color: rgba(255,255,255,0.75); }

.pl-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pl-card__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.pl-card__meta i { color: #1db954; font-size: 0.7rem; }

/* Responsive */
@media (max-width: 900px) {
  .playlists__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 40px;
  }
}
@media (max-width: 600px) {
  .playlists__wave { flex-direction: column; gap: 12px; }
}

/* FEATURED PLAYLIST CARD */
.playlist-featured {
  position: relative;
  background: linear-gradient(135deg, #0e0e0e 0%, #1a1a1a 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  overflow: hidden;
  transition: border-color var(--transition);
}

.playlist-featured:hover {
  border-color: rgba(29,185,84,0.25);
}

.playlist-featured__glow {
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(29,185,84,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* COVER ART */
.playlist-featured__cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pf-cover-art {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  background: linear-gradient(145deg, #2a3a0a 0%, #1a2a00 40%, #0a1500 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  z-index: 1;
}

.pf-cover-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(180,160,0,0.25) 0%,
    rgba(80,120,0,0.2) 40%,
    rgba(0,0,0,0.5) 100%
  );
}

.pf-cover-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.pf-cover-text span {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.pf-year {
  font-size: 1.4rem !important;
  color: var(--white) !important;
}

.pf-cover-logo {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pf-logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1;
}

.pf-logo-text span {
  color: var(--red);
}

.pf-logo-sub {
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* VINYL DISC */
.pf-vinyl {
  position: absolute;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #222 20%, #111 40%, #1a1a1a 60%, #0a0a0a 80%);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  animation: spin 14s linear infinite;
  opacity: 0.85;
}

.pf-vinyl-inner {
  width: 50px;
  height: 50px;
  background: var(--dark-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
}

/* INFO SIDE */
.playlist-featured__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pf-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(29,185,84,0.1);
  border: 1px solid rgba(29,185,84,0.25);
  color: #1db954;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  width: fit-content;
}

.pf-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin: 0;
}

.pf-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 480px;
}

.pf-desc strong {
  color: rgba(255,255,255,0.8);
}

/* STATS ROW */
.pf-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.pf-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pf-stat > i {
  width: 36px;
  height: 36px;
  background: rgba(29,185,84,0.1);
  border: 1px solid rgba(29,185,84,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1db954;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.pf-stat div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.pf-stat-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.pf-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CURATOR */
.pf-curator {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  width: fit-content;
}

.pf-curator-avatar {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.pf-curator-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.pf-curator-role {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ACTION BUTTONS */
.pf-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn--spotify.btn--large {
  padding: 14px 32px;
  font-size: 0.95rem;
}

/* WAVE DECORATION */
.playlists__wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 56px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.wave-bars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.wave-bars span {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
  animation: wave-bar 1.4s ease-in-out infinite;
}

.wave-bars span:nth-child(odd)  { height: 12px; animation-delay: 0s; }
.wave-bars span:nth-child(even) { height: 22px; animation-delay: 0.2s; }
.wave-bars span:nth-child(3n)   { height: 16px; animation-delay: 0.4s; }
.wave-bars span:nth-child(5n)   { height: 28px; animation-delay: 0.6s; }
.wave-bars span:nth-child(7n)   { height: 10px; animation-delay: 0.1s; }

@keyframes wave-bar {
  0%, 100% { opacity: 0.15; transform: scaleY(1); }
  50%       { opacity: 0.5;  transform: scaleY(1.4); }
}

/* RESPONSIVE PLAYLIST */
@media (max-width: 900px) {
  .playlist-featured {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 36px;
    text-align: center;
  }

  .playlist-featured__cover {
    justify-content: center;
  }

  .pf-vinyl {
    right: -30px;
  }

  .pf-tag,
  .pf-curator {
    margin: 0 auto;
  }

  .pf-desc {
    margin: 0 auto;
  }

  .pf-stats {
    justify-content: center;
  }

  .pf-actions {
    justify-content: center;
  }

  .playlists__wave {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .pf-cover-art {
    width: 180px;
    height: 180px;
  }

  .pf-vinyl {
    width: 140px;
    height: 140px;
    right: -20px;
  }

  .pf-stats {
    gap: 16px;
  }
}

/* ===========================
   ABOUT
/* ===========================
   ABOUT — REDESIGN
   =========================== */
.about {
  padding: 110px 0;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(232,24,31,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(232,24,31,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}

/* Rotating ring behind logo */
.about__visual::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px dashed rgba(232,24,31,0.2);
  animation: spin-slow 20s linear infinite;
}

.about__visual::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(232,24,31,0.08);
  animation: spin-slow 14s linear infinite reverse;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.about__shape {
  width: 200px;
  height: 200px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.about__floating {
  position: absolute;
  background: rgba(18,18,18,0.95);
  border: 1px solid rgba(232,24,31,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 16px rgba(232,24,31,0.1);
  z-index: 3;
}

.about__floating--1 { width: 64px; height: 64px; font-size: 1.3rem; top: 20px; right: 10px; animation-delay: 0s; }
.about__floating--2 { width: 52px; height: 52px; font-size: 1rem;   bottom: 50px; right: 40px; animation-delay: 1.2s; }
.about__floating--3 { width: 58px; height: 58px; font-size: 1.1rem; top: 70px; left: 10px; animation-delay: 0.6s; }

.about__content .section-title { text-align: left; margin-top: 12px; }

.about__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-bottom: 32px;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px 14px;
  transition: all 0.3s ease;
}

.about__value:hover {
  background: rgba(232,24,31,0.06);
  border-color: rgba(232,24,31,0.2);
  color: var(--white);
}

.value-icon { color: var(--red); font-size: 1rem; flex-shrink: 0; }

/* ===========================
   AGREEMENT — REDESIGN
   =========================== */
.agreement {
  padding: 80px 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

.agreement::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(232,24,31,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.agreement__card {
  background: linear-gradient(135deg, #0f0f0f 0%, #141414 100%);
  border: 1px solid rgba(232,24,31,0.2);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  margin-top: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.agreement__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.agreement__card::after {
  content: '§';
  position: absolute;
  right: 48px; bottom: -20px;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(232,24,31,0.03);
  line-height: 1;
  pointer-events: none;
}

.agreement__card:hover {
  border-color: rgba(232,24,31,0.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(232,24,31,0.06);
}

.agreement__icon {
  width: 88px; height: 88px;
  background: rgba(232,24,31,0.08);
  border: 1px solid rgba(232,24,31,0.25);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--red);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.agreement__card:hover .agreement__icon {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 30px rgba(232,24,31,0.4);
}

.agreement__info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.agreement__info p {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===========================
   CTA — REDESIGN
   =========================== */
.cta {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #000;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(232,24,31,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232,24,31,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 80% 20%, rgba(232,24,31,0.06) 0%, transparent 60%);
}

/* Grid lines decoration */
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta__content {
  position: relative;
  z-index: 1;
}

/* Big decorative text */
.cta__content::before {
  content: '♫';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: rgba(232,24,31,0.06);
  pointer-events: none;
  line-height: 1;
}

.cta__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.15;
}

.cta__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===========================
   FOOTER — REDESIGN
   =========================== */
.footer {
  background: #080808;
  border-top: 1px solid rgba(232,24,31,0.15);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.footer__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 50px 24px 40px;
}

.footer__brand {
  flex: 1;
  max-width: 320px;
}

.footer__contact {
  flex-shrink: 0;
  width: 260px;
}

.footer__right { display: none; }

.footer__brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 10px 0 18px;
  max-width: 260px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(232,24,31,0.35);
  border-radius: 50%;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(232,24,31,0.15);
}

.footer__links ul { display: flex; flex-direction: column; gap: 10px; }

.footer__links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__links a::before {
  content: '›';
  color: var(--red);
  font-size: 1rem;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition);
}

.footer__links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact .btn {
  width: fit-content;
}

.footer__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 12px 16px;
  transition: all var(--transition);
}

.footer__phone:hover {
  background: rgba(232,24,31,0.06);
  border-color: rgba(232,24,31,0.2);
  color: var(--white);
}

.footer__phone i { color: var(--red); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer__bottom p span {
  color: var(--red);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about__container { grid-template-columns: 1fr; gap: 50px; }
  .about__visual { height: 300px; }
  .about__content .section-title, .about__content .section-tag { text-align: center; }
  .about__values { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .agreement__card { grid-template-columns: auto 1fr; }
  .agreement__card .btn { grid-column: 1 / -1; justify-self: start; }
  .footer__container { grid-template-columns: 1fr; gap: 32px; }
  .footer__right { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .agreement__card { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .agreement__icon { margin: 0 auto; }
  .agreement__card .btn { margin: 0 auto; }
  .footer__brand p { max-width: 100%; }
  .footer__right { grid-template-columns: 1fr; gap: 24px; }
  .footer__social { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    z-index: 999;
    border-bottom: 1px solid var(--white-border);
  }

  .nav__menu.open {
    max-height: 400px;
    padding: 16px 0;
  }

  .nav__menu li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav__link {
    display: block;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .nav__actions {
    display: none;
  }

  .nav__hamburger {
    display: flex;
    margin-left: auto;
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero__subtitle {
    margin: 0 auto 36px;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__disc {
    width: 220px;
    height: 220px;
  }

  .disc-outer {
    width: 140px;
    height: 140px;
  }

  .ring-1 { width: 170px; height: 170px; }
  .ring-2 { width: 200px; height: 200px; }
  .ring-3 { width: 230px; height: 230px; }

  .services__grid,
  .playlists__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .services__grid .service-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-right: 0;
    padding-bottom: 32px;
  }

  .agreement__card {
    flex-direction: column;
    text-align: center;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__brand p,
  .footer__brand .logo-text {
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__links h4,
  .footer__contact h4 {
    text-align: center;
  }

  .footer__links ul {
    align-items: center;
  }

  .footer__contact {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .banner__content {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===========================
   ANIMATIONS ENTRY
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* ===========================
   MUSIC NOTES — GLOBAL
   =========================== */
.banner__notes,
.about__notes,
.cta__notes,
.footer__notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Make sure sections with notes have position relative */
.banner        { position: relative; overflow: hidden; }
.about         { position: relative; overflow: hidden; }
.cta           { position: relative; overflow: hidden; }
.footer        { position: relative; overflow: hidden; }

/* Notes in banner are white-ish since bg is red */
#bannerNotes .music-note {
  color: rgba(255,255,255,0.5) !important;
}

/* Footer notes very subtle */
#footerNotes .music-note {
  color: rgba(232,24,31,0.25) !important;
}

/* ===========================
   CUSTOM CURSOR
   =========================== */
* { cursor: none !important; }

.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
}

.cursor__dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
  pointer-events: none;
  z-index: 99999;
}

.cursor__ring {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(232,24,31,0.6);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s ease, height 0.2s ease, opacity 0.3s ease;
  pointer-events: none;
  z-index: 99998;
}

/* Cursor hover state — aplicado via JS */
.cursor__dot.hover {
  width: 16px;
  height: 16px;
  background: #ffffff;
}

.cursor__ring.hover {
  width: 52px;
  height: 52px;
  border-color: rgba(232,24,31,0.9);
}

/* Nota musical que cae */
.cursor-note {
  position: fixed;
  pointer-events: none;
  z-index: 99997;
  font-size: 1.1rem;
  color: var(--red);
  animation: cursor-note-fall 0.9s ease-out forwards;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 8px rgba(232,24,31,0.5);
}

@keyframes cursor-note-fall {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--nx)), calc(-50% + 60px)) scale(0.5) rotate(var(--nr)); }
}

/* Publishing nav link highlight */
.nav__link--publishing {
  color: var(--red) !important;
  font-weight: 700;
}
.nav__link--publishing i { margin-right: 4px; }

/* ============================================================
   HERO CAROUSEL — fotos de artistas
   ============================================================ */
.hero__carousel {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(232,24,31,0.2);
}

.hero__carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero__carousel-slide.active {
  opacity: 1;
}

.hero__carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Overlay degradado abajo */
.hero__carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.hero__carousel-badge {
  display: none;
}

/* Dots indicadores */
.hero__carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.hero__carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.hero__carousel-dot.active {
  background: #e8181f;
  width: 24px;
  border-radius: 4px;
}

/* Fallback si no hay foto — fondo degradado */
.hero__carousel-slide img[src="artist1.jpg"],
.hero__carousel-slide img[src="artist2.jpg"],
.hero__carousel-slide img[src="artist3.jpg"],
.hero__carousel-slide img[src="artist4.jpg"] {
  background: linear-gradient(145deg, #1a0808, #0a0a0a);
}

@media (max-width: 900px) {
  .hero__carousel {
    max-width: 360px;
    aspect-ratio: 3/4;
    margin: 0 auto;
  }
}

.hero__carousel-artist-info {
  display: flex;
  align-items: center;
}

.hero__carousel-name {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  pointer-events: none;
}

.hero__carousel-placeholder {
  background: linear-gradient(145deg, #1a0808, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__carousel-loader {
  color: rgba(232,24,31,0.5);
  font-size: 2rem;
}

.hero__carousel-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  cursor: pointer !important;
  pointer-events: all !important;
  -webkit-user-select: none;
  user-select: none;
  z-index: 1;
}

/* Badge de Spotify visible al hacer hover */
.hero__carousel-link .hero__carousel-spotify-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: #1DB954;
  color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 4px 20px rgba(29,185,84,0.5);
}

.hero__carousel-link:hover .hero__carousel-spotify-hint {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hero__carousel-link:hover .hero__carousel-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(29,185,84,0.08) 100%);
}

/* Flechas del carrusel */
.hero__carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: none !important;
  pointer-events: all !important;
  transition: background 0.2s;
  outline: none;
}
.hero__carousel-arrow:hover {
  background: rgba(232,24,31,0.8);
  border-color: var(--red);
}
.hero__carousel-prev { left: 10px; }
.hero__carousel-next { right: 10px; }

@media (max-width: 900px) {
  .hero__carousel {
    max-width: 300px;
  }
}

/* Eliminar outline amarillo del navegador en botones y links */
*:focus { outline: none !important; }
*:focus-visible { outline: none !important; }
button:focus, a:focus { outline: none !important; }


/* =============================================================
   MOBILE RESPONSIVE — max-width: 768px
   Solo modifica la experiencia móvil, NO toca desktop.
   ============================================================= */
@media (max-width: 768px) {

  /* ── Global ── */
  html, body { overflow-x: hidden; }
  .container { padding: 0 16px; }

  /* ── Cursor personalizado — desactivar en móvil ── */
  .cursor__dot, .cursor__ring { display: none !important; }
  * { cursor: auto !important; }

  /* ── Header / Nav ── */
  .nav { height: 70px; gap: 12px; }
  .nav__logo-img { height: 60px; }
  .nav__hamburger { display: flex; }
  .nav__actions { display: none; }
  .nav__menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav__menu.open { max-height: 500px; padding: 8px 0 16px; }
  .nav__menu li { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav__link { display: block; padding: 14px 20px; font-size: 0.95rem; }

  /* ── Hero ── */
  .hero { padding-top: 80px; min-height: auto; padding-bottom: 60px; }
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .hero__visual { order: -1; }
  .hero__badge { font-size: 0.72rem; padding: 5px 12px; }
  .hero__title { font-size: clamp(2rem, 8vw, 2.8rem); letter-spacing: -1px; }
  .hero__subtitle { font-size: 0.9rem; margin: 0 auto 28px; max-width: 100%; }
  .hero__cta { justify-content: center; flex-direction: column; align-items: center; gap: 12px; }
  .hero__cta .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero__stats { justify-content: center; gap: 16px; flex-wrap: wrap; }
  .stat-number { font-size: 1.3rem; }
  .hero__carousel { max-width: 280px; margin: 0 auto; }
  .mockup__badge-floating { display: none; }
  .hero__scroll { display: none; }

  /* ── Banner ── */
  .banner { padding: 52px 0; }
  .banner__content { flex-direction: column; text-align: center; gap: 20px; }
  .banner__left { display: none; }
  .banner__stats { justify-content: center; gap: 16px; }
  .btn--banner { width: 100%; max-width: 280px; justify-content: center; }
  .banner__text { font-size: 1rem; }

  /* ── Servicios ── */
  .services { padding: 70px 0; overflow: hidden; }
  .services__stores-bg { display: none; }
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 16px;
  }
  .service-card { padding: 28px 20px 24px; }
  .service-card__number { font-size: 2.5rem; }
  .service-card__title { font-size: 1.05rem; }
  .service-card__desc { font-size: 0.85rem; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-subtitle { font-size: 0.88rem; }
  .section-header { margin-bottom: 36px; }

  /* ── Playlists ── */
  .playlists { padding: 70px 0; }
  .playlists__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 20px;
    margin-bottom: 32px;
  }
  .pl-card__cover { height: 180px; }
  .pl-card__info { padding: 20px 16px; }
  .pl-card__title { font-size: 1rem; }
  .pl-card__meta { flex-wrap: wrap; gap: 8px; font-size: 0.78rem; }
  .pl-card__desc { font-size: 0.83rem; }
  .pl-play-btn { width: 44px; height: 44px; font-size: 1rem; }
  .playlists__wave { flex-direction: column; gap: 10px; text-align: center; }
  .wave-bars { display: none; }

  /* ── Quiénes Somos ── */
  .about { padding: 70px 0; }
  .about__container { grid-template-columns: 1fr; gap: 36px; }
  .about__visual { height: 220px; }
  .about__content .section-title,
  .about__content .section-tag { text-align: center; }
  .about__text { font-size: 0.88rem; text-align: center; }
  .about__values { grid-template-columns: 1fr; max-width: 100%; }
  .about__value { font-size: 0.85rem; }
  .about__floating { display: none; }

  /* ── Acuerdo ── */
  .agreement { padding: 60px 0; }
  .agreement__card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 20px;
    gap: 16px;
    margin-top: 16px;
  }
  .agreement__icon { margin: 0 auto; width: 64px; height: 64px; font-size: 1.4rem; }
  .agreement__info h3 { font-size: 1.05rem; }
  .agreement__info p { font-size: 0.83rem; }
  .agreement__card .btn { margin: 0 auto; width: 100%; max-width: 240px; justify-content: center; }

  /* ── CTA ── */
  .cta { padding: 70px 0; }
  .cta__title { font-size: clamp(1.4rem, 6vw, 2rem); }
  .cta__subtitle { font-size: 0.88rem; }
  .cta__content .btn--large { width: 100%; max-width: 280px; justify-content: center; padding: 14px 24px; }

  /* ── Footer ── */
  .footer { padding: 60px 0 0; }
  .footer__container {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px;
    text-align: center;
  }
  .footer__brand {
    align-items: center;
    max-width: 100% !important;
    width: 100%;
  }
  .footer__brand p { text-align: center; max-width: 100%; }
  .footer__logo-img { margin: 0 auto 8px; }
  .footer__social { justify-content: center; }
  .footer__contact {
    align-items: center;
    width: 100% !important;
    flex-shrink: unset !important;
  }
  .footer__contact h4 { text-align: center; }
  .footer__contact .btn {
    width: 100% !important;
    max-width: 260px;
    justify-content: center;
  }
  .footer__phone { font-size: 0.95rem; justify-content: center; }
  .footer__bottom { padding: 20px 16px; font-size: 0.78rem; text-align: center; }
}

/* =============================================================
   MOBILE SMALL — max-width: 480px
   ============================================================= */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero__title { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .hero__stats { gap: 12px; }
  .hero__stat-divider { height: 28px; }
  .stat-number { font-size: 1.2rem; }
  .stat-label { font-size: 0.65rem; }
  .service-card { padding: 24px 16px 20px; }
  .agreement__card { padding: 24px 16px; }
  .section-title { font-size: clamp(1.4rem, 7vw, 1.8rem); }
  .pl-card__cover { height: 160px; }
}

/* =============================================================
   TABLET — max-width: 1024px  (solo lo que no cubre 768)
   ============================================================= */
@media (min-width: 769px) and (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .playlists__grid { grid-template-columns: 1fr 1fr; }
  .about__container { grid-template-columns: 1fr; gap: 40px; }
  .hero__content { gap: 40px; }
  .footer__container { grid-template-columns: 1fr 1fr; }
}

/* ── Botones en menú móvil ── */
.nav__menu-actions {
  display: none;
}

@media (max-width: 768px) {
  .nav__menu-actions {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: none !important;
    flex-wrap: wrap;
  }
  .nav__menu-actions .btn {
    flex: 1;
    justify-content: center;
    min-width: 120px;
  }
}
