/*@import "compass";
@import "compass/css3";*/
@font-face {
  font-family: 'BMWTypeV2Regular';
  src: url("../fonts/BMWTypeV2Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/BMWTypeV2Regular.woff") format("woff"), url("../fonts/BMWTypeV2Regular.ttf") format("truetype"), url("../fonts/BMWTypeV2Regular.svg#BMWTypeV2Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'BMWTypeV2Bold-Bold';
  src: url("../fonts/BMWTypeV2Bold-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/BMWTypeV2Bold-Bold.woff") format("woff"), url("../fonts/BMWTypeV2Bold-Bold.ttf") format("truetype"), url("../fonts/BMWTypeV2Bold-Bold.svg#BMWTypeV2Bold-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'BMWGroup-Bold';
  src: url("../fonts/BMWGroup-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/BMWGroup-Bold.woff") format("woff"), url("../fonts/BMWGroup-Bold.ttf") format("truetype"), url("../fonts/BMWGroup-Bold.svg#BMWGroup-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'BMWGroup-Regular';
  src: url("../fonts/BMWGroup-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/BMWGroup-Regular.woff") format("woff"), url("../fonts/MWGroup-Regular.ttf") format("truetype"), url("../fonts/BMWGroup-Regular.svg#BMWGroup-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?k7u3te");
  src: url("../fonts/icomoon.eot?k7u3te#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?k7u3te") format("truetype"), url("../fonts/icomoon.woff?k7u3te") format("woff"), url("../fonts/icomoon.svg?k7u3te#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*
@mixin setFont($font-size,$color,$font-weight:400, $line-height:inherit){
    font-family: "Open Sans";
    font-size: $font-size;
    line-height: $line-height;
    font-weight: $font-weight;
    color: $color;
}
*/
/* dimensao do meu content */
/* breaking point mobile */
/* dimensao gutter */
/* dimensao colunas */
/* reset ao omega */
/* line 4, neat/grid/_box-sizing.scss */
html {
  box-sizing: border-box;
}

/* line 9, neat/grid/_box-sizing.scss */
*, *::after, *::before {
  box-sizing: inherit;
}

/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/*! HTML5 Boilerplate v5.1.0 | MIT License | https://html5boilerplate.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
/* line 13, base/_base.scss */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}

/* line 20, base/_base.scss */
* {
  box-sizing: border-box;
  text-decoration: none;
  outline: 0;
}

/* line 25, base/_base.scss */
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%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* line 45, base/_base.scss */
body {
  line-height: 1;
  margin: 0;
  position: relative;
  float: left;
  width: 100%;
}

/* line 52, base/_base.scss */
ol, ul {
  list-style: none;
}

/* line 55, base/_base.scss */
blockquote, q {
  quotes: none;
}

/* line 58, base/_base.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 63, base/_base.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
/* line 76, base/_base.scss */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

/* line 81, base/_base.scss */
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
/* line 90, base/_base.scss */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
/* line 105, base/_base.scss */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
/* line 118, base/_base.scss */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
/* line 128, base/_base.scss */
textarea {
  resize: vertical;
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
/* line 151, base/_base.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
/* line 172, base/_base.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 185, base/_base.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
/* line 195, base/_base.scss */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
/* line 207, base/_base.scss */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
/* line 216, base/_base.scss */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
/* line 228, base/_base.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
/* line 236, base/_base.scss */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
/* line 245, base/_base.scss */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
/*h1 {
    font-size: 2em;
    margin: 0.67em 0;
}*/
/**
 * Address styling not present in IE 8/9.
 */
/* line 263, base/_base.scss */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 272, base/_base.scss */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 280, base/_base.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 288, base/_base.scss */
sup {
  top: -0.5em;
}

/* line 292, base/_base.scss */
sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
/* line 303, base/_base.scss */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
/* line 311, base/_base.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
/* line 322, base/_base.scss */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
/* line 330, base/_base.scss */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
/* line 339, base/_base.scss */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
/* line 347, base/_base.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
/* line 370, base/_base.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
  border: 0;
  border-radius: 0;
  padding: 0;
  appearance: none;
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
/* line 389, base/_base.scss */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
/* line 400, base/_base.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
/* line 413, base/_base.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 425, base/_base.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 434, base/_base.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 445, base/_base.scss */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
/* line 457, base/_base.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
/* line 469, base/_base.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
/* line 479, base/_base.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
/* line 490, base/_base.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
/* line 499, base/_base.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
/* line 510, base/_base.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
/* line 519, base/_base.scss */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
/* line 528, base/_base.scss */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 539, base/_base.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 544, base/_base.scss */
td,
th {
  padding: 10px;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */
/* line 554, base/_base.scss */
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers:
 */
/* line 570, base/_base.scss */
.hidden {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
/* line 579, base/_base.scss */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
/* line 596, base/_base.scss */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
/* line 610, base/_base.scss */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
/* line 626, base/_base.scss */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

/* line 632, base/_base.scss */
.clearfix:after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  /* line 649, base/_base.scss */
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster:
       http://www.sanbeiji.com/archives/953 */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* line 659, base/_base.scss */
  a,
  a:visited {
    text-decoration: underline;
  }

  /* line 664, base/_base.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }

  /* line 668, base/_base.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  /* line 677, base/_base.scss */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  /* line 682, base/_base.scss */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  /* line 693, base/_base.scss */
  thead {
    display: table-header-group;
  }

  /* line 697, base/_base.scss */
  tr,
  img {
    page-break-inside: avoid;
  }

  /* line 702, base/_base.scss */
  img {
    max-width: 100% !important;
  }

  /* line 706, base/_base.scss */
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 713, base/_base.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* outros estilos */
/*********************/
/* line 739, base/_base.scss */
a {
  color: inherit;
}

/* line 1, components/_index.scss */
* {
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
}

/* line 6, components/_index.scss */
:focus {
  outline: 0;
}

/* line 10, components/_index.scss */
html,
body {
  min-height: 100%;
}

/* line 15, components/_index.scss */
body#home-template {
  height: 100%;
}

@media (min-width: 1680px) {
  /* line 20, components/_index.scss */
  .container {
    width: 1560px;
  }
}
/* line 25, components/_index.scss */
.border-right {
  border-right: 2px solid #e1e1e1;
  padding-right: 100px;
}
@media screen and (max-width: 990px) {
  /* line 25, components/_index.scss */
  .border-right {
    border-right: 0;
    padding-right: 15px;
  }
}

/* line 35, components/_index.scss */
.navbar-default {
  background-color: #FFF;
  border: none;
  -webkit-box-shadow: 0 2px 20px -2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 20px -2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 20px -2px rgba(0, 0, 0, 0.3);
  height: 100px;
}
@media screen and (max-width: 1440px) {
  /* line 35, components/_index.scss */
  .navbar-default {
    height: 80px;
  }
}
/* line 47, components/_index.scss */
.navbar-default .container {
  height: inherit;
}
/* line 51, components/_index.scss */
.navbar-default .navbar-header {
  height: inherit;
}
/* line 53, components/_index.scss */
.navbar-default .navbar-header .gresco-logo {
  background-image: url(../img/sprites/spritesheet.png);
  background-position: 0px -229px;
  width: 198px;
  height: 66px;
}
@media screen and (max-width: 1440px) {
  /* line 53, components/_index.scss */
  .navbar-default .navbar-header .gresco-logo {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -229px -150px;
    width: 138px;
    height: 46px;
  }
}
/* line 63, components/_index.scss */
.navbar-default #nav-languages {
  height: 30px;
  margin-right: -5px;
  margin-top: 5px;
}
/* line 68, components/_index.scss */
.navbar-default #nav-languages li {
  padding: 0 2px;
}
/* line 70, components/_index.scss */
.navbar-default #nav-languages li a {
  padding: 5px 3px;
  font-size: 14px;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 14px;
  text-transform: uppercase;
}
/* line 80, components/_index.scss */
.navbar-default #nav-languages li.active a, .navbar-default #nav-languages li:hover a, .navbar-default #nav-languages li:focus a {
  background-color: transparent;
  font-weight: 500;
  border-bottom: 1px solid #4d8b2b;
  color: #4d8b2b;
}
@media screen and (max-width: 1440px) {
  /* line 91, components/_index.scss */
  .navbar-default #nav-languages li a {
    padding: 3px 3px;
  }
}
/* line 97, components/_index.scss */
.navbar-default #nav-languages.mobile {
  height: 17px;
  margin-right: 15px;
  margin-bottom: 5px;
}
/* line 102, components/_index.scss */
.navbar-default #nav-languages.mobile li {
  float: left;
}
/* line 104, components/_index.scss */
.navbar-default #nav-languages.mobile li a {
  padding: 3px 5px;
  font-size: 11px;
  line-height: 11px;
}
/* line 114, components/_index.scss */
.navbar-default #nav-menu {
  margin-top: 10px;
  clear: right;
  height: 35px;
  margin-right: -10px;
}
/* line 120, components/_index.scss */
.navbar-default #nav-menu li {
  padding: 0 5px;
}
/* line 122, components/_index.scss */
.navbar-default #nav-menu li a {
  padding: 10px 5px;
  font-size: 14px;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 14px;
  text-transform: uppercase;
}
/* line 132, components/_index.scss */
.navbar-default #nav-menu li.active a, .navbar-default #nav-menu li:hover a, .navbar-default #nav-menu li:focus a {
  background-color: transparent;
  border-bottom: 2px solid #4d8b2b;
  color: #4d8b2b;
}
@media screen and (max-width: 1440px) {
  /* line 114, components/_index.scss */
  .navbar-default #nav-menu {
    margin-top: 5px;
  }
  /* line 144, components/_index.scss */
  .navbar-default #nav-menu li a {
    padding: 5px;
  }
}
/* line 151, components/_index.scss */
.navbar-default .navbar-toggle {
  margin-top: 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
/* line 157, components/_index.scss */
.navbar-default .navbar-toggle .icon-bar {
  position: relative;
  background: #4c8b2b;
  height: 3px;
  width: 20px;
  -webkit-transition: all 250ms ease-in;
  -moz-transition: all 250ms ease-in;
  -o-transition: all 250ms ease-in;
  -ms-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
}
/* line 168, components/_index.scss */
.navbar-default .navbar-toggle .icon-bar:nth-of-type(2) {
  top: 0px;
}
/* line 171, components/_index.scss */
.navbar-default .navbar-toggle .icon-bar:nth-of-type(3) {
  top: 0px;
}
/* line 174, components/_index.scss */
.navbar-default .navbar-toggle .icon-bar:nth-of-type(4) {
  top: 0px;
}
/* line 179, components/_index.scss */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:active {
  background: transparent;
}
/* line 182, components/_index.scss */
.navbar-default .navbar-toggle:hover .icon-bar, .navbar-default .navbar-toggle:focus .icon-bar, .navbar-default .navbar-toggle:active .icon-bar {
  background: #4c8b2b;
}
/* line 189, components/_index.scss */
.navbar-default .navbar-toggle.active .icon-bar:nth-of-type(2) {
  top: 7px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* line 194, components/_index.scss */
.navbar-default .navbar-toggle.active .icon-bar:nth-of-type(3) {
  background-color: transparent;
}
/* line 198, components/_index.scss */
.navbar-default .navbar-toggle.active .icon-bar:nth-of-type(4) {
  top: -7px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* line 205, components/_index.scss */
.navbar-default .navbar-collapse.collapse.in, .navbar-default .navbar-collapse.collapsing {
  border: 0;
}
/* line 208, components/_index.scss */
.navbar-default .navbar-collapse.collapse.in #nav-menu, .navbar-default .navbar-collapse.collapsing #nav-menu {
  background: #ffffff;
  margin: 0;
  clear: right;
  height: auto;
  margin-right: -15px;
  margin-left: -15px;
  padding: 40px 15px;
}
/* line 217, components/_index.scss */
.navbar-default .navbar-collapse.collapse.in #nav-menu li, .navbar-default .navbar-collapse.collapsing #nav-menu li {
  padding: 10px;
  text-align: center;
}
/* line 220, components/_index.scss */
.navbar-default .navbar-collapse.collapse.in #nav-menu li a, .navbar-default .navbar-collapse.collapsing #nav-menu li a {
  display: inline-block;
  width: auto;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 14px;
  text-transform: uppercase;
}
/* line 232, components/_index.scss */
.navbar-default .navbar-collapse.collapse.in #nav-menu li.active a, .navbar-default .navbar-collapse.collapse.in #nav-menu li:hover a, .navbar-default .navbar-collapse.collapse.in #nav-menu li:focus a, .navbar-default .navbar-collapse.collapsing #nav-menu li.active a, .navbar-default .navbar-collapse.collapsing #nav-menu li:hover a, .navbar-default .navbar-collapse.collapsing #nav-menu li:focus a {
  background-color: transparent;
  border-bottom: 2px solid #4d8b2b;
  color: #4d8b2b;
}

