.cat-icon img {
    width: 33%;
}

.icon-vision img {
    padding-top: 25px;
    padding-bottom: 15px
}

.icon-mision img {
    padding-top: 25px;
    padding-bottom: 15px
}

.footer-logo img {
    max-height: 75px;
}

#footer-logo {
    text-align: right
}

.titulo-seccion {
    font-size: 2rem;
    font-weight: 700;
    color: #272B2F;
}

.descripcion-seccion {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.imagen-seccion img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.logo-fade-in {
    opacity: 0;
    animation: fadeIn 2.5s ease-out forwards;
    animation-delay: .9s;
}

.about-img img{
  max-height: 100%;          /* se adapta a la altura del contenedor */
  max-width: 100%;           /* mantiene proporción horizontal */
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto; 
}

.logo-transform{
        transform: scale(1.7); /* empieza más grande */
}
#logo-header{
    max-height: 70px
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 35px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
    width: 45px;
    height: 45px;
    animation: pulse 2s ease-in-out infinite;
    text-align: center;
    padding-top: 4px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebc59;
}

.single-slider{
  background-position: center
}

#logistica-y-transporte-about {
  padding-bottom: 30px;
}

#logistica-y-transporte-servicios {
  padding-top: 100px;
}

#logistica-y-transporte-img {
  margin-top: 40px;
}

#logistica-y-transporte-cobertura {
  padding-bottom: 40px;
  padding-top: 80px;
}

#nosotros-portada {
  margin-top: 65px;
}

#unete-img{
 margin-top: 110px;
}

@media (max-width: 768px) {
  .single-cat {
    min-height: 275px !important
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: scale(1); /* vuelve a tamaño normal */
    }
}