@charset "UTF-8";
/**
 *  Folha de estilos principal
 *  @author Bruno Lima <brunothelima@gmail.com>
 */
/**
 *  Variáveis, mixins e configurções
 *
 *  @author     Bruno Lima <brunothelima@gmail.com>
 *  @link       assets/scss/configurations.scss
 */
/*  NTH da mais escura -> para a mais clara */
/* 				 nth(1)   nth(2)   nth(3)   nth(4)   nth(5)   nth(6)   nth(7) */
/* 				nth(1)  nth(2)    nth(3)   nth(4)   nth(5) */
/* 					  nth(1)   nth(2)    nth(3)   nth(4)   nth(5) */
/* 					     nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			   nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			 nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			      nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/**
 *  Folha de estilos para configurações de texto
 *  @author Bruno Lima <brunothelima@gmail.com>
 */
@import url(https://fonts.googleapis.com/css?family=Roboto:700,400,300);
h1 {
  font-size: 30px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 27px;
  }
}

h2 {
  font-size: 21px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  h2 {
    font-size: 18px;
  }
}

h3 {
  font-size: 19px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  font-size: 17px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  h4 {
    font-size: 15px;
  }
}

p {
  margin-bottom: 15px;
}
@media screen and (max-width: 1200px) {
  p {
    margin-bottom: 11px;
  }
}

.text {
  font-size: 15px;
  line-height: 200%;
}
@media screen and (max-width: 1200px) {
  .text {
    font-size: 14px;
  }
}

* {
  border: 0;
  margin: 0;
  outline: none;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-family: 'Roboto', sans-serif;
}

article, aside, details, figcaption, figure, footer, header, nav, section, summary {
  display: block;
}

body, html {
  height: 100%;
  background: #F3F3F3;
}

body.locked {
  overflow: hidden;
}

a,
li,
span,
ol {
  text-decoration: none;
  color: #53636D;
}

