
body {
  margin: 0;
  background: #0b0b0b;
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
}
.cabecalho {
  text-align: center;
  padding: 50px 20px 30px;
  background-color: #111;
}
.logo {
  width: 130px;
  margin-bottom: 15px;
}
.cabecalho h1 {
  font-family: 'Playfair Display', serif;
  color: gold;
  font-size: 28px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.catalogo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}
.categoria {
  grid-column: 1/-1;
  font-size: 20px;
  color: #ffd700;
  border-bottom: 1px solid #333;
  margin-top: 50px;
  padding-bottom: 8px;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
}
.servico {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.3s ease;
}
.servico:hover {
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.15);
}
.servico h3 {
  color: gold;
  margin-bottom: 10px;
  font-size: 17px;
}
.servico p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}
.servico {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.3s ease;
}
.servico:hover {
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.15);
}
.servico h3 {
  color: gold;
  margin-bottom: 10px;
  font-size: 17px;
}
.servico p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;

}
.servico-spotify {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.3s ease;
}
.servico-spotify:hover {
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.15);
}
.servico-spotify h3 {
  color: green;
  margin-bottom: 10px;
  font-size: 17px;
}
.servico-spotify p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}
.botao {
  background: gold;
  color: #000;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  display: inline-block;
  transition: 0.2s ease;
}
.botao:hover {
  background-color: #ffe25e;
  box-shadow: 0 0 12px rgba(255,215,0,0.3);
}
.botao-spotify {
  background: green;
  color: #000;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  display: inline-block;
  transition: 0.2s ease;
}
.botao-spotify:hover {
  background-color: #6af752;
  box-shadow: 0 0 12px rgba(255,215,0,0.3);
}
.rodape {
  text-align: center;
  font-size: 13px;
  padding: 40px 10px;
  color: #555;
}
