.painel-footer {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    border-top: 1px solid rgba(117, 220, 255, .16);
    color: rgba(233, 250, 255, .66);
    background: linear-gradient(105deg, #04182a 0%, #082d49 100%);
    box-shadow: 0 -14px 38px rgba(4, 24, 42, .08);
}

.painel-footer::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, #39c6f0 48%, transparent);
    opacity: .6;
}

.painel-footer__main {
    display: grid;
    min-height: 148px;
    grid-template-columns: minmax(0, 1.35fr) minmax(190px, .55fr) minmax(170px, .45fr);
    align-items: center;
    gap: 34px;
    padding: 25px 0 23px;
}

.painel-footer__eyebrow {
    display: block;
    margin-bottom: 9px;
    color: #75dcff;
    font: 800 .66rem/1 "Roboto Condensed", sans-serif;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.painel-footer__legal p {
    margin: 0;
    color: rgba(233, 250, 255, .76);
    font-size: .78rem;
    line-height: 1.55;
}

.painel-footer__legal small {
    display: block;
    margin-top: 4px;
    color: rgba(233, 250, 255, .4);
    font-size: .68rem;
}

.painel-footer__brand,
.painel-footer__developer {
    display: flex;
    min-height: 82px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.painel-footer__brand img {
    display: block;
    width: 168px;
    height: auto;
}

.painel-footer__version {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 9px;
    margin-top: 8px;
    border: 1px solid rgba(117, 220, 255, .18);
    border-radius: 999px;
    color: rgba(233, 250, 255, .62);
    background: rgba(117, 220, 255, .06);
    font-size: .64rem;
}

.painel-footer__version:hover {
    border-color: rgba(117, 220, 255, .38);
    color: #fff;
    background: rgba(117, 220, 255, .12);
}

.painel-footer__developer {
    align-items: flex-end;
}

.painel-footer__developer span {
    margin-bottom: 8px;
    color: rgba(233, 250, 255, .4);
    font-size: .64rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.painel-footer__developer img {
    display: block;
    width: 116px;
    height: auto;
    opacity: .86;
    transition: opacity .18s ease;
}

.painel-footer__developer a:hover img {
    opacity: 1;
}

@media (max-width: 767.98px) {
    .painel-footer {
        margin-top: 2.25rem;
    }

    .painel-footer__main {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 25px 0 20px;
        text-align: center;
    }

    .painel-footer__brand,
    .painel-footer__developer {
        min-height: 0;
        padding-top: 19px;
        margin-top: 19px;
        border-top: 1px solid rgba(255, 255, 255, .1);
        border-left: 0;
    }

    .painel-footer__developer {
        align-items: center;
    }
}