.content {
  width: 100%;
  min-height: 100%;
  position: relative;
  z-index: 1;
  padding-left: 200px;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 1200px) {
  .content {
    padding-left: 163px;
  }
}
@media screen and (max-width: 980px) {
  .content {
    padding-left: 0;
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
.content .main-content {
  padding-top: 60px;
}
.content .main-content.home {
  padding-top: 30px;
}
@media screen and (max-width: 980px) {
  .content .main-content {
    padding-top: 0;
  }
}

.container {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}
.container:after {
  clear: both;
  content: '';
  display: block;
}
.container.padded {
  padding-right: 100px;
  padding-left: 100px;
}
@media screen and (max-width: 1200px) {
  .container {
    max-width: 818px;
    padding-right: 11px;
    padding-left: 11px;
  }
  .container.padded {
    padding-right: 82px;
    padding-left: 82px;
  }
}
@media screen and (max-width: 980px) {
  .container {
    max-width: 768px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .container.padded {
    padding-right: 11px;
    padding-left: 11px;
  }
}

/**
 *  Folha de estilos para lighbox de error 404
 *  @author Bruno Lima <brunothelima@gmail.com>
 */
/**
 *  Variáveis, mixins e configurções
 *
 *  @author     Bruno Lima <brunothelima@gmail.com>
 *  @link       assets/scss/configurations.scss
 */
/*  NTH da mais escura -> para a mais clara */
/* 				 nth(1)   nth(2)   nth(3)   nth(4)   nth(5)   nth(6)   nth(7) */
/* 				nth(1)  nth(2)    nth(3)   nth(4)   nth(5) */
/* 					  nth(1)   nth(2)    nth(3)   nth(4)   nth(5) */
/* 					     nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			   nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			 nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			      nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
.error-404-lightbox {
  position: fixed;
  z-index: 100000;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.error-404-lightbox .mask {
  position: absolute;
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.error-404-lightbox .panel {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
  height: 345px;
  padding: 60px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 980px) {
  .error-404-lightbox .panel {
    height: 97%;
    width: 97%;
    padding: 15px 70px 15px 15px;
  }
}
.error-404-lightbox .panel .close {
  position: absolute;
  right: 0;
  top: 0;
  padding-top: 15px;
  height: 100%;
  width: 60px;
  background: #D8D8D8 url("../img/404-border.png") repeat-y center;
  text-align: center;
}
.error-404-lightbox .panel .info {
  position: relative;
  height: 100%;
}
.error-404-lightbox .panel .info h1 {
  margin-bottom: 30px;
  font-weight: normal;
}
.error-404-lightbox .panel .info h2 {
  margin-bottom: 10px;
}
.error-404-lightbox .panel .info h2 sup {
  font-size: 13px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  .error-404-lightbox .panel .info h2 sup {
    font-size: 12px;
  }
}
.error-404-lightbox .panel .info p {
  margin-bottom: 30px;
  font-size: 19px;
  line-height: normal;
  line-height: 150%;
}
@media screen and (max-width: 1200px) {
  .error-404-lightbox .panel .info p {
    font-size: 16px;
  }
}
.error-404-lightbox .panel .info a {
  color: #007EBC;
  font-size: 19px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  .error-404-lightbox .panel .info a {
    font-size: 16px;
  }
}
.error-404-lightbox .panel .info > img {
  position: absolute;
  display: block;
  z-index: -1;
  right: 40px;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .error-404-lightbox .panel .info > img {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
  }
}
@media screen and (max-width: 980px) {
  .error-404-lightbox .panel .info > img {
    right: 0;
    bottom: -30px;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
    opacity: 0.3;
  }
}

/**
 *  Folha de estilos para galerias encontradas em paginas de post
 *  @author Bruno Lima <brunothelima@gmail.com>
 */
/**
 *  Variáveis, mixins e configurções
 *
 *  @author     Bruno Lima <brunothelima@gmail.com>
 *  @link       assets/scss/configurations.scss
 */
/*  NTH da mais escura -> para a mais clara */
/* 				 nth(1)   nth(2)   nth(3)   nth(4)   nth(5)   nth(6)   nth(7) */
/* 				nth(1)  nth(2)    nth(3)   nth(4)   nth(5) */
/* 					  nth(1)   nth(2)    nth(3)   nth(4)   nth(5) */
/* 					     nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			   nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			 nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			      nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
.gallery {
  clear: both;
  margin-bottom: 30px;
  padding: 20px;
  background: #F8F8F8;
  border-radius: 1px;
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 980px) {
  .gallery {
    padding: 10px;
  }
}
.gallery .photos {
  margin-bottom: 20px;
}
@media screen and (max-width: 980px) {
  .gallery .photos {
    margin-bottom: 0;
  }
}
.gallery .photos button.slick-arrow {
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -moz-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
  font-size: 0;
  cursor: pointer;
}
@media screen and (max-width: 980px) {
  .gallery .photos button.slick-arrow {
    display: none !important;
  }
}
.gallery .photos button.slick-arrow.slick-prev {
  left: 30px;
  background-image: url("../img/arrow-back.png");
}
.gallery .photos button.slick-arrow.slick-prev:hover {
  -moz-transform: translateX(-3px);
  -ms-transform: translateX(-3px);
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
}
.gallery .photos button.slick-arrow.slick-next {
  right: 30px;
  background-image: url("../img/arrow-forward.png");
}
.gallery .photos button.slick-arrow.slick-next:hover {
  -moz-transform: translateX(3px);
  -ms-transform: translateX(3px);
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.gallery .photos button.slick-arrow:hover {
  -moz-box-shadow: 2px 4px 6px, rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 2px 4px 6px, rgba(0, 0, 0, 0.2);
  box-shadow: 2px 4px 6px, rgba(0, 0, 0, 0.2);
}
.gallery .photos .slick-dots {
  text-align: center;
  margin-top: 9px;
}
.gallery .photos .slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 2.5px;
}
.gallery .photos .slick-dots li button {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #CCCCCC;
  border-radius: 5px;
  font-size: 0;
}
.gallery .photos .slick-dots li.slick-active button {
  background-color: #007EBC;
}
.gallery .photos .photo {
  float: none;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 980px) {
  .gallery .photos .photo {
    padding: 5px;
  }
}
.gallery .photos .photo:before {
  display: inline-block;
  vertical-align: middle;
  content: '';
  width: 1px;
  height: 483px;
  margin-left: -1px;
}
@media screen and (max-width: 980px) {
  .gallery .photos .photo:before {
    display: none;
  }
}
.gallery .photos .photo img {
  display: inline-block;
  vertical-align: middle;
  max-height: 483px;
  height: 100%;
}
@media screen and (max-width: 980px) {
  .gallery .photos .photo img {
    height: auto;
    width: 100%;
  }
}
.gallery .photos .photo p {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  margin: 0;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 25px;
  white-space: normal;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U1ZTVlNSIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjElIiBzdG9wLWNvbG9yPSIjZTVlNWU1IiBzdG9wLW9wYWNpdHk9IjAuMDEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC44Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(229, 229, 229, 0)), color-stop(1%, rgba(229, 229, 229, 0.01)), color-stop(100%, rgba(0, 0, 0, 0.8)));
  background-image: -moz-linear-gradient(top, rgba(229, 229, 229, 0) 0%, rgba(229, 229, 229, 0.01) 1%, rgba(0, 0, 0, 0.8) 100%);
  background-image: -webkit-linear-gradient(top, rgba(229, 229, 229, 0) 0%, rgba(229, 229, 229, 0.01) 1%, rgba(0, 0, 0, 0.8) 100%);
  background-image: linear-gradient(to bottom, rgba(229, 229, 229, 0) 0%, rgba(229, 229, 229, 0.01) 1%, rgba(0, 0, 0, 0.8) 100%);
}
.gallery .photos .photo p span {
  font-size: 11px;
}
.gallery .thumbs {
  overflow: hidden;
  height: 75px;
}
@media screen and (max-width: 980px) {
  .gallery .thumbs {
    display: none;
  }
}
.gallery .thumbs .slick-track {
  min-width: 100%;
}
.gallery .thumbs .thumb {
  position: relative;
  height: 75px;
  border-left: 1px solid #FFF;
  background-color: #222;
  cursor: pointer;
}
.gallery .thumbs .thumb img {
  display: block;
  width: 100%;
  -moz-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
}
.gallery .thumbs .thumb:before {
  position: absolute;
  display: block;
  content: '';
  z-index: 1;
  height: 2px;
  width: 0;
  bottom: 0;
  left: 0;
  background-color: #7C8184;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
  -moz-transition-duration: 600ms;
  -o-transition-duration: 600ms;
  -webkit-transition-duration: 600ms;
  transition-duration: 600ms;
}
.gallery .thumbs .thumb.slick-current img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
.gallery .thumbs .thumb.slick-current:before {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  visibility: visible;
  width: 80%;
}
.gallery .thumbs .thumb:first-child {
  border-left: 0;
}
.gallery:hover .photos button.slick-arrow {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  visibility: visible;
}

/**
 *  Folha de estilos para balões de alerta
 *  @author Bruno Lima <brunothelima@gmail.com>
 */
/**
 *  Variáveis, mixins e configurções
 *
 *  @author     Bruno Lima <brunothelima@gmail.com>
 *  @link       assets/scss/configurations.scss
 */
/*  NTH da mais escura -> para a mais clara */
/* 				 nth(1)   nth(2)   nth(3)   nth(4)   nth(5)   nth(6)   nth(7) */
/* 				nth(1)  nth(2)    nth(3)   nth(4)   nth(5) */
/* 					  nth(1)   nth(2)    nth(3)   nth(4)   nth(5) */
/* 					     nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			   nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			 nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			      nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
.alert-message {
  display: block;
  position: fixed;
  z-index: 1000;
  bottom: 0;
  left: 0;
  right: 0;
  padding-left: 200px;
  text-align: center;
  -moz-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
  -moz-transform: translateY(100%) scale(0.8);
  -ms-transform: translateY(100%) scale(0.8);
  -webkit-transform: translateY(100%) scale(0.8);
  transform: translateY(100%) scale(0.8);
}
@media screen and (max-width: 1200px) {
  .alert-message {
    padding-left: 163px;
  }
}
@media screen and (max-width: 980px) {
  .alert-message {
    padding-left: 0;
  }
}
.alert-message span {
  display: inline-block;
  padding: 20px 20px 20px 60px;
  background: #92989C url("../img/alert-icon.png") no-repeat 20px center;
  border-radius: 3px;
  text-align: left;
  color: #FFFFFF;
  font-size: 13px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  .alert-message span {
    font-size: 12px;
  }
}
.alert-message.active {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  visibility: visible;
  -moz-transform: translateY(-40px) scale(1);
  -ms-transform: translateY(-40px) scale(1);
  -webkit-transform: translateY(-40px) scale(1);
  transform: translateY(-40px) scale(1);
}
.alert-message.error span {
  background-color: #E45264;
}
.alert-message.success span {
  background-color: #51BC83;
}

/**
 *  Folha de estilos para banners posicionados fora de um widget
 *  @author Bruno Lima <brunothelima@gmail.com>
 *
 */
/**
 *  Variáveis, mixins e configurções
 *
 *  @author     Bruno Lima <brunothelima@gmail.com>
 *  @link       assets/scss/configurations.scss
 */
/*  NTH da mais escura -> para a mais clara */
/* 				 nth(1)   nth(2)   nth(3)   nth(4)   nth(5)   nth(6)   nth(7) */
/* 				nth(1)  nth(2)    nth(3)   nth(4)   nth(5) */
/* 					  nth(1)   nth(2)    nth(3)   nth(4)   nth(5) */
/* 					     nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			   nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			 nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			      nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
.banner-300x50:not(.widget) {
  display: none;
  padding: 0 10px 10px;
}
@media screen and (max-width: 980px) {
  .banner-300x50:not(.widget) {
    display: block;
  }
}
.banner-300x50:not(.widget) > * {
  display: block;
}

.banner-300x250:not(.widget) {
  float: left;
  width: 370px;
  height: 270px;
  padding: 10px;
  margin-right: 30px;
  margin-bottom: 30px;
  background: #F8F8F8;
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 980px) {
  .banner-300x250:not(.widget) {
    display: none;
  }
}
.banner-300x250:not(.widget) .sign {
  float: right;
  width: 30px;
  height: 100%;
  margin-right: 5px;
  background-color: #FFFFFF;
}
.banner-300x250:not(.widget) .sign span {
  display: block;
  font-size: 11px;
  line-height: normal;
  line-height: 30px;
  text-transform: uppercase;
  color: #53636D;
  -moz-transform: rotate(-90deg) translateX(-50px);
  -ms-transform: rotate(-90deg) translateX(-50px);
  -webkit-transform: rotate(-90deg) translateX(-50px);
  transform: rotate(-90deg) translateX(-50px);
}
@media screen and (max-width: 1200px) {
  .banner-300x250:not(.widget) .sign span {
    font-size: 10px;
  }
}
.banner-300x250:not(.widget) > *:not(.sign) {
  display: block;
}

/**
 *  Folha de estilos para componente de mapa que interagem com GOOGLEMAPS
 *  @author Bruno Lima <brunothelima@gmail.com>
 */
/**
 *  Variáveis, mixins e configurções
 *
 *  @author     Bruno Lima <brunothelima@gmail.com>
 *  @link       assets/scss/configurations.scss
 */
/*  NTH da mais escura -> para a mais clara */
/* 				 nth(1)   nth(2)   nth(3)   nth(4)   nth(5)   nth(6)   nth(7) */
/* 				nth(1)  nth(2)    nth(3)   nth(4)   nth(5) */
/* 					  nth(1)   nth(2)    nth(3)   nth(4)   nth(5) */
/* 					     nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			   nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			 nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			      nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
.map {
  position: relative;
  width: 100%;
  height: 300px;
  padding: 10px;
  background-color: #F8F8F8;
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.map > div {
  width: 100%;
  height: 100%;
}
.map:before {
  display: block;
  position: absolute;
  content: '';
  z-index: 1;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -moz-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
}
.map .navigate {
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 160px;
  background-color: #449E85;
  border-color: #3c8c76;
  color: #FFFFFF;
  -moz-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
}
.map.active .navigate, .map.active:before {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
}

/**
 *  Folha de estilos para impressão
 *  @author Bruno Lima <brunothelima@gmail.com>
 */
@media print {
  .main-nav,
  .side-nav,
  .mobile-head,
  .mobile-menu,
  .mobile-footer,
  .alert-message,
  footer {
    display: none !important;
  }

  section.content {
    padding: 0 !important;
  }
  section.content .main-content > *:not(article) {
    display: none !important;
    padding: 0 !important;
  }
  section.content article .gallery,
  section.content article .featured-image,
  section.content article .banner-300x250 {
    display: none !important;
  }
  section.content article .eye {
    display: block !important;
    float: none !important;
    width: 100% !important;
    margin: 20px 0 !important;
  }
}
/**
 *  Folha de estilos para footer geral do site
 *  @author Bruno Lima <brunothelima@gmail.com>
 */
footer {
  padding-left: 200px;
}
@media screen and (max-width: 1200px) {
  footer {
    padding-left: 163px;
  }
}
@media screen and (max-width: 980px) {
  footer {
    padding-left: 0;
  }
}
footer .container {
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid #E3E7E9;
}
@media screen and (max-width: 980px) {
  footer .container {
    padding-top: 30px;
  }
}
footer .container > * {
  float: left;
  width: 25%;
}
@media screen and (max-width: 980px) {
  footer .container > * {
    float: none;
    width: 100%;
  }
}
footer .container .newsletter {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 980px) {
  footer .container .newsletter {
    width: 100%;
    margin-bottom: 45px;
  }
}
footer .container .newsletter:before {
  display: block;
  position: absolute;
  z-index: 2;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(243, 243, 243, 0.8);
  background-repeat: no-repeat;
  background-position: center;
  -moz-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
}
footer .container .newsletter.sending:before {
  background-image: url("../img/loader.gif");
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  visibility: visible;
}
footer .container .newsletter.success:before {
  background-image: url("../img/check.png");
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  visibility: visible;
}
footer .container .newsletter > p {
  display: block;
  margin-bottom: 13px;
  font-size: 11px;
  line-height: normal;
  color: #92989C;
}
@media screen and (max-width: 1200px) {
  footer .container .newsletter > p {
    font-size: 10px;
  }
}
footer .container .newsletter form {
  overflow: hidden;
}
footer .container .newsletter form input {
  display: block;
  float: left;
  height: 40px;
  width: 270px;
  background: transparent;
  border-bottom: 2px solid #92989C;
  font-size: 15px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  footer .container .newsletter form input {
    font-size: 14px;
  }
}
footer .container .newsletter form input.error {
  border-color: #C7554A;
}
@media screen and (max-width: 980px) {
  footer .container .newsletter form input {
    width: calc(100% - 96px);
  }
}
footer .container .newsletter form button {
  display: block;
  float: left;
  width: 76px;
  height: 40px;
  margin-left: 20px;
  background-color: #92989C;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 13px;
  line-height: normal;
  line-height: 40px;
  border-bottom: 2px solid #777f84;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  footer .container .newsletter form button {
    font-size: 12px;
  }
}
footer .container .newsletter form button:disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}
footer .container .links {
  text-align: center;
}
@media screen and (max-width: 980px) {
  footer .container .links {
    margin-bottom: 40px;
  }
}
footer .container .links ul {
  display: inline-block;
}
@media screen and (max-width: 980px) {
  footer .container .links ul {
    display: block;
  }
}
footer .container .links ul li {
  font-size: 11px;
  line-height: normal;
  margin-bottom: 10px;
  list-style: none;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  footer .container .links ul li {
    font-size: 10px;
  }
}
@media screen and (max-width: 980px) {
  footer .container .links ul li {
    display: inline-block;
    margin: 0 5px;
  }
}
footer .container .links ul li:last-child {
  margin-top: 20px;
}
footer .container .links ul li a:hover {
  text-decoration: underline;
}
footer .container .links ul li a:before {
  display: inline;
  content: '• ';
}
footer .container .phocus-sign {
  text-align: center;
}
footer .container .phocus-sign .center {
  display: inline-block;
  text-align: left;
}
@media screen and (max-width: 980px) {
  footer .container .phocus-sign .center {
    text-align: center;
  }
}
footer .container .phocus-sign .center p {
  font-size: 11px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  footer .container .phocus-sign .center p {
    font-size: 10px;
  }
}
footer .container .phocus-sign .center img {
  display: block;
}
@media screen and (max-width: 980px) {
  footer .container .phocus-sign .center img {
    margin: auto;
  }
}

/**
 *  Folha de estilos para componente de avaliação
 *  @author Bruno Lima <brunothelima@gmail.com>
 */
.stars {
  overflow: hidden;
}
.stars span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 1px;
  background: url("../img/avaliation-stars.png") no-repeat right center;
}
.stars span.active {
  background-position: left center;
}
.stars span:first-child {
  margin-left: 0;
}

