body {
  background: linear-gradient(180deg, #2b2b2b, #1a1a1a); /* pedra escura */
  color: #f5f5f5;
  font-family: 'Georgia', serif;
  margin: 0;
  padding: 0;
}

/* Barras */
.barra-topo, .barra-fim {
  background: linear-gradient(90deg, #4b2e2e, #2b2b2b); /* madeira + pedra */
  text-align: center;
  padding: 12px 0;
  font-weight: bold;
  color: #e0c097; /* tom dourado suave */
  text-shadow: 0 0 8px #000;
  box-shadow: inset 0 0 10px #1a1a1a, 0 0 15px #4b2e2e;
  border-top: 2px solid #3c3c3c;
  border-bottom: 2px solid #3c3c3c;
}

/* Card */
.card {
  background: linear-gradient(145deg, #3c2f2f, #2b2b2b); /* madeira escura */
  border-radius: 12px;
  margin: 30px auto;
  padding: 25px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid #5a3e2e; /* madeira polida */
  box-shadow: 5px 5px 15px #000, inset -3px -3px 8px #444;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px #e0c097, inset 0 0 10px #5a3e2e;
}

/* Cabeçalho */
.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 110px;
  height: 110px;
  border-radius: 8px;
  object-fit: cover;
  border: 3px solid #5a3e2e;
  box-shadow: 0 0 15px #000, inset 0 0 8px #3c3c3c;
}

/* Texto da banda */
.texto-banda h2 {
  margin: 0;
  font-size: 24px;
  color: #e0c097; /* dourado suave */
  text-shadow: 0 0 10px #1a1a1a;
}

.texto-banda p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #c0a080; /* tom madeira clara */
}

/* Slideshow */
.slide-imagens {
  position: relative;
  width: 320px;
  height: 220px;
  overflow: hidden;
  border: 2px solid #5a3e2e;
  box-shadow: inset 0 0 10px #3c3c3c, 0 0 15px #000;
  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: #e0c097;
  text-shadow: 0 0 8px #000;
}

.lista-musicas ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lista-musicas li {
  cursor: pointer;
  color: #eee;
  padding: 6px;
  border-radius: 6px;
  transition: all 0.3s;
  text-align: center;
  background: #2b2b2b;
  border: 1px solid #3c3c3c;
  box-shadow: inset 0 0 8px #1a1a1a;
}

.lista-musicas li:hover,
.lista-musicas li.active {
  color: #e0c097;
  background: #3c2f2f;
  box-shadow: 0 0 12px #e0c097, inset 0 0 8px #5a3e2e;
}

/* Player */
audio {
  width: 85%;
  border: 2px solid #5a3e2e;
  border-radius: 8px;
  box-shadow: 0 0 15px #000, inset 0 0 10px #3c3c3c;
  background: #222;
}

/* Texto final */
.descricao {
  text-align: center;
  color: #bbb;
  font-size: 16px;
  line-height: 1.6;
  margin: 30px auto;
  max-width: 800px;
  text-shadow: 0 0 8px #1a1a1a;
}

/* Título de contato */
h2 {
  text-align: center;
  color: #e0c097;
  margin-top: 40px;
  text-shadow: 0 0 10px #3c3c3c;
}

/* Í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 #5a3e2e;
  box-shadow: 0 0 15px #000, inset 0 0 8px #3c3c3c;
  object-fit: cover;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-links img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #e0c097, inset 0 0 10px #5a3e2e;
}
