/* ==========================================
   SECCION VIDEO DEMO - COPERA
   ========================================== */

.video-section {
  background: #192335;
  padding: 5rem 2rem;
  text-align: center;
}

.video-section__title {
  color: white;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.video-section__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.video-section__wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-section__container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-section__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .video-section {
    padding: 3rem 1rem;
  }
}