.card {
    width: 300px; /* Ancho fijo de las cards */
    padding-top: 20px;
}

.card-body {
    padding: 10px;
}

.index {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* background-image: url('../../imgs/utils/fondocurvas-transparente.png'); */
    background-size: cover;
    width: 100vw;
    height: 100vh;
    margin: 0;
}

.index-title {
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.26px;
    margin-bottom: 50px; 
}

.description {
    text-align: center;
    width: 300px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    /* gap: 90px; */
    height: 250px;
}

.card__img {
    width: 140px;
    height: 140px;
}

.card__title {
    margin-top: 50px;
    font-size: 23px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.description__text {
    height: 200px;
}

@media only screen and (max-width: 600px) {
    .card {
        width: 180; /* Ancho fijo de las cards */
        padding-top: 5px;
    }

    .card__img {
        width: 90px;
        height: 90px;
    }

    .index {
        background-image: url('../../imgs/utils/fondo-celular.png');
        /* margin-top: -50px; */
    }

    .index-title {
        text-align: center;
        width: 390px;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height:  132.5%;
        letter-spacing: -0.2px;
        margin-top: 100px;
        margin-bottom: -20px;
    }

    .card__title {
        margin-top: 30px;
    }

    .description__text {
        margin-top: -30px;
        height: 100px;
    }
}

@media only screen and (max-width: 1366px) and (min-width: 601px) {


    .card__img {
        width: 100px;
        height: 100px;
    }

    .index {
        height: 100vh;
    }

    .index-title {
        text-align: center;
        /* width: 390px; */
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height:  132.5%;
        letter-spacing: -0.2px;
        margin-top: 40px;
        margin-bottom: -20px;
    }

    .card__title {
        margin-top: 30px;
    }

    .description {
        font-size: 13px;
    }

    .description__text {
        margin-top: -35px;
        height: 100px;
    }
}