/* line 243, components/_index.scss */
#main-banner-carousel {
  min-height: calc(100vh - 40px);
  height: 100%;
}
@media screen and (max-width: 1440px) {
  /* line 243, components/_index.scss */
  #main-banner-carousel {
    min-height: calc(100vh - 30px);
  }
}
@media screen and (max-width: 767px) {
  /* line 243, components/_index.scss */
  #main-banner-carousel {
    min-height: calc(100vh - 22px);
  }
}
/* line 255, components/_index.scss */
#main-banner-carousel .indicators-box {
  width: 100%;
  position: absolute;
  top: 0;
  min-height: inherit;
  left: auto;
  right: auto;
  text-align: left;
}
/* line 264, components/_index.scss */
#main-banner-carousel .indicators-box .container {
  position: relative;
  min-height: calc(100vh - 40px);
  height: 100%;
}
@media screen and (max-width: 1440px) {
  /* line 264, components/_index.scss */
  #main-banner-carousel .indicators-box .container {
    min-height: calc(100vh - 30px);
  }
}
@media screen and (max-width: 767px) {
  /* line 264, components/_index.scss */
  #main-banner-carousel .indicators-box .container {
    min-height: calc(100vh - 22px);
  }
}
/* line 278, components/_index.scss */
#main-banner-carousel .indicators-box .carousel-indicators {
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: auto;
  margin-left: 0;
  margin-right: 15px;
  text-align: left;
  list-style: none;
}
/* line 293, components/_index.scss */
#main-banner-carousel .indicators-box .carousel-indicators li {
  text-indent: 0;
  display: block;
  min-width: 55px;
  height: 55px;
  border: none;
  border-radius: 0;
  margin: 0;
  margin-bottom: 5px;
  background: rgba(255, 255, 255, 0.5);
  color: #4c8b2b;
  text-transform: uppercase;
  float: right;
  clear: right;
  -webkit-transition-property: min-width;
  -moz-transition-property: min-width;
  transition-property: min-width;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
/* line 310, components/_index.scss */
#main-banner-carousel .indicators-box .carousel-indicators li .number {
  float: left;
  line-height: 55px;
  width: 55px;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
}
/* line 319, components/_index.scss */
#main-banner-carousel .indicators-box .carousel-indicators li .text {
  display: block;
  float: left;
  max-width: 0px;
  padding-top: 20px;
  text-align: left;
  font-size: 25px;
  line-height: 25px;
  vertical-align: bottom;
  opacity: 0;
  overflow: hidden;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
/* line 335, components/_index.scss */
#main-banner-carousel .indicators-box .carousel-indicators li:hover {
  min-width: 270px;
  background: #4c8b2b;
  color: #fff;
}
/* line 340, components/_index.scss */
#main-banner-carousel .indicators-box .carousel-indicators li:hover .number {
  width: 65px;
  padding-left: 15px;
  padding-right: 10px;
  text-align: left;
  font-size: 40px;
  font-weight: 500;
}
/* line 349, components/_index.scss */
#main-banner-carousel .indicators-box .carousel-indicators li:hover .text {
  max-width: none;
  opacity: 1;
  font-weight: 400;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
/* line 357, components/_index.scss */
#main-banner-carousel .indicators-box .carousel-indicators li.active {
  background: #ffffff;
}
/* line 360, components/_index.scss */
#main-banner-carousel .indicators-box .carousel-indicators li.active:hover {
  min-width: 55px;
  background: #ffffff;
  color: #4c8b2b;
}
/* line 365, components/_index.scss */
#main-banner-carousel .indicators-box .carousel-indicators li.active:hover .number {
  padding-left: 0;
  padding-right: 0;
  width: 55px;
  font-size: 25px;
  text-align: center;
}
/* line 373, components/_index.scss */
#main-banner-carousel .indicators-box .carousel-indicators li.active:hover .text {
  display: none;
}
@media screen and (max-width: 1440px) {
  /* line 293, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li {
    min-width: 40px;
    height: 40px;
  }
  /* line 383, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li .number {
    line-height: 40px;
    width: 40px;
    font-size: 18px;
  }
  /* line 389, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li .text {
    padding-top: 16px;
    font-size: 18px;
    line-height: 18px;
  }
  /* line 395, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li:hover {
    min-width: 240px;
  }
  /* line 398, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li:hover .number {
    width: 55px;
    font-size: 30px;
  }
  /* line 405, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li.active:hover {
    min-width: 40px;
    height: 40px;
  }
  /* line 409, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li.active:hover .number {
    line-height: 40px;
    width: 40px;
    font-size: 18px;
  }
  /* line 415, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li.active:hover .text {
    padding-top: 16px;
    font-size: 18px;
    line-height: 18px;
  }
}
@media screen and (max-width: 767px) {
  /* line 255, components/_index.scss */
  #main-banner-carousel .indicators-box {
    width: 100%;
    position: absolute;
    top: auto;
    bottom: 25px;
    display: block;
    min-height: auto;
    left: 0;
    right: auto;
    text-align: left;
  }
  /* line 437, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators {
    bottom: 0;
    left: 0;
    right: auto;
    top: auto;
    margin-left: 15px;
    text-align: left;
    float: left;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-right: 0;
  }
  /* line 451, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li {
    min-width: 30px;
    height: 30px;
    margin-bottom: 5px;
    margin-right: 5px;
    float: left;
    clear: none;
  }
  /* line 459, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li .number {
    line-height: 30px;
    width: 30px;
    font-size: 12px;
  }
  /* line 465, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li .text {
    display: none;
  }
  /* line 469, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li:hover {
    min-width: 30px;
    background: rgba(255, 255, 255, 0.5);
    color: #4c8b2b;
  }
  /* line 474, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li:hover .number {
    line-height: 30px;
    width: 30px;
    font-size: 12px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    font-weight: 400;
  }
  /* line 484, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li:hover .text {
    display: none;
  }
  /* line 489, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li.active {
    background: #ffffff;
  }
  /* line 491, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li.active:hover {
    min-width: 30px;
    height: 30px;
    margin-bottom: 5px;
    margin-right: 5px;
    float: left;
    clear: none;
  }
  /* line 499, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li.active:hover .number {
    line-height: 30px;
    width: 30px;
    font-size: 12px;
  }
  /* line 505, components/_index.scss */
  #main-banner-carousel .indicators-box .carousel-indicators li.active:hover .text {
    display: none;
  }
}
/* line 515, components/_index.scss */
#main-banner-carousel .carousel-inner {
  min-height: inherit;
}
/* line 518, components/_index.scss */
#main-banner-carousel .carousel-inner .item {
  min-height: inherit;
}
/* line 521, components/_index.scss */
#main-banner-carousel .carousel-inner .item.active {
  min-height: inherit;
}
/* line 525, components/_index.scss */
#main-banner-carousel .carousel-inner .item .fill {
  width: 100%;
  min-height: inherit;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
/* line 535, components/_index.scss */
#main-banner-carousel .carousel-inner .item .carousel-caption {
  position: absolute;
  height: 100%;
  width: 100%;
  text-align: left;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
