.header {
    background-color: #F2E702;
    height: 50px;
    margin-top: 50px;

    a {
        position: absolute;
        left: calc(50% - 80px);
        top: 10px;
    }
}

.card {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18) !important;
}

footer {
    color: #fff;

    ul {
        list-style: none;

        li:first-child {
            font-weight: bold;
        }
    }
}

.content-footer {
    display: flex;
}

.content-footer-um {
    width: 60%;
    background-color: #000;
    padding: 25px;

    .content {
        display: flex;
        align-items: center;
    }

    /* @media(max-width: 768px) {
        width: 100%;
    } */
}

.content-footer-dois {
    width: 40%;
    background-color: #343434;
    padding: 25px;

    .content {
        display: flex;
        align-items: flex-start;
    }

    /* @media(max-width: 768px) {
        width: 100%;
    } */
}

.divisor {
    width: 250px;
    height: 3px;
    background-color: #F2E702;
    border-radius: 8px;
    margin: 15px auto;
}

@media(max-width: 991px) {
    .content-footer {
        flex-direction: column;

        .content-footer-um,
        .content-footer-dois {
            width: 100%;

            .content {
                display: flex;
                justify-content: center;
                gap: 50px;
                flex-wrap: wrap;
            }
        }
    }
}