/* ============================================================
   DJ BRUCKS — styles.css
   Diseño basado en CarBoost: Clean & Bold — Space Grotesk + Inter
   Hero: estilo Ferrari (3 dots para cambiar de video en la misma cara)
   ============================================================ */

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

:root {
  --black:   #050505;
  --dark:    #0a0a0a;
  --mid:     #888888;
  --light:   #111111;
  --white:   #ffffff;
  --wa:      #25D366;
  --border:  #222222;
  /* Tipografía: Inter (alternativa libre más cercana a Ferrari Sans) */
  --font-h:  'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-b:  'Inter', 'Helvetica Neue', Arial, sans-serif;
  --max-w:   1240px;
  --nav-h:   120px;

  --glass-bg: rgba(25, 25, 25, 0.4);
  --glass-border: rgba(255, 255, 255, 0.08);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: #0a0a0a; background: #ffffff; overflow-x: hidden; }

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ════ LOADER ════ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.loader.hidden { opacity: 0; pointer-events: none; transition: opacity .6s ease; }
.loader-logo img {
  width: clamp(200px, 28vmin, 320px);
  height: auto; opacity: .95;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,.55));
  animation: loaderPulse 2.6s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1);    opacity: .95; }
  50%      { transform: scale(1.04); opacity: 1; }
}
.loader-bar { width: 260px; height: 2px; background: rgba(255,255,255,0.1); overflow: hidden; }
.loader-progress { width: 0%; height: 100%; background: var(--white); transition: width .25s ease; }

