.main-container-por-demanda {
    display: flex;
    flex-direction: column;
}

.planes-main-container {
    padding: 35px 0 0;
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.plan-por-demanda {
    margin: 0 auto;
    max-width: 293px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.plan-por-demanda .description {
    width: 100%;
    height: 20px;
    background-color: var(--darkBlue);
    font-size: 12px;
    line-height: 1.17;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.plan-por-demanda .info-prices {
    padding: 20px 15px 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.info-prices .box {
    width: 50%;
}

.info-prices .box:nth-child(1) {
    border-right: 1px solid #C4C4C4;
}

.info-prices .box i {
    font-size: 28px;
    color: var(--blue);
}

.info-prices .bl-price {
    font-size: 21px;
    line-height: 15px;
}

.info-prices .bl-subtitle {
    font-size: 11px;
    line-height: 26px;
}

.plan-por-demanda .info-benefits {
    display: flex;
    width: 85%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 18px;
    border-top: 1px solid #C4C4C4;
    padding: 20px 10px;
}

.info-benefits i {
    font-size: 34px;
    color: var(--blue);
}

.info-benefits .text-description {
    font-size: 12px;
}


@media (min-width:768px) {
   .main-container-por-demanda {
            padding: 0 0 50px;
        margin: 0 auto;
        width: 95%;
        max-width: 1020px;
        gap: 25px;
        flex-direction: row;
        align-items: center;
    }

    .planes-main-container {
                width: 85%;
        max-width: 410px;
        flex-direction: row;
    }

    .plan-por-demanda{
        margin: 0;
        width: 100%;
        max-width: 206px;
        height: 320px;
        border-radius: 5px;
    }

    .plan-por-demanda .info-prices {
        padding: 5px 15px 0px;
        flex-direction: column;
    }

    .plan-por-demanda .info-prices .box {
        padding: 12px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .info-prices .box:nth-child(1) {
        border-right: unset;
        border-bottom: 1px solid #C4C4C4;
    }

    .info-prices .box i {
        font-size: 32px;
    }

    .text-description .bl-price {
        font-size: 25px;
        line-height: 29px;
    }

    .info-prices .bl-subtitle {
        font-size: 12px;
        line-height: 20px;
    }

    .plan-por-demanda .info-benefits{
            padding: 12px 10px;
        width: 90%;
        height: 140px;
    }
}