:root {
  --bg: #0a0a0b;
  --bg-soft: rgba(255, 255, 255, 0.03);
  --card: rgba(255, 255, 255, 0.05);
  --card-strong: #111214;
  --text: #f5f7fa;
  --muted: #a0a7b4;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #ffffff;
  --accent-dark: #0b0b0c;
  --success: #8ef0be;
  --container: 1180px;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.35);
  --transition: 220ms ease;
  --font-main: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.14), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.07), transparent 22%),
    linear-gradient(180deg, #09090a 0%, #0c0d10 100%);
}

/* === BLOQUE AUDIO WIDGET ROJO === */

.zzz_audio_card {
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(25,5,8,0.96), rgba(40,8,12,0.98));
  border: 1px solid rgba(255,80,80,0.15);
  box-shadow: 0 18px 45px rgba(0,0,0,0.5);
  padding: 18px 18px 16px;
}

.zzz_audio_header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.zzz_audio_title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffeaea;
}

.zzz_audio_tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ff9aa2;
}

.zzz_audio_body {
  font-size: 0.9rem;
  color: #ffcfcf;
  line-height: 1.5;
}

.zzz_audio_btn {
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(60,10,15,0.9);
  border: 1px solid rgba(255,100,100,0.25);
  color: #ffb3b3;
  text-decoration: none;
  transition: all 0.2s ease;
}

.zzz_audio_btn:hover {
  color: #fff;
  border-color: rgba(255,120,120,0.5);
  background: rgba(80,15,20,0.95);
  box-shadow: 0 0 12px rgba(255,80,80,0.3);
}

/* EMBED */
.zzz_audio_embed {
  margin-top: 10px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,100,100,0.2);
  background: #120406;
}

/* LINKS */
.zzz_audio_links {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.zzz_audio_link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.2s;
}

