/** ==============================================================================================================================================
 * I. Estilos Generales
 */

 #footer{
    background-color: var(--negro-suave);
    color: var(--blanco_opaco);
}
#footer ul{
    list-style: none;
}
#footer a{
    text-decoration: none;
    color: var(--blanco_opaco);
}
.footer_logo{
    border-radius: 100%;
    width: 3em;
    font-weight: bolder;
}
.footer_logo_link span{
    font-size: 350%;
}
.footer_logo_link img{
    font-size: 150%;
    margin-right: 0.3em;
}
.footer_logo_link{
    display: flex;
    align-items: center;
    margin: 1em 0;
}
.footer_title{
    font-size: 150%;
    font-weight: bolder;
}
#copyright{
    text-align: center;
    background-color: black;
    color: white;
    padding: 1%;
}
#copyright p{
    margin-bottom: 0 !important;
}
/* ==========================================================================================================
** Sección Exclusiva para determinar cómo se muestra 
** el FOOTER DEL SITIO en distintos dispositivos
*/
@media screen and (min-width: 1200px ) {
    footer .footer_escritorio{
        padding: 4em;
    }
    .footer_movil{
        display: none;
    }
    .footer_menu{
        padding: 0 !important;
    }
    .footer_menu li{
        margin-bottom: 0.3em;
    }
    .footer_menu i{
        margin-right: 0.3em;
    }
    .footer_container{
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}
/* -- (@Media para Moviles) -- */
@media screen and (max-width: 1199px) {
    footer{
        padding-top: 2em;
    }
    footer .footer_movil{
        padding: 2em;
    }
    footer ul{
        padding: 0 !important;
    }
    .footer_menu{
        margin: 3em 0;
    }
    .footer_escritorio{
        display: none;
    }
    .social_links{
        justify-content: center;
    }
    .footer_container{
        font-size: 80%;
        display: flex;
        justify-content: space-between;
    }
    #copyright{
        text-align: center;
        flex-direction: column;
    }
}