/* CLASES PARA CONTENIDO DE CARDS */

.bg-card--white {
    background-color: white;
}

.bg-card--gray {
    background-color: #FBFBFB;
}

.bg-card--blue {
    background-color: #E2E3F8;
}

.titulo-flexible--left {
    text-align: left;
}

.titulo-flexible--center {
    text-align: center;
}

.card-border--white {
    border: 1px solid white;
}

.card-border--purple {
    border: 1px solid #6802C1;
}

.content-flex--top {
    align-items: flex-start;
}

.content-flex--center {
    align-items: center;
}

.content-flex--bottom {
    align-items: flex-end;
}

/* ----------------------------------------------------------------------- */

.container-content-cards {
    padding: 100px 380px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-cards__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-cards__content h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 40px;
    color: black;
}

.content-cards__content-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: black;
}

.content-cards__content-text h3 {
    font-size: 30px;
    line-height: 46px;
    font-weight: bold;
    color: #6802C1;
    margin-bottom: 20px;
}

.content-cards__cards {
    display: flex;
    gap: 40px;
}

.content-cards__card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 30px;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
    background-color: white;
}

.cards--2 .content-cards__card {
    flex: 1 1 calc((100% - 40px) / 2);
    min-width: 0;
}

.cards--3 .content-cards__card {
    flex: 1 1 calc((100% - 80px) / 3);
    min-width: 0;
}

.content-cards__card h2 {
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    color: black;
}

.content-cards__card-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: black;
}

.content-cards__flexible {
    display: flex;
    gap: 26px;
}

.content-cards__flexible-title {
    font-size: 18px;
    line-height: 26px;
    font-weight: bold;
    color: black;
}

.content-cards__flexible-icon-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-cards__flexible-icon-title h2 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: black;
    margin-right: 60px;
}

.cards-circle-flexible {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-top: 4px;
}

.content-cards__flexible-text ul, .content-cards__flexible-text p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: black;
}

@media (min-width: 1200px) and (max-width: 1670px) {
    .container-content-cards {
        padding: 100px 99px;
    }

    .content-cards__card-text {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .container-content-cards {
        padding: 40px 20px;
        gap: 16px;
    }

    .content-cards__cards {
        flex-direction: column;
        gap: 16px;
    }

    .content-cards__card {
        gap: 16px;
    }

    .content-cards__flexible {
        flex-direction: column;
        gap: 16px;
    }

    .content-cards__content-text {
        font-size: 16px;
        line-height: 24px;
    }

    .content-cards__content-text h3 {
        font-size: 18px;
        line-height: 46px;
        margin-bottom: 0;
    }

    .content-cards__card h2 {
        font-size: 16px;
        line-height: 26px;
    }

    .content-cards__card-text {
        font-size: 16px;
        line-height: 24px;
    }

    .content-cards__flexible-title {
        font-size: 16px;
        line-height: 24px;
    }

    .content-cards__flexible-text ul, .content-cards__flexible-text p {
        font-size: 16px;
        line-height: 24px;
        list-style: inside;
    }

    .content-cards__flexible-icon-title h2 {
        font-size: 16px;
        line-height: 24px;
        margin-right: 0;
    }

    .cards-circle-flexible {
        width: 12px;
        height: 12px;
    }

    .content-cards__card h2 {
        font-size: 16px;
        line-height: 24px;
    }
}
