.espacio {
  height: 40px;
}

.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
    background-color: #111;
    box-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

main {
    margin-top: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #0e0e0e;
    color: #eaeaea;
    line-height: 1.6;
}


header {
    height: 895px;
    background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0)),
    url("img/header.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    text-align: center;
    padding: 80px 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* centra verticalmente */
    align-items: center;     /* centra horizontalmente */
    text-align: center;
}

header h1 {
    font-size: 3.5rem;
    letter-spacing: 4px;
}

header h4 {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #aaa;
}

nav {
    position: sticky;
    top: 0;
    z-index: 3000;
    background-color: #111;
    padding: 15px 0;
    text-align: center;
}

nav a {
    color: #eaeaea;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #e63946;
}

section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    border-left: 5px solid #e63946;
    padding-left: 15px;
}

.about p {
    color: #ccc;
}

.music ul {
    list-style: none;
}

.music li {
    background-color: #1a1a1a;
    margin-bottom: 10px;
    padding: 15px;
    border-left: 4px solid #e63946;
}

footer {
    background-color: #000;
    text-align: center;
    padding: 30px 20px;
    color: #777;
    font-size: 0.9rem;
}

.music a {
    color: #eaeaea;
    text-decoration: none;
    font-weight: bold;
    display: block;
}

.lista-musica {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 0 auto;
}

.lista-musica li {
  margin-bottom: 15px;
}

.lista-musica a {
  display: block;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.lista-musica a:hover {
  background: #1db954; /* verde Spotify */
  color: #000;
  transform: translateX(5px);
}

.lista-musica .disco a {
  background: rgba(29, 185, 84, 0.2);
  font-weight: bold;
}

.contact a {
    color: #eaeaea;
    text-decoration: none;
    font-weight: bold;
    display: block;
}

.contact a:hover {
    color: #1db954;
}

.dates a {
    color: #eaeaea;
    text-decoration: none;
    font-weight: bold;
    display: block;
    list-style: none;
    padding: 0;
    max-width: 500px;
    margin: 0 auto;
}

.dates a:hover {
    color: #1db954;
}

.contacto,
.fechas {
  max-width: 500px;
  margin: 80px auto;
  text-align: center;
}

.lista-contacto,
.lista-fechas {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.lista-contacto li,
.lista-fechas li {
  margin-bottom: 12px;
}

.lista-contacto a,
.lista-fechas a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.lista-contacto a:hover,
.lista-fechas a:hover {
  color: #1db954; /* verde Spotify */
}
