/* ================================================
   AUDIO PLAYERS - Players de Conversao
   ================================================ */

.audio-section-hero,
.audio-section-products {
  padding: 0 1.5rem 0.75rem;
  position: relative;
  z-index: 1;
}

.audio-section-hero .audio-section-inner,
.audio-section-products .audio-section-inner {
  max-width: 560px;
  margin: 0 auto;
}

.audio-headphone-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(255,220,0,0.14) 0%, rgba(255,180,0,0.09) 100%);
  border: 1px solid rgba(255,200,0,0.35);
  border-radius: 50px;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #7a5c00;
  margin-bottom: 0.9rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.audio-headphone-alert svg { color: #c49000; flex-shrink: 0; }

.audio-player-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audio-player-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.audio-card-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.15;
  filter: blur(25px);
}

.audio-card-main .audio-card-glow { background: radial-gradient(circle, #667eea, #764ba2); }
.audio-card-hot  .audio-card-glow { background: radial-gradient(circle, #e11d48, #ff6b6b); }

.audio-card-top { margin-bottom: 0.85rem; }

.audio-label-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.55rem;
}

.audio-badge-vip {
  background: linear-gradient(135deg, rgba(102,126,234,0.15) 0%, rgba(118,75,162,0.12) 100%);
  color: #5a4fcf;
  border: 1px solid rgba(102,126,234,0.25);
}

.audio-badge-hot {
  background: linear-gradient(135deg, rgba(225,29,72,0.12) 0%, rgba(255,107,107,0.1) 100%);
  color: #c41a3f;
  border: 1px solid rgba(225,29,72,0.2);
}

.audio-card-title {
  font-size: 0.97rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.audio-card-desc {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.5;
  font-style: italic;
}

.audio-player-ui {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0,0,0,0.03);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.audio-play-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(102,126,234,0.4);
  position: relative;
}

.audio-play-btn:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(102,126,234,0.6); }
.audio-play-btn:active { transform: scale(0.96); }

.audio-play-hot {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  box-shadow: 0 4px 14px rgba(225,29,72,0.4);
}
.audio-play-hot:hover { box-shadow: 0 6px 20px rgba(225,29,72,0.6); }

.audio-play-btn .icon-play,
.audio-play-btn .icon-pause {
  position: absolute;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
}

.audio-play-btn .icon-play  { opacity: 1; transform: scale(1); }
.audio-play-btn .icon-pause { opacity: 0; transform: scale(0.7); }

.audio-play-btn.playing .icon-play  { opacity: 0; transform: scale(0.7); }
.audio-play-btn.playing .icon-pause { opacity: 1; transform: scale(1); }

.audio-progress-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.audio-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 20px;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}
.audio-wave.active { opacity: 1; }

.audio-wave span {
  display: block;
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: #667eea;
}
.audio-wave-hot span { background: #e11d48; }

.audio-wave.active span { animation: waveBar 0.8s ease-in-out infinite alternate; }
.audio-wave.active span:nth-child(1)  { animation-delay: 0.00s; }
.audio-wave.active span:nth-child(2)  { animation-delay: 0.07s; }
.audio-wave.active span:nth-child(3)  { animation-delay: 0.14s; }
.audio-wave.active span:nth-child(4)  { animation-delay: 0.21s; }
.audio-wave.active span:nth-child(5)  { animation-delay: 0.28s; }
.audio-wave.active span:nth-child(6)  { animation-delay: 0.35s; }
.audio-wave.active span:nth-child(7)  { animation-delay: 0.28s; }
.audio-wave.active span:nth-child(8)  { animation-delay: 0.21s; }
.audio-wave.active span:nth-child(9)  { animation-delay: 0.14s; }
.audio-wave.active span:nth-child(10) { animation-delay: 0.07s; }
.audio-wave.active span:nth-child(11) { animation-delay: 0.14s; }
.audio-wave.active span:nth-child(12) { animation-delay: 0.21s; }

@keyframes waveBar { from { height: 3px; } to { height: 18px; } }

.audio-progress {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: rgba(0,0,0,0.1);
  cursor: pointer;
  outline: none;
}

.audio-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #667eea;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(102,126,234,0.5);
  transition: transform 0.15s ease;
}
.audio-progress::-webkit-slider-thumb:hover { transform: scale(1.3); }
.audio-progress-hot::-webkit-slider-thumb {
  background: #e11d48;
  box-shadow: 0 2px 6px rgba(225,29,72,0.5);
}
.audio-progress::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: none;
  border-radius: 50%;
  background: #667eea;
  cursor: pointer;
}
.audio-progress-hot::-moz-range-thumb { background: #e11d48; }

.audio-time {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #999;
  font-variant-numeric: tabular-nums;
  min-width: 28px;
  text-align: right;
}
