/* ============================================================
   FOOTER NEWBIO — clean, alinhado e premium
============================================================ */

.footer {
    width: 100%;
    padding: 70px 0 40px;
    background: #0f0f0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(120,120,120,0.12);
}

/* Container principal */
.footer-container {
    width: min(1500px, 92%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

/* Texto esquerda */
.footer-left span {
    font-size: 1.05rem;
    color: #bfbfbf;
    letter-spacing: 0.02em;
    font-weight: 300;
}

/* Menu central */
.footer-nav {
    display: flex;
    gap: 2.4rem;
}

.footer-nav a {
    color: #d5d5d5;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    transition: 0.2s ease;
}

.footer-nav a:hover {
    color: var(--gold-end);
}

/* ÍCONES */
.footer-social {
    display: flex;
    gap: 1.4rem;
}

.footer-social img {
    width: 22px;
    opacity: 0.7;
    transition: 0.2s ease;
}

.footer-social img:hover {
    opacity: 1;
}

/* Linha final */
.footer-bottom {
    width: 100%;
    text-align: center;
    color: #cfcfcf;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.06em;
}


/* ============================
   RESPONSIVO
============================ */

@media (max-width: 950px) {

    .footer-container {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}
