

.features {
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
    padding-bottom: 10rem;
    padding-top: 5rem;
    
    background: var(--BACKGROUNDS-LILAS-TONAL-BCK-100, #F3F2FF);
    overflow: visible;
    visibility: hidden;

}

.features .centered .cardsFeatures {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    box-sizing: border-box;
    width: 100%;
    align-content: space-between;
    align-items: center;
}

.features .centered {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 7.5rem;
    position: relative;
    flex-direction: column;
}

.features img.decorative3 {
    position: absolute;
    left: 8.75rem;
    top: -3.5rem;
    width: 8%;

}


.features .centered .card {
    min-width: 18.75rem;
    height: 19rem;
    width: 32%;
    background: #f6f7fb;
    visibility: hidden;
    /* borders/border tonal */

    border: 0.0625rem solid #dcdbff;
    border-radius: 0.75rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    text-align: left;
    gap: 1.5rem;
    z-index: 1;

    transition: all 1s;
}

.features .centered span.material-symbols-outlined {
    font-size: 3rem;
    color: #5e17eb;

    width: 5.75rem;
    height: 5.75rem;

    /* lila claro */

    background: #dcdbff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features .centered .cardsFeatures p {
    margin: 0;

    /* s1 */

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 120%;
    /* or 25px */

    align-items: flex-start;
    text-align: left;
    letter-spacing: 0.0288rem;

    /* NEUTRAL/NEUTRAL 0 */

    color: #2E2C2C;
}
.features .centered .cardsFeatures h4 {
    color: var(--gray-NEUTRAL-10, var(--neutral-NEUTRAL-10, #2E2C2C));
    font-feature-settings: 'liga' off, 'clig' off;

    /* Montserrat/h4 */
    font-family: var(--typos-H-4-font-family, Montserrat);
    font-size: var(--typos-H-4-size, 1.3125rem);
    font-style: normal;
    font-weight: var(--typos-H-4-weight, 700);
    line-height: 120%; /* 25.2px */
    letter-spacing: 0.46px;
}

.features .centered .cardsFeatures .demo {
    padding: 1.5rem;
    gap: 1rem;
    background: #8982ff;
    align-items: center;
}

.features .centered .cardsFeatures img.imgDemo {
    width: 11.75rem;
}

.features .centered .cardsFeatures .Demo .material-symbols-outlined {
    background: none;
    border-radius: unset;
    display: inline-block;
    font-size: 1.125rem;
    width: auto;
    height: auto;
    color: #563cf9;
}

.features .centered h1 {
    position: relative;
}

.features .centered h1 img {
    position: absolute;
    right: 0;
    bottom: -1rem;
    width: 100%;
    max-height: 3.625rem;
}

@media only screen and (max-width: 936px) {
   

}

@media only screen and (max-width: 780px) {


    .features .centered {
        z-index: 3;
        padding: 0 2.5rem;
        box-sizing: border-box;
        width: 100%;
        height: auto;
    }

    .features .centered h1{
        font-size: 2.25rem;
    }
    .features .centered h4{
        font-size: 1.125rem;
    }

    .features .centered .cardsFeatures {
        justify-content: center;
        width: 100%;
        max-width: 31.25rem;
        flex-direction: column;
    }

    .features .centered .card {
        justify-content: center;
        width: 100%;
        max-width: 31.25rem;
        z-index: 9;
    }

 

    .features img.decorative3 {
        width: 12%;
        left: 2.5rem;
        top: -1.5rem;

    }
    .features .centered .cardsFeatures p {
        font-size: 12px;
    }




}