/* =====================
   Video Promocional
   ===================== */
#video-promocional {
  background-color: #dce8d5;
  padding: 3rem 0;
}

.promo-video-wrapper {
  width: 100%;
}

.promo-video-titulo {
  font-size: 2rem;
  font-weight: bold;
  color: #3a5a3a;
  margin-bottom: 0.3rem;
}

.promo-video-subtitulo {
  color: #5a7a5a;
  margin-bottom: 1.5rem;
}

/* Selector de idioma */
.promo-video-lang-selector {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  background-color: #b8cfac;
  padding: 0.4rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.promo-lang-btn {
  border: none;
  background: transparent;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #3a5a3a;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.promo-lang-btn.active {
  background-color: #ffffff;
  color: #2d5a2d;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.promo-lang-btn:hover:not(.active) {
  background-color: rgba(255,255,255,0.5);
}

/* Player */
.promo-video-contenedor {
  background-color: #8fbc8f;
  padding: 1.5rem;
  border-radius: 1.5rem;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.promo-video-player {
  width: 100%;
  border-radius: 0.75rem;
  display: block;
}