/* ===== HERO SECTION ===== */
.hero-section {
  padding: 0;
  background: transparent;
  color: white;
  position: relative;
  overflow: hidden;
  height: 600px;
  margin-top: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
  /* Asegurar que el video cubra toda el área sin cortes */
  min-width: 100%;
  min-height: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

/* ===== HERO STATS SECTION (Debajo del video) ===== */
.hero-stats-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-medium) 50%, var(--blue-light) 100%);
  color: white;
  padding: 60px 0;
  position: relative;
}

.hero-stats-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.hero-title {
  font-family: 'NeoTech Bold', 'Arial Black', Arial, sans-serif;
  font-size: 3.2rem;
  color: white;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title-orange {
  color: var(--primary-orange);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title-white {
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
  font-family: 'Lucida Sans', Arial, sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-cta-btn {
  background: linear-gradient(135deg, var(--primary-orange), #ff8c42);
  color: white;
  border: none;
  padding: 16px 35px;
  font-size: 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'NeoTech Bold', 'Arial Black', Arial, sans-serif;
  margin-bottom: 50px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(240, 111, 12, 0.4);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.hero-cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.hero-cta-btn:hover::before {
  width: 400px;
  height: 400px;
}

.hero-cta-btn:hover {
  background: linear-gradient(135deg, #e0650a, #ff7b29);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(240, 111, 12, 0.6);
}

.hero-cta-btn:active {
  transform: translateY(-1px) scale(1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 10px;
}

.stat-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.stat-value {
  font-family: 'NeoTech Bold', 'Arial Black', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.stat-label {
  font-family: 'Lucida Sans', Arial, sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Responsive para el video */
@media (max-width: 768px) {
  .hero-section {
    height: 450px;
  }

  .hero-stats-section {
    padding: 50px 0;
  }

  .hero-video {
    object-position: center;
  }

  .hero-cta-btn {
    padding: 14px 30px;
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 400px;
  }

  .hero-stats-section {
    padding: 40px 0;
  }

  .hero-cta-btn {
    padding: 12px 28px;
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px 15px;
  }
}