/* ============================================================ BOTONES */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 700; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 2px; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s, opacity .2s;
  white-space: nowrap; border: 2px solid transparent;
  user-select: none; -webkit-tap-highlight-color: transparent; touch-action: manipulation;
  gap: 8px;
}
.btn-primary  { background: #0a0a0a; color: #ffffff; border-color: #0a0a0a; }
.btn-primary:hover { background: transparent; color: #0a0a0a; }
.btn-ghost    { background: transparent; color: #0a0a0a; border-color: rgba(0,0,0,0.5); }
.btn-ghost:hover { border-color: #0a0a0a; background: rgba(0,0,0,0.05); }
.btn-whatsapp { background: var(--wa); color: #ffffff; border-color: var(--wa); }
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; }
/* Variantes oscuras (para usar sobre el hero) */
.btn-dark-primary { background: #ffffff; color: #0a0a0a; border-color: #ffffff; }
.btn-dark-primary:hover { background: transparent; color: #ffffff; }
.btn-dark-ghost { background: transparent; color: #ffffff; border-color: rgba(255,255,255,0.5); }
.btn-dark-ghost:hover { border-color: #ffffff; }
.btn-sm { padding: 10px 20px; font-size: 10px; }

/* ============================================================ TIPOGRAFÍA */
.section-label {
  font-family: var(--font-h); font-size: 10px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase; color: var(--mid);
  margin-bottom: 16px; display: block;
}
.section-title {
  font-family: var(--font-h); font-size: clamp(24px, 4vw, 42px);
  font-weight: 900; letter-spacing: -1px; line-height: 1.05;
  color: #0a0a0a; margin-bottom: 48px; text-transform: uppercase;
}
.section-label { color: rgba(0,0,0,0.5); }

/* ============================================================ NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background .4s ease, backdrop-filter .4s ease, height .3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  height: 80px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.navbar.scrolled .nav-logo img { filter: invert(1); }
.navbar.scrolled .nav-links a { color: rgba(0,0,0,0.65); }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { color: #0a0a0a; }
.navbar.scrolled .hamburger span { background: #0a0a0a; }
.nav-container {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 48px; width: auto; object-fit: contain;
  transition: height .3s ease, transform .3s ease;
}
.nav-logo img:hover { transform: scale(1.04); }
.navbar.scrolled .nav-logo img { height: 34px; }
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-h); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.65);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  font-family: var(--font-h); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 22px; background: var(--wa); color: var(--white);
  border-radius: 2px; border: 2px solid var(--wa);
  display: flex; align-items: center; gap: 8px;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s;
}
.nav-cta:hover { background: #1ebe5d; border-color: #1ebe5d; transform: scale(1.05); }
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; background: none; border: none;
  padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--black); padding: 16px 24px 32px;
  }
  .nav-links.open li a {
    display: block; padding: 16px 0; font-size: 16px;
    color: var(--white); border-bottom: 1px solid #1a1a1a;
    letter-spacing: 2px;
  }
}

/* ============================================================ HERO (estilo Ferrari) */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: stretch; justify-content: center;
  overflow: hidden; background: var(--black);
}

/* Carrusel del hero */
.hero-carousel {
  position: absolute; inset: 0; z-index: 0;
  cursor: grab;
}
.hero-carousel.dragging { cursor: grabbing; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .8s ease, visibility 0s linear .8s;
}
.hero-slide.active { opacity: 1; visibility: visible; transition: opacity .8s ease, visibility 0s; }

.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.78;
  pointer-events: none;
}

/* Dots — estilo Ferrari: sólidos, alto contraste, anillo rojo siguiendo el video */
.hero-dots {
  position: absolute; left: 50%; bottom: 44px; transform: translateX(-50%);
  z-index: 20;
  display: flex; gap: 30px;
  pointer-events: auto;
}
.hero-dot {
  position: relative;
  width: 52px; height: 52px;
  background: transparent; border: none; padding: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
  filter: drop-shadow(0 3px 14px rgba(0,0,0,0.7));
}
.hero-dot::after {
  content: ""; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: #ffffff;
  transition: width .35s ease, height .35s ease, background .2s ease, border .2s ease, box-shadow .2s ease;
}
.hero-dot:hover::after { box-shadow: 0 0 0 6px rgba(255,255,255,0.22); }
.hero-dot.active::after {
  width: 38px; height: 38px;
  background: transparent;
  border: 2.5px solid #ffffff;
  box-shadow: none;
}
.hero-dot-ring {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; pointer-events: none;
  transform: rotate(-90deg);
  transition: opacity .25s ease;
  color: #FF2800; /* Rojo Ferrari para el progreso */
}
.hero-dot.active .hero-dot-ring { opacity: 1; }
.hero-dot-ring-circle {
  transition: stroke-dashoffset 80ms linear;
}
@media (max-width: 768px) {
  .hero-dots { bottom: 30px; gap: 22px; }
  .hero-dot { width: 44px; height: 44px; }
  .hero-dot::after { width: 10px; height: 10px; }
  .hero-dot.active::after { width: 30px; height: 30px; }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.92) 100%);
  pointer-events: none;
}
.hero-content {
  position: absolute; z-index: 2; text-align: left;
  left: 0; right: 0; bottom: 110px;
  padding: 0 24px; width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  pointer-events: none;
}
.hero-content > * { pointer-events: auto; }
.hero-label {
  font-family: var(--font-h); font-size: 11px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 20px;
}
.hero-subtitle {
  font-size: clamp(14px, 1.55vw, 17px); color: rgba(255,255,255,0.62);
  line-height: 1.7; margin-bottom: 48px; max-width: 620px;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap;
}

/* Hero sound */
.hero-sound-container { position: absolute; bottom: 32px; right: 32px; z-index: 10; display: flex; align-items: center; gap: 12px; }
.hero-sound-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .3s, color .3s, border-color .3s, transform .3s;
}
.hero-sound-btn:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); transform: scale(1.08); }
.hero-sound-btn.active { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.35); }
@media (max-width: 768px) { .hero-sound-container { bottom: 24px; right: 24px; } }

/* ============================================================ MARQUEE */
.brands { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; overflow: hidden; }
.brands-label { text-align: center; font-family: var(--font-h); font-size: 9px; font-weight: 700; letter-spacing: 5px; color: var(--mid); text-transform: uppercase; margin-bottom: 14px; }
.brands-marquee { overflow: hidden; }
.brands-track { display: flex; gap: 56px; width: max-content; animation: marquee 28s linear infinite; }
.brands-track span { font-family: var(--font-h); font-size: 13px; font-weight: 700; letter-spacing: 4px; color: var(--mid); white-space: nowrap; text-transform: uppercase; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================ STORIES (carrusel destacados estilo Ferrari) */
.stories {
  position: relative; background: #ffffff;
  padding: 110px 0 90px;
  overflow: hidden;
}
.stories-header {
  text-align: left;
  margin-bottom: 56px;
}
.stories-header .section-title { margin-bottom: 0; }
.stories-track { position: relative; }

.story-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  opacity: 0; visibility: hidden;
  position: absolute; inset: 0;
  transition: opacity .7s ease, visibility 0s linear .7s;
}
.story-slide.active {
  opacity: 1; visibility: visible;
  position: relative;
  transition: opacity .7s ease, visibility 0s;
}

