body{
    font-family: sans-serif;
    color: #292929;
}
.splashscreen {
    width: 100%;
    height: 100dvh;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    animation: fade-out 2s forwards ease-in;
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    75% {
        opacity: 1; /* Mantener visible hasta 1.5s */
    }
    100% {
        opacity: 0; /* Hacer el fade en los últimos 0.5s */
    }
}
.whatsapp_anchor{
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #1a1a1a;
    text-decoration: none;
    font-family: sans-serif;
}
.title{
    font-size: 2.0em;
    text-align: center;
    position: relative;
    margin:0;
    margin-bottom: 40px;
}
.header_img{
    width: 100%;
}
.banner_container{
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner{
    width: 100%;
}
.whatsapp_googleMaps{
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 60px 0;
}
.whatsapp{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding:10px;
}
.whatsapp_title{
    font-size: 2.0em;
    margin: 70px 0;
}
.wpp_button{
    width: 90%;
    margin: 0;
    text-decoration: none;
    max-width: 250px;
    color: white;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 40px;
    background-color: #455A64;
    font-size: 1em;
    font-size: 600;
    padding: 5px;
}
.wpp_button:hover{
    background-color: #303f46;
}
.wpp_button_icon{
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.whatsapp_article{
    padding: 30px 0;
    text-align: center;
}
.whatsapp_article h4{
    font-size: 1.2em;
}
.googleMaps{
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 500px;
    box-sizing: border-box;
    padding: 10px;
}
.footer{
   background-color: #292929;
   width: 100%;
   height: 200px;
   display: flex;
   align-items: center;
   flex-direction: column;
   justify-content: space-around;
   font-family: sans-serif;
}
.social_media{
    display: flex;
    width: 90%;
    max-width: 600px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.social_media li {
    list-style: none;
    padding: 20px;
}
.social_media li a img{
    width: 30px;
    height: 30px;
}
.sonar{
    color: white;
}
.sonar a{
    color: white;
}
.ig_container{
    width: 100%;
    display: flex;
    box-sizing: border-box;
    max-height: 500px;
    align-items: flex-start;
    justify-content: center;
    overflow:hidden;
    padding:20px;
}
.instagram{
    width: 100%;
    max-width: 1000px;
    height: 1000px;
    overflow-y: hidden ; /* Hide vertical scrollbar */
    overflow-x: hidden ; /* Hide horizontal scrollbar */
}
.brands_container{
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
}
.brands{
    width: 700px;
    height: 60px; /* Ajusta según sea necesario */
    overflow: hidden;
    position: relative; /* Asegura que el posicionamiento relativo de la imagen funcione correctamente */ 
}
.brands_img {
    position: absolute;
    top: 0;
    left: 0;
    animation: panearImagen 15s linear infinite;
}

.gallery {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 1px;
    justify-content: center;
    align-items: center;
    padding: 60px 10px;
  }
  
  .image {
    height: 300px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  
  .image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .image img:hover {
    transform: scale(1.1);
  }
@keyframes panearImagen {
    from {
      left: 100%;
    }
    to {
      left: -150%; /* Desplaza la imagen completamente fuera del contenedor */
    }
}
@media only screen and (min-width: 500px) {
    .ig_container{
        max-height: 700px;
    }
}
@media only screen and (min-width: 700px) {
    .ig_container{
        max-height: 800px;
    }
}
@media only screen and (min-width: 900px) {
    .ig_container{
        max-height: 950px;
    }
    .header{
        height: 700px;
    }
    .whatsapp_googleMaps{
        flex-direction: row;
    }
    .whatsapp{
        width: 50%;
        padding: 0;
        padding-left: 7%;
        align-items: flex-start;
    }
    .whatsapp_article{
        padding: 30px 0;
        text-align: start;
    }
    .googleMaps{
        width: 50%;
    }
    
}