/* line 545, components/_index.scss */
#main-banner-carousel .carousel-inner .item .carousel-caption .container {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* line 552, components/_index.scss */
#main-banner-carousel .carousel-inner .item .carousel-caption h3 {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px;
  font-size: 60px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 60px;
  text-shadow: none;
  color: #FFF;
  margin-bottom: 5px;
}
/* line 565, components/_index.scss */
#main-banner-carousel .carousel-inner .item .carousel-caption h1 {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 0 10px;
  font-size: 100px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 110px;
  text-shadow: none;
  color: #FFF;
  margin-bottom: 5px;
}
/* line 578, components/_index.scss */
#main-banner-carousel .carousel-inner .item .carousel-caption .btn {
  height: 40px;
  border: 0;
  background-color: #4c8b2b;
  box-shadow: none;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
  line-height: 40px;
  padding: 0 40px;
}
/* line 590, components/_index.scss */
#main-banner-carousel .carousel-inner .item .carousel-caption .btn:hover, #main-banner-carousel .carousel-inner .item .carousel-caption .btn:focus {
  color: #FFF;
}
@media screen and (max-width: 1440px) {
  /* line 596, components/_index.scss */
  #main-banner-carousel .carousel-inner .item .carousel-caption h3 {
    font-size: 30px;
    line-height: 30px;
  }
  /* line 601, components/_index.scss */
  #main-banner-carousel .carousel-inner .item .carousel-caption h1 {
    font-size: 70px;
    line-height: 80px;
  }
  /* line 606, components/_index.scss */
  #main-banner-carousel .carousel-inner .item .carousel-caption .btn {
    height: 35px;
    line-height: 35px;
    padding: 0 35px;
  }
}
@media screen and (max-width: 767px) {
  /* line 535, components/_index.scss */
  #main-banner-carousel .carousel-inner .item .carousel-caption {
    position: absolute;
    height: 100%;
    text-align: left;
    top: 0;
    bottom: 0;
  }
  /* line 621, components/_index.scss */
  #main-banner-carousel .carousel-inner .item .carousel-caption .container {
    margin-left: 0;
    margin-right: 0;
  }
  /* line 626, components/_index.scss */
  #main-banner-carousel .carousel-inner .item .carousel-caption h3 {
    padding: 5px;
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 3px;
  }
  /* line 633, components/_index.scss */
  #main-banner-carousel .carousel-inner .item .carousel-caption h1 {
    padding: 0 10px;
    font-size: 45px;
    line-height: 55px;
    margin-bottom: 3px;
  }
  /* line 640, components/_index.scss */
  #main-banner-carousel .carousel-inner .item .carousel-caption .btn {
    height: 20px;
    line-height: 20px;
    padding: 0 20px;
    font-size: 12px;
  }
}

/* line 652, components/_index.scss */
footer {
  position: relative;
  background-color: #24211e;
  height: 40px;
  width: 100%;
  margin: 0;
  padding: 0;
}
/* line 660, components/_index.scss */
footer .container {
  position: relative;
}
/* line 664, components/_index.scss */
footer p {
  color: #FFF;
  line-height: 40px;
  font-size: 13px;
  font-weight: 400;
  margin-left: -15px;
}
/* line 672, components/_index.scss */
footer a {
  padding: 14px 5px;
}
/* line 677, components/_index.scss */
footer a .loba-logo {
  background-image: url(../img/sprites/spritesheet.png);
  background-position: -326px -196px;
  width: 43px;
  height: 12px;
  float: right;
  margin: 13px 0px;
}
/* line 683, components/_index.scss */
footer #backTop {
  position: absolute;
  right: 30px;
  bottom: 40px;
  height: 34px;
}
/* line 689, components/_index.scss */
footer #backTop a {
  float: left;
  display: block;
  padding: 10px 0px;
  background: #303030;
  height: 34px;
  width: 34px;
}
/* line 697, components/_index.scss */
footer #backTop a .btn {
  background-image: url(../img/sprites/spritesheet.png);
  background-position: -269px -229px;
  width: 17px;
  height: 12px;
  display: block;
  margin: 0 auto;
  padding: 0;
}
/* line 705, components/_index.scss */
footer #backTop span {
  display: block;
  float: left;
  line-height: 34px;
  text-transform: uppercase;
  margin-right: 10px;
  font-size: 13px;
  font-weight: 300;
  color: #8e8e8e;
}
/* line 717, components/_index.scss */
footer .right-logo-box {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
}
/* line 723, components/_index.scss */
footer .right-logo-box .gresco-float-logo {
  background-image: url(../img/sprites/spritesheet.png);
  background-position: 0px 0px;
  width: 229px;
  height: 229px;
  width: 114px;
}
@media screen and (max-width: 1440px) {
  /* line 732, components/_index.scss */
  footer p {
    line-height: 30px;
    font-size: 12px;
  }
  /* line 737, components/_index.scss */
  footer a {
    padding: 10px 0;
  }
  /* line 743, components/_index.scss */
  footer #backTop {
    bottom: 38px;
  }
  /* line 748, components/_index.scss */
  footer .right-logo-box .gresco-float-logo {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -229px 0px;
    width: 150px;
    height: 150px;
    width: 75px;
  }
}
@media screen and (max-width: 767px) {
  /* line 652, components/_index.scss */
  footer {
    height: 22px;
  }
  /* line 759, components/_index.scss */
  footer a {
    padding: 5px 0;
    height: 22px;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
  }
  /* line 766, components/_index.scss */
  footer p {
    line-height: 22px;
    font-size: 7px;
    height: 22px;
  }
  /* line 772, components/_index.scss */
  footer #backTop {
    height: 25px;
    bottom: 22px;
  }
  /* line 776, components/_index.scss */
  footer #backTop a {
    padding: 5px 0px;
    height: 25px;
    width: 25px;
  }
  /* line 781, components/_index.scss */
  footer #backTop a .btn {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
  }
  /* line 787, components/_index.scss */
  footer #backTop span {
    line-height: 25px;
    margin-right: 5px;
    font-size: 8px;
  }
  /* line 795, components/_index.scss */
  footer .right-logo-box .gresco-float-logo {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -229px 0px;
    width: 150px;
    height: 150px;
    width: 75px;
  }
  .cookies-links-w{
    margin-bottom: 20px;
    padding-left:0px !important;
  }
}

/* line 805, components/_index.scss */
#home-template .navbar-default {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}
/* line 811, components/_index.scss */
#home-template footer .right-logo-box {
  display: block;
}
/* line 815, components/_index.scss */
#home-template footer #backTop {
  display: none;
}

/* ICONS */
/* line 822, components/_index.scss */
.file-icon {
  background-image: url(../img/sprites/spritesheet.png);
  background-position: -367px -150px;
  width: 10px;
  height: 11px;
  display: inline-block;
}

/* line 827, components/_index.scss */
.icon-zoom {
  background-image: url(../img/sprites/spritesheet.png);
  background-position: -198px -229px;
  width: 35px;
  height: 36px;
  display: block;
}

/* line 832, components/_index.scss */
.carousel-left-arrow {
  background-image: url(../img/sprites/spritesheet.png);
  background-position: -251px -229px;
  width: 18px;
  height: 34px;
}

/* line 836, components/_index.scss */
.carousel-right-arrow {
  background-image: url(../img/sprites/spritesheet.png);
  background-position: -233px -229px;
  width: 18px;
  height: 34px;
}

/* EMPRESA */
/* line 3, components/_artigos.scss */
.content-block {
  padding: 100px 0;
  margin-bottom: 0px;
  color: inherit;
  background-color: #ffffff;
}
/* line 9, components/_artigos.scss */
.content-block .col-right {
  padding-left: 100px;
}
@media screen and (max-width: 990px) {
  /* line 9, components/_artigos.scss */
  .content-block .col-right {
    margin-top: 20px;
    padding-left: 15px;
  }
}
/* line 18, components/_artigos.scss */
.content-block h3 {
  margin-bottom: 40px;
  font-size: 25px;
  line-height: 25px;
  font-weight: 600;
  text-transform: uppercase;
  color: #a4a4a4;
}
/* line 27, components/_artigos.scss */
.content-block p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
  margin-bottom: 5px;
  color: #6b6b6b;
}
/* line 35, components/_artigos.scss */
.content-block a {
  display: inline-block;
  margin-top: 20px;
  color: #6b6b6b;
}
/* line 40, components/_artigos.scss */
.content-block a:hover {
  color: #6b6b6b;
}
/* line 46, components/_artigos.scss */
.content-block .certificados #certificados-carousel-desktop, .content-block .certificados #certificados-carousel-mobile {
  margin: 0;
  padding: 0;
}
/* line 51, components/_artigos.scss */
.content-block .certificados #certificados-carousel-desktop .item a, .content-block .certificados #certificados-carousel-mobile .item a {
  margin: 0;
  display: block;
  position: relative;
  height: 140px;
}
/* line 57, components/_artigos.scss */
.content-block .certificados #certificados-carousel-desktop .item a img, .content-block .certificados #certificados-carousel-mobile .item a img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* line 66, components/_artigos.scss */
.content-block .certificados .carousel-indicators {
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0px;
  margin: 0;
  margin-top: 20px;
  text-align: left;
}
/* line 76, components/_artigos.scss */
.content-block .certificados .carousel-indicators li {
  background: #d2d2d2;
  border-radius: 0;
  width: 40px;
  height: 7px;
  border: none;
  margin: 0;
}
/* line 85, components/_artigos.scss */
.content-block .certificados .carousel-indicators .active {
  background: #b1b1b1;
}
/* line 92, components/_artigos.scss */
.content-block .certificados .carousel-control.left, .content-block .certificados .carousel-control.right {
  background-image: none;
  margin-top: 43px;
}
/* line 101, components/_artigos.scss */
.content-block .download {
  padding-left: 100px;
}
/* line 104, components/_artigos.scss */
.content-block .download .list-group li {
  margin-bottom: 10px;
}
/* line 106, components/_artigos.scss */
.content-block .download .list-group li a {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 18px;
  margin-top: 0;
  color: #a4a4a4;
}
/* line 113, components/_artigos.scss */
.content-block .download .list-group li a:hover {
  text-decoration: none;
  color: #4c8b2b;
}
@media (max-width: 1440px) {
  /* line 3, components/_artigos.scss */
  .content-block {
    padding: 120px 0;
  }
  /* line 125, components/_artigos.scss */
  .content-block h3 {
    font-size: 22px;
    line-height: 22px;
  }
  /* line 130, components/_artigos.scss */
  .content-block p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 990px) {
  /* line 138, components/_artigos.scss */
  .content-block .download {
    padding-left: 15px;
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  /* line 3, components/_artigos.scss */
  .content-block {
    padding: 40px 0;
  }
  /* line 158, components/_artigos.scss */
  .content-block h3 {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 20px;
  }
  /* line 164, components/_artigos.scss */
  .content-block p {
    font-size: 12px;
    line-height: 12px;
  }
  /* line 170, components/_artigos.scss */
  .content-block .certificados h3 {
    text-align: center;
  }
  /* line 176, components/_artigos.scss */
  .content-block #certificados-carousel-mobile .carousel-inner {
    width: 80%;
    margin: 0 auto;
  }
  /* line 182, components/_artigos.scss */
  .content-block #certificados-carousel-mobile .carousel-inner .item a img {
    position: relative;
    margin: 0 auto;
  }
  /* line 191, components/_artigos.scss */
  .content-block .download {
    padding-left: 15px;
  }
  /* line 194, components/_artigos.scss */
  .content-block .download h3 {
    text-align: center;
  }
  /* line 200, components/_artigos.scss */
  .content-block .download .list-group li {
    text-align: center;
  }
  /* line 202, components/_artigos.scss */
  .content-block .download .list-group li a {
    font-size: 14px;
  }
}

