body{
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}
.fotospequeñas {
    display: grid;
    grid-template-columns: repeat(5, 300px);
    gap: 10px;
    justify-content: center;
}
.fotospequeñas .small-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
}
.fotosgrandes {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}
.fotosgrandes .large-img {
    width: 375px;
    height: 375px;
    object-fit: cover;
    cursor: pointer;
}
.fotospequeñas img, .fotosgrandes img {
    border-radius: 10px;
}

@media (max-width: 1600px){
    .fotosgrandes .large-img {
width: 315PX;
height: 315PX;
object-fit: cover;
cursor: pointer;
}
.fotospequeñas {
display: grid;
grid-template-columns: repeat(5, 250px);
gap: 10PX;
justify-content: center;
}
.fotospequeñas .small-img {
width: 250PX;
height: 250PX;
object-fit: cover;
cursor: pointer;
}
}

@media (max-width: 768px) {
    .fotospequeñas {
        grid-template-columns: 1fr;
    }
    .fotosgrandes {
        flex-direction: column;
    }
    .fotospequeñas .small-img, .fotosgrandes .large-img {
        width: 375px;
        height: 375px;
        margin: 0 auto;
    }
}

@media (max-width:480px){
    .contenedor-text {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto!important;
        margin: 20px auto;
      }
      .contenedor-nombre-empresa{
        display: none!important;
      }

}


/* Estilo del popup */
.expandir {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.expandir.active {
    visibility: visible;
    opacity: 1;
    z-index: 9;
}
.popup-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
.contenedor-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1262px;
    margin: 20px auto;
    
}
.section-Innova{
    background-image: linear-gradient(135deg, rgb(0, 0, 0) 0%, rgb(75, 0, 130) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Montserrat",Sans-serif;
    padding: 35px 0 35px 0 !important;
    margin-top: 44px;
}
.section-E2services{
    background-image: linear-gradient(135deg, rgb(0, 0, 0) 0%, rgb(18, 153, 186) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Montserrat",Sans-serif;
    padding: 35px 0 35px 0 !important;
}
.section-REMORGAS{
    background-image: linear-gradient(135deg, rgb(0, 0, 0) 0%, rgb(25, 233, 94) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Montserrat",Sans-serif;
    padding: 35px 0 35px 0 !important;
}

.contenedor-nombre-empresa{
    max-width: 478px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 18px;
    
}