/* ========================================
   VIDEO INTRO SECTION
   ======================================== */

.video-intro-section {
  position: relative;
  width: 100%;
  padding: 80px 24px;
  background: linear-gradient(160deg,
    oklch(98% 0.015 80) 0%,
    oklch(96% 0.02 78) 50%,
    oklch(94% 0.025 76) 100%
  );
  overflow: hidden;
}

/* Dark mode */
.video-intro-section.dark-mode {
  background: linear-gradient(160deg,
    oklch(13% 0.025 55) 0%,
    oklch(15% 0.03 58) 50%,
    oklch(12% 0.02 52) 100%
  );
}

.video-intro-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ========== HEADER ========== */
.video-intro-header {
  text-align: center;
  margin-bottom: 48px;
}

.video-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px oklch(72% 0.11 75 / 0.25);
  animation: floatBadge 4s ease-in-out infinite;
}

.video-intro-badge span {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: 0.5px;
}

.video-intro-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.video-intro-section.dark-mode .video-intro-title {
  color: oklch(96% 0.015 80);
}

.video-intro-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--brown-mid);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.video-intro-section.dark-mode .video-intro-subtitle {
  color: oklch(82% 0.02 78);
}

/* ========== VIDEO PLAYER ========== */
.video-intro-player {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 60px oklch(0% 0 0 / 0.15),
    0 0 0 1px oklch(72% 0.11 75 / 0.1);
  background: oklch(10% 0.02 50);
}

.video-intro-section.dark-mode .video-intro-player {
  box-shadow:
    0 20px 60px oklch(0% 0 0 / 0.4),
    0 0 0 1px oklch(72% 0.11 75 / 0.2);
}

.video-intro-video {
  width: 100%;
  display: block;
  background: #000;
}

/* Overlay con botón de play (se oculta cuando el video empieza) */
.video-intro-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    oklch(0% 0 0 / 0.3) 0%,
    oklch(0% 0 0 / 0.1) 100%
  );
  opacity: 1;
  transition: opacity 0.3s ease;
  cursor: pointer;
  z-index: 2;
}

.video-intro-player:hover .video-intro-overlay {
  background: linear-gradient(
    135deg,
    oklch(0% 0 0 / 0.4) 0%,
    oklch(0% 0 0 / 0.2) 100%
  );
}

.video-intro-play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  box-shadow:
    0 8px 24px oklch(72% 0.11 75 / 0.4),
    0 0 0 8px oklch(72% 0.11 75 / 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse-ring 2.5s ease-in-out infinite;
}

.video-intro-play-button:hover {
  transform: scale(1.1);
}

.video-intro-play-button svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .video-intro-section {
    padding: 60px 20px;
  }

  .video-intro-header {
    margin-bottom: 36px;
  }

  .video-intro-badge span {
    font-size: 13px;
  }

  .video-intro-title {
    font-size: clamp(28px, 6vw, 36px);
  }

  .video-intro-subtitle {
    font-size: 16px;
  }

  .video-intro-player {
    border-radius: 16px;
  }

  .video-intro-play-button {
    width: 64px;
    height: 64px;
  }

  .video-intro-play-button svg {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .video-intro-section {
    padding: 48px 16px;
  }

  .video-intro-player {
    border-radius: 12px;
  }
}
