header {
    margin-bottom: 4%;
}

.form-header {
  position: relative;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center center; 
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.form-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.form-header h1 {
  color: white;
  font-family: Roboto, sans-serif;
  position: relative;
  z-index: 2;
  font-size: 2rem;
  line-height: 1.5;
  padding: 0 20px;
  text-transform: uppercase;
  margin: 0;
  opacity: 0;
  transform: translateX(40px);
  animation: fadeInRight 1s ease-out forwards;
}

.form-header h2 {
  color: white;
  font-family: Roboto, sans-serif;
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 0 20px;
  text-transform: uppercase;
  margin: 0;
  opacity: 0;
  transform: translateX(40px);
  animation: fadeInRight 1s ease-out forwards;
}

@media (min-width: 768px) {
  .form-header h1 {
	font-size: 3rem;
  }
  .form-header h2 {
	font-size: 2rem;
  }
}

/* Fondos específicos */
.form-header.nosotros {
  background-image: url('../img/home/header-nosotros.jpg');
}

.form-header.stock {
  background-image: url('../img/home/header-stock.jpg');
}

.form-header.consignacion {
  background-image: url('../img/home/header-consignacion.jpg');
}

.form-header.financiamiento {
  background-image: url('../img/home/header-financiamiento.jpg');
}

.form-header.servicios {
  background-image: url('../img/home/header-servicios.jpg');
}

.form-header.contacto {
  background-image: url('../img/home/header-contacto.jpg');
}

/* Animación desde la derecha */
@keyframes fadeInRight {
  to {
	opacity: 1;
	transform: translateX(0);
  }
}
