.container-nosotros{
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 3%;
    margin-top: 10vh;
}

.flex-nosotros-1{
    display: flex;
    width: 100%;
    height: 30%;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.flex-nosotros-1 h1{
    color: royalblue;
    font-size: 5rem;
    font-family: var(--ff-MyriadPro);
    font-weight: 100;
    line-height: 6rem;
}

.flex-nosotros-2{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 70%;
    justify-content: space-around;
    gap: 10%;
    align-items: center;
}



.nosotros-col-1{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding-left: 5%;
    padding-top: 5%;
}

.nosotros-col-1 h4{
    font-family: var(--ff-MyriadPro);
    color: royalblue;
    font-size: 2.7rem;
    line-height: 3rem;
    font-weight: 100;
    padding-right: 20%;
    margin-bottom: 20px;

}

.nosotros-col-1 p{
    font-size: 1.7rem;
    line-height: 2rem;
}

.nosotros-col-2{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-nosotros{
    width: 400px;
    height: 400px;
    position: relative;
}


.l-texas{
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    bottom: -1%;
    left: -5%;
}

.l-logo{
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 1%;
}

.l-camion{
    position: absolute;
    width: 150px;
    height: auto;
    right: 0;
    bottom: 80%;
}

@media (max-width: 768px){
    .flex-nosotros-2{
        flex-direction: column-reverse;
        margin-top: 100px;
        text-align: justify;
    }

    .nosotros-col-1{
        padding-top: 2%;
    }
}

.container-compromisos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.bar{
    width: 50px;
    height: 50px;
}

.container-compromisos h2{
    color: royalblue;
    font-size: 5rem;
    font-family: var(--ff-MyriadPro);
    font-weight: 100;
    text-align: center;
    line-height: 5rem;
}

.container-compromisos h5{
    color: royalblue;
    font-size: 2.5rem;
    font-family: var(--ff-MyriadPro);
}

.container-compromisos p{
    font-size: 2rem;
    text-align: center;
    padding: 0 25%;
    font-weight: 100;
    line-height: 2rem;
}

.container-compromisos p strong{
    color: royalblue;
}

@media (max-width: 768px){
    .container-compromisos p{
        padding: 0 5%;
    }

    .container-compromisos h2{
        font-size: 4rem;
    }

    .container-compromisos h5{
        font-size: 2rem;
    }

    .container-compromisos p{
        font-size: 1.5rem;
    }
}

.container-valores{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
}

.col-valores-1{
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 5%;
    justify-content: center;
}

.col-valores-1 h4{
    font-family: var(--ff-MyriadPro);
    font-size: 5rem;
    font-weight: 100;
    line-height: 6rem;
}

.col-valores-1 h4 strong, .col-valores-1 p strong{
    color: royalblue;
}

.col-valores-1 p{
    font-family: var(--ff-MyriadPro);
    font-size: 2rem;
    line-height: 2.5rem;
}

.col-valores-2{
    width: 40%;
    height: 100%;
    min-width: 200px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-valor{
    width: 30px;
    height: auto;
}

.accordion-valores .row-val:last-child {
  height: 10%;
}



.accordion-valores {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    flex-direction: column;
    padding: 10%;
}

.row-val {
    background-color: ro;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5%;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    padding: 0 20px; 
    color: rgb(255, 255, 255);
    font-size: 2rem;
    cursor: default;
    font-weight: bolder;
    font-family: var(--ff-MyriadPro);
}

.row-val p {
    margin: 0;
    white-space: nowrap;
}

.img-valor {
    width: auto;
    height: 30%;
    flex-shrink: 0;
}

@media (max-width: 768px){
    .col-valores-1{
        width: 100%;
        gap: 0px;
    }

    .col-valores-2{
        width: 100%;
        height: 40%;
    }

    .container-valores{
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .accordion-valores{
        height: 240px;
        padding: 10% 10% 10% 10%;
    }

    .col-valores-1 p{
        font-size: 1.5rem;
        line-height: 2rem;
        text-align: center;
    }

    .col-valores-1 h4{
        font-size: 3rem;
        line-height: 4rem;
        padding-bottom: 10px;
        text-align: center;
    }
}