.btn-listen {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #F16234;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-listen:hover {
  background: #d9531f;
}

.btn-listen__icon {
  display: flex;
}

.fsa-invito-visita {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  color: #28303D;
  opacity: 0.75;
  margin: 0;
}

.audio-overlay {
  position: fixed;
  inset: 0;
  background: rgba(40, 48, 61, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 9999;
}

.audio-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.audio-overlay__inner {
  position: relative;
  width: 90%;
  max-width: 480px;
  padding: 40px 30px;
}

.audio-overlay__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

.audio-overlay__title {
  color: #fff;
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.3;
}

.audio-player {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
}

.audio-player__toggle {
  background: #F16234;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.audio-player__progress {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audio-player__bar {
  height: 5px;
  background: #eee;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.audio-player__fill {
  height: 100%;
  width: 0%;
  background: #F16234;
  border-radius: 3px;
}

.audio-player__time {
  font-size: 12px;
  color: #999;
}