/* line 212, components/_artigos.scss */
.content-space {
  min-height: calc(100vh - 80px);
  padding: 0px;
  margin-bottom: 0px;
  color: inherit;
  background: center no-repeat fixed;
  background: center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 150px;
  position: relative;
}
/* line 226, components/_artigos.scss */
.content-space .container {
  min-height: calc(100vh - 250px);
}
/* line 230, components/_artigos.scss */
.content-space .caption-box {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: inherit;
}
/* line 236, components/_artigos.scss */
.content-space .caption-box .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #FFF;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
/* line 243, components/_artigos.scss */
.content-space .caption-box .caption h3 {
  font-size: 65px;
  font-weight: 300;
  line-height: 70px;
  text-transform: uppercase;
}
/* line 250, components/_artigos.scss */
.content-space .caption-box .caption h1 {
  font-size: 105px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 100px;
}
/* line 258, components/_artigos.scss */
.content-space .caption-box .arrow-down {
  position: absolute;
  bottom: 10px;
  right: 0;
}
/* line 263, components/_artigos.scss */
.content-space .caption-box .arrow-down .arrow-down-icon {
  background-image: url(../img/sprites/spritesheet.png);
  background-position: -229px -196px;
  width: 58px;
  height: 30px;
}
@media screen and (max-width: 1440px) {
  /* line 212, components/_artigos.scss */
  .content-space {
    padding-top: 180px;
    padding-bottom: 120px;
  }
  /* line 275, components/_artigos.scss */
  .content-space .caption-box .caption h3 {
    font-size: 60px;
    line-height: 50px;
  }
  /* line 279, components/_artigos.scss */
  .content-space .caption-box .caption h1 {
    font-size: 90px;
    line-height: 80px;
  }
  /* line 286, components/_artigos.scss */
  .content-space .caption-box .arrow-down .arrow-down-icon {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -287px -196px;
    width: 39px;
    height: 20px;
  }
}
@media (max-width: 767px) {
  /* line 212, components/_artigos.scss */
  .content-space {
    padding-top: 200px;
    padding-bottom: 80px;
  }
  /* line 298, components/_artigos.scss */
  .content-space .container {
    min-height: calc(100vh - 280px);
  }
  /* line 304, components/_artigos.scss */
  .content-space .caption-box .caption h3 {
    font-size: 30px;
    line-height: 20px;
  }
  /* line 309, components/_artigos.scss */
  .content-space .caption-box .caption h1 {
    font-size: 45px;
    line-height: 45px;
  }
}

/* ARTIGOS */
/* line 319, components/_artigos.scss */
.top-block {
  margin-top: 100px;
  padding: 30px 0;
  background: #fdfdfd;
}
/* line 324, components/_artigos.scss */
.top-block h1 {
  font-weight: 500;
  font-size: 26px;
  text-transform: uppercase;
  color: #6b6b6b;
}
/* line 331, components/_artigos.scss */
.top-block a {
  font-size: 14px;
  font-weight: 400;
  line-height: 33px;
  color: #6b6b6b;
  text-transform: uppercase;
  text-align: left;
}
/* line 339, components/_artigos.scss */
.top-block a span {
  vertical-align: text-bottom;
  font-size: 22px;
  line-height: 20px;
  margin-left: 10px;
}
/* line 346, components/_artigos.scss */
.top-block a:hover, .top-block a:focus {
  text-decoration: none;
  color: #4c8b2b;
}
@media screen and (max-width: 1440px) {
  /* line 319, components/_artigos.scss */
  .top-block {
    margin-top: 80px;
    padding: 30px 0;
  }
  /* line 356, components/_artigos.scss */
  .top-block h1 {
    font-size: 24px;
  }
  /* line 360, components/_artigos.scss */
  .top-block a {
    font-size: 12px;
    line-height: 25px;
  }
  /* line 364, components/_artigos.scss */
  .top-block a span {
    vertical-align: text-bottom;
    font-size: 20px;
    line-height: 18px;
  }
}
@media screen and (max-width: 767px) {
  /* line 319, components/_artigos.scss */
  .top-block {
    padding: 20px 0;
  }
  /* line 375, components/_artigos.scss */
  .top-block h1 {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
  }
  /* line 381, components/_artigos.scss */
  .top-block a {
    font-size: 10px;
    line-height: 14px;
  }
  /* line 385, components/_artigos.scss */
  .top-block a span {
    font-size: 16px;
    line-height: 16px;
    margin-left: 5px;
  }
}

/* line 394, components/_artigos.scss */
.banner-block {
  width: 100%;
}
/* line 397, components/_artigos.scss */
.banner-block .fill {
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-position: center 25%;
  background-size: cover;
}
@media screen and (max-width: 1440px) {
  /* line 406, components/_artigos.scss */
  .banner-block .fill {
    height: 300px;
  }
}
@media screen and (max-width: 1024px) {
  /* line 413, components/_artigos.scss */
  .banner-block .fill {
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  /* line 420, components/_artigos.scss */
  .banner-block .fill {
    height: 200px;
  }
}

/* line 426, components/_artigos.scss */
.artigo-block {
  padding: 40px 0 70px 0;
}
/* line 429, components/_artigos.scss */
.artigo-block .morada {
  display: block;
}
/* line 432, components/_artigos.scss */
.artigo-block .morada p, .artigo-block .morada h4, .artigo-block .morada h2 {
  margin-bottom: 10px;
}
/* line 436, components/_artigos.scss */
.artigo-block .morada h2 {
  margin-bottom: 20px;
}
/* line 440, components/_artigos.scss */
.artigo-block .morada p {
  color: #b8b8b8;
  font-size: 16px;
  line-height: 16px;
}
@media screen and (max-width: 767px) {
  /* line 447, components/_artigos.scss */
  .artigo-block .morada p {
    font-size: 12px;
    line-height: 12px;
  }
  /* line 452, components/_artigos.scss */
  .artigo-block .morada h2, .artigo-block .morada h4 {
    font-size: 14px;
  }
}
/* line 460, components/_artigos.scss */
.artigo-block .formulario h2 {
  margin-bottom: 20px;
}
/* line 465, components/_artigos.scss */
.artigo-block .formulario .form-group input, .artigo-block .formulario .form-group textarea {
  border: 1px solid #ededed;
  border-radius: 0;
}

.artigo-block .formulario .form-group input[type="checkbox"]{
  float:left;
  width: 18px;
  height: 18px;
}

.rgpd-text{
  float: left;
  margin-top: 5px;
  margin-left: 10px;
  color: #969696;
  font-size: 14px;
  width:90%;
}

.rgpd-text a{
  color:#4c8b2b;
}

.rgpd-text a:hover{
  color:#4c8b2b;
  text-decoration: underline;
}

.wrapper-partilha{
  width: 100%;
  float: left;
  margin-top: 10px;
}

.captcha-box{
  float: left;
  width: 100%;
  margin-top: 20px;
}
/* line 4, bourbon/css3/_placeholder.scss */
.artigo-block .formulario .form-group input::-webkit-input-placeholder, .artigo-block .formulario .form-group textarea::-webkit-input-placeholder {
  font-size: 14px;
  line-height: 14px;
  color: #969696;
  text-transform: uppercase;
}
/* line 4, bourbon/css3/_placeholder.scss */
.artigo-block .formulario .form-group input::-moz-placeholder, .artigo-block .formulario .form-group textarea::-moz-placeholder {
  font-size: 14px;
  line-height: 14px;
  color: #969696;
  text-transform: uppercase;
}
/* line 4, bourbon/css3/_placeholder.scss */
.artigo-block .formulario .form-group input:-moz-placeholder, .artigo-block .formulario .form-group textarea:-moz-placeholder {
  font-size: 14px;
  line-height: 14px;
  color: #969696;
  text-transform: uppercase;
}
/* line 4, bourbon/css3/_placeholder.scss */
.artigo-block .formulario .form-group input:-ms-input-placeholder, .artigo-block .formulario .form-group textarea:-ms-input-placeholder {
  font-size: 14px;
  line-height: 14px;
  color: #969696;
  text-transform: uppercase;
}
/* line 476, components/_artigos.scss */
.artigo-block .formulario .form-group input:focus, .artigo-block .formulario .form-group textarea:focus {
  border: 1px solid #4c8b2b;
}
/* line 480, components/_artigos.scss */
.artigo-block .formulario .form-group input.has-error, .artigo-block .formulario .form-group textarea.has-error {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 487, components/_artigos.scss */
.artigo-block .formulario .form-group input {
  height: 38px;
  box-shadow: none;
  outline: 0;
}
/* line 492, components/_artigos.scss */
.artigo-block .formulario .form-group input:hover, .artigo-block .formulario .form-group input:focus, .artigo-block .formulario .form-group input:active {
  box-shadow: none;
  outline: 0;
}
/* line 498, components/_artigos.scss */
.artigo-block .formulario .form-group textarea {
  resize: none;
  box-shadow: none;
  outline: 0;
}
/* line 503, components/_artigos.scss */
.artigo-block .formulario .form-group textarea:hover, .artigo-block .formulario .form-group textarea:focus, .artigo-block .formulario .form-group textarea:active {
  box-shadow: none;
  outline: 0;
}
/* line 509, components/_artigos.scss */
.artigo-block .formulario .form-group button {
  border-radius: 0;
  background: #4c8b2b;
  border: 0;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 35px;
  padding: 0 20px;
  min-width: 130px;
  text-align: center;
  font-weight: 300;
  box-shadow: none;
  outline: 0;
}
/* line 523, components/_artigos.scss */
.artigo-block .formulario .form-group button:hover, .artigo-block .formulario .form-group button:focus, .artigo-block .formulario .form-group button:active {
  background: #4c8b2b;
  box-shadow: none;
  outline: 0;
  border: 0;
}
/* line 531, components/_artigos.scss */
.artigo-block .formulario .form-group.warning-msg {
  font-size: 14px;
  line-height: 20px;
  float: left;
}
@media screen and (max-width: 991px) {
  /* line 539, components/_artigos.scss */
  .artigo-block .formulario .form-group button {
    float: left !important;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  /* line 458, components/_artigos.scss */
  .artigo-block .formulario {
    margin-top: 40px;
  }
  /* line 549, components/_artigos.scss */
  .artigo-block .formulario h2 {
    font-size: 14px;
  }
  /* line 553, components/_artigos.scss */
  .artigo-block .formulario #recaptchaField {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transform-origin: left;
    -moz-transform-origin: left;
    -ms-transform-origin: left;
    -o-transform-origin: left;
    transform-origin: left;
  }
  /* line 4, bourbon/css3/_placeholder.scss */
  .artigo-block .formulario .form-group input::-webkit-input-placeholder, .artigo-block .formulario .form-group textarea::-webkit-input-placeholder {
    font-size: 12px;
    line-height: 12px;
  }
  /* line 4, bourbon/css3/_placeholder.scss */
  .artigo-block .formulario .form-group input::-moz-placeholder, .artigo-block .formulario .form-group textarea::-moz-placeholder {
    font-size: 12px;
    line-height: 12px;
  }
  /* line 4, bourbon/css3/_placeholder.scss */
  .artigo-block .formulario .form-group input:-moz-placeholder, .artigo-block .formulario .form-group textarea:-moz-placeholder {
    font-size: 12px;
    line-height: 12px;
  }
  /* line 4, bourbon/css3/_placeholder.scss */
  .artigo-block .formulario .form-group input:-ms-input-placeholder, .artigo-block .formulario .form-group textarea:-ms-input-placeholder {
    font-size: 12px;
    line-height: 12px;
  }
  /* line 567, components/_artigos.scss */
  .artigo-block .formulario .form-group button {
    float: left !important;
    font-size: 12px;
    line-height: 30px;
    padding: 0 20px;
    min-width: 80px;
    margin-top: 20px;
  }
  /* line 575, components/_artigos.scss */
  .artigo-block .formulario .form-group button:hover, .artigo-block .formulario .form-group button:focus, .artigo-block .formulario .form-group button:active {
    background: #4c8b2b;
    box-shadow: none;
    outline: 0;
    border: 0;
  }
  /* line 583, components/_artigos.scss */
  .artigo-block .formulario .form-group.warning-msg {
    font-size: 12px;
    line-height: 16px;
  }
}
/* line 591, components/_artigos.scss */
.artigo-block .downloads {
  padding-bottom: 40px;
}
/* line 594, components/_artigos.scss */
.artigo-block .downloads .list-title {
  display: inline-block;
  margin-bottom: 20px;
  width: 100%;
}
/* line 599, components/_artigos.scss */
.artigo-block .downloads .list-title h2 {
  float: left;
  display: inline-block;
  margin-right: 5px;
  padding-top: 1px;
}
/* line 605, components/_artigos.scss */
.artigo-block .downloads .list-title span {
  float: right;
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #e7e7e7;
  margin-top: 11px;
}
/* line 615, components/_artigos.scss */
.artigo-block .downloads .list-group {
  display: inline-block;
  width: 100%;
  margin-bottom: 50px;
}
/* line 620, components/_artigos.scss */
.artigo-block .downloads .list-group .list-group-item {
  padding-left: 0;
  border: none;
  border-radius: none;
  text-transform: uppercase;
}
/* line 626, components/_artigos.scss */
.artigo-block .downloads .list-group .list-group-item p {
  font-size: 16px;
  color: #b8b8b8;
  font-weight: 500;
  margin-bottom: 5px;
}
@media screen and (max-width: 1440px) {
  /* line 626, components/_artigos.scss */
  .artigo-block .downloads .list-group .list-group-item p {
    font-size: 14px;
  }
}
/* line 637, components/_artigos.scss */
.artigo-block .downloads .list-group .list-group-item a {
  font-size: 14px;
  color: #d6d6d6;
  font-weight: 400;
}
@media screen and (max-width: 1440px) {
  /* line 637, components/_artigos.scss */
  .artigo-block .downloads .list-group .list-group-item a {
    font-size: 12px;
  }
}
/* line 646, components/_artigos.scss */
.artigo-block .downloads .list-group .list-group-item a:hover {
  color: #4d8b2b;
  text-decoration: none;
}
/* line 651, components/_artigos.scss */
.artigo-block .downloads .list-group .list-group-item a i {
  margin-right: 5px;
}
/* line 658, components/_artigos.scss */
.artigo-block .downloads .btn.see_more {
  display: none;
  border-radius: 0;
  background: #4c8b2b;
  border: 0;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 40px;
  padding: 0 20px;
  min-width: 150px;
  text-align: center;
  font-weight: 300;
  color: #FFF;
  margin-bottom: 40px;
}
/* line 673, components/_artigos.scss */
.artigo-block .downloads .btn.see_more:hover {
  background: #4c8b2b;
  border: 0;
}
@media screen and (max-width: 767px) {
  /* line 591, components/_artigos.scss */
  .artigo-block .downloads {
    padding-bottom: 0px;
  }
  /* line 683, components/_artigos.scss */
  .artigo-block .downloads .list-title {
    margin-bottom: 10px;
  }
  /* line 686, components/_artigos.scss */
  .artigo-block .downloads .list-title h2 {
    font-size: 14px;
    width: 100%;
  }
  /* line 690, components/_artigos.scss */
  .artigo-block .downloads .list-title span {
    max-width: none !important;
    float: none;
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #e7e7e7;
    margin-top: 8px;
  }
  /* line 705, components/_artigos.scss */
  .artigo-block .downloads .btn.see_more {
    font-size: 12px;
    line-height: 30px;
    padding: 0 20px;
    min-width: 80px;
  }
}
/* line 714, components/_artigos.scss */
.artigo-block h2 {
  font-size: 20px;
  color: #969696;
  font-weight: 400;
  text-transform: uppercase;
}
/* line 721, components/_artigos.scss */
.artigo-block h4 {
  font-size: 16px;
  line-height: 16px;
  color: #949494;
  font-weight: 600;
}
@media screen and (max-width: 1440px) {
  /* line 730, components/_artigos.scss */
  .artigo-block h2 {
    font-size: 18px;
  }
  /* line 734, components/_artigos.scss */
  .artigo-block h4 {
    font-size: 14px;
    line-height: 14px;
  }
}
@media screen and (max-width: 767px) {
  /* line 426, components/_artigos.scss */
  .artigo-block {
    padding: 40px 0 40px 0;
  }
}

/* line 1, components/_produtos.scss */
#produtos.banner-block {
  margin-top: 100px;
}
/* line 5, components/_produtos.scss */
#produtos.banner-block .fill {
  height: 350px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 1440px) {
  /* line 1, components/_produtos.scss */
  #produtos.banner-block {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  /* line 17, components/_produtos.scss */
  #produtos.banner-block .fill {
    height: 160px;
  }
}

