.compromiso-container {
    font-family: outfit, sans-serif;
    background: var( --color-compromisostrong);
    color: #FEFEFE;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 60px 18%;
    box-sizing: border-box;
    flex-direction: row;
}

.compromiso-title {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(to right, #cbbed7, #dcb1ba);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.compromiso-text {
    font-size: 16px;
    width: 68rem;
    text-align: justify;
}

.compromiso-text strong {
    font-weight: bold;
    color:#BADFEE;
}

@media (max-width: 1200px) {
    .compromiso-container {
        padding: 40px 10%;
    }

    .compromiso-text {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .compromiso-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 5%;
        gap: 20px;
    }

    .compromiso-title {
        text-align: center;
        width: 100%;
        font-size: 30px;
    }


}

@media (max-width: 576px) {
    .compromiso-container {
        padding: 15px 3%;
    }
}

@media (min-width:320px) and (max-width:576px){
    .compromiso-title {
            text-align: center;
            width: 80% !important;
            font-size: 40px;
            margin-left: 1rem;
            margin-top: 1rem;
            line-height: 2.8rem;
        }
    .compromiso-text {
            width: 87%;
            align-self: center;
            font-size: 16px;
        }

}

