/** 
  The goal of a reset stylesheet is to reduce browser inconsistencies in things like default 
  line heights, margins and font sizes of headings, and so on.

  http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

/* Method responsible for defining a line-height of the body */
body {
	line-height: 1;
}

/* Method responsible for defining the style of the list-style */
ol,
ul {
	list-style: none;
}

/* Method to remove indentation and ensure default browser styles are removed */
blockquote,
q {
	quotes: none;
}

/* Method that does the completion to remove indentation and ensure default browser styles are removed */
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

/* Method to set border collapse and border spacing in table */
table {
	border-collapse: collapse;
	border-spacing: 0;
}







/* === Main Section === */

/* Method responsible for keeping the .center element with a width of 1110px and margin 0 and auto. With this
   configuration you will keep everything belonging to the .center element aligned to the center */
.center {
	width: 1110px;
	margin: 0 auto;
}



/* Method responsible for defining padding-top for the #about and .center elements */
#about .center {
	padding-top: 150px;
}



/* Method responsible for setting the width for .img-responsive */
.img-responsiva {
	width: 100%;
}



/* Method responsible for keeping .bullets centralized and with a margin-top of 50px */
.bullets {
	text-align: center;
	margin-top: 50px;
}

/* Method responsible for setting background, opacity, width, height, display, margin and
   border radius of .swiper-pagination-bullet and .bullet*/
.swiper-pagination-bullet,
.bullet {
	background: #ffc107;
	opacity: .2;
	width: 16px;
	height: 16px;
	display: inline-block;
	margin: 0 5px;
	border-radius: 16px;
}

/* Method responsible for setting the background and opacity of the .swiper-pagination-bullet-active.
   It also sets the background color when interacting with .bullet */
.swiper-pagination-bullet-active,
.bullet:hover,
.bullet.ativo {
	background: #ffc107;
	opacity: 1;
}



/* Method responsible for setting the padding-top of .post */
.post {
	
	padding-bottom: 50px;
}

/* Method responsible for setting the padding-top of .posts */
.posts {
	
	padding-bottom: 50px;
}

/* Method responsible for defining color, font size, line height, font weight, display and padding of .post__title */
.post__title {
	color: #2F281E;
	font-size: 24px;
	line-height: 28px;
	font-weight: 600;
	display: block;
	padding: 20px 0 15px 0;
}

/* Method responsible for defining the color, font size and line height of the .post__subtitle */
.post__subtitle {
	color: #5D523D;
	font-size: 16px;
	line-height: 18px;
}

/* Method responsible for setting the font weight of .post__subtitle */
.post__subtitle strong {
	font-weight: 600;
}

/* Method responsible for defining the rounding of .post_image */
.post__imagem {
	overflow: hidden;
	-webkit-border-top-left-radius: 8px;
	-webkit-border-top-right-radius: 8px;
	-moz-border-radius-topleft: 8px;
	-moz-border-radius-topright: 8px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

/* Method responsible for defining a display block for .post_image */
.post__imagem img {
	display: block;
}

/* Method responsible for defining padding for .post__wrapper */
.post__wrapper {
	padding: 0 15px;
}

/* Method responsible for defining the decoration of the .post_link text */
.post__link {
	text-decoration: none;
}

/* Method that defines the interaction color with .post_link and .post__title */
.post__link:hover .post__title {
	color: #ffc107;
}

/* Method that sets the background color and padding-bottom of .post_content */
.post__content {
	background: #ffffff;
	padding-bottom: 10px;
}





/* Method responsible for setting margin-top to .section-top-margin */
.section-top-margin {
	margin-top: 80px;
}

/* Method responsible for setting text-align and padding-top to .pagination */
.pagination {
	text-align: center;
	padding-top: 50px;
}

/* Method responsible for setting text-decoration, font-weight, padding and color for .pagination__link */
.pagination__link {
	text-decoration: none;
	font-weight: 600;
	padding: 0 15px;
	color: #110e0e;
}

/* Method responsible for setting the color of the active page */
.pagination__link.ativo,
.pagination__link:hover {
	color: #ffc107;
}



/* Method responsible for defining padding, border-top and border-bottom of .footer and .center */
.footer .center {
	padding: 50px 0;
	border-top: 1px solid #f2dede;
	border-bottom: 1px solid #DEE8F2;
}



/* Method responsible for setting position and top margin of .swiper-pagination */
.swiper-pagination {
	position: relative;
	margin-top: 40px;
}

