/*
  ============================================
  BGF WELDING - HERO SIMPLE (NUEVO)
  Banner limpio sin slider - 100% funcional
  ============================================
*/

/* ========== HERO SECTION SIMPLE ========== */
.hero-simple {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Imagen de fondo */
.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  /* Fallback si no existe imagen */
  background-color: #1a2332;
}

/* Overlay oscuro */
.hero-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

/* Contenido principal */
.hero-content-simple {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* Badge superior */
.hero-badge-simple {
  margin-bottom: var(--spacing-lg);
}

.badge-text {
  display: inline-block;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: var(--font-weight-semibold);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius-full);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Título principal */
.hero-title-simple {
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.8),
    3px 3px 8px rgba(0, 0, 0, 0.5);
}

/* Subtítulo naranja */
.hero-subtitle-accent {
  color: var(--color-accent-light);
  display: block;
  margin-top: var(--spacing-sm);
}

/* Descripción */
.hero-description-simple {
  color: #ffffff;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: var(--spacing-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.8),
    2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Features (iconos) */
.hero-features-simple {
  display: flex;
  justify-content: center;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
}

.feature-item-simple {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: #ffffff;
  font-weight: var(--font-weight-medium);
}

.feature-icon-simple {
  font-size: 1.5rem;
}

.feature-text-simple {
  font-size: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Botones CTA */
.hero-cta-simple {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-2xl);
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--border-radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}

.btn-hero-primary {
  background: var(--color-accent);
  color: #ffffff;
  border: 2px solid var(--color-accent);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.btn-hero-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
}

.btn-hero-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 991px) {
  .hero-simple {
    min-height: 65vh;
    padding: 100px 0 60px;
  }
  
  .hero-title-simple {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  
  .hero-description-simple {
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  }
  
  .hero-features-simple {
    gap: var(--spacing-lg);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-simple {
    min-height: 60vh;
    padding: 90px 0 50px;
  }
  
  .hero-content-simple {
    padding: 0 var(--spacing-md);
  }
  
  .badge-text {
    font-size: 0.75rem;
    padding: var(--spacing-xs) var(--spacing-md);
  }
  
  .hero-title-simple {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-bottom: var(--spacing-md);
  }
  
  .hero-description-simple {
    font-size: clamp(0.9rem, 4vw, 1.05rem);
    margin-bottom: var(--spacing-xl);
  }
  
  .hero-features-simple {
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
  }
  
  .hero-cta-simple {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    min-width: auto;
    padding: var(--spacing-sm) var(--spacing-xl);
    font-size: 1rem;
  }
}

/* Mobile pequeño */
@media (max-width: 480px) {
  .hero-simple {
    min-height: 55vh;
  }
  
  .hero-title-simple {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }
  
  .hero-description-simple {
    font-size: 0.9rem;
  }
  
  .feature-text-simple {
    font-size: 0.9rem;
  }
}

/* ========== ANIMACIONES ========== */

/* Fade in al cargar */
.hero-content-simple {
  animation: heroFadeIn 0.8s ease-out forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover en botones - sin animación en móvil */
@media (hover: hover) {
  .btn-hero-primary:active,
  .btn-hero-secondary:active {
    transform: translateY(0);
  }
}

/* ========== ACCESIBILIDAD ========== */

@media (prefers-reduced-motion: reduce) {
  .hero-content-simple {
    animation: none;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    transition: none;
  }
}