/**
 *  Variáveis, mixins e configurções
 *
 *  @author     Bruno Lima <brunothelima@gmail.com>
 *  @link       assets/scss/configurations.scss
 */
/*  NTH da mais escura -> para a mais clara */
/* 				 nth(1)   nth(2)   nth(3)   nth(4)   nth(5)   nth(6)   nth(7) */
/* 				nth(1)  nth(2)    nth(3)   nth(4)   nth(5) */
/* 					  nth(1)   nth(2)    nth(3)   nth(4)   nth(5) */
/* 					     nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			   nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			 nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			      nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/**
 *  Folha de estilos para configurações de texto
 *  @author Bruno Lima <brunothelima@gmail.com>
 */
h1 {
  font-size: 30px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 27px;
  }
}

h2 {
  font-size: 21px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  h2 {
    font-size: 18px;
  }
}

h3 {
  font-size: 19px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  font-size: 17px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  h4 {
    font-size: 15px;
  }
}

p {
  margin-bottom: 15px;
}
@media screen and (max-width: 1200px) {
  p {
    margin-bottom: 11px;
  }
}

.text {
  font-size: 15px;
  line-height: 200%;
}
@media screen and (max-width: 1200px) {
  .text {
    font-size: 14px;
  }
}

button {
  background-color: transparent;
}

.btn {
  display: inline-block;
  height: 40px;
  padding: 0 15px;
  background-color: #2B373F;
  border-bottom: 2px solid #212a30;
  font-size: 13px;
  line-height: normal;
  line-height: 40px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  -moz-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
}
@media screen and (max-width: 1200px) {
  .btn {
    font-size: 12px;
  }
}
.btn > * {
  display: inline-block;
  vertical-align: middle;
}
.btn img,
.btn svg {
  margin: 0 3px;
}
.btn img path,
.btn svg path {
  fill: #FFFFFF;
}
.btn span {
  margin: 0 5px;
  color: #FFFFFF;
}
.btn:hover {
  -webkit-filter: brightness(90%);
  filter: brightness(90%);
}
.btn.small {
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
}
.btn.small span {
  font-size: 11px;
  line-height: normal;
  text-transform: none;
}
@media screen and (max-width: 1200px) {
  .btn.small span {
    font-size: 10px;
  }
}
