* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0b0b0b;
  color: #eee;
}

.hero {
  height: 90vh;
  position: relative;
}

.slider, .slide {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.logo {
  width: 180px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px;
  background: #111;
}

nav a {
  color: #ff9f1a;
  text-decoration: none;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.album audio {
  width: 100%;
  max-width: 400px;
}

.produtos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.produto {
  background: #1a1a1a;
  padding: 20px;
  width: 250px;
}

.produto img {
  width: 100%;
}

button {
  background: #ff9f1a;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.social a {
  margin: 10px;
  color: #ff9f1a;
}

footer {
  background: #000;
  padding: 20px;
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  padding-top: 56.25%; /* 16:9 */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

