body {
    
}

/* Contenedor del marquee */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  background: #f8f9fa;
  padding: 10px 0;
}

/* Contenedor del contenido en movimiento */
.marquee-content {
  display: flex;
  gap: 20px; /* Espacio entre imágenes */
  animation: marquee-scroll 15s linear infinite;
}

/* Estilos de las imágenes */
.marca-img {
  max-height: 60px; /* Ajusta el tamaño según sea necesario */
  width: auto;
}

/* Animación para el efecto de desplazamiento */
@keyframes marquee-scroll {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-50%);
  }
}

#Contacto{
  position: fixed;
  width: 125px;
  right: 0;
  bottom: 150px;
  border-radius: 6px;
  opacity: 0.3;
  background-color: #72f54d;
  padding: 10px;
  color: #149409;
  text-align: center;
  text-decoration: none;
}
#Contacto img {
  width: 100%;
  border-radius: 10px;

}
#Contacto:hover {
  opacity: 1;
}

#fcontacto{
  width: 50%;
  display: inline-block;
  margin-top: -30%;
  background-color: #ffffff4f;
  padding: 20px;
}

#avatar {
  width: 80%;
  border-radius: 50%;
}
#footer{
  padding: 20px;
}
header{
  position: fixed;
  height: 80px;
  top: 0;
  z-index: 500;
  width: 100%;

}
#marcas {
  width:100%;
  background-color: ghostwhite;
  padding: 10px;
  text-align: center;
}

#marcas article {
  width:100px;
  display: inline-block;
  margin: 10px;
  vertical-align: top;
}

#marcas article img {
  /* width: 100%; */
  background-color: white;
  padding: 5px;
  border-radius: 7px;
}
#masproductos {
  width:100%;
}

#pcat {
  width:100%;
  margin-top: 20px;
  text-align: center;
}
#pcat h4 {
  background-color: #0067be;
  color: white;
}
#pcat article {
  width:20%;
  display: inline-block;
  margin: 10px;
  vertical-align: top;
}

#pcat article img {
  width:100%;
}
#pcat article cite {
  font-size: 8pt;
}

#productos {
    width: 70%;
    text-align: center;
    display: inline-block;
    vertical-align: top;
}
#productos article {
    width: 100px;
    display: inline-block;
    margin:5px;
    vertical-align: top;
}
#productos article img {
    width: 100%;
}



#servicios {
  width: 25%;
  text-align: center;
  display: inline-block;
  background-color: beige;

  width: 27%;
  text-align: center;
  display: inline-block;
  padding: 11px;
}
#servicios article {
  width: 100%;
  display: inline-block;
  margin:5px;
  vertical-align: top;
}
#servicios article img {
  width: 100%;
}

#logo1{display: inline-flex; height: 40px;}
#logo2{display: none;}

#footer { background-color: #003366; vertical-align: top }
#footer p { color: white; display: inline-block; font-size: 14px }
#footer iframe { width: 97%; height: 150px; display: inline-block; margin-top: 3px }
#footer_movil { background-color: #003366; vertical-align: top }
#footer_movil p { color: white; display: inline-block; font-size: 14px; padding: 4px }
#footer_movil iframe { width: 97%; height: 250px; display: inline-block; margin-top: 3px }
#footer a, #footer_movil a {color: white; text-decoration: none;}
#footer a:hover, #footer_movil a:hover {color: white; text-decoration: underline;}
.slider {
  margin-top: 58px;
}


@media (max-width: 800px){
    #logo2{display: inline-flex; width: 300px;}
    #logo1{display: none;}
    

}


.slider {
    margin-top:58px;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .slider-container {
    width: 100%;
    /* display: flex; */
    transition: transform 0.5s ease;
  }
  
  .slider-container a img {
    width: 100%;
    /* height: auto; */
  }
  
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-decoration: none;
    font-size: 20px;
  }
  
  .prev {
    left: 0;
  }
  
  .next {
    right: 0;
  }
  
  @media screen and (max-width: 768px) {
    #fcontacto{
      width: 100%;
      margin-top: 0px;
    }
    
    #productos, #servicios {
        width: 100%;
    }
    #servicios {
      background-color: beige;margin-bottom: -18px;
    }

    #servicios article {
      width:40%;
    }
    #productos article {
        width: 25%;
        vertical-align: top;
    }
    .slider-container {
      flex-wrap: nowrap;
    }
  
    .slider-container img {
      width: 50%;
      flex-shrink: 0;
    }

    #pcat article {
      width: 44%;
    }
    
  }
  
  @media screen and (max-width: 480px) {
    .slider-container img {
      width: 100%;
    }
  }
  
  