/* Sección de video */
.video-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg);
  z-index: 3;
}

.video-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-text);
  height: 100vh;
}

.video-background {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Estados de carga y fallback */
.video-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-bg-rgb), 0.1);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-background.loading::before {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .video-item {
    height: auto;
    aspect-ratio: 1/1;
  }
}
