/* ==========================================================================
   FOOTER ESTILO MINIMALISTA & MODERNO (SIBENITO)
   ========================================================================== */

.site-footer {
    width: 100%;
    background-color: #f2f2f2; /* Tono de fondo gris claro de la imagen */
    padding: 90px 20px 40px 20px;
    box-sizing: border-box;
    font-family: var(--gn-font-headings, 'Syne', sans-serif);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* 1. Líneas Divisoras Negras */
.footer-divider {
    border: none;
    border-top: 2px solid #111111; /* Línea negra definida */
    margin: 0;
    width: 100%;
}

.top-divider {
    margin-bottom: 50px;
}

.middle-divider {
    margin-top: 40px;
    margin-bottom: 30px;
}

.bottom-divider {
    margin-top: 30px;
    margin-bottom: 25px;
}

/* 2. Grid de Menús de Navegación */
.footer-columns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 20px;
}

.footer-col-title {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 20px 0;
    letter-spacing: -0.3px;
}

.footer-menu-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-menu-list li {
    margin-bottom: 12px;
}

.footer-menu-list a {
    color: #444444;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-menu-list a:hover {
    color: var(--gn-accent-color);
}

/* 3. Bar de Logo y Redes Sociales (Estilo Imagen) */
.footer-brand-social-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.footer-brand-name {
    font-size: 28px;
    font-weight: 800;
    color: #111111;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-logo a {
    text-decoration: none;
}

.footer-social-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-label {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
}

.social-links-list {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-links-list a {
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.social-links-list a:hover {
    color: var(--gn-accent-color);
    opacity: 0.7;
}

/* 4. Copyright */
.footer-bottom-copyright {
    text-align: center;
}

.footer-bottom-copyright p {
    font-size: 15px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}
.footer-logo img{
    height: 30px;
}
/* ==========================================================================
   RESPONSIVE FOOTER
   ========================================================================== */

@media (max-width: 991px) {
    .footer-columns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-brand-social-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-social-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .social-links-list {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .footer-columns-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .site-footer {
        padding: 40px 15px 30px 15px;
    }

    .footer-brand-name {
        font-size: 22px;
    }
}

