﻿

.site-footer {
    background-color: var(--dark-blue);
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

/* container com logo e hashtag */
.site-footer__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 32px 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* logo */
.footer-brand img {
    height: 64px; /* ajuste se precisar */
    display: block;
}

/* hashtag */
.footer-hashtag {
    font-weight: 500;
    letter-spacing: .4px;
    margin: 0;
    color:#fff !important;
}

/* barra inferior */
.site-footer__bottom {
    background: rgba(255,255,255,.06);
    padding: 12px 16px;
    font-size: 14px;
    color: #fff !important;
}



/* barra inferior */
.site-footer__bottom {
    background: rgba(255,255,255,.06);
    padding: 12px 16px;
    font-size: 14px;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center; /* centraliza tudo */
    gap: 8px;
}

/* barra desenvolvedor */
.site-footer__dev {
    background: rgba(255,255,255,.12);
    padding: 10px 16px;
    font-size: 13px;
    color: #fff !important;
}

    .site-footer__dev a.nextsharp {
        color: #F9992A !important;
        text-decoration: none;
        font-weight: 600;
    }

.nextsharp:hover {
    text-decoration: underline;
}