/* Index.css - Fondo completamente visible sin sombras */
.background-hero {
  background-image: url("../Usadas/Fondo-Index/Fondo (2).jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
}

/* SIN OVERLAY */
.background-hero::before {
  display: none !important;
}

.background-hero .container-fluid {
  position: relative;
  z-index: 1;
}

/* Secciones SIN FONDO */
.hero-section {
  animation: fadeInUp 0.8s ease-out;
  margin-bottom: 2rem;
  background: transparent;
  border-radius: 10px;
  padding: 2rem;
  backdrop-filter: none;
  border: none;
  box-shadow: none !important;
}

.hero-content h2 {
  font-weight: 700;
  letter-spacing: 0px;
  color: #000;
  font-size: 2rem;
}

.hero-content p {
  line-height: 1.7;
  color: #222;
  font-weight: 400;
  font-size: 1.1rem;
}

/* Título principal SIN FONDO */
.background-hero h1 {
  color: #000 !important;
  font-weight: 800 !important;
  letter-spacing: 3px;
  background: transparent;
  padding: 1.5rem 3rem;
  border-radius: 8px;
  display: inline-block;
  font-size: 8rem !important;
  box-shadow: none !important;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

/* Imágenes con fondo blanco para destacar */
.hero-image {
  transition: transform 0.3s ease;
  border-radius: 8px;
  box-shadow: none !important;
  filter: none !important;
  background: #fff;
  padding: 10px;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.hero-image:hover {
  transform: scale(1.03);
  box-shadow: none !important;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    text-align: center !important;
    padding: 1.5rem;
  }
  
  .hero-content {
    padding: 1rem !important;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .hero-image {
    margin-top: 1.5rem;
  }
  
  .background-hero h1 {
    font-size: 3.5rem !important;
    padding: 1rem 2rem;
    letter-spacing: 2px;
  }
}

/* background-attachment: fixed da problemas de renderizado en móviles */
@media (max-width: 768px) {
  .background-hero {
    background-attachment: scroll;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}