.site-footer {
    background-color: #E0D3D6;
    width: 100%;
    color: var(--color-arcilla);
}

.site-footer a {
    text-decoration: none; 
}

.site-footer p {
    margin-bottom: 0;
}

.footer-contact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 2% 2% 2% 16%;
    max-width: 100%;
    margin: 0 auto;
}

.footer-column {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: end;
}



.footer-legal {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 12% 2% 2% 16%;
    background-color: #D6C3C9;

    gap: 24px;
}

.footer-legal-links {
    flex: 0 0 48%;
    display: flex;
    justify-content: flex-start;
}

/* ===== Estilos del menú legal ===== */


.legal-list {
    list-style: none;
    line-height: 1.1;
}



.legal-list .sub-menu {
    display: none; 
}

.legal-list .current-menu-item > a {
    opacity: 1;
    font-weight: 500;
}

/* ===== Logo ===== */
.footer-logo {
    flex: 0 0 48%;
    display: flex;
    justify-content: flex-start;
}

.footer-logo img,
.footer-logo .custom-logo {
    max-width: 100%;
    height: auto;
    display: block;
}



/* ===== Responsive Tablet ===== */
@media (max-width: 1024px) {
    .footer-contact {
        padding: 2%;
        gap: 24px;
    }
    
    .footer-column {
        flex: 0 0 48%;
    }
    
    .footer-legal {
        padding: 2%;
    }
    
    .footer-legal-links,
    .footer-logo {
        flex: 0 0 48%;
    }
    
}

/* ===== Responsive Mobile ===== */
@media (max-width: 767px) {
    .footer-contact {
        flex-direction: column;
        padding: 4em 1em;
        gap: 80px;
    }

    .footer-column {
        flex: 0 0 100%;
        width: 100%;
        align-items: flex-start;
        gap: 32px;
    }
    
    .footer-legal {
        flex-direction: column;
        padding: 2em 1em;
        gap: 24px;
    }

    .footer-legal-links,
    .footer-logo {
        flex: 0 0 100%;
        width: 100%;
    }


    .footer-logo img,
    .footer-logo .custom-logo {
        margin: 0 auto;
    }


}

/* ===== Accesibilidad ===== */
@media (prefers-reduced-motion: reduce) {
    .footer-info a, .legal-list a { transition: none; }

}

.footer-info a:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.legal-list a:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}