/* ===== FOOTER COMPONENT - REUTILIZABLE ===== */
/* Estética: Blanco y Negro */
/* IMPORTANTE: Este archivo debe cargarse DESPUÉS de home.css */

body .site-footer {
    background: #000 !important;
    color: #fff !important;
    padding: 3rem 2rem 1.5rem !important;
    border-top: 1px solid #222 !important;
    position: relative !important;
    z-index: 10 !important;
    display: block !important;
    width: 100% !important;
    font-family: 'Montserrat', sans-serif !important;
}

body .site-footer .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Sección de Marca */
body .site-footer .footer-brand {
    max-width: 350px;
}

body .site-footer .footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 1rem;
    display: block !important;
}

body .site-footer .footer-tagline {
    color: #ccc !important;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Secciones Generales */
body .site-footer .footer-section h4 {
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

body .site-footer .footer-section a {
    display: block;
    color: #ccc !important;
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

body .site-footer .footer-section a:hover {
    color: #fff !important;
}

body .site-footer .footer-section p {
    color: #ccc !important;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

body .site-footer .footer-address-link {
    color: inherit !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-bottom: 0 !important;
    transition: all 0.3s ease;
}

body .site-footer .footer-address-link:hover {
    color: #fff !important;
    transform: translateX(5px);
}

/* Iconos de Redes Sociales */
body .site-footer .footer-social-icons {
    display: flex !important;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

body .site-footer .footer-social-icons a {
    width: 36px;
    height: 36px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #222 !important;
    border-radius: 50%;
    color: #fff !important;
    transition: all 0.3s ease;
}

body .site-footer .footer-social-icons a:hover {
    background: #fff !important;
    color: #000 !important;
    transform: translateY(-3px);
}

/* Copyright */
body .site-footer .footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #222;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

body .site-footer .footer-bottom p {
    color: #666 !important;
    font-size: 0.75rem;
    margin: 0;
}

body .site-footer .footer-admin a {
    color: #666 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

body .site-footer .footer-admin a:hover {
    color: #fff !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    body .site-footer .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    body .site-footer {
        padding: 2rem 1.5rem 1rem !important;
    }
    
    body .site-footer .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    body .site-footer .footer-brand {
        max-width: 100%;
    }
    
    body .site-footer .footer-section a {
        display: inline-block;
        margin: 0 0.5rem 0.5rem;
    }
    
    body .site-footer .footer-social-icons {
        justify-content: center;
    }
    
    body .site-footer .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
