/* ===================================================================
   DJ LANDING — Dark Stage — Negro + Rojo
   =================================================================== */

/* ===== VARIABLES ===== */
:root {
  --black:      #050505;
  --black-2:    #0D0D0D;
  --black-3:    #1A1A1A;
  --red:        #FF0000;
  --red-dark:   #CC0000;
  --red-glow:   rgba(255, 0, 0, 0.18);
  --white:      #FFFFFF;
  --gray:       #888888;
  --gray-light: #CCCCCC;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --transition:   all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ===== NAVIGATION ===== */
.dj-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: var(--transition);
}
.dj-nav.scrolled {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 48px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.12);
}
.nav-logo img { height: 22px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 6px;
  color: var(--white);
}

/* Hamburger wrapper con label */
.hamburger-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.hamburger-label {
  font-size: 0.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 1;
  pointer-events: none;
}

/* Hamburger — Ecualizador de sonido premium */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 6px 8px;
  width: auto;
  height: 44px;
  flex-shrink: 0;
  position: relative;
  border-radius: 4px;
  transition: background 0.3s ease;
}

/* Fondo rojo translúcido entre las barras (el "color rojo entre líneas") */
.hamburger::before {
  content: '';
  position: absolute;
  inset: 6px 4px;
  background: linear-gradient(
    to top,
    rgba(255, 0, 0, 0.22) 0%,
    rgba(255, 0, 0, 0.06) 60%,
    transparent 100%
  );
  border-radius: 2px;
  pointer-events: none;
  transition: opacity 0.3s;
}
.hamburger:hover::before {
  background: linear-gradient(
    to top,
    rgba(255, 0, 0, 0.40) 0%,
    rgba(255, 0, 0, 0.15) 60%,
    transparent 100%
  );
}

.hamburger span {
  display: block;
  width: 5px;
  border-radius: 2px 2px 0 0;
  background: var(--white);
  transform-origin: bottom center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  position: relative;
  z-index: 1;
}

/* Alturas fijas — scaleY no causa layout shift */
.hamburger span:nth-child(1) { height: 16px; animation: eq1 0.78s ease-in-out infinite alternate; }
.hamburger span:nth-child(2) { height: 26px; animation: eq2 0.52s ease-in-out infinite alternate; animation-delay: 0.14s; }
.hamburger span:nth-child(3) { height: 20px; animation: eq3 0.88s ease-in-out infinite alternate; animation-delay: 0.07s; }
.hamburger span:nth-child(4) { height: 12px; animation: eq4 0.64s ease-in-out infinite alternate; animation-delay: 0.25s; }

@keyframes eq1 { from { transform: scaleY(0.20); } to { transform: scaleY(1); } }
@keyframes eq2 { from { transform: scaleY(0.30); } to { transform: scaleY(1); } }
@keyframes eq3 { from { transform: scaleY(0.15); } to { transform: scaleY(1); } }
@keyframes eq4 { from { transform: scaleY(0.35); } to { transform: scaleY(1); } }

/* Activo: pausar + barras rojas con glow */
.hamburger.active span {
  animation-play-state: paused;
  background: var(--red);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}
.hamburger.active::before {
  background: linear-gradient(
    to top,
    rgba(255, 0, 0, 0.35) 0%,
    rgba(255, 0, 0, 0.10) 60%,
    transparent 100%
  );
}

/* ===== Nav Overlay — Split Panel Editorial ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.82s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}
.nav-overlay.active {
  clip-path: inset(0 0 0% 0);
  pointer-events: all;
}

/* Panel izquierdo */
.nav-panel-left {
  flex: 1;
  background: #020202;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(2.5rem, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.nav-panel-left::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,0,0,0.055) 0%, transparent 65%);
  pointer-events: none;
}

/* Panel derecho */
.nav-panel-right {
  width: 38%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #020202;
}
.nav-panel-right > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.82;
  filter: contrast(1.08) saturate(0.8);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.25) 16%, black 45%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.25) 16%, black 45%);
  transform: scale(1.09);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-overlay.active .nav-panel-right > img { transform: scale(1); }

