/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* FUNDO BORRADO */
body {
  min-height: 100vh;
  color: #fff;
  background: #000;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("marina.jpeg");
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  opacity: 0.4;
  z-index: -1;
}

/* BANNER */
.banner {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-text {
  background: rgba(0, 0, 0, 0.45);
  padding: 30px 50px;
  border-radius: 18px;
}

.banner h1 {
  font-size: 3rem;
}

.banner p {
  margin-top: 10px;
  font-weight: 300;
}

/* MENU */
nav {
  background: #181818;
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover,
nav a.ativo {
  color: #e100ff;
}

/* CONTEÚDO */
.conteudo {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.conteudo h2 {
  margin-bottom: 30px;
}

/* ÁLBUM */
.album {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 25px;
}

/* CABEÇALHO DO ÁLBUM */
.album-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.album-header img {
  width: 72px;
  height: 72px;
  object-fit: contain; /* NÃO CORTA */
  background: #000;
  border-radius: 10px;
}

.album-info h3 {
  font-size: 1.5rem;
}

.album-info p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* TRACKLIST */
.tracklist {
  display: flex;
  flex-direction: column;
}

.track {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s;
}

.track:hover {
  background: #262626;
}

.track-num {
  opacity: 0.6;
  text-align: right;
}

.track-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* FOOTER */
footer {
  background: #181818;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}
