/**
 * Quiniela Liga MX - Hero Section
 * Estilos de la sección hero y landing page
 */

/* ===== HERO SECTION ===== */
.hero-ligamx {
  background: linear-gradient(135deg, #7a7c7e 0%, #636365 100%);
  color: white;
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-title-main {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title-sub {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--secondary-color);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  letter-spacing: 2px;
}

/* Colores de la bandera de México para LIGA MX */
.mexico-flag-green {
  color: var(--apple);
}

.mexico-flag-white {
  color: #FFFFFF;
}

.mexico-flag-red {
  color: var(--thunderbird);
}

.hero-description {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
}

.stat-card-highlight {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  border: none;
  box-shadow: 0 8px 20px rgba(255, 184, 28, 0.3);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--thunderbird);
}

.stat-label {
  font-size: 0.875rem;
  color: #FFFFFF;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Animated Soccer Balls */
.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.soccer-ball {
  position: absolute;
  font-size: 3rem;
  opacity: 0.1;
  animation: float 20s infinite;
}

.ball-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.ball-2 {
  top: 60%;
  right: 15%;
  animation-delay: 7s;
}

.ball-3 {
  bottom: 20%;
  left: 5%;
  animation-delay: 14s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, #7a7c7e, #636365);
  color: white;
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 3rem;
}

.final-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.final-cta p {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}
