body {
  background: #111; /* fundo escuro neutro */
  color: #e0e0e0;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Barras */
.barra-topo, .barra-fim {
  background: #222;
  text-align: center;
  padding: 12px 0;
  font-weight: bold;
  color: #ccc;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}

/* Card */
.card {
  background: #1a1a1a;
  color: #fff;
  border-radius: 8px;
  margin: 30px auto;
  padding: 20px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #333;
  box-shadow: 0 0 10px #000;
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.01);
}

/* Cabeçalho */
.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  object-fit: cover;
  border: 2px solid #555;
}

/* Texto da banda */
.texto-banda h2 {
  margin: 0;
  font-size: 22px;
  color: #fff;
}

.texto-banda p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #aaa;
}

/* Conteúdo */
.card-conteudo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

/* Slideshow */
.slide-imagens {
  position: relative;
  width: 300px;
  height: 200px;
  overflow: hidden;
  border: 1px solid #444;
  border-radius: 6px;
  box-shadow: 0 0 8px #000;
}

.slide-imagens img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide-imagens img.active {
  opacity: 1;
}

/* Lista de músicas */
.lista-musicas h3 {
  margin-bottom: 10px;
  color: #ccc;
}

.lista-musicas ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lista-musicas li {
  cursor: pointer;
  color: #eee;
  padding: 6px;
  border-radius: 4px;
  transition: all 0.3s;
  text-align: center;
  background: #222;
  border: 1px solid #333;
}

.lista-musicas li:hover,
.lista-musicas li.active {
  color: #fff;
  background: #333;
  border: 1px solid #555;
}

/* Player */
.player {
  text-align: center;
}

audio {
  width: 85%;
  border: 1px solid #444;
  border-radius: 6px;
  background: #222;
  box-shadow: inset 0 0 6px #000;
}

/* Texto final */
.descricao {
  text-align: center;
  color: #bbb;
  font-size: 15px;
  line-height: 1.6;
  margin: 25px auto;
  max-width: 800px;
}

/* Título de contato */
h2 {
  text-align: center;
  color: #ccc;
  margin-top: 30px;
}

/* Ícones sociais */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px auto;
}

.social-links img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #555;
  object-fit: cover;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-links img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #444;
}