.story-text { padding: 24px 0; }
.story-eyebrow {
  display: block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #FF2800;
  margin-bottom: 18px;
}
.story-title {
  font-family: var(--font-h);
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 700;
  letter-spacing: -.8px;
  line-height: 1.0;
  color: #0a0a0a;
  text-transform: uppercase;
  margin-bottom: 28px;
  max-width: 500px;
}
.story-copy {
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(0,0,0,0.65);
  margin-bottom: 36px;
  max-width: 440px;
}
/* Tracklist siempre visible (sin toggle) */
.story-tracklist-open {
  margin: 0 0 30px;
  width: 100%;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 18px 0 18px;
}
.story-tracklist-open .tracklist-heading {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0 0 16px;
}
.story-tracklist-open ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 28px;
  counter-reset: track;
}
.story-tracklist-open li {
  counter-increment: track;
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(0,0,0,0.78);
  padding-left: 24px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.story-tracklist-open li::before {
  content: counter(track, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 10px;
  color: #FF2800;
  letter-spacing: 1px;
  width: 20px;
}
@media (max-width: 768px) {
  .story-tracklist-open ol { grid-template-columns: 1fr; }
}

.story-tracklist {
  margin: 0 0 30px;
  width: 100%;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Bloque META — usado en slides sin tracklist para mantener estructura pareja */
.story-meta {
  margin: 0 0 30px;
  width: 100%;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 18px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
}
.story-meta-item { display: flex; flex-direction: column; gap: 4px; }
.story-meta-label {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FF2800;
}
.story-meta-value {
  font-size: 13px;
  color: rgba(0,0,0,0.85);
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .story-meta { grid-template-columns: 1fr; gap: 12px; }
}
.story-tracklist summary {
  cursor: pointer;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0a0a0a;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.story-tracklist summary::-webkit-details-marker { display: none; }
.story-tracklist summary::after {
  content: '+';
  font-size: 22px; font-weight: 300;
  color: rgba(0,0,0,0.55);
  transition: transform .3s ease, color .3s ease;
}
.story-tracklist[open] summary::after { transform: rotate(45deg); color: #FF2800; }
.story-tracklist ol {
  list-style: none;
  padding: 0 0 16px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 28px;
  counter-reset: track;
}
.story-tracklist li {
  counter-increment: track;
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(0,0,0,0.78);
  padding-left: 24px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.story-tracklist li::before {
  content: counter(track, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 10px;
  color: #FF2800;
  letter-spacing: 1px;
  width: 20px;
}
@media (max-width: 768px) {
  .story-tracklist ol { grid-template-columns: 1fr; }
}

.story-cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0a0a0a;
  transition: gap .3s ease;
}
.story-cta:hover { gap: 18px; }
.story-cta-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1.5px solid #0a0a0a;
  border-radius: 50%;
  color: #0a0a0a;
  transition: background .3s ease, color .3s ease;
}
.story-cta:hover .story-cta-arrow {
  background: #0a0a0a;
  color: #ffffff;
}

.story-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 4px;
}
.story-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s ease;
}
.story-slide:hover .story-media img { transform: scale(1.04); }
.story-media .sc-player {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  border-radius: 4px;
  box-shadow: none;
  background: #fff;
}
.story-media .sc-player:hover { transform: none; box-shadow: none; }

/* Stats section: títulos siempre en una sola línea */
.stories--stats .story-title {
  white-space: nowrap;
  max-width: none;
}

/* Variante para visualizaciones de estadísticas (data viz custom, fondo claro) */
.story-media--stat {
  aspect-ratio: 1 / 1;
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.story-slide:hover .story-media--stat { transform: none; }

/* Variante mapa: usa el screenshot del world map de SoundCloud */
.story-media--map {
  aspect-ratio: 16 / 9;
  background: #ffffff;
  padding: 0;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.story-media--map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: none;
}
.story-slide:hover .story-media--map { transform: none; }
.story-slide:hover .story-media--map img { transform: none; }

@media (max-width: 900px) {
  .story-media--map { aspect-ratio: 16 / 10; }
}

.stat-viz {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-viz::before {
  content: ""; position: absolute;
  top: 0; left: 0;
  width: 60px; height: 3px;
  background: #FF2800;
}

/* Slide 1 — Grid 2×2 de números grandes */
.stat-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
}
.stat-number-item {
  display: flex; flex-direction: column;
  gap: 6px;
  border-left: 2px solid rgba(0,0,0,0.08);
  padding-left: 18px;
}
.stat-number-label {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}
.stat-number-value {
  font-family: var(--font-h);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #0a0a0a;
  line-height: 1;
}

/* Slides 2-5 — Lista ranking (top 10) */
.stat-list {
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: rank;
  display: flex; flex-direction: column;
  gap: 0;
}
.stat-list li {
  counter-increment: rank;
  display: grid;
  grid-template-columns: 30px 22px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.stat-list li:last-child { border-bottom: 0; }
.stat-list li::before {
  content: counter(rank, decimal-leading-zero);
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FF2800;
}
.stat-list-flag {
  font-size: 17px;
  line-height: 1;
  text-align: center;
}
.stat-list-name {
  font-family: var(--font-b);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .3px;
  color: rgba(0,0,0,0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stat-list-value {
  font-family: var(--font-h);
  font-size: 14.5px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.3px;
}

@media (max-width: 900px) {
  .stat-viz { padding: 28px 24px; }
  .stat-numbers { gap: 22px 24px; }
  .stat-list li {
    padding: 7px 0;
    gap: 10px;
    grid-template-columns: 26px 20px 1fr auto;
  }
  .stat-list-flag { font-size: 15px; }
  .stat-list-name { font-size: 12.5px; }
  .stat-list-value { font-size: 13px; }
}

.stories-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  background: transparent;
  border: none;
  color: rgba(0,0,0,0.5);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color .25s ease, transform .25s ease;
}
.stories-arrow:hover { color: #0a0a0a; transform: translateY(-50%) scale(1.1); }
.stories-arrow-prev { left: 24px; }
.stories-arrow-next { right: 24px; }

.stories-footer {
  margin-top: 64px;
  display: flex; align-items: center; gap: 24px;
  justify-content: center;
}
.stories-dots { display: flex; gap: 8px; align-items: center; }
.story-dot {
  position: relative;
  width: 32px; height: 32px;
  background: transparent; border: none; padding: 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.story-dot::after {
  content: ""; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(0,0,0,0.45);
  transition: width .3s ease, height .3s ease, background .25s ease, border .25s ease;
}
.story-dot:hover::after { background: #0a0a0a; }
.story-dot.active::after {
  width: 22px; height: 22px;
  background: transparent;
  border: 1.8px solid #FF2800;
}

.stories-more-line {
  height: 1px; width: 90px;
  background: rgba(0,0,0,0.25);
}
.stories-more {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
  transition: color .2s ease;
}
.stories-more:hover { color: #0a0a0a; }

@media (max-width: 900px) {
  .stories { padding: 80px 0 60px; }
  .story-slide { grid-template-columns: 1fr; gap: 32px; }
  .story-text { padding: 0; }
  .stories-arrow-prev { left: 8px; }
  .stories-arrow-next { right: 8px; }
  .story-media { aspect-ratio: 16/10; }
  .stories-footer { margin-top: 48px; flex-wrap: wrap; gap: 16px; }
}

/* ============================================================ SOBRE MÍ (split image + text) */
.about { background: #ffffff; border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }
.about-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.about-image { overflow: hidden; position: relative; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content { background: #ffffff; padding: 80px 8%; display: flex; flex-direction: column; justify-content: center; }
.about-content h2 {
  font-family: var(--font-h); font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900; letter-spacing: -1px; line-height: 1.05;
  color: #0a0a0a; margin-bottom: 28px; text-transform: uppercase;
}
.about-content p { font-size: 15px; color: rgba(0,0,0,0.65); line-height: 1.9; margin-bottom: 20px; }
.about-content .btn { align-self: flex-start; margin-top: 16px; }

/* ============================================================ SERVICIOS (cards 3) */
.services { background: #ffffff; padding: 120px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.service-card {
  background: #ffffff; border: 1px solid rgba(0,0,0,0.1); border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column; padding: 40px 32px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.service-card:hover { border-color: rgba(0,0,0,0.25); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.service-icon {
  width: 56px; height: 56px;
  color: #FF2800;
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s ease;
}
.service-icon-wide { width: 78px; height: 56px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }
.service-card h3 { font-family: var(--font-h); font-size: 18px; font-weight: 700; margin-bottom: 14px; color: #0a0a0a; text-transform: uppercase; letter-spacing: 1px; }
.service-card p { font-size: 14px; color: rgba(0,0,0,0.65); line-height: 1.7; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================ FEATURES (4 cards + vertical video) */
.features { position: relative; padding: 140px 0; overflow: hidden; background: #f7f7f7; }
.features-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: stretch;
}
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.features-media {
  position: relative;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  align-self: stretch;
  min-height: 540px;
}
.features-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  position: absolute; inset: 0;
}
.features-sound {
  position: absolute; bottom: 16px; right: 16px;
  z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s, border-color .25s;
}
.features-sound:hover { background: rgba(0,0,0,0.75); border-color: rgba(255,255,255,0.45); transform: scale(1.08); }
.features-sound.active { background: rgba(255,255,255,0.95); color: #0a0a0a; border-color: #fff; }
@media (max-width: 900px) {
  .features-layout { grid-template-columns: 1fr; gap: 32px; }
  .features-media { min-height: auto; aspect-ratio: 9/16; max-width: 320px; margin: 0 auto; }
}
.feature-card {
  padding: 40px 36px; border-left: 3px solid #FF2800;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px; transition: transform .4s, border-color .4s, box-shadow .4s;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(0,0,0,0.2); box-shadow: 0 14px 36px rgba(0,0,0,0.06); }
.feature-icon { font-size: 22px; margin-bottom: 18px; color: #FF2800; }
.feature-card h3 { font-family: var(--font-h); font-size: 13px; font-weight: 900; letter-spacing: 2px; margin-bottom: 10px; text-transform: uppercase; color: #0a0a0a; }
.feature-card p { font-size: 14px; color: rgba(0,0,0,0.65); line-height: 1.75; }
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================================================ VIDEOS / BODAS */
.videos-section { background: #ffffff; padding: 120px 0; }
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.video-card {
  background: #ffffff; border: 1px solid rgba(0,0,0,0.08); border-radius: 6px;
  overflow: hidden; transition: border-color .3s, transform .3s, box-shadow .3s;
}
.video-card:hover { border-color: rgba(0,0,0,0.25); transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.1); }
.video-thumb { position: relative; aspect-ratio: 16/9; background: #f0f0f0; overflow: hidden; cursor: pointer; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: opacity .3s, transform 3s ease; }
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.15);
  transition: background .3s;
}
.video-card:hover .video-play { background: rgba(0,0,0,0.3); }
.video-play svg { width: 64px; height: 64px; fill: rgba(255,255,255,0.95); filter: drop-shadow(0 6px 14px rgba(0,0,0,.5)); transition: transform .3s; }
.video-card:hover .video-play svg { transform: scale(1.08); }
.video-info { padding: 24px 24px 28px; }
.video-info h3 { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: #0a0a0a; margin-bottom: 6px; letter-spacing: .5px; }
.video-info p { font-size: 12px; color: rgba(0,0,0,0.55); letter-spacing: 1px; text-transform: uppercase; }
.video-iframe-wrap { position: relative; aspect-ratio: 16/9; }
.video-iframe-wrap iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) { .videos-grid { grid-template-columns: 1fr; } }

/* ============================================================ PLAYLISTS / MUTANTES (SoundCloud embed) */
.playlists { background: #f7f7f7; padding: 120px 0; }
.playlists-intro {
  font-size: 15px;
  color: rgba(0,0,0,0.7);
  line-height: 1.85;
  max-width: 720px;
  margin-bottom: 8px;
}
.playlists-intro strong { color: #0a0a0a; font-weight: 700; }
.playlists-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.sc-player {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 8px;
  display: block;
  background: #fff;
  box-shadow: 0 4px 22px rgba(0,0,0,0.06);
  transition: box-shadow .3s ease, transform .3s ease;
}
.sc-player:hover { box-shadow: 0 14px 36px rgba(0,0,0,0.12); transform: translateY(-2px); }
@media (max-width: 768px) {
  .playlists-grid { grid-template-columns: 1fr; gap: 16px; }
  .sc-player { height: 340px; }
}

/* ============================================================ AGENDAR (Calendly + Google Meet) */
.booking { background: #ffffff; padding: 120px 0; }
.booking-intro {
  font-size: 16px;
  color: rgba(0,0,0,0.7);
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 32px;
}
.booking-intro strong { color: #0a0a0a; font-weight: 600; }
.booking-wrap {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px; padding: 8px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.04);
}
.booking-iframe { width: 100%; height: 720px; border: 0; display: block; }
@media (max-width: 768px) { .booking-iframe { height: 1100px; } }

/* ============================================================ FAQ */
.faq { background: #f7f7f7; padding: 120px 0; }
.faq-accordion { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin-top: 40px; }
.faq-item {
  background: #ffffff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px; overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: rgba(0,0,0,0.2); box-shadow: 0 8px 22px rgba(0,0,0,0.04); }
.faq-item summary {
  padding: 22px 24px; cursor: pointer;
  font-family: var(--font-h); font-weight: 700; font-size: 15px;
  color: #0a0a0a; display: flex; justify-content: space-between; align-items: center;
  letter-spacing: .5px; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 26px; font-weight: 300; color: rgba(0,0,0,0.45); transition: transform .3s, color .3s; }
.faq-item[open] summary::after { transform: rotate(45deg); color: #FF2800; }
.faq-item p { padding: 0 24px 22px 24px; color: rgba(0,0,0,0.65); font-size: 14px; line-height: 1.7; }

/* ============================================================ CTA FINAL */
.cta-final { background: #ffffff; padding: 120px 0; text-align: center; }
.cta-logo { margin: 0 auto 32px; opacity: 1; width: 220px; height: auto; filter: invert(1); }
.cta-title { font-family: var(--font-h); font-size: clamp(28px, 5vw, 56px); font-weight: 900; letter-spacing: -1px; line-height: 1.0; color: #0a0a0a; margin-bottom: 22px; text-transform: uppercase; }
.cta-sub { font-size: 15px; color: rgba(0,0,0,0.55); line-height: 1.85; margin-bottom: 48px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================ FOOTER */
.footer { background: #ffffff; padding: 72px 0 0; border-top: 1px solid rgba(0,0,0,0.08); }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(0,0,0,0.08);
}
.footer-brand img { margin-bottom: 16px; max-width: 160px; filter: invert(1); }
.footer-brand p { font-size: 13px; color: rgba(0,0,0,0.55); line-height: 1.8; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-title { font-family: var(--font-h); font-size: 10px; letter-spacing: 3px; color: rgba(0,0,0,0.5); text-transform: uppercase; margin-bottom: 4px; }
.footer-links a, .footer-contact a, .footer-contact span {
  font-size: 13px; color: rgba(0,0,0,0.55); transition: color .2s; letter-spacing: .5px;
}
.footer-links a:hover, .footer-contact a:hover { color: #0a0a0a; }
.footer-bottom { padding: 22px 24px; text-align: center; }
.footer-bottom span { font-size: 11px; color: rgba(0,0,0,0.4); letter-spacing: 1px; }
@media (max-width: 1024px) { .footer-inner { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================ WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 26px; left: 26px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 36px rgba(37,211,102,.65); }
.wa-float svg { width: 30px; height: 30px; }

/* ============================================================ REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================ RESPONSIVE */
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 16/10; min-height: auto; }
  .about-content { padding: 56px 28px; }
  .features { padding: 100px 0; }
  .services, .videos-section, .playlists, .booking, .faq, .cta-final { padding: 90px 0; }
}
@media (max-width: 600px) {
  .hero-content { bottom: 90px; padding: 0 20px; }
  .videos-grid { gap: 16px; }
  .section-title {
    margin-bottom: 36px;
    font-size: clamp(20px, 6vw, 26px);
    letter-spacing: -0.8px;
    white-space: nowrap;
  }
}
