body {
  background: #000; /* fundo preto */
  color: #fff;      /* texto branco */
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Barras */
.barra-topo, .barra-fim {
  background: #111;
  text-align: center;
  padding: 12px 0;
  font-weight: bold;
  color: #fff;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

/* Título */
.titulo {
  text-align: center;
  margin: 20px 0;
  color: #fff;
}

/* Container dos cards */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px auto;
  max-width: 1000px;
}

/* Card */
.card {
  background: #111;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 280px;
  max-width: 300px;
  border: 2px solid #fff;
  box-shadow: 0 0 15px #fff;
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #fff;
}

/* Cabeçalho */
.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 100%;
  border-radius: 6px;
  border: 2px solid #fff;
  box-shadow: 0 0 10px #fff;
}

/* Texto da banda */
.texto-banda h2 {
  margin: 0;
  font-size: 18px;
  color: #fff;
  text-align: center;
}

.texto-banda p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #ccc;
  text-align: center;
}

/* Contatos */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 20px auto;
}

.social-links img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 10px #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-links img:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px #fff;
}

/* Texto final */
.descricao {
  text-align: center;
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  margin: 25px auto;
  max-width: 800px;
}