/* colores por plataforma (ligeramente integrados al rojo) */
.zzz_spotify { color: #ff6b6b; }
.zzz_apple { color: #ffd6d6; }
.zzz_youtube { color: #ff3b3b; }

.zzz_audio_link:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 8vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  font-size: 16px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 11, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.title-link {
  text-decoration: none;
  color: inherit;
}

.brand-kicker {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  font-size: 14px;
  color: #dfe4ec;
  transition: color var(--transition);
}

.nav a:hover {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}

.hero-text {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 600;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-dark);
}

.btn-primary:hover {
  background: #e9edf3;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 640px;
}

.stat-card {
  padding: 22px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.stat-card strong {
  display: block;
  font-size: 32px;
  margin-bottom: 6px;
  color: var(--text);
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.portrait-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card-strong);
  box-shadow: var(--shadow-lg);
}

.portrait-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.portrait-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.portrait-label {
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.portrait-info h2 {
  font-size: 22px;
  line-height: 1.2;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(142, 240, 190, 0.08);
  border: 1px solid rgba(142, 240, 190, 0.22);
  color: var(--success);
  font-size: 12px;
  white-space: nowrap;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-text {
  max-width: 530px;
  line-height: 1.75;
}

.cards-grid {
  display: grid;
  gap: 22px;
}

.cards-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.video-card,
.social-card,
.info-card {
  border: 1px solid var(--line);
  background: var(--card);
}

.video-card {
  overflow: hidden;
  border-radius: 28px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
}

.video-thumb {
  position: relative;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.04);
}

.video-body {
  padding: 22px;
}

.video-body p {
  margin-bottom: 0;
  line-height: 1.7;
}

.play-btn {
  position: absolute;
  left: 18px;
  bottom: 18px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #0b0c0d;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}

.video-duration {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(9, 9, 10, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 12px;
  z-index: 2;
}

/* =========================
   SCHEDULE / FUNCIONES
========================= */

.bio-schedule {
  margin-top: 1.35rem;
}

.schedule-title {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  font-weight: 700;
}

/* LISTA */
.schedule-list {
  display: flex;
  flex-direction: column;
}

/* ITEM */
.schedule-item {
  display: grid;
  grid-template-columns: 48px 1fr 84px;
  gap: 0.55rem;
  align-items: center;

  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================
   CALENDARIO ULTRA COMPACTO
========================= */

.calendar-badge {
  position: relative;
  width: 44px;
  border-radius: 4px;
  overflow: hidden;

  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

  flex-shrink: 0;
}

/* GANCHOS */
.calendar-badge::before,
.calendar-badge::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 4px;
  height: 7px;
  background: #666;
  border-radius: 1px;
  z-index: 2;
}

.calendar-badge::before {
  left: 9px;
}

.calendar-badge::after {
  right: 9px;
}

/* MES */
.calendar-top {
  background: #ea0029;
  color: #fff;

  text-align: center;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;

  padding: 0.22rem 0 0.18rem;
  text-transform: uppercase;
}

/* DIA */
.calendar-bottom {
  background: #f5f5f5;
  color: #111;

  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;

  padding: 0.32rem 0 0.34rem;

  border-top: 1px solid #e3e3e3;
}

/* =========================
   INFO
========================= */

.schedule-info {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.schedule-datetime {
  margin: 0;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.08;
  letter-spacing: 0.1px;
}

.schedule-address {
  margin: 0;
  opacity: 0.72;
  font-size: 0.7rem;
  line-height: 1.08;
}

/* =========================
   ENTRADAS
========================= */

.schedule-ticket {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.schedule-ticket img {
  max-width: 82px;
  max-height: 24px;
  width: auto;
  height: auto;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.schedule-ticket a:hover img {
  transform: scale(1.04);
  opacity: 0.95;
}

/* SIN ENTRADAS */
.schedule-soon {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.62;
  text-align: right;
  line-height: 1.05;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .schedule-item {
    grid-template-columns: 44px 1fr;
    gap: 0.55rem;
  }

  .schedule-ticket {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-left: calc(44px + 0.55rem);
    margin-top: 0.1rem;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-mini {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px; /* menos espacio */
}

.gallery-mini {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}

.gallery-mini .gallery-item {
  margin: 0;
  padding: 0;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--card-strong);
}

.gallery-mini .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--card-strong);
}

.gallery-item img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.bio-left,
.bio-right {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.bio-left {
  background: var(--card);
  padding: 34px;
}

.bio-right {
  background: var(--card-strong);
  padding: 34px;
}

.bio-right p {
  line-height: 1.9;
  font-size: 17px;
}

.bio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.info-card {
  border-radius: 22px;
  padding: 22px;
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.info-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
}

.social-card {
  display: block;
  border-radius: 24px;
  padding: 26px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

.social-label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.social-card strong {
  font-size: 22px;
  line-height: 1.2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: start;
}

.contact-copy,
.contact-form {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.contact-copy {
  background: var(--card);
  padding: 34px;
}

.contact-copy p:last-child {
  margin-bottom: 0;
  line-height: 1.85;
}

.contact-form {
  background: var(--card-strong);
  padding: 34px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.form-row label {
  font-size: 14px;
  font-weight: 600;
  color: #eef2f8;
}

.form-row input,
.form-row textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #808897;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.form-note {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 14px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.footer p,
.footer a {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.footer a:hover {
  color: #ffffff;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
}

.video-modal.active {
  display: block;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 8, 0.82);
  backdrop-filter: blur(4px);
}

.video-modal-content {
  position: relative;
  width: min(calc(100% - 32px), 980px);
  margin: 60px auto 0;
  background: #0f1013;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

.video-modal-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 20px;
  background: #000000;
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-modal-content h3 {
  margin: 16px 0 4px;
}

.social-ultra {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.social-box {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 72px;
  height: 72px;

  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);

  transition: all var(--transition);
}

.social-box img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.85;

  transition: all var(--transition);
}

.social-box:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.social-box:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.bio-left.bio-poster {
  position: relative;

min-height: 350px;
padding: 0; /* 🔴 clave */
  border: none; /* 🔴 clave */
  background: none; /* 🔴 clave */

  overflow: hidden;
  border-radius: 20px;
}

/* imagen full */
.bio-left.bio-poster img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
    object-position: center top; /* 🔥 clave */

}

/* overlay degradado */
.bio-left.bio-poster::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.05) 100%
  );

  z-index: 1;
}

/* texto */
.bio-poster-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;

  z-index: 2;
}

.bio-poster h2 {
  color: #fff;
  margin: 0;
}

.bio-poster .eyebrow {
  color: rgba(255,255,255,0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 80ms;
}

.delay-2 {
  transition-delay: 160ms;
}

.delay-3 {
  transition-delay: 240ms;
}

@media (max-width: 1100px) {
  .hero-grid,
  .bio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .cards-grid-4,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portrait-card img {
    height: 540px;
  }
   .gallery-mini {
    grid-template-columns: repeat(4, 1fr);
  }
  
.gallery-main .gallery-item img {
  aspect-ratio: 16 / 10;
}
    
}

@media (max-width: 820px) {
  .section {
    padding: 78px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
  }
  .gallery-mini {
    grid-template-columns: repeat(2, 1fr); /* 👈 lo que pediste */
}
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(12, 13, 16, 0.97);
    border: 1px solid var(--line);
    border-radius: 20px;
  }

  .nav.open {
    display: flex;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats,
  .bio-cards,
  .cards-grid-3,
  .cards-grid-4,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .portrait-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .portrait-card img {
    height: 460px;
  }

  .video-thumb img {
    height: 280px;
  }

  .gallery-item img {
    height: 320px;
  }

  .video-modal-content {
    margin-top: 24px;
    padding: 16px;
    border-radius: 22px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero-text,
  .bio-right p,
  .contact-copy p:last-child,
  .section-text {
    font-size: 15px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .stat-card strong {
    font-size: 28px;
  }

  .bio-left,
  .bio-right,
  .contact-copy,
  .contact-form {
    padding: 24px;
  }

  .video-body,
  .social-card,
  .info-card {
    padding: 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}