/****************************************************/
/* Geral */
/****************************************************/

body{
    font-family: "Open Sans", Arial, sans-serif;
    color:#4d4d4d;
    min-width: 350px;
}

h1, h2, h3{
    margin: 0;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 700;
}

/****************************************************/
/* Navegação */
/****************************************************/

/*Aplicável a todo campo de navegaçaõ*/
nav{
    display: -webkit-box;display: -ms-flexbox;display: flex;
    flex-direction:column;
    align-items: center;
    /*background-color: #1E3554;*/
    /*background-image: linear-gradient(to right, #1E3554, #52A5C7);*/
    background-image: linear-gradient(to right, #000000, #000000);
}

/*Imagem Logo*/
nav img {    
    display: inline-block;
    padding: 20px 0 0 0;
	margin-Top: 5%;
	margin-bottom: 5%;
}

/*Indice*/
nav ul{
    list-style: none;
    padding: 0;
    display: -webkit-box;display: -ms-flexbox;display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;    
}

/*Estende a área clicavel*/
nav ul li{
    text-align: center;
    width: 100%;    
}

/*Responsividade mobile*/
nav ul li a{
    display: inline-block;
    padding: 10px 0;
    width: 100%;
    text-decoration: none;
    color: #f1f1f1;   
}

/****************************************************/
/* Section */
/****************************************************/

section{
    color: #656262;
    padding: 0 2em 0 2em;
}

/*titulo*/
section h1{
    padding: 1em 0 1em 0;        
}

section div p{
    text-align: justify;
}

/****************************************************/
/* Rodapé */
/****************************************************/

/* Configurações gerais do rodapé*/
footer{    
    display: -webkit-box;display: -ms-flexbox;display: flex;
    flex-direction: row;
    justify-content:space-between;
    background-color: #3c50ff;
    color: #f1f1f1;
    font-weight: 700;
    /*position: fixed;
    bottom: 0;
    width: 100%;*/
    margin-top: 2em;
}

/*Configurações da frase "Desenvolvido por"*/
footer div p{    
    white-space: nowrap;
    margin-left: 20px;
    margin-bottom: 0;
    /*padding-top: 0.5em;*/
    position: relative;
    top: 10px;
}

/*Configurações da imagem logo FalCom*/
footer p img{    
    margin-right: 20px;
    margin-bottom: 00px;    
}

/*---------------------------------------------------------------*/
/*---------------------------------------------------------------*/
/* Media Queries */
/*---------------------------------------------------------------*/
/*---------------------------------------------------------------*/

/*---------------------------------------------------------------*/
/*MQ - Tablet*/
/*---------------------------------------------------------------*/
@media screen and (min-width: 900px){    
    
    /****************************************************/
    /* Navegação */
    /****************************************************/
    
    /*Altera orientação do menu*/
    nav{
        flex-direction: row;
        justify-content: space-around;       
    }
    
    /*Altera espaçamento do menu*/
    nav ul{
        flex-direction: row;
        width: 70%;
    }
    
    /*Altera espaçamento ao redor do logo*/
    nav img {    
        padding-left: 10px;    
    }
    
    /****************************************************/
    /* Section */
    /****************************************************/

    section{        
        padding: 0 5em 0 5em;
    }
        
} /*Final da Media Querie Tablet*/


/*---------------------------------------------------------------*/
/*MQ - Desktop*/
/*---------------------------------------------------------------*/
@media screen and (min-width: 1080px){    
    
    /****************************************************/
    /* Navegação */
    /****************************************************/
    
    /*Altera orientação do menu*/
    nav{
        flex-direction: row;
        justify-content: space-around;
    }
    
    /*Altera espaçamento do menu*/
    nav ul{
        flex-direction: row;
        width: 70%;
    }
    
    /*Altera espaçamento ao redor do logo*/
    nav img {    
        padding: 0;    
    }
    
    /****************************************************/
    /* Section */
    /****************************************************/

    section{        
        padding: 0 10em 0 10em;
    }
    
} /*Final da Media Querie desktop*/

/*---------------------------------------------------------------*/
/*MQ - Desktop*/
/*---------------------------------------------------------------*/
@media screen and (min-width: 1400px){    
    

}

