body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: white;
}

.music-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;

  background: rgba(0,0,0,0.7);
  color: white;
  border: 1px solid #333;
  padding: 10px 14px;
  font-size: 0.8rem;
  cursor: pointer;
  z-index: 1000;
}


/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.9)
    ),
    url("images/poster.jpeg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero h1 {
    font-family: 'Anton', sans-serif;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1px;
}

.hero h2 {
    font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 3vw, 1.4rem);
  letter-spacing: 4px;
  opacity: 0.85;
  margin-top: 0;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #c40000;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
}

.hero .btn {
    margin: 10px 14px;
  display: flex;
 gap: 16px;
 justify-content: center;
 flex-wrap: wrap;
}

.btn-secondary {
border-color: #ffffff;
color: #ffffff;
opacity: 0.9;
}

.btn-secondary: hover {
    background: rgba(255,255,255,0.15)
}

/* FECHAS */
.fechas {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

.fechas h3 {
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 3px;
}

.fecha {
  display: flex;
  align-items: center;
  background: #111;
  border: 1px solid #222;
  padding: 18px;
  margin-bottom: 15px;
  gap: 16px;
}

/* DIA */
.dia {
  background: #c62828;
  color: white;
  font-size: 1.4rem; /* 🔽 reducido */
  font-weight: bold;
  padding: 8px 1px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-width: 64px;
}

/* INFO */
.info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0; /* CLAVE para que no choque */
}

.info h4 {
  margin: 0;
  font-size: 1.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info p {
  margin: 0;
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.3;
}

/* BOTÓN */
.comprar {
  margin-left: auto;
  background: #c40000;
  color: white;
  padding: 12px 18px; /* 🔽 más compacto */
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 📱 MOBILE */

@media (max-width: 480px) {

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }  
  .fecha {
    padding: 14px;
  }

  .dia {
    font-size: 1.0rem;
    width: 10px;
    height: 30px;
  }

  }

  .info h4 {
    font-size: 1rem;
  }

  .info p {
    font-size: 0.85rem;
  }

 .comprar {
    padding: 8px 10px;
    font-size: 0.75rem;
    line-height: 1.1;
    text-align: center;
  }