.titles-container {
    margin: 0 auto;
    width: 88%;
    text-align: center;
}

.main-title {
    margin: 0 auto 1rem;
    font-size: 24px;
    line-height: 32px;
}

br {
    display: none;
}

.beneficios-container {
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.text-beneficios {
    text-align: center;
    color: #50535A;
}

.list-benefits {
    padding: 12px 10px;
    background-color: #F8F9FB;
    border-radius: 10px;
    font-size: 13px;
}

.list-benefits p {
    width: 90%;
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.list-benefits div {
    display: flex;
}

.list-benefits i {
    margin: 6px 5px 0 0;
    display: block;
    width: 10px;
    height: 10px;
    background-image: url('https://aprodmovistarcomsa.blob.core.windows.net/$web/persons/uber/factura-uber-movistar/assets/check-icon.svg');
    background-position: center;
    background-size: cover;
}

.card-beneficios {
    padding: 20px 20px 18px;
    width: 90%;
    background-color: var(--white);
    box-shadow: 0px 4px 8px 0px #00000040;
    border-radius: 16px;
}

.text-cargo {
    margin: 0.7rem auto 0;
    font-size: 14px;
    color: #7B7B7B;
}

.text-price {
    font-size: 33px;
    line-height: 37px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
}

.text-price span {
    font-size: 14.26px;
}

.card-beneficios a {
    display: block;
    width: 90%;
    height: 53px;
    margin: 1rem auto 0.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #066FCB;
    color: var(--white);
    border-radius: 65px;
}


.terms {
    text-align: center;
    font-size: 10px;
    color: #7B7B7B;
}

.description {
    color: #50535A;
}

@media (min-width:768px) {
    br {
        display: block;
    }

    .main-title {
        margin: 3rem auto 2rem;
        font-size: 32px;
    }

    .description {
        margin: 0 auto;
        width: 90%;
        max-width: 1080px;
        font-size: 20px;
    }

    .beneficios-container {
        margin: 2.5rem auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 85px;
    }

    .card-beneficios {
        padding: 30px 30px 18px;
        max-width: 513px;
        box-shadow: unset;
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(3, auto);
        column-gap: 20px;
    }

    .card-beneficios img {
        max-width: 127px;
        grid-area: 1 / 1 / 2 / 2;
    }

    .valor-cargo {
        grid-area: 2 / 1 / 3 / 2;
    }

    .text-price {
        align-items: flex-start;
        flex-direction: column;
    }

    .text-price span {
        font-size: 14.26px;
        line-height: 13px;
    }

    .card-beneficios .terms {
        align-self: center;
        justify-self: flex-start;
        grid-area: 3 / 1 / 4 / 2;
    }

    .list-benefits {
        grid-area: 1 / 2 / 3 / 3;
    }

    .card-beneficios a {
        max-width: 315px;
        height: 48px;
        font-size: 17px;
        grid-area: 3 / 2 / 4 / 3;
    }

    .text-beneficios .title {
        font-size: 22px;
    }

    .text-beneficios .subtitle {
        font-size: 20px;
    }

}