/* line 27, components/_produtos.scss */
#produto.banner-block .carousel .item {
  height: 400px;
  background-color: #555;
}
/* line 31, components/_produtos.scss */
#produto.banner-block .carousel .item a {
  height: inherit;
  width: 100%;
  display: block;
  cursor: pointer;
  position: absolute;
  z-index: 1;
}
/* line 40, components/_produtos.scss */
#produto.banner-block .carousel .item .fill {
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
}
/* line 47, components/_produtos.scss */
#produto.banner-block .carousel .item .container {
  position: relative;
  height: inherit;
}
/* line 51, components/_produtos.scss */
#produto.banner-block .carousel .item .container .carousel-caption {
  width: 100%;
  z-index: 1;
  right: auto;
  left: auto;
  padding: 0 30px;
  margin: 0;
  text-align: right;
}
/* line 60, components/_produtos.scss */
#produto.banner-block .carousel .item .container .carousel-caption button {
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  text-align: right;
}
/* line 68, components/_produtos.scss */
#produto.banner-block .carousel .item .container .carousel-caption button .icon-zoom {
  float: right;
}
/* line 76, components/_produtos.scss */
#produto.banner-block .carousel .carousel-indicators {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: auto;
  margin: 20px 0;
}
/* line 84, components/_produtos.scss */
#produto.banner-block .carousel .carousel-indicators li {
  background: #d2d2d2;
  border-radius: 0;
  width: 40px;
  height: 7px;
  border: none;
  margin: 0;
}
/* line 93, components/_produtos.scss */
#produto.banner-block .carousel .carousel-indicators .active {
  background: #b1b1b1;
}
@media screen and (max-width: 767px) {
  /* line 102, components/_produtos.scss */
  #produto.banner-block .carousel .item {
    height: 300px;
  }
  /* line 105, components/_produtos.scss */
  #produto.banner-block .carousel .item .fill {
    height: inherit;
  }
  /* line 111, components/_produtos.scss */
  #produto.banner-block .carousel .item .container .carousel-caption button .icon-zoom {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
  }
  /* line 119, components/_produtos.scss */
  #produto.banner-block .carousel .carousel-indicators {
    margin: 20px 0 0 0;
  }
  /* line 122, components/_produtos.scss */
  #produto.banner-block .carousel .carousel-indicators li {
    width: 36px;
    height: 6px;
  }
}

