@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

body {
	font-family: 'Montserrat', sans-serif;
	font-size:12px;
	color:#1e328b;
} 
.line {
    width: 100%;
    height: 1px;
    border-bottom: #CCC thin solid;
    margin: 10px 0;
}
.separador{
	width:100%;
	height:15px;
}
.responsive_oculto
{
	display:block;	
}
.normal_oculto
{
	display:none;	
}

@media only screen and (max-width : 480px) {
	.responsive_oculto
	{
		display:none;	
	}
	.normal_oculto
	{
		display:block;	
	}
}

