.section-cards {
    padding-bottom: 20px;
}
.aside-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.title {
    height: 90px;

    font: 400 36px 'Poppins', sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
    
    margin-top: 60px;
    margin-bottom: 35px;

    color: rgb(104, 104, 104);
}

.cards-container {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
}

.card-static {
    background: #f1f1f1;
    width: 300px;

    transition: margin-top 0.2s;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.425);
}

.card-static:hover {
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.09);

    filter: brightness(0.9);
}

.cards-row {
    height: 50vh;

    display: flex;
    flex-direction: column;
    justify-content: center;

    margin: 5px;
    height: 100%;
}

.cards-row h3 {
    text-align: center;
    font-size: 50px;
    color: #525252;

    padding: 30px;
}

.cards-row h3 > span {
    font-size: 30px;
    color: #9784af;
    
    font-weight: 400;
}

.cards-row h3 > .simbolo {
    font-size: 30px;
    color: #525252;
}

.cards-price {
    width: 100%;
    padding: 5px;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 30px;
    /*border-bottom: 1px solid #DCDCDC;*/
    transition: all .3s;

    background-image: url('../images/icon-confirm.png');
    background-repeat: no-repeat;
    background-size: 15px 12px;
    background-position: 8px 18px;

    line-height: 30px;

    color: #8492af;
}

.disabled {
    background-image: none;
    color: #525252;
}

.cards-footer {
    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: center;
    align-items: flex-end;

    padding: 5px;
}

.list-group-item > span {
    text-decoration: line-through;
}

.cards-footer .button-aderir {
    border-radius: 0;
    background: rgb(131, 194, 245);
}

.button-aderir {
    border-radius: 8px;
    border: 0;
    background: #8354fd;
}

.button-aderir img {
    width: 25px;
    height: 25px;
    margin-right: 8px;

    filter: invert(100%);
}

.normal img {
    width: 25px;
    height: 25px;
    margin-right: 8px;

    filter: invert(0%);
}

.button-aderir a {
    height: 50px;
    border-radius: 8px;
    font-weight: 500;
    color: #FFF;
    
    text-decoration: none;
    
    border: 0;

    padding: 0 32px;
    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    transition: filter 0.2s;
}

.button-aderir:hover {
    filter: brightness(0.9);
}


.cards-footer > .button-aderir {
    background: rgb(251,0,208);
    background: linear-gradient(90deg, rgba(251,0,208,1) 0%, rgba(236,96,16,1) 88%);

    border-radius: 5px;
}

.cards-footer > .button-aderir a {
    font-weight: 700;
    font-size: 1.1rem;
}

/* MINI CARDS */
.familia {
    width: 100%;
    background: rgba(255, 255, 255, 0.253);
    justify-content: flex-end;

    margin: 50px;
    padding: 5px;

    box-shadow: 1px 1px 1px 1px rgba(114, 113, 113, 0.075);
}

.familia-left {
    justify-content: flex-start;  
}
.familia ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: row;
    width: 100%;
    height: 100%;
    gap: 5px;

    z-index: 1;
}

.familia ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 200px;
    height: 150px;
    padding: 15px;
    background: rgb(250, 250, 250);

    border-radius: 5px;
    text-align: center;

    color: rgb(82, 82, 82);

    box-shadow: 1px 1px 1px 1px rgba(114, 113, 113, 0.075);
}

.familia ul li:hover {
    background: rgb(224, 224, 224);
}

.familia ul li p {
    margin: 5px;
    text-decoration: underline;
}

.familia ul img {
    width: 80px;
    height: 80px;
}

@media (max-width: 900px) {
    .cards-container {
        display: flex;
        flex-direction: column;
    }

    .familia ul {
        display: flex;
        flex-wrap: wrap;
    }
}