/* line 131, components/_produtos.scss */
.produtos-block {
  padding: 0;
  padding-bottom: 70px;
}
/* line 135, components/_produtos.scss */
.produtos-block .filter {
  background-color: #fcfcfc;
  display: inline-block;
  width: 100%;
}
/* line 140, components/_produtos.scss */
.produtos-block .filter button {
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 4px solid #fcfcfc;
  padding: 10px;
  line-height: 40px;
  font-size: 18px;
  color: #6b6b6b;
  text-transform: uppercase;
}
/* line 151, components/_produtos.scss */
.produtos-block .filter button:hover, .produtos-block .filter button:focus, .produtos-block .filter button.active, .produtos-block .filter button:active {
  border-bottom: 4px solid #4c8b2b;
  background-color: #f9f9f9;
  outline: 0;
  box-shadow: none;
}
@media screen and (max-width: 1440px) {
  /* line 140, components/_produtos.scss */
  .produtos-block .filter button {
    font-size: 16px;
  }
}
/* line 164, components/_produtos.scss */
.produtos-block .filter.mobile {
  display: inline-block;
  width: 100%;
  text-align: center;
}
/* line 169, components/_produtos.scss */
.produtos-block .filter.mobile button {
  background: transparent;
  border-radius: 0;
  border-bottom: 0;
  padding: 10px;
  line-height: 40px;
  font-size: 14px;
  color: #6b6b6b;
  text-transform: uppercase;
}
/* line 179, components/_produtos.scss */
.produtos-block .filter.mobile button:hover, .produtos-block .filter.mobile button:focus, .produtos-block .filter.mobile button.active {
  border-bottom: 4px solid #4c8b2b;
  outline: 0;
  box-shadow: none;
}
/* line 186, components/_produtos.scss */
.produtos-block .filter.mobile .nav {
  margin: 0 !important;
  float: none !important;
  padding: 0;
}
/* line 192, components/_produtos.scss */
.produtos-block .filter.mobile .dropdown {
  border: 1px solid #4c8b2b;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  width: 100%;
  background: #4c8b2b;
}
/* line 200, components/_produtos.scss */
.produtos-block .filter.mobile .dropdown .icon {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 15px;
  width: 18px;
  height: 18px;
  background: url("../img/sprites/chosen-sprite@2x.png") 0 -8px no-repeat;
}
/* line 210, components/_produtos.scss */
.produtos-block .filter.mobile .dropdown .dropdown-toggle {
  color: #FFF;
}
/* line 213, components/_produtos.scss */
.produtos-block .filter.mobile .dropdown .dropdown-toggle:hover {
  color: #FFF;
}
/* line 218, components/_produtos.scss */
.produtos-block .filter.mobile .dropdown a {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-right: 0;
  font-size: 18px;
  z-index: 1;
  background: transparent;
}
@media screen and (max-width: 1440px) {
  /* line 218, components/_produtos.scss */
  .produtos-block .filter.mobile .dropdown a {
    font-size: 16px;
  }
}
/* line 230, components/_produtos.scss */
.produtos-block .filter.mobile .dropdown a:hover, .produtos-block .filter.mobile .dropdown a:focus, .produtos-block .filter.mobile .dropdown a:active {
  color: #6b6b6b;
}
/* line 235, components/_produtos.scss */
.produtos-block .filter.mobile .dropdown.open {
  background: #f9f9f9;
  border: 1px solid #f3f3f3;
}
/* line 239, components/_produtos.scss */
.produtos-block .filter.mobile .dropdown.open a {
  visibility: hidden;
}
/* line 243, components/_produtos.scss */
.produtos-block .filter.mobile .dropdown.open .icon {
  top: 15px;
  right: calc(50% - 9px);
  background-position: -86px 0px;
}
/* line 251, components/_produtos.scss */
.produtos-block .filter.mobile .dropdown-menu > li {
  display: block;
  width: 100%;
}
/* line 255, components/_produtos.scss */
.produtos-block .filter.mobile .dropdown-menu > li > button {
  color: #6b6b6b;
  font-size: 18px;
  border: 0;
  padding: 0 10px;
}
/* line 261, components/_produtos.scss */
.produtos-block .filter.mobile .dropdown-menu > li > button:hover, .produtos-block .filter.mobile .dropdown-menu > li > button:active, .produtos-block .filter.mobile .dropdown-menu > li > button:focus {
  color: #4c8b2b;
}
/* line 265, components/_produtos.scss */
.produtos-block .filter.mobile .dropdown-menu > li > button.active {
  color: #b6b6b6;
}
@media screen and (max-width: 1440px) {
  /* line 255, components/_produtos.scss */
  .produtos-block .filter.mobile .dropdown-menu > li > button {
    font-size: 16px;
  }
}
/* line 273, components/_produtos.scss */
.produtos-block .filter.mobile .dropdown ul.dropdown-menu {
  position: absolute !important;
  border-top: 0;
  border-left: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
  border-right: 1px solid #f3f3f3;
  font-weight: 400;
  text-transform: uppercase;
  color: #6b6b6b;
  padding: 10px;
  padding-bottom: 30px;
  background: #f9f9f9;
  width: calc(100% + 1px);
  border-radius: 0;
  box-shadow: none;
  margin-top: -1px;
}
/* line 292, components/_produtos.scss */
.produtos-block .thumbnails.gallery {
  margin: 50px -15px;
  width: calc(100% + 30px);
  display: inline-block;
}
/* line 297, components/_produtos.scss */
.produtos-block .thumbnails.gallery li {
  margin-bottom: 20px;
  display: none;
}
/* line 301, components/_produtos.scss */
.produtos-block .thumbnails.gallery li a {
  text-decoration: none;
  display: inline-block;
  width: 100%;
}
/* line 306, components/_produtos.scss */
.produtos-block .thumbnails.gallery li a .img-block {
  position: relative;
  width: 100%;
  float: left;
  overflow: hidden;
}
/* line 312, components/_produtos.scss */
.produtos-block .thumbnails.gallery li a .img-block img {
  width: 100%;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
/* line 323, components/_produtos.scss */
.produtos-block .thumbnails.gallery li a:hover .img-block img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
/* line 329, components/_produtos.scss */
.produtos-block .thumbnails.gallery li h2 {
  display: inline-block;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  /* line 292, components/_produtos.scss */
  .produtos-block .thumbnails.gallery {
    margin: 20px -15px;
  }
}
/* line 341, components/_produtos.scss */
.produtos-block .see_more {
  border-radius: 0;
  background: #4c8b2b;
  border: 0;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 40px;
  padding: 0 20px;
  min-width: 150px;
  text-align: center;
  font-weight: 300;
  color: #FFF;
}
/* line 354, components/_produtos.scss */
.produtos-block .see_more:hover {
  background: #4c8b2b;
  border: 0;
}
/* line 360, components/_produtos.scss */
.produtos-block h2 {
  font-size: 20px;
  color: #969696;
  font-weight: 400;
  text-transform: uppercase;
}
/* line 367, components/_produtos.scss */
.produtos-block h4 {
  font-size: 16px;
  line-height: 16px;
  color: #949494;
  font-weight: 600;
}
@media screen and (max-width: 1440px) {
  /* line 375, components/_produtos.scss */
  .produtos-block h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  /* line 381, components/_produtos.scss */
  .produtos-block h2 {
    font-size: 12px;
  }
  /* line 385, components/_produtos.scss */
  .produtos-block .see_more {
    font-size: 12px;
    line-height: 30px;
    padding: 0 20px;
    min-width: 80px;
  }
}

/* line 395, components/_produtos.scss */
.produto {
  padding-top: 0;
  padding-bottom: 70px;
}
/* line 399, components/_produtos.scss */
.produto .top-info {
  display: inline-block;
  margin: 40px 0 10px 0;
  width: 100%;
  max-height: 37px;
}
/* line 405, components/_produtos.scss */
.produto .top-info .title {
  display: inline-block;
  margin-right: 5px;
  background: #4c8b2b;
  width: 100%;
}
/* line 411, components/_produtos.scss */
.produto .top-info .title h2 {
  color: #FFF;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 37px;
  font-weight: 400;
}
/* line 421, components/_produtos.scss */
.produto .top-info .icons {
  display: inline-block;
  width: auto;
  max-height: 37px;
  background: #FFF;
  margin-top: -37px;
}
/* line 428, components/_produtos.scss */
.produto .top-info .icons img {
  display: block;
  float: right;
  margin-left: 15px;
  height: 37px;
}
@media screen and (max-width: 1440px) {
  /* line 399, components/_produtos.scss */
  .produto .top-info {
    max-height: 33px;
  }
  /* line 440, components/_produtos.scss */
  .produto .top-info .title h2 {
    font-size: 18px;
    line-height: 33px;
  }
  /* line 446, components/_produtos.scss */
  .produto .top-info .icons {
    max-height: 33px;
    margin-top: -33px;
  }
  /* line 450, components/_produtos.scss */
  .produto .top-info .icons img {
    height: 33px;
  }
}
/* line 457, components/_produtos.scss */
.produto .list-title {
  display: inline-block;
  margin: 30px 0 0 0;
  width: 100%;
}
/* line 462, components/_produtos.scss */
.produto .list-title h2 {
  float: left;
  display: inline-block;
  margin-right: 5px;
  padding-top: 1px;
  color: #969696;
  font-size: 18px;
}
/* line 470, components/_produtos.scss */
.produto .list-title h2 small {
  font-size: 14px;
  font-weight: 400;
  color: #b8b8b8;
}
@media screen and (max-width: 1440px) {
  /* line 462, components/_produtos.scss */
  .produto .list-title h2 {
    font-size: 16px;
  }
  /* line 479, components/_produtos.scss */
  .produto .list-title h2 small {
    font-size: 12px;
  }
}
/* line 484, components/_produtos.scss */
.produto .list-title span {
  float: right;
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #e7e7e7;
  margin-top: 11px;
}
/* line 495, components/_produtos.scss */
.produto .list-group {
  display: inline-block;
  width: 100%;
  margin: 0;
}
/* line 500, components/_produtos.scss */
.produto .list-group .list-group-item {
  margin-top: 30px;
  padding-left: 0;
  border: none;
  border-radius: none;
  text-transform: uppercase;
  position: relative;
}
/* line 508, components/_produtos.scss */
.produto .list-group .list-group-item img.img-responsive {
  max-width: 50%;
  float: left;
}
/* line 512, components/_produtos.scss */
.produto .list-group .list-group-item img.img-responsive.horizontal {
  max-width: 50%;
}
/* line 518, components/_produtos.scss */
.produto .list-group .list-group-item .icons-block img {
  margin-bottom: 20px;
  margin-right: 5px;
  max-height: 32px;
}
/* line 525, components/_produtos.scss */
.produto .list-group .list-group-item .bottom-align-text {
  float: left;
  padding-left: 15px;
  max-width: 50%;
}
/* line 531, components/_produtos.scss */
.produto .list-group .list-group-item p {
  font-size: 14px;
  color: #b8b8b8;
  font-weight: 400;
}
/* line 537, components/_produtos.scss */
.produto .list-group .list-group-item a {
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  color: #d6d6d6;
  font-weight: 400;
}
/* line 544, components/_produtos.scss */
.produto .list-group .list-group-item a:hover {
  color: #4d8b2b;
  text-decoration: none;
}
/* line 549, components/_produtos.scss */
.produto .list-group .list-group-item a i {
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  /* line 395, components/_produtos.scss */
  .produto {
    padding-bottom: 50px;
    margin: 20px 0 0 0;
  }
  /* line 567, components/_produtos.scss */
  .produto .list-title h2 {
    margin-top: 10px;
  }
  /* line 571, components/_produtos.scss */
  .produto .list-title span {
    margin-top: 21px;
  }
  /* line 577, components/_produtos.scss */
  .produto .top-info {
    display: inline-block;
    margin: 20px 0 10px 0;
    width: 100%;
    max-height: 23px;
  }
  /* line 585, components/_produtos.scss */
  .produto .top-info .title h2 {
    padding: 0 10px;
    font-size: 12px;
    line-height: 23px;
  }
  /* line 592, components/_produtos.scss */
  .produto .top-info .icons {
    display: inline-block;
    width: auto;
    max-height: 23px;
    float: left !important;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  /* line 600, components/_produtos.scss */
  .produto .top-info .icons img {
    float: left;
    margin-left: 0px;
    margin-right: 8px;
    height: 23px;
  }
}

/* MODAL */
/* line 614, components/_produtos.scss */
.modal {
  padding: 20px;
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}

/* line 625, components/_produtos.scss */
#carousel-modal {
  max-width: 70%;
  margin: 0 auto;
  max-height: calc(100vh - 40px);
}
/* line 630, components/_produtos.scss */
#carousel-modal .carousel-inner {
  max-height: inherit;
  min-height: calc(100vh - 40px);
}
/* line 634, components/_produtos.scss */
#carousel-modal .carousel-inner .item {
  max-height: inherit;
  position: relative;
  min-height: inherit;
}
/* line 639, components/_produtos.scss */
#carousel-modal .carousel-inner .item img {
  max-height: inherit;
  margin: 0 auto;
}
/* line 646, components/_produtos.scss */
#carousel-modal .carousel-control.left {
  background: transparent;
  left: -20%;
}
/* line 651, components/_produtos.scss */
#carousel-modal .carousel-control.right {
  background: transparent;
  right: -20%;
}
/* line 658, components/_produtos.scss */
#carousel-modal .carousel-control {
  text-shadow: none;
  color: #FFF;
  opacity: 1;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
