/* ===== CONTACT VIDEO SECTION ===== */
.contact-video-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-left: calc(-50vw + 50%);
  margin-top: 200px;
  overflow: hidden;
}

.contact-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.contact-content {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

/* Botón grande con carrusel */
.contact-carousel-button {
  width: 100%;
  height: 140px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 60px;
  overflow: hidden;
  position: relative;
  margin-bottom: 90px;
}

.carousel-text-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.carousel-text {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scrollText 20s linear infinite;
  font-size: 120px;
  font-weight: 600;
  color: white;
  gap: 0px;
}

.carousel-text span {
  display: inline-block;
  margin-right: 0;
}

.carousel-text .separator {
  color: var(--green);
  font-size: 30px;
  margin: 0 20px;
}


@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Botones de acción */
.contact-action-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: flex-start;
}

.action-button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.button-title {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.glass-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  min-width: 200px;
}

.glass-action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-video-section {
    height: 80vh;
  }
  
  .contact-carousel-button {
    height: 60px;
    margin-bottom: 60px;
  }
  
  .carousel-text {
    font-size: 18px;
  }
  
  .contact-action-buttons {
    flex-direction: column;
    gap: 40px;
  }
  
  .button-title {
    font-size: 16px;
  }
  
  .glass-action-btn {
    padding: 14px 28px;
    font-size: 14px;
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .contact-video-section {
    height: 70vh;
    margin-top: 150px;
  }
  
  .contact-carousel-button {
    height: 50px;
    margin-bottom: 50px;
  }
  
  .carousel-text {
    font-size: 16px;
  }
  
  .carousel-text .separator {
    font-size: 24px;
    margin: 0 15px;
  }
  
  .button-title {
    font-size: 14px;
  }
  
  .glass-action-btn {
    padding: 12px 24px;
    font-size: 13px;
    min-width: 160px;
  }
}