/* =============================================
   SECTION - VÍDEO EVENTO
   ============================================= */

.video-evento {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 64px 0;
  width: 100%;
  min-height: 1080px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.video-evento__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

/* ---------- Glass Card ---------- */
.video-evento__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 48px;
  max-width: 920px;
  width: 100%;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  backdrop-filter: blur(4px);
}

.video-evento__icon {
  font-size: 40px;
  line-height: 1em;
  color: var(--base-white);
  text-align: center;
}

.video-evento__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  text-align: center;
  background: linear-gradient(90deg, #F1B5B8 0%, #D3111A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-evento__body {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  color: var(--base-white);
  text-align: center;
}


/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .video-evento__card {
    margin: 0 20px;
  }
}

@media (max-width: 834px) {
  .video-evento {
    min-height: auto;
    padding: 64px 20px;
  }

  .video-evento__card {
    padding: 48px 24px;
  }

  .video-evento__title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .video-evento__card {
    padding: 24px;
    border-radius: 20px;
    gap: 24px;
  }

  .video-evento__title {
    font-size: 28px;
  }

  .video-evento__body {
    font-size: 18px;
  }
}