/* line 666, components/_produtos.scss */
#carousel-modal .carousel-control .glyphicon {
  color: #FFF;
  opacity: 1;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
/* line 675, components/_produtos.scss */
#carousel-modal .carousel-control:hover {
  color: #4c8b2b;
  filter: alpha(opacity=100);
  opacity: 1;
}
/* line 680, components/_produtos.scss */
#carousel-modal .carousel-control:hover .glyphicon {
  color: #4c8b2b;
  filter: alpha(opacity=100);
  opacity: 1;
}
/* line 687, components/_produtos.scss */
#carousel-modal .carousel-control:focus {
  text-shadow: none;
  color: #FFF;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  /* line 625, components/_produtos.scss */
  #carousel-modal {
    max-width: 90%;
  }
  /* line 698, components/_produtos.scss */
  #carousel-modal .carousel-control.left {
    background: transparent;
    left: -10%;
  }
  /* line 703, components/_produtos.scss */
  #carousel-modal .carousel-control.right {
    background: transparent;
    right: -10%;
  }
  /* line 709, components/_produtos.scss */
  #carousel-modal .carousel-control:hover {
    text-shadow: none;
    color: #FFF;
    opacity: 1;
  }
  /* line 714, components/_produtos.scss */
  #carousel-modal .carousel-control:hover .glyphicon {
    text-shadow: none;
    color: #FFF;
    opacity: 1;
  }
}

/* Modal Content (Image) */
/* line 725, components/_produtos.scss */
.modal-content {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 40px);
  border-radius: 0;
}

/* The Close Button */
/* line 736, components/_produtos.scss */
.close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 40px;
  line-height: 20px;
  font-weight: bold;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  opacity: 1;
  z-index: 2;
  text-shadow: none;
}

/* line 751, components/_produtos.scss */
.close:hover,
.close:focus {
  opacity: 1;
  color: #4c8b2b;
  text-decoration: none;
  cursor: pointer;
}

/* line 1, components/_ambientes.scss */
#ambiente.banner-block {
  margin-top: 35px;
}
/* line 3, components/_ambientes.scss */
#ambiente.banner-block .fill {
  height: 700px;
  background-position: center;
}
/* line 8, components/_ambientes.scss */
#ambiente.banner-block img {
  display: none;
}
@media screen and (max-width: 1680px) {
  /* line 13, components/_ambientes.scss */
  #ambiente.banner-block .fill {
    height: 521px;
  }
}

@media screen and (max-width: 1200px) {
  /* line 13, components/_ambientes.scss */
  #ambiente.banner-block .fill {
    height: 427px;
  }
}
@media screen and (max-width: 1024px) {
  /* line 1, components/_ambientes.scss */
  #ambiente.banner-block {
    margin-top: 20px;
  }
  /* line 21, components/_ambientes.scss */
  #ambiente.banner-block .fill {
    height: 427px;
  }
}

@media screen and (max-width: 991px) {
  /* line 13, components/_ambientes.scss */
  #ambiente.banner-block .fill {
    height: 329px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1, components/_ambientes.scss */
  #ambiente.banner-block {
    margin-top: 20px;
  }
  /* line 29, components/_ambientes.scss */
  #ambiente.banner-block .fill {
    display: none;
  }
  /* line 33, components/_ambientes.scss */
  #ambiente.banner-block img {
    display: block;
  }
}

