.video-container {
  position: relative;
  width: 100%;
  height: 480px; /* Altura tipo video vertical */
  overflow: hidden;
  border-radius: 10px;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantiene formato vertical */
  border-radius: 10px;
}
.video-container {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 10px;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Botón flotante sonido */
.sound-toggle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 5;
}

.sound-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
}