/* FOOTER BASE */

.footer {
    position: relative;
    overflow: hidden;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(
        to bottom,
        #141414 0%,
        #101010 45%,
        #090909 100%
    );
}

/* CONTAINER */

.footer-container {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(1.5rem, 4vw, 2rem);

    padding: clamp(2rem, 5vw, 2.5rem) 0;
}

/* BRAND */

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo h2 {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-logo p {
    max-width: min(100%, 20rem);
    font-size: 0.95rem;
    opacity: 0.75;
}

/* NAV */

.footer-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 1.5rem);
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition-default);
}

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

/* =========================
   RESPONSIVIDADE FOOTER
========================= */
