/* Reset básico */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins_n7.f34f55d9b3d3205d2cd6f64955ff4b36f0cfd8da.woff') format('woff2');
  font-weight: normal;
  font-style: normal;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins';
  src: url('../fonts/poppins_n7.f34f55d9b3d3205d2cd6f64955ff4b36f0cfd8da.woff') format('woff2');
    background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
  color: #f2f2f2;
  line-height: 1.6;
}

/* Header */
.header {
  background: #121212;
  padding: 20px 0;
  text-align: center;
}
+-
.logo {
  max-width: 180px;
  height: auto;
}

/* Container padrão */
.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* Hero section */
.hero h1 {
  text-align: center;
  font-size: 3em;
  margin: 30px 0 10px;
  color: gold;
}

.subtitle {
  text-align: center;
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 30px;
}

.pack-image {
  display: block;
  max-width: 100%;
  width: 500px;
  margin: 0 auto 40px auto;
  border-radius: 12px;
  
}

/* Features */
.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  background: #1f1f1f;
  margin-bottom: 12px;
  padding: 12px 16px;
  border-left: 5px solid rgb(255, 0, 0);
  font-size: 1.1em;
}

/* Demos */
.demos h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: gold;
  text-align: center;
}

.demo-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

audio {
  width: 100%;
  max-width: 500px;
}

/* Botão CTA */
.btn-buy {
  display: block;
  width: fit-content;
  margin: 40px auto;
  padding: 15px 30px;
  background-color: gold;
  color: #000;
  font-weight: bold;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 12px #ffd70055;
  transition: 0.3s;
}

.btn-buy:hover {
  background-color: #ffcc00;
  box-shadow: 0 0 25px #ffd700aa;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
  color: #888;
  background: #0a0a0a;
  margin-top: 50px;
}

/* --- WAVEFORM PLAYER --- */


.waveform-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 100px auto;
  max-width: 800px;
  padding: 0 20px;
}

#waveform {
  flex: 1;
  height: 80px;
  min-width: 200px;
}

.play-btn-side {
  width: 45px;
  height: 45px;
   background: transparent;
  border: none;
  color: #cfcfcf; /* cor cinza claro da seta */
  font-size: 30px;
  padding: 0;
  margin: 0;
  line-height: 0;
}