.nav-panel-red-stripe {
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1.5px;
  background: linear-gradient(to bottom, transparent, var(--red) 28%, var(--red) 72%, transparent);
  opacity: 0;
  transition: opacity 0.5s ease 0.72s;
}
.nav-overlay.active .nav-panel-red-stripe { opacity: 1; }

.nav-panel-caption {
  position: absolute;
  bottom: 48px;
  left: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease 0.78s, transform 0.5s ease 0.78s;
}
.nav-overlay.active .nav-panel-caption { opacity: 1; transform: translateY(0); }
.npc-logo {
  display: block;
  height: 22px;
  width: auto;
  margin-bottom: 2px;
  opacity: 0.92;
}
.npc-city {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  display: block;
}

/* Botón cerrar — posicionado en overlay (viewport) */
.nav-close {
  position: fixed;
  top: 32px; right: 40px;
  z-index: 1002;
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  opacity: 0;
  transition: border-color 0.3s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease 0.5s;
}
.nav-overlay.active .nav-close { opacity: 1; }
.nav-close:hover { border-color: var(--red); transform: rotate(90deg); }
.nav-close span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--white);
  transition: background 0.3s;
  transform-origin: center;
}
.nav-close span:first-child { transform: rotate(45deg) translate(1px, 2px); }
.nav-close span:last-child  { transform: rotate(-45deg) translate(1px, -2px); }
.nav-close:hover span { background: var(--red); }

/* Logo dentro del menú — solo móvil (en desktop está en el panel derecho) */
.nav-mobile-logo { display: none; }

/* Menú de navegación */
.nav-menu {
  list-style: none;
  padding: 0;
  margin-bottom: 52px;
}
.nav-menu li { overflow: hidden; padding: 3px 0; }
.nav-link-item {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  letter-spacing: 3px;
  color: var(--white);
  position: relative;
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s;
  line-height: 1.08;
}
.nav-link-item em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 3px;
  color: var(--red);
  align-self: center;
  min-width: 18px;
}
.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 36px;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-link-item:hover { color: rgba(255,255,255,0.55); }
.nav-link-item:hover::after { width: calc(100% - 36px); }

/* Stagger de entrada */
.nav-overlay.active .nav-link-item { opacity: 1; transform: translateY(0); }
.nav-overlay.active .nav-menu li:nth-child(1) .nav-link-item { transition-delay: 0.26s; }
.nav-overlay.active .nav-menu li:nth-child(2) .nav-link-item { transition-delay: 0.34s; }
.nav-overlay.active .nav-menu li:nth-child(3) .nav-link-item { transition-delay: 0.42s; }
.nav-overlay.active .nav-menu li:nth-child(4) .nav-link-item { transition-delay: 0.50s; }
.nav-overlay.active .nav-menu li:nth-child(5) .nav-link-item { transition-delay: 0.58s; }
.nav-overlay.active .nav-menu li:nth-child(6) .nav-link-item { transition-delay: 0.66s; }

/* Barra inferior */
.nav-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.72s, transform 0.5s ease 0.72s;
}
.nav-overlay.active .nav-bottom { opacity: 1; transform: translateY(0); }

.nav-meta { display: flex; gap: 40px; }
.nav-meta-item { display: flex; flex-direction: column; gap: 6px; }
.nav-meta-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
}
.nav-meta-value {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}
.nav-social { display: flex; gap: 20px; }
.nav-social a {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s, transform 0.3s;
}
.nav-social a:hover { color: var(--white); transform: translateY(-2px); }

@media (max-width: 767px) {
  .nav-panel-right { display: none; }
  .nav-panel-left  { padding: 64px 28px 40px; }
  .nav-link-item   { font-size: clamp(2.2rem, 11vw, 3rem); }
  .nav-bottom      { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav-mobile-logo {
    display: block;
    width: clamp(150px, 46vw, 210px);
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 24px rgba(255, 0, 0, 0.25));
  }
}

