/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {

	/* COLORS */
  --white-color:                 #fff;
  --blue-color:                  #2857A5;
  --blue-opposite-color:         #FFCB29;
  --green-color:                 #33CC99;
  --green-opposite-color:        #Cc3366;
  --gray-color:                  #808080;
  --gray-opposite-color:         #ccc;

  --h2-colors:                   #2857A5;
}

* {
	margin: 0;
	padding: 0px;
	box-sizing: border-box;
}

body {
	padding: 4%;
	font-family: "Montserrat", sans-serif;
	background: #e6e6e6;
}

.header {
	width: 100%;
	height: 115px;
	background-image: url(../../assets/img/blog/back-blog-mobile.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 20px;
}

/* ---- VISITE NOSSO SITE ----*/

.www {
	width: 100%;
	height: 60px;
	text-align: center;
}

.www h2 {
	font-size: 1.3em;
}

.www a {
	text-decoration: none;
	font-size: 1.5em;
}

/* ---- ARTIGO ----*/

.article {
	width: 100%;
	max-height: default;
	display: flow-root;
	background: white;
	margin-top: 4%;
	padding: 4%;
	margin-bottom: 20px;
	text-align: left;
}

.article h1 {
	font-size: 1.5em;
	margin-bottom: 10px;
	color: var(--blue-color);
}

.article img {
	width: 100%;
	height: auto;
}

.article p {
	width: 100%;
	font-size: 1.3em;
}

/* ---- CURTIR REDES SOCIAIS ----*/

.seguir {
	width: 100%;
	max-height: default;
	display: flow-root;
	text-align: center;
	margin-bottom: 20px;
}

.seguir h2{
	font-size: 1.2em;
	margin-bottom: 20px;
}

/* ---- SEGUIR REDES SOCIAIS ----*/

.aside {
	width: 100%;
	max-height: default;
	display: flow-root;
	background: white;
	padding: 4%;
	text-align: center;
	margin-bottom: 20px;
}

.aside h2 {
	font-size: 1.3em;
}

.aside #redes {
	width: 100%;
	height: 40px;
}

/* ---- MATÉRIAS ANTERIORES ----*/

.nav {
	width: 100%;
	max-height: default;
	display: flow-root;
	background: white;
	padding: 4%;
	text-align: center;
	margin-bottom: 20px;
}

.nav h2 {
	font-size: 1.5em;
	margin-bottom: 20px;
}

.nav #box {
	width: 100%;
	max-height: default;
	display: flow-root;
	background: var(--green-color);
	padding: 2%;
	color: white;
	margin-bottom: 10px;
}

.nav #box a {
	color: white;
	text-decoration: none;
}

.nav #box:hover {
	background: var(--green-opposite-color);
	transition: 1s;
}

/* ---- FOOTER ----*/

.footer {
	width: 100%;
	height: 400px;
	background: var(--blue-color);
	padding: 4%;
	text-align: center;
}

.footer a{
	text-decoration: none;
	color: white;
}

@media screen and (min-width: 1024px) {

.header {
	height: 275px;
	background-image: url(../../assets/img/blog/back-blog.jpg);
}

/* ---- ARTIGO ----*/

.article {
	width: 100%;
	max-height: default;
	display: flow-root;
	background: white;
	margin-top: 4%;
	padding: 5% 20%;
	margin-bottom: 20px;
	text-align: justify;
}

.article h1 {
	font-size: 1.5em;
	margin-bottom: 10px;
	color: var(--blue-color);
}

.article img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.article p {
	width: 100%;
	font-size: 1em;
	float: left;
}