/* ================================
   BLOQUE FLOTA CAMIONES
================================ */
.hero-flota { 
 position: absolute;
  bottom: 0;
  left: 0; 
  width: 100%; 

  z-index: 5;

}

/* Franja naranja */
.hero-flota-bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 20px;
  background: #f2b233;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

/* Imagen flota */
.hero-flota-img {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);

  z-index: 2;

  display: flex;
  justify-content: center;
}

.hero-flota-img img {
  width: 75%;
  max-width: 700px;

  transform: scale(0.85);
  animation: flotaIn 1s ease forwards;
}



/* Animación */
@keyframes flotaIn {
  to {
    transform: scale(1);
  }
}

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

/* Tablet */
@media (max-width: 1024px) {
   .hero-flota {
    margin-bottom: -12px;
  }

  .hero-flota-bg {
    height: 100px;
  }

  .hero-flota-img img {
    width: 90%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-flota {
    margin-top: 50px;
  }

  .hero-flota-bg {
    height: 20px;
  }

  .hero-flota-img img {
    width: 95%;
  }
}

/* Mobile chico */
@media (max-width: 480px) {
  .hero-flota-bg {
    height: 65px;
  }
}