/* ===== HERO CANVAS ===== */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.55;
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
/* ===== HERO BG — DJ silhouette ===== */
.hero-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 62%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-bg-slide.active { opacity: 1; }
.hero-bg-slide.active img {
  animation: heroImgIn 1.5s ease 0.2s both;
}
.hero-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.5) 22%, black 48%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.5) 22%, black 48%);
}
@keyframes heroImgIn {
  from { opacity: 0; transform: scale(1.05); }
  to   { opacity: 1; transform: scale(1); }
}

/* Bottom dark gradient for text readability */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,5,0.0)  0%,
    rgba(5,5,5,0.0)  50%,
    rgba(5,5,5,0.65) 72%,
    rgba(5,5,5,0.97) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Left atmospheric red glow */
.hero-section::before {
  content: '';
  position: absolute;
  left: 0; top: 40%;
  transform: translateY(-50%);
  width: 40%; height: 80%;
  background: radial-gradient(ellipse at left, rgba(255,0,0,0.08) 0%, transparent 65%);
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  width: 100%;
  max-width: 52%;
  padding: 0 20px 220px clamp(2.5rem, 8vw, 110px);
}
.hero-logo-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}

.hero-logo-img {
  display: block;
  width: clamp(200px, 38vw, 460px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(255, 0, 0, 0.2));
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 16rem);
  letter-spacing: 6px;
  line-height: 0.88;
  color: var(--white);
  text-shadow: 0 0 80px rgba(255,0,0,0.25);
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.6s forwards;
}
.hero-subtitle {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.6rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.0s forwards;
}

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

/* Scroll indicator */
.hero-scroll-indicator {
  display: none;
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.4s forwards;
}
.hero-scroll-indicator span {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2.2s ease infinite;
}
.hero-scroll-indicator p {
  font-size: 0.6rem;
  letter-spacing: 5px;
  color: var(--gray);
  text-transform: uppercase;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero side tag — derecha del hero */
.hero-side-tag {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  z-index: 10;
  font-size: 0.6rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
  pointer-events: none;
}

/* Hero bottom bar */
.hero-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: flex-end;
  gap: 48px;
  padding: 18px clamp(2.5rem, 8vw, 110px) 36px;
  border-top: none;
}
.hbi { display: flex; flex-direction: column; }
.hbi-label {
  font-size: 0.58rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 5px;
}
.hbi-value {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
}

/* Scroll cue — centrado en el bottom del hero */
.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-cue .scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2.2s ease infinite;
}
.hero-scroll-cue p {
  font-size: 0.58rem;
  letter-spacing: 5px;
  color: var(--gray);
  text-transform: uppercase;
}

/* ===== BUTTONS ===== */
.btn-primary-dj {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 44px;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-primary-dj:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,0,0,0.4);
  color: var(--white);
}
.btn-primary-dj.btn-large { padding: 18px 64px; font-size: 0.85rem; }

.btn-ghost-dj {
  display: inline-flex;
  align-items: center;
  padding: 14px 44px;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-ghost-dj:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ===== SECTION COMMONS ===== */
section { padding: 110px 0; }
.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: 3px;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 40px;
}
.text-red { color: var(--red); }
.section-header { margin-bottom: 64px; }

/* ===== BIO — Editorial Split ===== */
.section-bio {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding-top: 100px;
}

.bio-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(600px, 85%, 1200px);
  opacity: 0.08;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.bio-ghost img {
  width: 100%;
  height: auto;
  display: block;
}

.bio-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  grid-template-rows: auto 1fr;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.bio-col-left {
  grid-column: 1;
  grid-row: 2;
  padding: 20px 0 64px 0;
  align-self: start;
  overflow: visible;
  position: relative;
  z-index: 2;
}
.bio-eyebrow {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 20px;
}
.bio-name {
  grid-column: 1 / 3;
  grid-row: 1;
  align-self: end;
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 13vw, 15rem);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 0.88;
  margin: 0;
  padding-bottom: 12px;
  position: relative;
  z-index: 10;
}
.bio-text {
  font-size: 0.9rem;
  line-height: 1.82;
  color: rgba(255,255,255,0.48);
  max-width: 300px;
  margin-bottom: 16px;
}

