/* Reel de esencia de marca — complementa al hero cacomixtle sin opacarlo */
.uayu-hero-duo {
  display: grid;
  gap: 1.75rem;
  margin-top: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .uayu-hero-duo {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    gap: 2rem;
    align-items: center;
  }
}
.uayu-hero-duo__photo {
  margin: 0;
}
.uayu-brand-reel {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  max-width: 22rem;
  margin-inline: auto;
}
@media (min-width: 900px) {
  .uayu-brand-reel {
    max-width: none;
    margin-inline: 0;
    padding-top: 0.5rem;
  }
}
.uayu-brand-reel__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0f766e;
}
.uayu-brand-reel__title {
  margin: 0 0 1rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  line-height: 1.25;
  color: #1f2937;
}
.uayu-brand-reel__frame {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  border-radius: 1.15rem;
  overflow: hidden;
  background: linear-gradient(165deg, #134e4a 0%, #0f766e 42%, #1f2937 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 18px 40px rgba(15, 118, 110, 0.22),
    0 4px 14px rgba(31, 41, 55, 0.12);
}
@media (min-width: 900px) {
  .uayu-brand-reel__frame {
    max-width: none;
  }
}
.uayu-brand-reel__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0b3d3a;
}
.uayu-brand-reel__video.is-playing {
  cursor: pointer;
}
.uayu-brand-reel__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.25rem;
  border: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 61, 58, 0.15) 0%,
    rgba(11, 61, 58, 0.55) 45%,
    rgba(15, 23, 42, 0.72) 100%
  );
  color: #fff;
  cursor: pointer;
  transition: opacity 0.25s ease, background 0.25s ease;
}
.uayu-brand-reel__overlay:hover,
.uayu-brand-reel__overlay:focus-visible {
  background: linear-gradient(
    180deg,
    rgba(11, 61, 58, 0.08) 0%,
    rgba(11, 61, 58, 0.45) 45%,
    rgba(15, 23, 42, 0.65) 100%
  );
}
.uayu-brand-reel__overlay:focus-visible {
  outline: 2px solid #5eead4;
  outline-offset: 2px;
}
.uayu-brand-reel__overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.uayu-brand-reel__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f766e;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.uayu-brand-reel__overlay:hover .uayu-brand-reel__play-icon,
.uayu-brand-reel__overlay:focus-visible .uayu-brand-reel__play-icon {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}
.uayu-brand-reel__play-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  margin-left: 0.15rem;
}
.uayu-brand-reel__overlay-text {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.uayu-brand-reel__hint {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #6b7280;
  text-align: center;
}
@media (min-width: 900px) {
  .uayu-brand-reel__hint {
    text-align: left;
  }
}
.uayu-brand-reel.is-ended .uayu-brand-reel__overlay.is-hidden {
  opacity: 1;
  pointer-events: auto;
}
.uayu-brand-reel.is-ended .uayu-brand-reel__overlay-text {
  content: 'Ver de nuevo';
}
