/* ==========================================================================
   EVENTOS PAGE — STYLES & HERO HEADER VIDEO
   Camarões Restaurante — Design System Aman/Camarões
   ========================================================================== */

/* --------------------------------------------------------------------------
   Main Container Stacking Context (Ensures Footer Reveal functions properly)
   -------------------------------------------------------------------------- */
.eventos-main {
  position: relative;
  z-index: 2;
  background-color: var(--color-sand-light, #fdfaf6);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  min-height: 60vh;
}

/* --------------------------------------------------------------------------
   Hero Header Video (Reserve seu evento conosco)
   -------------------------------------------------------------------------- */
.eventos-header {
  position: relative;
  width: 100%;
  height: 76vh;
  min-height: 500px;
  max-height: 860px;
  overflow: hidden;
  background-color: #121110;
}

.eventos-header__video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.eventos-header__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.88) contrast(1.04);
  transform: scale(1.02);
  transition: transform 3s var(--ease-luxury, cubic-bezier(0.16, 1, 0.3, 1));
}

.eventos-header:hover .eventos-header__video {
  transform: scale(1.04);
}

/* Specific adjustments for the caption & title in Eventos */
.eventos-header .unidade-header__caption {
  z-index: 3;
}

.eventos-header .unidade-header__title {
  margin-bottom: 0;
  letter-spacing: 0.16em;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.85);
}

@media screen and (max-width: 768px) {
  .eventos-header {
    height: 68vh;
    min-height: 440px;
  }

  .eventos-header .unidade-header__title {
    letter-spacing: 0.12em;
    font-size: clamp(1.35rem, 5vw, 1.85rem);
  }
}