.bio-col-center {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  position: relative;
  z-index: 1;
}
.bio-photo-wrap {
  position: relative;
  overflow: visible;
  padding-bottom: 48px;
}
.bio-photo-main {
  width: 100%;
  height: clamp(360px, 58vh, 620px);
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.45) saturate(0) brightness(0.88);
  transition: transform 0.9s ease;
}
.bio-photo-wrap:hover .bio-photo-main { transform: scale(1.025); }
.bio-photo-accent {
  position: absolute;
  bottom: 0;
  right: -28px;
  width: 44%;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--black);
  filter: contrast(1.05) saturate(0.85);
  z-index: 2;
  transition: transform 0.9s ease;
}
.bio-photo-wrap:hover .bio-photo-accent { transform: scale(1.03) translateY(-4px); }
.bio-photo-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: clamp(360px, 58vh, 620px);
  background:
    linear-gradient(to bottom, rgba(5,5,5,0.05) 0%, transparent 18%, transparent 52%, rgba(5,5,5,0.72) 100%),
    radial-gradient(ellipse at 75% 20%, rgba(255,0,0,0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.bio-col-right {
  grid-column: 3;
  grid-row: 1 / 3;
  padding: 40px 0 64px 44px;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.bio-right-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.bio-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(0.82);
  transition: transform 0.9s ease;
}
.bio-right-img:hover img { transform: scale(1.04); }
.bio-venues-label {
  font-family: var(--font-body);
  font-size: 0.54rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 18px;
}
.bio-venues ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bio-venues ul li {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s, padding-left 0.3s;
  cursor: default;
}
.bio-venues ul li:hover { color: var(--white); padding-left: 8px; }

.bio-cta-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 14px 32px;
  transition: border-color 0.3s, background 0.3s;
  align-self: flex-start;
}
.bio-cta-btn:hover { border-color: var(--red); background: var(--red); }

.bio-marquee-strip {
  margin-top: 60px;
  overflow: hidden;
}
.bio-marquee-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  padding: 16px clamp(20px, 5vw, 80px) 6px;
}
.bio-marquee-track {
  display: flex;
  width: max-content;
  animation: bio-marquee 28s linear infinite;
}
.mq-set {
  display: inline-flex;
  align-items: center;
}
.club {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 2.2rem);
  letter-spacing: 8px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.12);
  white-space: nowrap;
  /* Se iluminan solas, en cascada */
  animation: clubGlow 7s linear infinite;
}
/* Separador · entre clubs (constante, no se anima) */
.club::after {
  content: '·';
  color: rgba(255,0,0,0.5);
  -webkit-text-stroke: 0;
  text-shadow: none;
  margin: 0 26px 0 32px;
}
/* Cascada: cada club se enciende 1s después del anterior */
.mq-set .club:nth-child(1) { animation-delay: 0s; }
.mq-set .club:nth-child(2) { animation-delay: 1s; }
.mq-set .club:nth-child(3) { animation-delay: 2s; }
.mq-set .club:nth-child(4) { animation-delay: 3s; }
.mq-set .club:nth-child(5) { animation-delay: 4s; }
.mq-set .club:nth-child(6) { animation-delay: 5s; }
.mq-set .club:nth-child(7) { animation-delay: 6s; }

@keyframes clubGlow {
  0%,  100% {
    color: transparent;
    -webkit-text-stroke-color: rgba(255,255,255,0.12);
    text-shadow: none;
  }
  7% {
    color: #fff;
    -webkit-text-stroke-color: transparent;
    text-shadow: 0 0 24px rgba(255,0,0,0.85), 0 0 8px rgba(255,255,255,0.5);
  }
  14% {
    color: #fff;
    -webkit-text-stroke-color: transparent;
    text-shadow: 0 0 24px rgba(255,0,0,0.85), 0 0 8px rgba(255,255,255,0.5);
  }
  22% {
    color: transparent;
    -webkit-text-stroke-color: rgba(255,255,255,0.12);
    text-shadow: none;
  }
}
@keyframes bio-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 991px) {
  /* Apilado limpio: el grid de 3 columnas pasa a flex-columna
     y se resetean las posiciones fijas que causaban el encime. */
  .bio-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .bio-name,
  .bio-col-left,
  .bio-col-center,
  .bio-col-right {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    width: 100%;
  }
  .bio-name {
    font-size: clamp(3.5rem, 17vw, 6rem);
    line-height: 0.9;
    padding-bottom: 8px;
  }
  .bio-col-left { padding: 12px 0 0; }
  .bio-text { max-width: 100%; }
  .bio-col-center { padding: 22px 0 8px; }
  .bio-col-right {
    padding: 28px 0 0;
    margin-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.06);
    gap: 20px;
  }
  .bio-ghost { display: none; }
}
@media (max-width: 576px) {
  .section-bio { padding-top: 120px; }
  .bio-photo-main,
  .bio-photo-overlay { height: 380px; }
  .bio-photo-accent { width: 46%; height: 130px; right: 0; }
}

