/* Footer unificado y aislado de estilos de otras páginas */

.footer {
    position: relative;
    clear: both;
    display: block;
    width: 100%;
    float: none;
    z-index: 3;
    padding-top: 80px;
    margin-top: 0;
    background-color: #ffffffea;
}

.footer .container,
.footer .row,
.footer .col {
    text-align: center;
}

.footer .footer_logo {
    text-align: center;
    display: flex;
    justify-content: center;
}

.footer .footer_logo a img {
    max-height: 200px;
    width: auto;
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer .footer_nav {
    margin-top: 14px;
}

.footer .footer_nav ul {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer .footer_nav ul li {
    display: inline-flex !important;
    margin-right: 0;
}

.footer .footer_nav ul li:last-child {
    margin-right: 0;
}

.footer .footer_nav ul li a {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    color: #111111 !important;
    font-weight: 600;
    letter-spacing: 0.2em;
    transition: all 200ms ease;
    text-decoration: none;
}

.footer .footer_nav ul li a:hover {
    color: #937c6f !important;
}

.footer .footer_nav ul li a:visited,
.footer .footer_nav ul li a:active,
.footer .footer_nav ul li a:focus {
    color: #111111 !important;
}

.footer .footer_social {
    margin-top: 51px;
}

.footer .footer_social ul li {
    display: inline-block;
    margin-right: 36px;
}

.footer .footer_social ul li:last-child {
    margin-right: 0;
}

.footer .footer_social ul li a i {
    font-size: 24px;
    color: #937c6f;
    transition: all 200ms ease;
}

.footer .footer_social ul li a i:hover {
    color: #e0e3e4;
}

.footer .copyright {
    margin-top: 56px;
    padding-bottom: 13px;
    font-family: 'Lucida', serif;
    font-size: 12px;
    color: #232323;
}

@media only screen and (max-width: 1024px) {
    .footer {
        margin-top: 56px ;
        background-color: #ffffffea !important;
    }

    .footer .footer_nav {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .footer .footer_nav ul {
        display: block !important;
        list-style: none;
        padding-left: 0;
        text-align: center;
    }

    .footer .footer_nav ul li {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-right: 0;
    }

    .footer .footer_nav ul li a,
    .footer .footer_nav ul li a:visited,
    .footer .footer_nav ul li a:active,
    .footer .footer_nav ul li a:focus {
        color: #111111 !important;
    }
}

@media only screen and (max-width: 768px) {
    .footer {
        padding-top: 56px;
        margin-top: 84px;
    }

    .footer .footer_logo a img {
        max-height: 150px;
        margin-top: 20px;
    }

    .footer .footer_nav {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .footer .footer_nav ul {
        display: block !important;
        padding-left: 0;
        text-align: center;
    }

    .footer .footer_nav ul li {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .footer .footer_nav ul li a {
        display: inline-block !important;
        color: #111111 !important;
        font-size: 14px;
    }

    .footer .footer_nav ul li a:visited,
    .footer .footer_nav ul li a:active,
    .footer .footer_nav ul li a:focus {
        color: #111111 !important;
    }

    .footer .footer_social ul li {
        margin-right: 20px;
    }

    .footer .footer_social ul li a i {
        font-size: 20px;
    }

    .footer .copyright {
        font-size: 14px;
        text-align: center;
    }
}

@media only screen and (max-width: 480px) {
    .footer {
       
        margin-top: 226px;
    }

    .footer .footer_logo a img {
        max-height: 120px;
        margin-top: 12px;
    }

    .footer .footer_nav ul li {
        display: inline-flex !important;
        margin: 0;
    }

    .footer .footer_nav ul li a {
        font-size: 12px;
    }

    .footer .footer_social {
        margin-top: 28px;
    }

    .footer .footer_social ul li {
        margin-right: 15px;
    }

    .footer .footer_social ul li a i {
        font-size: 18px;
    }

    .footer .copyright {
        font-size: 10px;
    }
}



