:root {
  --bg: #05070d;
  --fg: #f3f4f6;
  --muted: #9aa3b2;
  --brand: #22c55e;
  /* verde cobre */
  --brand2: #0ea5e9;
  /* azul neón */
  --accent: #f59e0b;
  /* cobre cálido */
  --border: rgba(255, 255, 255, .08);
  --glass: rgba(10, 15, 26, .55);
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .5);
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(5, 7, 13, .9), rgba(5, 7, 13, 0.692), transparent)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 999px
}

.brand b {
  letter-spacing: .6px
}

.menu {
  display: flex;
  gap: 18px;
  align-items: center
}

.menu a {
  opacity: .9;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent
}

.menu a:hover {
  border-color: var(--border);
  opacity: 1;
  background: rgb(28, 117, 113)
}

.btn {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #041114;
  border: none;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  box-shadow: var(--shadow)
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: #eaf9f0;
  box-shadow: none
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 76vh;
  padding: 80px 0;
  background: url('./assets/bg-aurora.svg') center/cover no-repeat;
  overflow: hidden
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('./assets/noise.svg');
  mix-blend-mode: soft-light;
  opacity: .2;
  pointer-events: none
}

.glass {
  backdrop-filter: blur(10px);
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 36px;
  display: grid;
  gap: 14px;
  text-align: center;
  width: min(900px, 92vw)
}

.title {
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.06;
  margin: 0
}

.subtitle {
  color: var(--muted);
  margin: 4px 0 10px
}

.pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px
}

.pill {
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 14px;
  color: #d1fae5;
  background: rgba(34, 197, 94, .09)
}

.grid {
  display: grid;
  gap: 18px
}

.grid.cards {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))
}

.card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow)
}

.card h3 {
  margin: .2rem 0 .5rem 0
}

.section {
  padding: 70px 0
}

.section h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin: 0 0 18px
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  color: #a2b1c2
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px
}

.flex {
  display: flex;
  gap: 10px;
  align-items: center
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px
}

.row>* {
  flex: 1 1 300px
}

audio {
  width: 100%
}

.badge {
  font-size: 12px;
  opacity: .85;
  color: #c7f9cc
}

hr.sep {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  margin: 24px 0
}

/* Responsive menu */
#mobileToggle {
  display: none
}

@media (max-width:760px) {
  .menu a {
    display: none
  }

  #mobileToggle {
    display: inline-flex
  }

  #mobileMenu {
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0
  }

  #mobileMenu a {
    display: block;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, .03)
  }
}

/* Neon divider glow */
.neon {
  box-shadow: 0 0 24px rgba(14, 165, 233, .6), inset 0 0 12px rgba(34, 197, 94, .25);
  border: 1px solid rgba(14, 165, 233, .35)
}


/* HERO — versión más llamativa */
.hero-loud {
  min-height: 86vh;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  filter: contrast(105%) saturate(120%) blur(1px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* capa 1: fundido negro superior */
    linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 20%, transparent 40%),

    /* capa 2: aurora verde */
    radial-gradient(1200px 500px at 50% 20%, rgba(34, 197, 94, 0.28), transparent 65%),

    /* capa 3: aurora azul */
    radial-gradient(1000px 420px at 60% 70%, rgba(14, 165, 233, 0.32), transparent 70%);

  pointer-events: none;
  z-index: 1;
}


.hero-content {
  padding: 42px 28px;
}