/* ===== HA TOCADO JUNTO A — editorial grid ===== */
.section-junto {
  background: var(--black);
  padding: 90px 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.junto-top-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(24px, 5vw, 80px);
  margin-bottom: 64px;
}

.junto-eyebrow {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}

.junto-rule {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* 4-column artist grid */
.junto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.junto-card {
  padding: 40px clamp(20px, 3vw, 52px) 52px;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.junto-card:last-child { border-right: none; }

/* Subtle red corner glow on hover */
.junto-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(255,0,0,0.10) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.junto-card:hover::before { opacity: 1; }

.junto-num {
  display: block;
  font-family: var(--font-body);
  font-size: 0.63rem;
  letter-spacing: 4px;
  color: var(--red);
  opacity: 0.55;
  margin-bottom: 24px;
}

.junto-artist-name {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4vw, 6rem);
  line-height: 0.88;
  letter-spacing: 3px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
  margin: 0 0 44px;
  transition: color 0.35s ease, -webkit-text-stroke 0.35s ease;
}

.junto-card:hover .junto-artist-name {
  color: var(--white);
  -webkit-text-stroke: 0;
}

/* Red sweep line at bottom */
.junto-underline {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 100%;
  background: rgba(255,255,255,0.05);
}
.junto-underline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.junto-card:hover .junto-underline::after { transform: scaleX(1); }

/* Primera tarjeta SIEMPRE "encendida" (mismo look que el hover) */
.junto-card:first-child::before { opacity: 1; }
.junto-card:first-child .junto-artist-name {
  color: var(--white);
  -webkit-text-stroke: 0;
}
.junto-card:first-child .junto-underline::after { transform: scaleX(1); }

@media (max-width: 900px) {
  .junto-grid { grid-template-columns: repeat(2, 1fr); }
  .junto-card:nth-child(2) { border-right: none; }
  .junto-card:nth-child(3),
  .junto-card:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); }
}

@media (max-width: 520px) {
  .junto-grid { grid-template-columns: 1fr; }
  .junto-card { border-right: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .junto-card:first-child { border-top: none; }
  .junto-artist-name { font-size: clamp(3.5rem, 18vw, 5rem); }
}

/* ===== GALERÍA — animated-gallery (fiel al componente React/shadcn) ===== */
.section-galeria {
  position: relative;
  background: var(--black-2);
  padding-top: 110px;
  padding-bottom: 0;   /* sin hueco: Booking queda pegado a la galería */
  /* SIN overflow:hidden — rompería position:sticky en .galeria-sticky */
}

/* El título y las fotos van POR ENCIMA de los puntos.
   margin-top:-100vh cancela el espacio que reserva el sticky de .galeria-dots. */
.galeria-header-wrap {
  position: relative;
  z-index: 1;
  margin-top: -100vh;
  margin-bottom: 60px;
}

/* ContainerScroll: 350vh de scroll room para la animación */
.galeria-scroll-container {
  height: 240vh;
  position: relative;
  z-index: 1;
}

/* ContainerSticky: sticky 100svh */
.galeria-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 30rem;
  overflow: hidden;           /* clip contenido que sale del viewport */
  /* NOTA: perspective va aquí para que el rotateX del grid sea 3D */
  /* NO transform-style:preserve-3d aquí — overflow:hidden lo anularía */
}

