/* ==========================================================================
   Hero: logo, frase editorial y el video 16:9.
   ========================================================================== */

.hero__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.hero__logo img {
  height: 50px;
  width: auto;
}

.hero__intro {
  text-align: center;
  padding: 4px 2px 22px;
}

.hero__eyebrow { margin-bottom: var(--space-6); }

.hero__sub {
  color: var(--text-muted);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin-top: var(--space-6);
}

/* --- Video ---------------------------------------------------------------
   Mientras no llegue el video real se muestra .video--placeholder. Cuando
   el cliente entregue el ID, se sustituye el contenido por el <iframe> y se
   quita el modificador: el contenedor y la proporción no cambian.
   Ver docs/PENDIENTES.md (C5, I7)
   ------------------------------------------------------------------------ */
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.video iframe,
.video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video--placeholder {
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, var(--bfc-azul-oscuro), var(--bfc-azul) 55%, var(--bfc-turquesa-claro));
}

.video__sheen {
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 90% at 25% 15%, rgba(255, 255, 255, .2), transparent 55%);
}

.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: none;
  border-radius: var(--radius-full);
  background: var(--action-primary);
  box-shadow: var(--shadow-play);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform var(--dur-base) var(--ease-default);
}

.video__play:hover {
  transform: translate(-50%, -50%) scale(var(--scale-play-hover));
}

.video__caption {
  position: relative;
  padding: 14px 18px;
  color: var(--bfc-blanco);
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: var(--fw-medium);
  opacity: .94;
}
