body,html{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

#contenido {
    display: grid;
    grid-template-columns: 2fr 3fr; 
    height: 100vh; 
}

#seccion-l{
    background-color: #334596;
    position: sticky;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: aliceblue;
    padding:20px;
}

#seccion-r {
    overflow-y: auto;
    background-color: #fcfcfc;
}

#seccion-l img {
    width: 60%;
    height: auto;
}


#redes-sociales a {
    margin: 0 10px;
    color: aliceblue;
    text-decoration: none;
    font-size: 1.8em;
}

#presentacion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

#presentacion h1 {
    color: #334596;
    font-size: 2em;
}

#presentacion h2 {
    margin: 1px;
}

#presentacion div {
    display: flex;
    width: 50%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#presentacion p {
    width: 75%;
    line-height: 2;
    color: #5b5b5b;
}

.servicios{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.servicios p{
    line-height: 2;
    color: #5b5b5b;
    width: 75%;
    text-align: center;
}

.p-20 {
    padding: 20px;
}

.text-center {
    text-align: center;
}

.servicios-img{
    display: flex;
    justify-content: space-between;
}

.servicios-img img{
    margin: 20px;
}

.logiga-cargo{
    max-width: 25%;
}

.logiga-aduana{
    max-width: 30%;
}

.logiga-transporte{
    max-width: 35%;
}

#contacto{
    text-align: center;
}

#contacto .wa{
    color:#2fc800;
    text-decoration: none;
    font-size: 2em;
    padding: 10px;
    overflow: hidden;
}

#contacto .wa:hover{
    color: #ffffff;
    background-color:#2fc800;
    border-radius: 100px;
}

#contacto .informacion{
    display: flex;
    justify-content: center;
    align-items: self-start;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 60px;
    width: 100%;
}

.info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 25%;
}

.info i {
    font-size: 1.5em;
}

.info p {
    margin: 10px;
}

.info a{
    color: #334596;
    text-decoration: none;
}


/* Media query para pantallas más pequeñas */
@media (max-width: 768px) {

    body,html{
        overflow: auto;
    }

    #seccion-l img {
        width: 70%;
        height: auto;
    }

    #contenido {
       display: flex;
       flex-direction: column;
       height: 100vh;
    }

    #seccion-l{
        position: relative;
        padding: 30px;
    }

    #seccion-r {
        overflow-y: visible;
        height: 100%;
    }

    #contacto{
       padding: 10px;
    }

    #contacto .informacion{
        flex-direction: column;
        align-items: center;
        row-gap: 3rem;
    }

    .info{
        width: 60%;
    }
}