/* Dotted surface — onda de puntos Three.js.
   Sticky: cubre la sección DESDE EL TÍTULO hacia abajo, siempre detrás de todo. */
.galeria-dots {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
.galeria-dots canvas { display: block; }

/* Capa de perspectiva 3D: wrapper sin overflow — POR ENCIMA de los puntos */
.galeria-perspective {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  perspective-origin: center top;
  transform-style: preserve-3d;
}

/* GalleryContainer: grid 3 cols, JS aplica rotateX+scale */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  /* SIN height:100% — columnas fluyen más allá del viewport (parallax) */
  border-radius: 16px;
  transform-style: preserve-3d;
  will-change: transform;
  transform: rotateX(75deg) scale(1.2);
}

/* GalleryCol: flex column, gap-2 */
.galeria-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  will-change: transform;
}

/* Col 1 & 3: -mt-2 (≈ -8px) */
#galeriaCol1,
#galeriaCol3 { margin-top: -8px; }

/* Col 2: mt-[-50%] — shifts column up 50% of container width */
#galeriaCol2 { margin-top: -50%; }

/* Tiles: portrait 4:5 — las fotos fuente son verticales (2:3),
   con anclaje superior para que la cabeza del DJ NUNCA se corte */
.galeria-img-wrap {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.galeria-img-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.galeria-img-wrap:hover img { transform: scale(1.05); }

/* Overlay + icono de ampliar al hover (indica que es clicable) */
.galeria-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(5,5,5,0.55) 0%, transparent 45%),
              radial-gradient(ellipse at 50% 120%, rgba(255,0,0,0.22) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.galeria-img-wrap:hover::before { opacity: 1; }

.galeria-zoom {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 2;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(5,5,5,0.35);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease, border-color 0.3s ease;
  pointer-events: none;
}
.galeria-img-wrap:hover .galeria-zoom {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4,4,4,0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lb-stage {
  margin: 0;
  max-width: 88vw;
  max-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-stage img {
  max-width: 88vw;
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 90px rgba(0,0,0,0.75), 0 0 60px rgba(255,0,0,0.10);
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.45s ease;
}
.lightbox.active .lb-stage img { transform: scale(1); opacity: 1; }

.lb-close,
.lb-nav {
  position: fixed;
  z-index: 2001;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.lb-close {
  top: 28px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}
.lb-close:hover { border-color: var(--red); color: var(--red); transform: rotate(90deg); }

.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  font-size: 1.3rem;
}
.lb-prev { left: 28px; }
.lb-next { right: 28px; }
.lb-nav:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }

.lb-counter {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2001;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.7);
}
.lb-counter #lbCurrent { color: var(--red); }

@media (max-width: 768px) {
  .lb-close { top: 18px; right: 18px; width: 42px; height: 42px; }
  .lb-nav { width: 44px; height: 44px; font-size: 1.1rem; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  .lb-stage, .lb-stage img { max-width: 94vw; max-height: 80vh; }
}

@media (max-width: 768px) {
  .galeria-scroll-container { height: 165vh; }
  .galeria-sticky { height: 100svh; }
  /* Tiles más altos (2/3) en móvil → las columnas llenan el stage y no dejan
     el gran hueco negro antes de la sección final */
  .galeria-img-wrap img { aspect-ratio: 2 / 3; }
  .section-booking { padding-top: 36px; }
}

/* ===== BOOKING ===== */
.section-booking {
  background: var(--black-2);
  position: relative;
  overflow: hidden;
  padding: 64px 0 90px;   /* pegado a la galería, sin hueco superior */
}

/* Gráfico decorativo sobre el eyebrow "Contrataciones" */
.booking-grafico {
  display: block;
  width: 62px;
  height: auto;
  margin: 0 auto 18px;
  opacity: 0.92;
  filter: drop-shadow(0 0 18px rgba(255, 0, 0, 0.25));
}
.booking-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,0,0,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.booking-subtitle {
  color: var(--gray);
  font-size: 0.88rem;
  margin-top: -20px;
  margin-bottom: 52px;
}
.form-label-dj {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}
.form-control-dj {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--white);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-control-dj:focus {
  border-color: var(--red);
  background: rgba(255,0,0,0.04);
}
.form-control-dj::placeholder { color: rgba(255,255,255,0.22); }
.form-control-dj option { background: var(--black-3); color: var(--white); }
textarea.form-control-dj { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
.dj-footer {
  background: #030303;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 64px 0 36px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-logo img { height: 40px; width: auto; }
.footer-social { display: flex; gap: 20px; }
.footer-social a { font-size: 1.25rem; color: var(--gray); transition: var(--transition); }
.footer-social a:hover { color: var(--red); transform: translateY(-2px); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: var(--gray); font-size: 0.78rem; margin: 0; }
.footer-email { color: var(--gray); font-size: 0.78rem; transition: color 0.3s; }
.footer-email:hover { color: var(--red); }

/* ===== WHATSAPP ===== */
.wa-container { position: fixed; bottom: 28px; right: 28px; z-index: 900; }

.wa-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  border: none;
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }

.wa-popup {
  position: absolute;
  bottom: 68px; right: 0;
  width: 305px;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.wa-popup.active { opacity: 1; transform: translateY(0); pointer-events: all; }

.wa-popup-header {
  background: #075E54;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.wa-popup-header strong { display: block; font-size: 0.88rem; }
.wa-online { font-size: 0.68rem; opacity: 0.75; display: block; }
.wa-close {
  margin-left: auto;
  background: none; border: none;
  color: var(--white); font-size: 1.1rem;
  cursor: pointer; opacity: 0.65;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.wa-close:hover { opacity: 1; }

.wa-body { padding: 16px; }
.wa-body p {
  background: rgba(255,255,255,0.06);
  padding: 12px 14px;
  font-size: 0.84rem;
  color: var(--gray-light);
  margin: 0;
  border-radius: 2px;
}
.wa-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: #25D366;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 600;
  transition: background 0.3s;
}
.wa-send:hover { background: #1ebe5c; color: var(--white); }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 44px; height: 44px;
  background: rgba(255,0,0,0.08);
  border: 1px solid rgba(255,0,0,0.25);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 800;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,0,0,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .bio-img-wrapper { max-height: 440px; }
  .bio-stats { gap: 32px; }
}

@media (max-width: 768px) {
  .dj-nav { padding: 18px 24px; }
  .dj-nav.scrolled { padding: 14px 24px; }
  .nav-close { right: 24px; }
  section { padding: 80px 0; }
  .section-title { margin-bottom: 28px; }
  .section-header { margin-bottom: 44px; }

  .hero-bg { width: 100%; }
  .hero-bg img {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 35%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 35%);
    opacity: 0.28;
    object-position: 55% center;
  }
  .hero-content {
    text-align: center;
    max-width: 100%;
    padding: 0 20px 160px;
  }
  .hero-meta-tag { display: none; }
  .hero-bottom-bar { gap: 24px; padding: 14px 20px 28px; }
  .hbi-value { font-size: 0.8rem; }
  .hero-title { letter-spacing: 2px; }
  .hero-cta { flex-direction: column; align-items: center; }

  .bio-stats { gap: 20px; flex-wrap: wrap; }
  .stat-number { font-size: 2.4rem; }

  .evento-item { flex-wrap: wrap; gap: 16px; padding: 22px 0; }
  .evento-hora { min-width: auto; text-align: left; }

  .galeria-swiper .swiper-slide { width: 260px; }

  .footer-top { flex-direction: column; align-items: center; gap: 24px; }
  .footer-logo img { height: 48px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
}

@media (max-width: 480px) {
  .dj-nav { padding: 16px 20px; }
  .nav-close { top: 20px; right: 20px; }

  .hero-scroll-indicator { bottom: 24px; }

  .btn-primary-dj, .btn-ghost-dj { padding: 12px 32px; }
  .btn-primary-dj.btn-large { padding: 16px 48px; }

  .bio-stats { gap: 16px; }

  .evento-btn { padding: 8px 18px; }

  .wa-container { bottom: 16px; right: 16px; }
  .wa-popup { width: 280px; }
  .back-top { bottom: 16px; left: 16px; }
}
