/* ============================================
   HELADERÍA KAFIT — Footer
   ============================================ */

.footer {
    background: var(--kafit-dark);
    color: rgba(255,255,255,0.75);
    padding-top: var(--space-16);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

.footer__brand {}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    text-decoration: none;
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--kafit-white);
}

.footer__brand p {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-6);
    max-width: 300px;
}

.footer__social {
    display: flex;
    gap: var(--space-3);
}

.footer__social-link {
    width: 40px; height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kafit-white);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.footer__social-link:hover {
    background: var(--kafit-primary);
    transform: translateY(-3px);
}

.footer__column h4 {
    color: var(--kafit-white);
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-5);
    position: relative;
}

.footer__column h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--kafit-primary);
    border-radius: 2px;
    margin-top: var(--space-2);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__link {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.footer__link:hover {
    color: var(--kafit-white);
    transform: translateX(4px);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
}

.footer__contact-icon {
    width: 20px;
    text-align: center;
    color: var(--kafit-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Footer Bottom ── */
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--space-6) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer__copyright {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.4);
}

.footer__bottom-links {
    display: flex;
    gap: var(--space-6);
}

.footer__bottom-links a {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.4);
    transition: color var(--transition-fast);
}

.footer__bottom-links a:hover { color: var(--kafit-white); }

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}
