.cards-section{
    padding: 32px 0px 0px 0px;
}

.cards-section h6 {
    width: 100%;
    color: #000;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0px;
}

.cards-section .cards-container {
    display: flex;
    justify-content: space-between;

    margin-top: 15px;
}

.cards-container::-webkit-scrollbar-thumb {
    width: 180px;
}

.cards-section .cards-container .custom-card {
    padding: 24px 20px;
    background-color: #FFFFFF;
    max-width: 396px;
    height: auto;
    display: flex;
    margin: 15px 30px 16px 0px;
    box-shadow: 0 0.125rem 0.75rem rgba(27,27,27,.15);
    border-radius: 16px;
}

/* AJUSTES PARA CARDS MOBILE */
@media (max-width: 1199px){
    .cards-section .cards-container .custom-card {
        min-width: 368px;
        margin: 10px 8px 16px 16px;
    }
    .cards-section .cards-container {
        overflow-x: auto;
        margin-left: -16px;
        margin-top: 10px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px){
    .cards-section .cards-container .custom-card {
        padding: 40px 20px;
    }
}
/* -- */

.cards-section .cards-container :last-child {
    margin-right: 0px;
}

.cards-section .cards-container .custom-card>div {
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cards-section .cards-container img {
    width: 80px;
    height: 80px;
}

.cards-section .cards-container p {
    color: #1B1B1B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0px !important;
}
