body {
  background: #000; /* fundo preto */
  color: #fff;      /* texto branco */
  font-family: 'Orbitron', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Barras */
.barra-topo, .barra-fim {
  background: linear-gradient(90deg, #000, #001f3f, #7f0000); /* preto + azul + vermelho */
  text-align: center;
  padding: 12px 0;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 12px #00f, 0 0 12px #f00;
  box-shadow: inset 0 0 15px #00f, 0 0 20px #f00;
}

/* Card */
.card {
  background: rgba(20, 20, 20, 0.95);
  border-radius: 12px;
  margin: 30px auto;
  padding: 25px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid #00f; /* azul neon */
  box-shadow: 0 0 25px #f00, inset 0 0 15px #00f;
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px #00f, inset 0 0 15px #f00;
}

/* Cabeçalho */
.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f00;
  box-shadow: 0 0 20px #00f;
}

/* Texto da banda */
.texto-banda h2 {
  margin: 0;
  font-size: 24px;
  color: #fff;
  text-shadow: 0 0 12px #00f, 0 0 12px #f00;
}

.texto-banda p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #ccc;
}

/* Conteúdo */
.card-conteudo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Slideshow */
.slide-imagens {
  position: relative;
  width: 320px;
  height: 220px;
  overflow: hidden;
  border: 2px solid #f00;
  box-shadow: 0 0 20px #00f, inset 0 0 10px #f00;
  border-radius: 10px;
}

.slide-imagens img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide-imagens img.active {
  opacity: 1;
}

/* Lista de músicas */
.lista-musicas h3 {
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 0 10px #00f;
}

.lista-musicas ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lista-musicas li {
  cursor: pointer;
  color: #fff;
  padding: 6px;
  border-radius: 6px;
  transition: all 0.3s;
  text-align: center;
  background: #111;
  box-shadow: inset 0 0 10px #00f;
}

.lista-musicas li:hover,
.lista-musicas li.active {
  color: #fff;
  background: #222;
  box-shadow: 0 0 15px #f00, inset 0 0 10px #00f;
  transform: scale(1.1);
}

/* Player */
audio {
  width: 85%;
  border: 2px solid #00f;
  border-radius: 10px;
  box-shadow: 0 0 20px #f00, inset 0 0 10px #00f;
  background: #000;
}

/* Texto final */
.descricao {
  text-align: center;
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  margin: 30px auto;
  max-width: 800px;
  text-shadow: 0 0 10px #00f;
}

/* Título de contato */
h2 {
  text-align: center;
  color: #fff;
  margin-top: 40px;
  text-shadow: 0 0 12px #f00, 0 0 12px #00f;
}

/* Ícones sociais */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 20px auto;
}

.social-links img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #00f;
  box-shadow: 0 0 20px #f00, inset 0 0 10px #00f;
  object-fit: cover;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-links img:hover {
  transform: scale(1.2) rotate(5deg);
  box-shadow: 0 0 30px #00f, 0 0 20px #f00;
}