/* line 39, components/_ambientes.scss */
.ambientes-block {
  padding-bottom: 70px;
}
/* line 42, components/_ambientes.scss */
.ambientes-block h5 {
  font-weight: 300;
  font-size: 14px;
  color: #969696;
  text-transform: uppercase;
  margin-bottom: 10px;
}
/* line 50, components/_ambientes.scss */
.ambientes-block .filter {
  display: inline-block;
  width: 100%;
}
/* line 54, components/_ambientes.scss */
.ambientes-block .filter button {
  background: transparent;
  border-radius: 0;
  border-bottom: 4px solid #fff;
  padding: 10px;
  line-height: 40px;
  font-size: 18px;
  color: #6b6b6b;
  text-transform: uppercase;
}
/* line 64, components/_ambientes.scss */
.ambientes-block .filter button:hover, .ambientes-block .filter button:focus, .ambientes-block .filter button.active {
  border-bottom: 4px solid #4c8b2b;
  outline: 0;
  box-shadow: none;
}
/* line 71, components/_ambientes.scss */
.ambientes-block .filter .nav {
  margin: 0 !important;
  float: none !important;
}
/* line 76, components/_ambientes.scss */
.ambientes-block .filter .dropdown {
  border: 1px solid #4c8b2b;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  width: 100%;
  background: #4c8b2b;
}
/* line 84, components/_ambientes.scss */
.ambientes-block .filter .dropdown .icon {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 15px;
  width: 18px;
  height: 18px;
  background: url("../img/sprites/chosen-sprite@2x.png") 0 -8px no-repeat;
}
/* line 94, components/_ambientes.scss */
.ambientes-block .filter .dropdown .dropdown-toggle {
  color: #FFF;
}
/* line 97, components/_ambientes.scss */
.ambientes-block .filter .dropdown .dropdown-toggle:hover {
  color: #FFF;
}
/* line 102, components/_ambientes.scss */
.ambientes-block .filter .dropdown a {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-right: 0;
  font-size: 18px;
  z-index: 1;
  background: transparent;
}
@media screen and (max-width: 1440px) {
  /* line 102, components/_ambientes.scss */
  .ambientes-block .filter .dropdown a {
    font-size: 16px;
  }
}
/* line 114, components/_ambientes.scss */
.ambientes-block .filter .dropdown a:hover, .ambientes-block .filter .dropdown a:focus, .ambientes-block .filter .dropdown a:active {
  color: #6b6b6b;
}
/* line 119, components/_ambientes.scss */
.ambientes-block .filter .dropdown.open {
  background: #f9f9f9;
  border: 1px solid #f3f3f3;
}
/* line 123, components/_ambientes.scss */
.ambientes-block .filter .dropdown.open a {
  visibility: hidden;
}
/* line 127, components/_ambientes.scss */
.ambientes-block .filter .dropdown.open .icon {
  top: 15px;
  right: calc(50% - 9px);
  background-position: -86px 0px;
}
/* line 135, components/_ambientes.scss */
.ambientes-block .filter .dropdown-menu > li {
  display: block;
  width: 100%;
}
/* line 139, components/_ambientes.scss */
.ambientes-block .filter .dropdown-menu > li > button {
  color: #6b6b6b;
  font-size: 18px;
  border: 0;
  padding: 0 10px;
}
/* line 145, components/_ambientes.scss */
.ambientes-block .filter .dropdown-menu > li > button:hover, .ambientes-block .filter .dropdown-menu > li > button:active, .ambientes-block .filter .dropdown-menu > li > button:focus {
  color: #4c8b2b;
}
/* line 149, components/_ambientes.scss */
.ambientes-block .filter .dropdown-menu > li > button.active {
  color: #b6b6b6;
}
@media screen and (max-width: 1440px) {
  /* line 139, components/_ambientes.scss */
  .ambientes-block .filter .dropdown-menu > li > button {
    font-size: 16px;
  }
}
/* line 157, components/_ambientes.scss */
.ambientes-block .filter .dropdown ul.dropdown-menu {
  position: absolute !important;
  border-top: 0;
  border-left: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
  border-right: 1px solid #f3f3f3;
  font-weight: 400;
  text-transform: uppercase;
  color: #6b6b6b;
  padding: 10px;
  padding-bottom: 30px;
  background: #f9f9f9;
  width: calc(100% + 1px);
  border-radius: 0;
  box-shadow: none;
  margin-top: -1px;
}
/* line 176, components/_ambientes.scss */
.ambientes-block .thumbnails.gallery {
  margin: 40px -15px 40px -15px;
  width: calc(100% + 30px);
  display: inline-block;
}
/* line 181, components/_ambientes.scss */
.ambientes-block .thumbnails.gallery li {
  margin-bottom: 20px;
  display: none;
}
/* line 185, components/_ambientes.scss */
.ambientes-block .thumbnails.gallery li a {
  text-decoration: none;
  display: inline-block;
  width: 100%;
}
/* line 190, components/_ambientes.scss */
.ambientes-block .thumbnails.gallery li a .img-block {
  position: relative;
  width: 100%;
  float: left;
  overflow: hidden;
}
/* line 196, components/_ambientes.scss */
.ambientes-block .thumbnails.gallery li a .img-block img {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
/* line 206, components/_ambientes.scss */
.ambientes-block .thumbnails.gallery li a:hover .img-block img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
/* line 212, components/_ambientes.scss */
.ambientes-block .thumbnails.gallery li h2 {
  display: inline-block;
  margin-top: 10px;
  min-height: 44px;
}
/* line 220, components/_ambientes.scss */
.ambientes-block .see_more {
  border-radius: 0;
  background: #4c8b2b;
  border: 0;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 40px;
  padding: 0 20px;
  min-width: 150px;
  text-align: center;
  font-weight: 300;
  color: #FFF;
}
/* line 233, components/_ambientes.scss */
.ambientes-block .see_more:hover {
  background: #4c8b2b;
  border: 0;
}
/* line 239, components/_ambientes.scss */
.ambientes-block h2 {
  font-size: 20px;
  color: #969696;
  font-weight: 400;
  text-transform: uppercase;
}
/* line 246, components/_ambientes.scss */
.ambientes-block h4 {
  font-size: 16px;
  line-height: 16px;
  color: #949494;
  font-weight: 600;
}
@media screen and (max-width: 1440px) {
  /* line 255, components/_ambientes.scss */
  .ambientes-block h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  /* line 39, components/_ambientes.scss */
  .ambientes-block {
    padding-bottom: 50px;
  }
  /* line 263, components/_ambientes.scss */
  .ambientes-block .top-block {
    padding: 0;
  }
  /* line 267, components/_ambientes.scss */
  .ambientes-block h5 {
    display: none;
  }
  /* line 271, components/_ambientes.scss */
  .ambientes-block .nav {
    padding: 0;
  }
  /* line 275, components/_ambientes.scss */
  .ambientes-block .filter {
    margin: 0px;
    padding: 0;
  }
  /* line 280, components/_ambientes.scss */
  .ambientes-block .filter button {
    border-bottom: 0;
    padding: 10px;
    line-height: 40px;
    font-size: 18px;
    color: #6b6b6b;
    text-transform: uppercase;
  }
  /* line 288, components/_ambientes.scss */
  .ambientes-block .filter button:hover, .ambientes-block .filter button:focus, .ambientes-block .filter button.active {
    border-bottom: 4px solid #4c8b2b;
    outline: 0;
    box-shadow: none;
  }
  /* line 295, components/_ambientes.scss */
  .ambientes-block .filter .nav {
    margin: 0 !important;
    float: none !important;
  }
  /* line 300, components/_ambientes.scss */
  .ambientes-block .filter .dropdown {
    padding: 10px 0;
    border: 1px solid #4c8b2b;
    background: #4c8b2b;
  }
  /* line 305, components/_ambientes.scss */
  .ambientes-block .filter .dropdown .icon {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 15px;
    width: 18px;
    height: 18px;
    background: url("../img/sprites/chosen-sprite@2x.png") 0 -8px no-repeat;
  }
  /* line 315, components/_ambientes.scss */
  .ambientes-block .filter .dropdown a {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-right: 0;
    font-size: 14px;
    background: transparent;
    text-align: center;
  }
  /* line 326, components/_ambientes.scss */
  .ambientes-block .filter .dropdown.open .icon {
    top: 25px;
    background-position: -86px 0px;
  }
  /* line 333, components/_ambientes.scss */
  .ambientes-block .filter .dropdown-menu > li > button {
    font-size: 14px;
    border: 0;
    padding: 0 10px;
  }
  /* line 338, components/_ambientes.scss */
  .ambientes-block .filter .dropdown-menu > li > button:hover, .ambientes-block .filter .dropdown-menu > li > button:active, .ambientes-block .filter .dropdown-menu > li > button:focus {
    color: #4c8b2b;
  }
  /* line 342, components/_ambientes.scss */
  .ambientes-block .filter .dropdown-menu > li > button.active {
    color: #b6b6b6;
  }
  /* line 346, components/_ambientes.scss */
  .ambientes-block .filter .dropdown ul.dropdown-menu {
    position: absolute !important;
    border-top: 0;
    border-left: 0;
    border-bottom: 0;
    border-right: 0;
    font-weight: 400;
    text-transform: uppercase;
    color: #6b6b6b;
    padding: 10px;
    padding-bottom: 30px;
    background: #fdfdfd;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    margin-top: -1px;
  }
  /* line 365, components/_ambientes.scss */
  .ambientes-block h2 {
    font-size: 12px;
  }
  /* line 369, components/_ambientes.scss */
  .ambientes-block .see_more {
    font-size: 12px;
    line-height: 30px;
    padding: 0 20px;
    min-width: 80px;
  }
}

/* line 380, components/_ambientes.scss */
.ambiente .top-info {
  display: inline-block;
  margin: 10px 0 40px 0;
  width: 100%;
}
/* line 385, components/_ambientes.scss */
.ambiente .top-info .title {
  display: inline-block;
  margin-right: 5px;
  background: #4c8b2b;
  width: 100%;
}
/* line 391, components/_ambientes.scss */
.ambiente .top-info .title h2 {
  color: #FFF;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 37px;
  font-weight: 400;
}
/* line 400, components/_ambientes.scss */
.ambiente .top-info .icons {
  display: inline-block;
  width: auto;
}
/* line 404, components/_ambientes.scss */
.ambiente .top-info .icons img {
  display: block;
  float: right;
  margin-left: 15px;
  height: 37px;
}
/* line 413, components/_ambientes.scss */
.ambiente .list-title {
  display: inline-block;
  margin: 10px 0 20px 0;
  width: 100%;
}
/* line 418, components/_ambientes.scss */
.ambiente .list-title h2 {
  float: left;
  display: inline-block;
  margin-right: 5px;
  padding-top: 1px;
  color: #969696;
}
/* line 425, components/_ambientes.scss */
.ambiente .list-title h2 small {
  font-size: 14px;
  font-weight: 400;
  color: #b8b8b8;
}
/* line 431, components/_ambientes.scss */
.ambiente .list-title span {
  float: right;
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #e7e7e7;
  margin-top: 11px;
}
/* line 442, components/_ambientes.scss */
.ambiente .list-group {
  display: inline-block;
  width: 100%;
  margin: 30px 0;
}
/* line 447, components/_ambientes.scss */
.ambiente .list-group .list-group-item {
  padding-left: 0;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
}
/* line 453, components/_ambientes.scss */
.ambiente .list-group .list-group-item .row {
  position: relative;
}
/* line 456, components/_ambientes.scss */
.ambiente .list-group .list-group-item .row .bottom-align-text {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-left: 40px;
}
/* line 462, components/_ambientes.scss */
.ambiente .list-group .list-group-item .row .bottom-align-text .icons-block {
  margin-bottom: 20px;
}
/* line 465, components/_ambientes.scss */
.ambiente .list-group .list-group-item .row .bottom-align-text .icons-block img {
  margin-right: 5px;
  max-height: 32px;
}
/* line 473, components/_ambientes.scss */
.ambiente .list-group .list-group-item p {
  font-size: 14px;
  color: #b8b8b8;
  font-weight: 400;
}
/* line 479, components/_ambientes.scss */
.ambiente .list-group .list-group-item a {
  font-size: 14px;
  color: #d6d6d6;
  font-weight: 400;
}
/* line 484, components/_ambientes.scss */
.ambiente .list-group .list-group-item a:hover {
  color: #4d8b2b;
  text-decoration: none;
}
/* line 489, components/_ambientes.scss */
.ambiente .list-group .list-group-item a i {
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  /* line 500, components/_ambientes.scss */
  .ambiente .list-group .list-group-item p {
    font-size: 12px;
  }
  /* line 504, components/_ambientes.scss */
  .ambiente .list-group .list-group-item a {
    font-size: 12px;
  }
}

/* line 512, components/_ambientes.scss */
.ambiente-block {
  padding-bottom: 70px;
}
/* line 515, components/_ambientes.scss */
.ambiente-block .list-group .btn.see_more {
  background: #4c8b2b;
  padding: 10px 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  text-transform: uppercase;
  min-width: 110px;
  color: #FFF;
  margin: 20px 0;
}
/* line 526, components/_ambientes.scss */
.ambiente-block .list-group .btn.see_more:hover {
  color: #FFF;
}
@media screen and (max-width: 1440px) {
  /* line 515, components/_ambientes.scss */
  .ambiente-block .list-group .btn.see_more {
    padding: 5px 0;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  /* line 512, components/_ambientes.scss */
  .ambiente-block {
    padding-bottom: 30px;
  }
}

/* Barra cookies */

/* line 3, base/_cookies.scss */

.in-modal .cookies-wrapper {
  overflow: auto;
}

/* line 7, base/_cookies.scss */

.cookies-wrapper {
  display: none;
  padding: 30px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
}

/* line 19, base/_cookies.scss */

.cookies-wrapper * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 23, base/_cookies.scss */

.cookies-wrapper button {
  margin-bottom: 10px;
  background-color: transparent;
  color: #808080;
  border-color: #808080;
  padding: 10px 20px;
  font-size: 16px;
  float:right;
}

/* line 31, base/_cookies.scss */

.cookies-wrapper button::before {
  display: none;
}

/* line 35, base/_cookies.scss */

.cookies-wrapper button:hover {
  background-color: #4c8b2b;
  color: #ffffff;
  border-color: #4c8b2b;
}

/* line 48, base/_cookies.scss */

.cookies-box {
  max-width: 600px;
  padding: 15px 15px 30px 15px;
  position: relative;
  margin: 0 auto;
  border-radius: 4px;
  background-color: white;
}

.cookies-box .container {
  width: auto;
}
/* line 61, base/_cookies.scss */

.cookies__title {
  display: block;
  width: 100%;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

/* line 71, base/_cookies.scss */

.cookies-bar-message {
  display: block;
  float: left;
  margin-bottom: 15px;
  color: #808080;
  font-size: 14px;
  line-height: 20px;
  margin-left: 0px !important;
  height:100%;
}

/* line 86, base/_cookies.scss */

.cookies-settings {
  display: none;
}

/* line 96, base/_cookies.scss */

.cookie-info {
  display: block;
  padding-left: 25px;
  line-height: 16px;
}

/* line 102, base/_cookies.scss */

.cookies-policy-link {
  padding: 5px 15px;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 0 0 4px 4px;
  background-color: #eee;
  text-align: center;
}

.cookies-policy-link  a {
  display: inline;
  padding: 14px 0;
  margin: 0;
}
/* line 117, base/_cookies.scss */

.cookies-bar-know-more {
  color: #808080;
  font-size: 0.85em;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

/* line 123, base/_cookies.scss */

.cookies-bar-know-more:hover {
  color: #808080;
  text-decoration: underline;
}

.cookies-links-w{
  color:#808080;
  margin-top: 8px;
}

/* line 129, base/_cookies.scss */

.cookies-message p {
  display: none;
}

/* line 133, base/_cookies.scss */

.cookies-message b {
  display: block;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Barra cookies END */


.hoverinfo{ font-size:20px; position:relative;}
.hoverinfo .info-cloud{position:absolute; bottom:10px; right:10px; cursor:pointer;}
.hoverinfo .info-cloud.number{position:absolute; top:7px; right:215px; cursor:pointer;}
.hoverinfo .small-input.cloud{width: 60%; min-height: 80px; background: #e9e9e9; color:#000; position: absolute; top: -70px; right: 222px; border-radius: 15px 15px 0 15px; font-size: 12px; display: none;z-index:9;}
.hoverinfo .cloud{width: 90%;background: #e9e9e9; color:#000; position: absolute; bottom: 20px; right: 26px; border-radius: 15px 15px 0 15px; font-size: 12px; display: none;z-index:9;}
.cloud p{
  display: block;
  padding:20px;
  word-wrap: break-word;
  line-height: 16px;
}
.info-cloud:hover + .cloud{
  display:block;
}