footer {
    background-color: var(--azul);
    color: var(--fundo);
    position: relative;
    padding: 2rem 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 5rem;
    overflow: hidden !important;

    a {
        color: var(--fundo);
    }

    svg {
        path {
            fill: var(--fundo);
            transition: 0.3s ease;
        }
    }

    #logo_footer {
        display: flex;
        justify-content: center;
        height: 4rem;
        margin: 2rem;
    }

    #marca_dagua {
        position: absolute;
        height: 100%;
        top: 0;
        left: -8rem;
        width: auto;
        z-index: 0;
        opacity: 0.1;
    }

    #dados_cont {
        display: flex;
        flex-direction: column;
        gap: 2rem;

        #cont {
            font-weight: bold;
            display: flex;
            flex-direction: column;
        }
    }

    #divisao {
        position: relative;

        svg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 2rem;
            height: auto;
            z-index: 1;
        }
    }

    #divisao:before {
        content: '';
        position: absolute;
        width: 6rem;
        height: 6rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background: var(--azul);
    }

    #dt_info {
        display: flex;
        justify-content: space-between;
        z-index: 1;
    }
}

/* Responsivo */
@media (max-width: 900px) {
    footer {
        padding: 2rem 1rem;

        #dt_info {
            flex-direction: column;
            gap: 1rem;
            margin-top: 3rem;
        }
    }
}

@media (max-width: 700px) {
    #marca_dagua {
        display: none;
    }
}