/* Footer Minimalista Inmenso */
.big-footer {
    background-color: var(--color-void);
    color: #FFF;
    padding: 120px 5% 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px 60px;
    margin-bottom: 120px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 32px;
    color: var(--color-subtext);
}

.footer-col a {
    color: #FFF;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    transition: opacity 0.2s;
}

.footer-col a:hover {
    opacity: 0.5;
}

.footer-brand-title {
    font-family: var(--font-display);
    font-size: clamp(80px, 16vw, 400px);
    font-weight: 900;
    line-height: 0.8;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    letter-spacing: -0.06em;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--color-subtext);
}

.footer-col p {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px;
    max-width: 30ch;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .footer-brand-title {
        font-size: 24vw;
    }
}