.bandmark {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.band-logo {
  width: 64px;
  height: 64px;
  border-radius: 999px;
}

.tag {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
  color: #c7f9cc
}

.display {
  margin: 8px 0 2px;
  line-height: 0.95;
  font-size: clamp(44px, 9vw, 96px);
  font-weight: 900;
  letter-spacing: .02em;
  background: linear-gradient(90deg, #eafff5, #d1fae5, #a7f3d0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(16, 185, 129, .25);
}

.display .accent {
  color: transparent;
  background: linear-gradient(90deg, #22c55e, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
}

.display .stroke {
  display: block;
  margin-top: 4px;
  font-size: clamp(16px, 3vw, 28px);
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .9;
  color: #f59e0b;
  filter: drop-shadow(0 0 12px rgba(245, 158, 11, .35));
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px
}

.btn-pulse {
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .55)
  }

  50% {
    transform: translateY(-1px);
    box-shadow: 0 0 32px 2px rgba(14, 165, 233, .35)
  }
}

/* Marquesina */
.ticker {
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 999px;
  margin: 18px auto 0;
  background: rgba(255, 255, 255, .03)
}

.ticker__inner {
  display: inline-block;
  padding: 10px 0;
  white-space: nowrap;
  animation: marquee 16s linear infinite;
  color: #d1fae5;
  letter-spacing: .12em;
  text-transform: uppercase
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.ticker:hover .ticker__inner {
  animation-play-state: paused
}

/* Redes */
.socials {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 14px;
  opacity: .95
}

.socials a {
  color: #e2fff3;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform .15s, box-shadow .2s, border-color .2s
}

.socials a:hover {
  transform: translateY(-1px);
  border-color: var(--border);
  box-shadow: 0 0 22px rgba(34, 197, 94, .25)
}

/* === PROYECTO ISABELLÍSIMA — HERO RETRO-SCI-FI === */
:root {
  --bg: #0a0c0f;
  --fg: #f4f2ea;
  --muted: #a8a293;
  --paper: #cfc8bb;
  --warning: #b93d3d;
  --border: rgba(0, 0, 0, .22);
  --shadow: 0 24px 60px rgba(0, 0, 0, .55)
}

.hero-isabellisima {
  min-height: 88vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden
}

.hero-isabellisima .paper {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .85;
  mix-blend-mode: screen;
  background: url('./assets/paper.svg') center/cover no-repeat;
}

.hero-isabellisima .scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  mix-blend-mode: multiply;
  background: url('./assets/scanlines.svg') repeat;
}

.hero-isabellisima .vignette {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  background: radial-gradient(80% 60% at 50% 40%, transparent, rgba(0, 0, 0, .72));
}

.hero-isabellisima .content {
  position: relative;
  z-index: 2;
  width: min(1000px, 92vw);
  margin: auto;
  padding: 34px;
  background: rgba(207, 200, 187, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  box-shadow: var(--shadow)
}

.hero-head {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px
}

.badge {
  font-family: monospace;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #111;
  background: var(--paper);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border)
}

.codebar {
  font-family: monospace;
  font-size: 13px;
  letter-spacing: .18em;
  color: #111;
  background: #d9d3c7;
  padding: 6px 10px;
  border-radius: 6px
}

.title {
  margin: 0;
  line-height: .9;
  font-weight: 900;
  letter-spacing: .01em;
  font-size: clamp(44px, 9vw, 104px);
  color: var(--fg);
  text-shadow: 0 6px 0 rgba(0, 0, 0, .28), 0 0 32px rgba(46, 125, 105, .25);
}

.tagline {
  font-family: monospace;
  color: #e8e3d6;
  opacity: .95;
  margin: 6px 0 12px
}

.pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px
}

.pill {
  border: 1px dashed rgba(255, 255, 255, .18);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--fg);
  background: rgba(0, 0, 0, .15)
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px
}

.btn {
  background: #e6ded1;
  color: #101112;
  border: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: var(--shadow)
}

.btn:hover {
  transform: translateY(-1px)
}

.btn.ghost {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, .18);
  color: var(--fg);
  box-shadow: none
}

.btn.warn {
  background: var(--warning);
  color: #fff
}

.btn.scan {
  position: relative
}

.btn.scan:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .25), transparent 60%);
  mix-blend-mode: overlay;
  animation: scan 2.2s linear infinite;
  opacity: .35
}

@keyframes scan {
  from {
    transform: translateX(-100%)
  }

  to {
    transform: translateX(100%)
  }
}

.stamp {
  position: absolute;
  right: 18px;
  bottom: -18px;
  width: 140px;
  opacity: .92;
  transform: rotate(-12deg)
}

.ticker {
  overflow: hidden;
  width: 100%;
  border: 1px dashed rgba(255, 255, 255, .2);
  border-radius: 12px;
  margin: 18px 0 0;
  background: rgba(0, 0, 0, .18)
}

.ticker__inner {
  display: inline-block;
  padding: 10px 0;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  color: #e6ded1;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: monospace
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.ticker:hover .ticker__inner {
  animation-play-state: paused
}

/* Iconos en botones y listas */
.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: -2px
}

/* Botones con icono (Música) */
.links-icons .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

/* Lista de redes (Contacto) */
.socials-list {
  display: grid;
  gap: 10px
}

.socials-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
}

.socials-list li a:hover {
  border-color: rgba(255, 255, 255, .18)
}

.socials-list .icon {
  width: 20px;
  height: 20px;
  margin-right: 6px
}

/* 🎥 Fondo de video para Proyecto Isabellísima */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45; /* Ajusta opacidad para mezclar con texturas */
  filter: contrast(1.1) brightness(0.9) saturate(1.2);
}

/* Asegura que las capas y el contenido queden arriba */
.hero-isabellisima .paper,
.hero-isabellisima .scan,
.hero-isabellisima .vignette,
.hero-isabellisima .content {
  position: relative;
  z-index: 1;
}

.crt-overlay {
  position:absolute;inset:0;z-index:1;
  background:repeating-linear-gradient(
    rgba(0,0,0,0.15) 0 2px,
    transparent 2px 4px
  );
  mix-blend-mode:overlay;
  pointer-events:none;
}

/* Fade-out del hero en el borde inferior */
.hero-isabellisima{
  position: relative;
  /* máscara: opaco arriba → transparente abajo */
  -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
}

/* Si prefieres no usar mask, agrega una "costura" extra: */
.seam-fade{
  height: 160px;
  margin-top: -160px; /* solapa el final del hero */
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(10,12,15,0) 0%, #05070d 60%, #05070d 100%);
}


