/* ============================================================
   Brouo Nosotros — Sobre Brouo (S2, LIGHT)
   Video institucional + narrativa fundacional + frase emblemática.
   Densidad media. El video aporta peso visual mientras el texto respira.
   ============================================================ */

.sobre {
  /* Heredado de .panel: padding-block, isolation, overflow */
}

/* --- Bloque 01: video facade ----------------------------------- */
.sobre__video {
  width: 100%;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.vimeo-facade {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-dark);
  isolation: isolate;
}

.vimeo-facade__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out);
}

.vimeo-facade::after {
  /* Capa oscura sutil para que el botón play tenga contraste sobre cualquier frame */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out);
  z-index: 1;
}

.vimeo-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-ink);
  display: grid;
  place-items: center;
  z-index: 2;
  transition:
    transform var(--duration-base) var(--ease-out),
    background-color var(--duration-base) var(--ease-out);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.vimeo-facade__play svg {
  width: 26px;
  height: 26px;
  margin-left: 4px; /* compensar visualmente el triángulo */
  fill: currentColor;
}

.vimeo-facade:hover .vimeo-facade__poster,
.vimeo-facade:focus-visible .vimeo-facade__poster {
  transform: scale(1.02);
}

.vimeo-facade:hover .vimeo-facade__play,
.vimeo-facade:focus-visible .vimeo-facade__play {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--color-accent);
}

.vimeo-facade:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

/* Estado activado: el iframe ocupa el lugar del facade */
.sobre__video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-lg);
  display: block;
}

/* --- Bloque 02 + 03: subtítulo + cuerpo ------------------------ */
.sobre__copy {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.sobre__h2 {
  font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem);
  font-weight: var(--weight-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  text-wrap: balance;
  margin: 0 0 var(--space-6);
}

.sobre__body {
  font-size: 1.0625rem; /* 17px */
  line-height: var(--lh-loose);
  color: var(--text-secondary);
  margin: 0;
}

.sobre__body + .sobre__body {
  margin-top: var(--space-5);
}

/* --- Tablet ---------------------------------------------------- */
@media (min-width: 768px) {
  .sobre__video {
    margin-bottom: var(--space-9);
  }

  .vimeo-facade__play {
    width: 92px;
    height: 92px;
  }

  .vimeo-facade__play svg {
    width: 32px;
    height: 32px;
  }

  .sobre__body {
    font-size: 1.125rem; /* 18px */
  }
}

