/* 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);
}
*/
/*
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 14, base/_base.scss */
html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* line 22, base/_base.scss */
*, *:before, *:after {
    box-sizing: inherit;
}

/* line 26, 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%;
    font: inherit;
    vertical-align: baseline;
}

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

/* line 51, base/_base.scss */
body {
    line-height: 1;
}

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

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

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

/* line 65, base/_base.scss */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*
 * 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 78, base/_base.scss */
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

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

/*
 * A better looking default horizontal rule
 */
/* line 92, 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 107, base/_base.scss */
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

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

/*
 * Allow only vertical resizing of textareas.
 */
/* line 130, 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.
 */
/* line 143, base/_base.scss */
html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/**
 * Remove default margin.
 */
/* line 153, base/_base.scss */
body {
    margin: 0;
}

/* 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 167, 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 188, 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 201, 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 211, base/_base.scss */
[hidden],
template {
    display: none;
}

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

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
/* line 232, 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 244, base/_base.scss */
abbr[title] {
    border-bottom: 1px dotted;
}

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

/**
 * Address styling not present in Safari and Chrome.
 */
/* line 261, 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.
 */
/* line 270, base/_base.scss */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
/* line 279, base/_base.scss */
mark {
    background: #ff0;
    color: #000;
}

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

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

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

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

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

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

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

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

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

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
/* line 363, 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 386, base/_base.scss */
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
/* line 400, 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 411, 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 424, 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 436, base/_base.scss */
button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 445, 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 456, 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 468, 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 480, 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 490, 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 501, 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 510, 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 521, base/_base.scss */
legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
/* line 530, 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 539, base/_base.scss */
optgroup {
    font-weight: bold;
}

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

/* line 555, base/_base.scss */
td,
th {
    padding: 0;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */
/* line 565, 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 581, 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 590, 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 607, 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 621, 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 637, base/_base.scss */
.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

/* line 643, 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.
   ========================================================================== */
@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
    /* line 670, 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 680, base/_base.scss */
    a,
    a:visited {
        text-decoration: underline;
    }

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

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

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

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

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

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

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

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

    /* line 734, base/_base.scss */
    h2,
    h3 {
        page-break-after: avoid;
    }
}
/* outros estilos */
/* line 743, base/_base.scss */
body {
    float: left;
    width: 100%;
    /*background-color: red;*/
}

/*********************/
/* line 1, components/_footer.scss */
footer {
    float: left;
    display: block;
    width: 100%;
    background-color: #1d1d1d;
}
/* line 5, components/_footer.scss */
footer > div {
    float: left;
    display: block;
    width: 100%;
}
/* line 9, components/_footer.scss */
footer .top {
    float: left;
    display: block;
    width: 100%;
    background-color: #1d1d1d;
    padding: 0 5%;
    padding-top: 24px;
}
@media screen and (min-width: 1024px) {
    /* line 9, components/_footer.scss */
    footer .top {
        width: 100%;
        max-width: 1278px;
        padding: 0 30px;
        float: none;
        margin: 0 auto;
        overflow: hidden;
        padding-top: 62px;
        padding-bottom: 15px;
    }
}
/* line 25, components/_footer.scss */
footer .top > div {
    float: left;
    display: block;
    width: 100%;
}
/* line 28, components/_footer.scss */
footer .top > div h4 {
    float: left;
    display: block;
    width: 100%;
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 25px;
    font-weight: 800;
    color: #00a9e0;
    text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
    /* line 28, components/_footer.scss */
    footer .top > div h4 {
        margin-bottom: 8px;
    }
}
/* line 38, components/_footer.scss */
footer .top .map {
    margin-bottom: 38px;
}
@media screen and (min-width: 1024px) {
    /* line 38, components/_footer.scss */
    footer .top .map {
        width: 25%;
    }
}
/* line 43, components/_footer.scss */
footer .top .map ul {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 43, components/_footer.scss */
    footer .top .map ul {
        width: 66.66667%;
    }
}
/* line 49, components/_footer.scss */
footer .top .map ul li {
    float: left;
    display: block;
    width: 50%;
}
/* line 52, components/_footer.scss */
footer .top .map ul li:nth-child(even) {
    padding-left: 8px;
}
/* line 55, components/_footer.scss */
footer .top .map ul li a {
    float: left;
    display: block;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 24px;
    font-weight: 400;
    color: #898989;
    text-decoration: none;
    text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
    /* line 55, components/_footer.scss */
    footer .top .map ul li a {
        line-height: 28px;
    }
    /* line 62, components/_footer.scss */
    footer .top .map ul li a:hover {
        color: #0064a7;
    }
}
/* line 70, components/_footer.scss */
footer .top .social {
    margin-bottom: 18px;
}
@media screen and (min-width: 1024px) {
    /* line 70, components/_footer.scss */
    footer .top .social {
        width: 25%;
    }
}
/* line 75, components/_footer.scss */
footer .top .social ul {
    float: left;
    display: block;
    width: 100%;
    padding-top: 8px;
    margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
    /* line 75, components/_footer.scss */
    footer .top .social ul {
        padding-top: 9px;
        margin-bottom: 16px;
    }
}
/* line 84, components/_footer.scss */
footer .top .social ul li {
    float: left;
    display: block;
    margin-right: 18px;
}
/* line 87, components/_footer.scss */
footer .top .social ul li:last-child {
    margin-right: 0;
}
/* line 90, components/_footer.scss */
footer .top .social ul li a {
    float: left;
    display: block;
}
/* line 92, components/_footer.scss */
footer .top .social ul li a.fb {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -216px -44px;
    width: 34px;
    height: 34px;
}
/* line 95, components/_footer.scss */
footer .top .social ul li a.li {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -72px -110px;
    width: 34px;
    height: 34px;
}
/* line 98, components/_footer.scss */
footer .top .social ul li a.yt {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -106px -110px;
    width: 34px;
    height: 34px;
}
/* line 101, components/_footer.scss */
footer .top .social ul li a.gp {
   /* background-image: url(../img/sprites/spritesheet.png);
    background-position: 0px -217px;*/
    background-image: url(../img/gp_ico.png);
    width: 34px;
    height: 34px;
}
/* line 107, components/_footer.scss */
footer .top .social > a {
    float: left;
    display: block;
    width: 100%;
    font-family: 'Open Sans';
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    color: #898989;
    text-decoration: none;
}
@media screen and (min-width: 1024px) {
    /* line 113, components/_footer.scss */
    footer .top .social > a:hover {
        color: #0064a7;
    }
}
/* line 117, components/_footer.scss */
footer .top .social > a:before {
    content: '';
    float: left;
    display: block;
}
/* line 122, components/_footer.scss */
footer .top .social > a.tel:before {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -239px -119px;
    width: 16px;
    height: 14px;
    margin-top: 7px;
    margin-right: 9px;
}
/* line 129, components/_footer.scss */
footer .top .social > a.mail:before {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -140px -134px;
    width: 16px;
    height: 10px;
    margin-top: 5px;
    margin-right: 8px;
}
/* line 137, components/_footer.scss */
footer .top .cert {
    margin-bottom: 19px;
}
@media screen and (min-width: 1024px) {
    /* line 137, components/_footer.scss */
    footer .top .cert {
        width: 25%;
    }
}
/* line 142, components/_footer.scss */
footer .top .cert ul {
    padding-top: 3px;
    float: left;
    display: block;
    width: 100%;
    vertical-align: middle;
}
/* line 147, components/_footer.scss */
footer .top .cert ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 18px;
}
/* line 151, components/_footer.scss */
footer .top .cert ul li:last-child {
    margin-right: 0;
}
/* line 157, components/_footer.scss */
footer .top .fin {
    margin-bottom: 31px;
}
@media screen and (min-width: 1024px) {
    /* line 157, components/_footer.scss */
    footer .top .fin {
        width: 25%;
    }
}
/* line 162, components/_footer.scss */
footer .top .fin ul {
    padding-top: 9px;
    float: left;
    display: block;
    width: 100%;
    vertical-align: top;
}
/* line 167, components/_footer.scss */
footer .top .fin ul li {
    display: inline-block;
    vertical-align: top;
    margin-right: 8px;
}
@media screen and (min-width: 1024px) {
    /* line 167, components/_footer.scss */
    footer .top .fin ul li {
        margin-bottom: 8px;
    }
}
/* line 174, components/_footer.scss */
footer .top .fin ul li:last-child {
    margin-right: 0;
}
/* line 181, components/_footer.scss */
footer .bottom {
    background-color: black;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 27px;
    padding-bottom: 30px;
}
/* line 187, components/_footer.scss */
footer .bottom > p {
    font-family: 'Open Sans';
    font-size: 11px;
    line-height: 11px;
    font-weight: 400;
    color: #555555;
    text-transform: uppercase;
    width: 80%;
    float: left;
}
/* line 193, components/_footer.scss */
footer .bottom > a {
    width: 20%;
    float: right;
    text-align: right;
    margin-top: 6px;
}
/* line 198, components/_footer.scss */
footer .bottom > a img {
    display: inline-block;
}
/* line 202, components/_footer.scss */
footer .bottom > ul {
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 7px;
}
/* line 206, components/_footer.scss */
footer .bottom > ul li {
    float: left;
}
/* line 209, components/_footer.scss */
footer .bottom > ul li a {
    font-family: 'Open Sans';
    font-size: 11px;
    line-height: 20px;
    font-weight: 400;
    color: #555;
    text-decoration: none;
}

@media screen and (min-width: 1024px) {
    /* line 181, components/_footer.scss */
    footer .bottom {
        padding: 0 1.45833%;
        height: 41px;
    }
    /* line 218, components/_footer.scss */
    footer .bottom > p {
        float: left;
        width: auto;
        display: block;
        margin-top: 15px;
    }
    /* line 223, components/_footer.scss */
    footer .bottom > p br {
        display: none;
    }
    /* line 227, components/_footer.scss */
    footer .bottom > ul {
        float: none;
        display: inline-block;
        width: auto;
        padding-left: 34.79167%;
        margin-top: 10px;
    }
    /* line 234, components/_footer.scss */
    footer .bottom > a {
        float: right;
        margin-top: 11px;
    }

    footer .bottom > ul li a::after{
        content: "/";
        position: relative;
        margin: 0 5px;
        display: inline-block;
        float: left;
    }
    footer .bottom > ul li:first-child a::after{ display: none; }

}

/* line 1, components/_home.scss */
.blue {
    float: left;
    display: block;
    width: 100%;
    background-position: center center;
    background-size: cover;
    padding-top: 26px;
    padding-bottom: 27px;
}
@media screen and (min-width: 1024px) {
    /* line 1, components/_home.scss */
    .blue {
        padding-top: 86px;
        padding-bottom: 102px;
    }
}
/* line 12, components/_home.scss */
.blue .container {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
    text-align: center;
}
/* line 17, components/_home.scss */
.blue .container h3 {
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 22px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
    /* line 17, components/_home.scss */
    .blue .container h3 {
        font-size: 37px;
        line-height: inherit;
    }
}
/* line 24, components/_home.scss */
.blue .container h3 strong {
    display: block;
    font-size: 20px;
}
@media screen and (min-width: 1024px) {
    /* line 24, components/_home.scss */
    .blue .container h3 strong {
        font-size: 37px;
        line-height: inherit;
        padding-top: 8px;
    }
}

/* line 37, components/_home.scss */
.lista {
    float: left;
    display: block;
    width: 100%;
    padding-top: 63px;
}
@media screen and (min-width: 1024px) {
    /* line 37, components/_home.scss */
    .lista {
        width: 100%;
        max-width: 1278px;
        float: none;
        overflow: hidden;
        margin: 0 auto;
        padding: 0 30px;
    }
}
/* line 50, components/_home.scss */
.lista > a {
    float: left;
    display: block;
    width: 100%;
    text-align: center;
    background-color: #f4f4f4;
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 50, components/_home.scss */
    .lista > a {
        display: block;
        font-family: 'Open Sans';
        font-size: 13px;
        line-height: 45px;
        font-weight: 700;
        color: rgba(69, 69, 69, 0.5);
        text-transform: uppercase;
        text-decoration: none;
        margin-bottom: 30px;
    }
    /* line 62, components/_home.scss */
    .lista > a:hover {
        color: white;
        background-color: #0064a7;
    }
}
/* line 68, components/_home.scss */
.lista .container {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 68, components/_home.scss */
    .lista .container {
        padding-top: 109px;
    }
}
/* line 74, components/_home.scss */
.lista .container > p,
.lista .container > h3 {
    float: left;
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'Open Sans';
    font-size: 16px;
    line-height: 16px;
    font-weight: 800;
    color: #00a9e0;
    text-transform: uppercase;
}
/* line 82, components/_home.scss */
.lista .container > p {
    margin-bottom: 3px;
}
@media screen and (min-width: 1024px) {
    /* line 82, components/_home.scss */
    .lista .container > p {
        font-size: 20px;
        line-height: 18px;
        margin-bottom: 4px;
    }
}
/* line 90, components/_home.scss */
.lista .container > h3 {
    font-size: 30px;
    line-height: 30px;
    color: #363636;
    margin-bottom: 27px;
}
@media screen and (min-width: 1024px) {
    /* line 90, components/_home.scss */
    .lista .container > h3 {
        font-size: 45px;
        line-height: 40px;
    }
}
/* line 100, components/_home.scss */
.lista .container > ul {
    float: left;
    display: block;
    width: 100%;
    padding-bottom: 30px;
}
@media screen and (min-width: 1024px) {
    /* line 100, components/_home.scss */
    .lista .container > ul {
        padding-bottom: 40px;
        padding-top: 29px;
    }
}
/* line 108, components/_home.scss */
.lista .container > ul li {
    float: left;
    display: block;
    width: 100%;
    padding-bottom: 47px;
}
/* line 112, components/_home.scss */
.lista .container > ul li > a {
    float: left;
    display: block;
    width: 100%;
}
/* line 117, components/_home.scss */
.lista .container > ul li > a:hover .img_holder .overlay {
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
/* line 124, components/_home.scss */
.lista .container > ul li > a:hover .text .holder h4 {
    color: #0064a7;
}
/* line 127, components/_home.scss */
.lista .container > ul li > a:hover .text .holder div {
    background-color: #0064a7;
}
@media screen and (min-width: 1024px) {
    /* line 108, components/_home.scss */
    .lista .container > ul li {
        position: relative;
        padding-bottom: 0;
        margin-bottom: 60px;
    }
    /* line 139, components/_home.scss */
    .lista .container > ul li:nth-child(even) .img_holder {
        float: right;
        display: block;
    }
    /* line 142, components/_home.scss */
    .lista .container > ul li:nth-child(even) .text {
        right: auto;
        left: 0;
    }
    /* line 145, components/_home.scss */
    .lista .container > ul li:nth-child(even) .text > span {
        right: -40px;
        left: auto;
    }
    /* line 151, components/_home.scss */
    .lista .container > ul li:last-child {
        margin-bottom: 0;
    }
}
/* line 155, components/_home.scss */
.lista .container > ul li .img_holder {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 155, components/_home.scss */
    .lista .container > ul li .img_holder {
        width: 59.77011%;
        position: relative;
    }
}
/* line 162, components/_home.scss */
.lista .container > ul li .img_holder img {
    float: left;
    display: block;
    width: 100%;
    height: auto;
}
/* line 167, components/_home.scss */
.lista .container > ul li .img_holder .overlay {
    opacity: 0;
}
@media screen and (min-width: 1024px) {
    /* line 167, components/_home.scss */
    .lista .container > ul li .img_holder .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 100, 167, 0.7);
        -webkit-transition: opacity 0.2s;
        -moz-transition: opacity 0.2s;
        transition: opacity 0.2s;
    }
}
/* line 180, components/_home.scss */
.lista .container > ul li .text {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
    position: relative;
}
@media screen and (min-width: 1024px) {
    /* line 180, components/_home.scss */
    .lista .container > ul li .text {
        position: absolute;
        width: 46.30542%;
        right: 0;
        top: 0;
        padding: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 81.32388%;
    }
}
/* line 195, components/_home.scss */
.lista .container > ul li .text > span {
    float: left;
    display: block;
    width: 40px;
    height: 40px;
    background-color: #00a9e0;
    display: none;
    position: absolute;
    top: 34px;
    left: -40px;
}
@media screen and (min-width: 1024px) {
    /* line 195, components/_home.scss */
    .lista .container > ul li .text > span {
        display: block;
    }
}
/* line 207, components/_home.scss */
.lista .container > ul li .text > span:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
/* line 216, components/_home.scss */
.lista .container > ul li .text > span.doc:after {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -239px -99px;
    width: 16px;
    height: 20px;
}
/* line 221, components/_home.scss */
.lista .container > ul li .text > span.vid:after {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -216px -78px;
    width: 23px;
    height: 18px;
}
/* line 226, components/_home.scss */
.lista .container > ul li .text .holder {
    width: 100%;
    margin-top: -16px;
    background-color: #f4f4f4;
    text-align: center;
    padding-top: 15px;
    position: relative;
}
@media screen and (min-width: 1024px) {
    /* line 226, components/_home.scss */
    .lista .container > ul li .text .holder {
        margin-top: 0;
        height: calc(100% - 21px);
        padding-top: 27px;
    }
}
/* line 238, components/_home.scss */
.lista .container > ul li .text .holder p {
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 12px;
    font-weight: 800;
    color: #00a9e0;
    text-transform: uppercase;
    margin-bottom: 3px;
}
@media screen and (min-width: 1024px) {
    /* line 238, components/_home.scss */
    .lista .container > ul li .text .holder p {
        margin-bottom: 13px;
    }
}
/* line 246, components/_home.scss */
.lista .container > ul li .text .holder .desc {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 246, components/_home.scss */
    .lista .container > ul li .text .holder .desc {
        float: left;
        display: block;
        width: 100%;
        padding: 0 20px;
        text-align: center;
        font-family: 'Open Sans';
        font-size: 13px;
        line-height: 18px;
        font-weight: 400;
        color: #454545;
        text-transform: none;
        position: relative;
        margin-top: 10px;
    }
    /* line 258, components/_home.scss */
    .lista .container > ul li .text .holder .desc:before {
        content: '';
        top: -5px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 20px;
        height: 2px;
        background-color: #00a9e0;
        position: absolute;
    }
}
@media screen and (min-width: 1199px) {
    /* line 246, components/_home.scss */
    .lista .container > ul li .text .holder .desc {
        font-family: 'Open Sans';
        font-size: 15px;
        line-height: 23px;
        font-weight: 400;
        color: #454545;
        margin-top: 0;
    }
    /* line 272, components/_home.scss */
    .lista .container > ul li .text .holder .desc:before {
        top: -10px;
    }
}
/* line 277, components/_home.scss */
.lista .container > ul li .text .holder h4 {
    font-family: 'Open Sans';
    font-size: 20px;
    line-height: 22px;
    font-weight: 800;
    color: #454545;
    text-transform: uppercase;
    padding: 0 5%;
    margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
    /* line 277, components/_home.scss */
    .lista .container > ul li .text .holder h4 {
        font-size: 25px;
        line-height: 24px;
    }
}
@media screen and (min-width: 1199px) {
    /* line 277, components/_home.scss */
    .lista .container > ul li .text .holder h4 {
        font-size: 35px;
        line-height: 32px;
        margin-bottom: 30px;
    }
}
/* line 292, components/_home.scss */
.lista .container > ul li .text .holder span {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 292, components/_home.scss */
    .lista .container > ul li .text .holder span {
        display: block;
        width: 100%;
        font-family: 'Open Sans';
        font-size: 12px;
        line-height: 23px;
        font-weight: 400;
        color: #454545;
        text-align: center;
        position: relative;
    }
    /* line 300, components/_home.scss */
    .lista .container > ul li .text .holder span:after {
        position: absolute;
        top: -11px;
        content: '';
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 20px;
        height: 2px;
        background-color: #00a9e0;
    }
}
@media screen and (min-width: 1024px) {
    /* line 292, components/_home.scss */
    .lista .container > ul li .text .holder span {
        font-size: 15px;
    }
}
/* line 315, components/_home.scss */
.lista .container > ul li .text .holder div {
    display: inline-block;
    height: 40px;
    background-color: #00a9e0;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 40px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    padding-right: 16px;
    margin-bottom: -15px;
}
@media screen and (min-width: 1024px) {
    /* line 315, components/_home.scss */
    .lista .container > ul li .text .holder div {
        position: relative;
        margin-bottom: 0;
        left: 50%;
        position: absolute;
        bottom: -21px;
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -ms-transform: translate(-50%);
        -o-transform: translate(-50%);
        transform: translate(-50%);
        height: 51px;
        padding: 0 30px;
        line-height: 51px;
        font-size: 13px;
    }
}
/* line 336, components/_home.scss */
.lista .container > ul li .text .holder div span {
    float: left;
    display: block;
    width: 40px;
    height: 40px;
    background-color: #0064a7;
    margin-right: 15px;
    position: relative;
}
@media screen and (min-width: 1024px) {
    /* line 336, components/_home.scss */
    .lista .container > ul li .text .holder div span {
        display: none;
    }
}
/* line 346, components/_home.scss */
.lista .container > ul li .text .holder div span:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
/* line 355, components/_home.scss */
.lista .container > ul li .text .holder div span.doc:after {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -239px -99px;
    width: 16px;
    height: 20px;
}
/* line 360, components/_home.scss */
.lista .container > ul li .text .holder div span.vid:after {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -216px -78px;
    width: 23px;
    height: 18px;
}

/* line 373, components/_home.scss */
.main {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 373, components/_home.scss */
    .main {
        position: relative;
    }
}
/* line 379, components/_home.scss */
.main .big {
    float: left;
    display: block;
    width: 100%;
    height: 420px;
    background-size: cover !important;
    background-position: center center !important;
    border-bottom: 10px solid #00a9e0;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
@media screen and (min-width: 1024px) {
    /* line 379, components/_home.scss */
    .main .big {
        height: 943px;
    }
}
/* line 392, components/_home.scss */
.main .big .text {
    position: absolute;
    top: 50%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 5%;
    padding-top: 3px;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 392, components/_home.scss */
    .main .big .text {
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 815px;
        padding: 0;
        z-index: 5;
    }
}
/* line 408, components/_home.scss */
.main .big .text h2 {
    font-family: 'Open Sans';
    font-size: 25px;
    line-height: 25px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    margin-bottom: 9px;
}
@media screen and (min-width: 1024px) {
    /* line 408, components/_home.scss */
    .main .big .text h2 {
        font-size: 70px;
        line-height: 70px;
    }
}
/* line 417, components/_home.scss */
.main .big .text p {
    font-family: 'Open Sans';
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: white;
}
@media screen and (min-width: 1024px) {
    /* line 417, components/_home.scss */
    .main .big .text p {
        font-size: 20px;
        line-height: 20px;
    }
}
/* line 425, components/_home.scss */
.main .big .d_img {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 425, components/_home.scss */
    .main .big .d_img {
        display: block;
        float: left;
        width: 100%;
        height: 100%;
    }
    /* line 432, components/_home.scss */
    .main .big .d_img ul {
        float: left;
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }
    /* line 437, components/_home.scss */
    .main .big .d_img ul li {
        display: none;
        float: left;
        width: 100%;
        height: 100%;
        background-position: center center;
        background-size: cover;
        position: absolute;
    }
}
/* line 450, components/_home.scss */
.main .destaques {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 450, components/_home.scss */
    .main .destaques {
        display: block;
        position: absolute;
        bottom: 0;
        overflow: hidden;
        height: 100%;
        z-index: 9;
    }
}
/* line 461, components/_home.scss */
.main .destaques > div {
    float: left;
    display: block;
    width: 100%;
    background-position: center center;
    background-size: cover;
    text-align: center;
    padding-top: 50px;
    border-top: 4px solid white;
    position: relative;
}
@media screen and (min-width: 1024px) {
    /* line 461, components/_home.scss */
    .main .destaques > div {
        width: 33.33%;/*OLD VALUE*/
        /*width: 25%;*/
        border-top: 0;
        background-image: none !important;
        position: relative;
        height: 100%;
    }
    /* line 476, components/_home.scss */
    .main .destaques > div:hover {
        cursor: pointer;
        border-bottom: 20px solid #00a9e0;
        background-color: transparent;
        background-image: -webkit-linear-gradient(transparent, white);
        background-image: linear-gradient(transparent, white);
        background-color: transparent !important;
        background-image: -webkit-linear-gradient(transparent, rgba(255, 255, 255, 0.3)) !important;
        background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.3)) !important;
    }
    /* line 483, components/_home.scss */
    .main .destaques > div:hover .container {
        bottom: 51px;
        -webkit-transition: bottom 0.2s ease-out;
        -moz-transition: bottom 0.2s ease-out;
        transition: bottom 0.2s ease-out;
    }
    /* line 486, components/_home.scss */
    .main .destaques > div:hover .container h3 {
        -webkit-transform: scale(1.4, 1.4);
        -moz-transform: scale(1.4, 1.4);
        -ms-transform: scale(1.4, 1.4);
        -o-transform: scale(1.4, 1.4);
        transform: scale(1.4, 1.4);
        -webkit-transition: -webkit-transform 0.2s;
        -moz-transition: -moz-transform 0.2s;
        transition: transform 0.2s;
        width: 75%;
        margin-left: auto;
        margin-right: auto;
    }
    /* line 493, components/_home.scss */
    .main .destaques > div:hover .container img {
        height: 122px;
        width: 122px;
        width: auto;
        height: auto;
        -webkit-transition: width 0.2s, height 0.2s;
        -moz-transition: width 0.2s, height 0.2s;
        transition: width 0.2s, height 0.2s;
    }
    /* line 499, components/_home.scss */
    .main .destaques > div:hover .container p {
        height: auto;
    }
    /* line 504, components/_home.scss */
    .main .destaques > div:hover:first-child:before {
        content: none;
    }
    /* line 507, components/_home.scss */
    .main .destaques > div:hover:first-child:after {
        content: '';
        width: 1px;
        background-color: transparent;
        background-image: -webkit-linear-gradient(transparent, white);
        background-image: linear-gradient(transparent, white);
        height: 100%;
        position: absolute;
        right: 0;
    }
    /* line 516, components/_home.scss */
    .main .destaques > div:hover:before {
        content: '';
        width: 1px;
        background-color: transparent;
        background-image: -webkit-linear-gradient(transparent, white);
        background-image: linear-gradient(transparent, white);
        height: 100%;
        position: absolute;
        left: -1px;
    }
    /* line 524, components/_home.scss */
    .main .destaques > div:hover:after {
        content: '';
        width: 1px;
        background-color: transparent;
        background-image: -webkit-linear-gradient(transparent, white);
        background-image: linear-gradient(transparent, white);
        height: 100%;
        position: absolute;
        right: 0;
    }
    /* line 533, components/_home.scss */
    .main .destaques > div:hover:last-child:before {
        content: '';
        width: 1px;
        background-color: transparent;
        background-image: -webkit-linear-gradient(transparent, white);
        background-image: linear-gradient(transparent, white);
        height: 100%;
        position: absolute;
        right: 0;
    }
    /* line 541, components/_home.scss */
    .main .destaques > div:hover:last-child:after {
        content: none;
    }
}
/* line 547, components/_home.scss */
.main .destaques > div .container {
    float: left;
    display: block;
    width: 100%;
    position: relative;
    z-index: 9;
    text-decoration: none;
}
@media screen and (min-width: 1024px) {
    /* line 547, components/_home.scss */
    .main .destaques > div .container {
        position: absolute;
        bottom: -133px;
        -webkit-transition: bottom 0.2s ease-out;
        -moz-transition: bottom 0.2s ease-out;
        transition: bottom 0.2s ease-out;
        padding: 0 20px;
    }
}
/* line 560, components/_home.scss */
.main .destaques > div img {
    margin-bottom: 15px;
}
@media screen and (min-width: 1024px) {
    /* line 560, components/_home.scss */
    .main .destaques > div img {
        margin-bottom: 25px;
    }
}
/* line 567, components/_home.scss */
.main .destaques > div h3 {
    font-family: 'Open Sans';
    font-size: 19px;
    line-height: 19px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    margin-bottom: 31px;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    transition: transform 0.2s;
}
@media screen and (min-width: 1024px) {
    /* line 567, components/_home.scss */
    .main .destaques > div h3 {
        margin-bottom: 49px;
    }
}
/* line 577, components/_home.scss */
.main .destaques > div p {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 577, components/_home.scss */
    .main .destaques > div p {
        display: block;
        width: 80%;
        margin: 0 auto;
        font-family: 'Open Sans';
        font-size: 16px;
        line-height: 18px;
        font-weight: 400;
        color: white;
        position: relative;
        float: left;
        width: 100%;
        text-align: center;
        padding: 0 26px;
        margin-bottom: 34px;
        height: 36px;
    }
    /* line 591, components/_home.scss */
    .main .destaques > div p:after {
        position: absolute;
        content: '';
        top: -13px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 20px;
        height: 2px;
        background-color: #00a9e0;
    }
}
/* line 603, components/_home.scss */
.main .destaques > div span {
    display: inline-block;
    height: 40px;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 40px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #00a9e0;
    margin-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
}
@media screen and (min-width: 1024px) {
    /* line 603, components/_home.scss */
    .main .destaques > div span {
        padding-left: 29px;
        padding-right: 29px;
        margin-bottom: 0;
        height: 51px;
        line-height: 51px;
    }
    /* line 619, components/_home.scss */
    .main .destaques > div span:hover {
        background-color: #0064a7;
    }
}
/* line 624, components/_home.scss */
.main .destaques > div .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 1024px) {
    /* line 624, components/_home.scss */
    .main .destaques > div .overlay {
        display: none;
    }
}

/* line 639, components/_home.scss */
header {
    float: left;
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
}
/* line 645, components/_home.scss */
header .heading {
    float: left;
    display: block;
    width: 100%;
    border-top: 3px solid #efefef;
    height: 54px;
    background-color: transparent;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
@media screen and (min-width: 1024px) {
    /* line 645, components/_home.scss */
    header .heading {
        display: none;
    }
}
/* line 655, components/_home.scss */
header .heading.gowhite {
    background-color: white;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
/* line 661, components/_home.scss */
header .heading .holder {
    margin: 0 auto;
    width: 90%;
    position: relative;
    clear: left;
    height: 100%;
}
/* line 668, components/_home.scss */
header .heading 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 673, components/_home.scss */
header .heading span {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -170px -190px;
    width: 22px;
    height: 17px;
}
/* line 681, components/_home.scss */
header .heading.home span {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -148px -190px;
    width: 22px;
    height: 17px;
}
/* line 685, components/_home.scss */
header .heading.home.gowhite span {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -170px -190px;
    width: 22px;
    height: 17px;
}
/* line 691, components/_home.scss */
header .full_menu {
    display: none;
    position: absolute;
    top: 0;
    float: left;
    width: 100%;
}
/* line 696, components/_home.scss */
header .full_menu.go_white {
    -webkit-box-shadow: -1px 6px 58px -6px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -1px 6px 58px -6px rgba(0, 0, 0, 0.75);
    box-shadow: -1px 6px 58px -6px rgba(0, 0, 0, 0.75);
}
/* line 700, components/_home.scss */
header .full_menu.go_white .menu > ul {
    background-color: white;
    background-image: none;
    border-bottom: 1px solid white;
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
}
/* line 706, components/_home.scss */
header .full_menu.go_white .menu > ul li.logo_desk a:first-child {
    display: none;
}
/* line 709, components/_home.scss */
header .full_menu.go_white .menu > ul li.logo_desk a:last-child {
    display: block !important;
}
/* line 711, components/_home.scss */
header .full_menu.go_white .menu > ul li.logo_desk a:last-child img {
    display: block !important;
}
/* line 716, components/_home.scss */
header .full_menu.go_white .menu > ul li a {
    color: #454545;
}
/* line 718, components/_home.scss */
header .full_menu.go_white .menu > ul li a:hover {
    color: white;
}
/* line 724, components/_home.scss */
header .full_menu .linguas_holder {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 724, components/_home.scss */
    header .full_menu .linguas_holder {
        float: left;
        display: block;
        width: 100%;
        height: 37px;
        background-color: #efefef;
        padding: 0 1.45833%;
    }
}
/* line 734, components/_home.scss */
header .full_menu .linguas_holder > p, #language-text, #language-menu {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 734, components/_home.scss */
    header .full_menu .linguas_holder > p,
    #language-text {
        display: block;
        font-family: 'Open Sans';
        font-size: 12px;
        line-height: 12px;
        font-weight: 400;
        color: #717171;
        text-transform: uppercase;
        padding-top: 11px;
        float: left;
    }
    header .full_menu #language-menu {
        padding-top: 9px;
        margin-left: 8px;
        float: left;
        width: 120px;
        display: block;
    }

    /* line 742, components/_home.scss */
    header .full_menu .linguas_holder > p span,
    header .full_menu #language-menu a {
        text-decoration: none;
        font-family: 'Open Sans';
        font-size: 12px;
        line-height: 12px;
        font-weight: 500;
        color: #717171;
        position: relative;
        text-transform: uppercase;
    }
    header .full_menu #language-menu a {

    }
    /* line 745, components/_home.scss */
    header .full_menu .linguas_holder > p span.open {
        color: #0064a7;
    }
    /* line 748, components/_home.scss */
    header .full_menu .linguas_holder > p span:hover {
        color: #0064a7;
        cursor: pointer;
    }
    /* line 752, components/_home.scss */
    header .full_menu .linguas_holder > p span:after,
    header .full_menu #language-menu>a:after {
        content: '';
        position: absolute;
        right: -10px;
        top: -5px;
        display: block;
        background-image: url(../img/sprites/spritesheet.png);
        background-position: -161px -147px;
        width: 9px;
        height: 4px;
        margin-left: 7px;
        margin-top: 4px;
    }
}
/* line 766, components/_home.scss */
header .full_menu .search_d {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 766, components/_home.scss */
    header .full_menu .search_d {
        float: right;
        display: block;
        height: 100%;
    }
    /* line 772, components/_home.scss */
    header .full_menu .search_d p {
        float: left;
        display: block;
        padding-top: 11px;
        margin-right: 29px;
        position: relative;
    }
    /* line 777, components/_home.scss */
    header .full_menu .search_d p:before {
        content: '';
        float: left;
        background-image: url(../img/sprites/spritesheet.png);
        background-position: -92px -217px;
        width: 18px;
        height: 18px;
        display: block;
        margin-top: -3px;
        margin-right: 12px;
    }
    /* line 785, components/_home.scss */
    header .full_menu .search_d p a {
        float: left;
        display: block;
        font-family: 'Open Sans';
        font-size: 12px;
        line-height: 12px;
        font-weight: 400;
        color: #717171;
        text-decoration: none;
    }
    /* line 791, components/_home.scss */
    header .full_menu .search_d form {
        float: left;
        display: block;
        background-color: white;
        height: 100%;
        position: relative;
        padding-left: 30px;
        padding-top: 9px;
    }
    /* line 798, components/_home.scss */
    header .full_menu .search_d form:after {
        position: absolute;
        content: '';
        top: 0;
        bottom: 0;
        width: 200px;
        right: -200px;
        background-color: white;
    }
    /* line 807, components/_home.scss */
    header .full_menu .search_d form input {
        border: 0;
        background-color: transparent;
        font-family: 'Open Sans';
        font-size: 14px;
        line-height: 14px;
        font-weight: 400;
        color: #717171;
        width: 250px;
    }
    /* line 813, components/_home.scss */
    header .full_menu .search_d form button {
        float: right;
        display: block;
        background-image: url(../img/sprites/spritesheet.png);
        background-position: -149px -74px;
        width: 12px;
        height: 11px;
        border: 0;
        outline: 0;
        background-color: transparent;
        margin-top: 4px;
    }
}
@media screen and (min-width: 1024px) {
    /* line 691, components/_home.scss */
    header .full_menu {
        display: block;
        width: 100%;
        position: relative;
    }
}
/* line 830, components/_home.scss */
header .linguas {
    float: left;
    display: block;
    width: 100%;
    background-color: #efefef;
    padding: 0 5%;
    padding-top: 14px;
    height: 41px;
    border-top: 1px solid #e7e7e7;
}

@media screen and (min-width: 1024px) {
    /* line 830, components/_home.scss */
    header .linguas {
        width: auto;
        float: left;
        position: relative;
        height: auto;
        border-top: 0;
        display: none;
        width: 120px;
        padding: 0;
        background-color: #efefef;
        padding-bottom: 13px;
        z-index: 10;
        padding-top: 8px;
        left:  -14px;
        margin-top: 5px;
    }
    /* line 853, components/_home.scss */
    header .linguas.open {
        display: block;
    }


}
/* line 857, components/_home.scss */
header .linguas li {
    float: left;
    display: block;
    margin-right: 15px;
}
/* line 860, components/_home.scss */
header .linguas li:last-child {
    margin-right: 0;
}
/* line 864, components/_home.scss */
header .linguas li:first-child:after {
    content: '';
    float: right;
    display: block;
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -161px -147px;
    width: 9px;
    height: 4px;
    margin-left: 7px;
    margin-top: 4px;
}
/* line 873, components/_home.scss */
header .linguas li:not(:first-child) {
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
@media screen and (min-width: 1024px) {
    /* line 857, components/_home.scss */
    header .linguas li {
        width: 100%;
    }
    /* line 879, components/_home.scss */
    header .linguas li:first-child {
        xdisplay: none;
    }
    /* line 881, components/_home.scss */
    header .linguas li:first-child:after {
        content: none;
    }
    /* line 885, components/_home.scss */
    header .linguas li:not(:first-child) {
        opacity: 1;
    }
}
/* line 890, components/_home.scss */
header .linguas li a {
    float: left;
    display: block;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    color: #717171;
    text-decoration: none;
    text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
    /* line 890, components/_home.scss */
    header .linguas li a {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 14px;
        width: 100%;
    }
    /* line 900, components/_home.scss */
    header .linguas li a:hover {
        color: #0064a7;
    }
}
/* line 909, components/_home.scss */
header .linguas.open li:first-child:after {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -250px -44px;
    width: 4px;
    height: 9px;
    margin-top: 1px;
    margin-right: 5px;
}
/* line 914, components/_home.scss */
header .linguas.open li:first-child a {
    color: #02a4d9;
}
/* line 918, components/_home.scss */
header .linguas.open li:not(:first-child) {
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
/* line 925, components/_home.scss */
header .logo {
    float: left;
    display: block;
    width: 100%;
    background-color: white;
    height: 54px;
    border-top: 3px solid transparent;
}
@media screen and (min-width: 1024px) {
    /* line 925, components/_home.scss */
    header .logo {
        display: none;
    }
}
/* line 933, components/_home.scss */
header .logo .holder {
    margin: 0 auto;
    width: 90%;
    background-color: white;
    position: relative;
    clear: left;
    height: 100%;
}
/* line 941, components/_home.scss */
header .logo 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 946, components/_home.scss */
header .logo span {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -192px -190px;
    width: 18px;
    height: 17px;
}
/* line 954, components/_home.scss */
header .menu {
    float: left;
    display: block;
    width: 100%;
    overflow-y: scroll;
}
@media screen and (min-width: 1024px) {
    /* line 954, components/_home.scss */
    header .menu {
        overflow-y: visible;
    }
}
/* line 961, components/_home.scss */
header .menu > ul {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 961, components/_home.scss */
    header .menu > ul {
        text-align: center;
        font-size: 0;
        padding-top: 8px;
        padding-bottom: 17px;
        background-color: rgba(0, 0, 0, 0.3);
        background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.3), transparent);
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), transparent);
        background-color: transparent;
        -webkit-transition: background 0.2s;
        -moz-transition: background 0.2s;
        transition: background 0.2s;
    }
}
/* line 974, components/_home.scss */
header .menu > ul > li {
    position: relative;
    float: left;
    display: block;
    width: 100%;
    background-color: #efefef;
    border-bottom: 1px solid white;
}
@media screen and (min-width: 1024px) {
    /* line 974, components/_home.scss */
    header .menu > ul > li {
        display: inline-block;
        float: none;
        width: auto;
        background-color: transparent;
        border-bottom: 0;
        position: relative;
    }
    /* line 986, components/_home.scss */
    header .menu > ul > li:not(.logo_desk) {
        margin-right: 1px;
    }
    /* line 988, components/_home.scss */
    header .menu > ul > li:not(.logo_desk) a {
        padding-top: 13px;
        padding-bottom: 11px;
    }
    /* line 991, components/_home.scss */
    header .menu > ul > li:not(.logo_desk) a:hover {
        background-color: #0064a7;
    }
    /* line 995, components/_home.scss */
    header .menu > ul > li:not(.logo_desk):after {
        content: '';
        position: absolute;
        right: -1px;
        height: 11px;
        width: 1px;
        background-color: white;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    /* line 1006, components/_home.scss */
    header .menu > ul > li.logo_desk {
        margin-bottom: -11px;
    }
    /* line 1009, components/_home.scss */
    header .menu > ul > li.no_after {
        padding-right: 0;
    }
    /* line 1011, components/_home.scss */
    header .menu > ul > li.no_after:after {
        content: none;
    }
    /* line 1015, components/_home.scss */
    header .menu > ul > li:last-child {
        padding-right: 0;
        margin-right: 0;
    }
    /* line 1018, components/_home.scss */
    header .menu > ul > li:last-child:after {
        content: none;
    }
    /* line 1023, components/_home.scss */
    header .menu > ul > li.active a {
        color: #0064a7;
    }
    /* line 1027, components/_home.scss */
    header .menu > ul > li.active:hover a {
        color: white;
    }
}
/* line 1033, components/_home.scss */
header .menu > ul > li > a {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 13px;
    font-weight: 800;
    color: #363636;
    text-transform: uppercase;
    text-decoration: none;
    padding-top: 14px;
    padding-bottom: 14px;
}
@media screen and (min-width: 1024px) {
    /* line 1033, components/_home.scss */
    header .menu > ul > li > a {
        font-weight: 500;
        color: white;
        font-size: 12px;
        padding-right: 10px;
        padding-left: 10px;
    }
}
@media screen and (min-width: 1199px) {
    /* line 1033, components/_home.scss */
    header .menu > ul > li > a {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media screen and (min-width: 1299px) {
    /* line 1033, components/_home.scss */
    header .menu > ul > li > a {
        padding-left: 29px;
        padding-right: 29px;
        font-size: 13px;
    }
}
/* line 1059, components/_home.scss */
header .menu > ul > li.c_sm {
    position: relative;
}
@media screen and (min-width: 1024px) {
    /* line 1063, components/_home.scss */
    header .menu > ul > li.c_sm:hover > a {
        background-color: #0064a7;
    }
    /* line 1067, components/_home.scss */
    header .menu > ul > li.c_sm:hover > ul {
        display: block;
    }
}
/* line 1072, components/_home.scss */
header .menu > ul > li.c_sm > a {
    position: relative;
}
@media screen and (min-width: 1024px) {
    /* line 1076, components/_home.scss */
    header .menu > ul > li.c_sm > a:hover ~ ul {
        display: block;
    }
}
/* line 1081, components/_home.scss */
header .menu > ul > li.c_sm > a:after {
    content: '';
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -244px -190px;
    width: 11px;
    height: 11px;
    float: right;
    display: block;
    position: relative;
    top: 2px;
}
@media screen and (min-width: 1024px) {
    /* line 1081, components/_home.scss */
    header .menu > ul > li.c_sm > a:after {
        content: none;
    }
}
/* line 1094, components/_home.scss */
header .menu > ul > li.c_sm ul {
    float: left;
    display: block;
    width: 100%;
    background-color: #e2e2e2;
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 1094, components/_home.scss */
    header .menu > ul > li.c_sm ul {
        position: absolute;
        width: 260px;
        top: 37px;
        left: 0;
        display: block;
        background-color: #00a9e0;
        display: none;
    }
}
/* line 1108, components/_home.scss */
header .menu > ul > li.c_sm ul li {
    float: left;
    display: block;
    width: 100%;
    border-bottom: 1px solid white;
}
@media screen and (min-width: 1024px) {
    /* line 1108, components/_home.scss */
    header .menu > ul > li.c_sm ul li {
        border-color: #0064a7;
    }
}
/* line 1115, components/_home.scss */
header .menu > ul > li.c_sm ul li:first-child {
    border-top: 1px solid white;
}
@media screen and (min-width: 1024px) {
    /* line 1115, components/_home.scss */
    header .menu > ul > li.c_sm ul li:first-child {
        border-top: 0;
    }
}
@media screen and (min-width: 1024px) {
    /* line 1121, components/_home.scss */
    header .menu > ul > li.c_sm ul li:last-child {
        border-bottom: 0;
    }
}
/* line 1126, components/_home.scss */
header .menu > ul > li.c_sm ul li a {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 13px;
    font-weight: 300;
    color: #363636;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 5%;
    padding-top: 9px;
    padding-bottom: 13px;
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 1126, components/_home.scss */
    header .menu > ul > li.c_sm ul li a {
        font-size: 12px;
        color: white;
        text-align: left;
        padding-left: 10px;
    }
}
@media screen and (min-width: 1199px) {
    /* line 1126, components/_home.scss */
    header .menu > ul > li.c_sm ul li a {
        padding-left: 20px;
    }
}
@media screen and (min-width: 1299px) {
    /* line 1126, components/_home.scss */
    header .menu > ul > li.c_sm ul li a {
        font-size: 13px;
        padding-left: 29px;
    }
}
/* line 1152, components/_home.scss */
header .menu > ul > li.open {
    border-bottom: 0;
}
/* line 1154, components/_home.scss */
header .menu > ul > li.open > a {
    color: #0064a7;
}
/* line 1156, components/_home.scss */
header .menu > ul > li.open > a:after {
    content: '';
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -239px -93px;
    width: 11px;
    height: 3px;
    float: right;
    display: block;
    position: relative;
    top: 6px;
}
/* line 1169, components/_home.scss */
header .pesquisa {
    float: left;
    display: block;
    width: 100%;
    background-color: white;
}
@media screen and (min-width: 1024px) {
    /* line 1169, components/_home.scss */
    header .pesquisa {
        display: none;
    }
}
/* line 1176, components/_home.scss */
header .pesquisa form {
    float: left;
    display: block;
    width: 100%;
    position: relative;
    height: 41px;
    vertical-align: middle;
    padding-left: 5%;
}
/* line 1183, components/_home.scss */
header .pesquisa form label {
    position: absolute;
    right: 5%;
    display: block;
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -149px -85px;
    width: 12px;
    height: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
/* line 1191, components/_home.scss */
header .pesquisa form input {
    display: inline-block;
    width: 80%;
    border: 0;
    outline: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'Open Sans';
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: #717171;
}
/* line 4, bourbon/css3/_placeholder.scss */
header .pesquisa form input::-webkit-input-placeholder {
    line-height: 14px;
}
/* line 4, bourbon/css3/_placeholder.scss */
header .pesquisa form input::-moz-placeholder {
    line-height: 14px;
}
/* line 4, bourbon/css3/_placeholder.scss */
header .pesquisa form input:-moz-placeholder {
    line-height: 14px;
}
/* line 4, bourbon/css3/_placeholder.scss */
header .pesquisa form input:-ms-input-placeholder {
    line-height: 14px;
}

/* line 1209, components/_home.scss */
.totop.mobile {
    float: left;
    display: block;
    width: 100%;
    text-align: center;
    background-color: #171717;
}
@media screen and (min-width: 1024px) {
    /* line 1209, components/_home.scss */
    .totop.mobile {
        display: none;
    }
}
/* line 1217, components/_home.scss */
.totop.mobile a {
    display: inline-block;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 40px;
    font-weight: 400;
    color: #676768;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    width: 100%;
    border: 0;
    outline: 0;
    background-color: #171717;
}
/* line 1227, components/_home.scss */
.totop.mobile a:before, .totop.mobile a:after {
    content: '';
    display: inline-block;
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -149px -96px;
    width: 9px;
    height: 10px;
    margin-bottom: -1px;
}
/* line 1233, components/_home.scss */
.totop.mobile a:before {
    margin-right: 20px;
}
/* line 1236, components/_home.scss */
.totop.mobile a:after {
    margin-left: 20px;
}
/* line 1241, components/_home.scss */
.totop.desk {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 1241, components/_home.scss */
    .totop.desk {
        float: left;
        display: block;
        width: 100%;
        margin-top: 38px;
    }
    /* line 1247, components/_home.scss */
    .totop.desk a {
        float: left;
        display: block;
        width: 100%;
        font-family: 'Open Sans';
        font-size: 12px;
        line-height: 11px;
        font-weight: 400;
        color: #676768;
        text-transform: uppercase;
        text-decoration: none;
        position: relative;
    }
    /* line 1254, components/_home.scss */
    .totop.desk a:before {
        content: '';
        display: inline-block;
        background-image: url(../img/sprites/spritesheet.png);
        background-position: -149px -96px;
        width: 9px;
        height: 10px;
        margin-bottom: -1px;
        margin-right: 20px;
    }
}

/* line 1, components/_institucional.scss */
.main.not-home {
    margin-top: 54px;
}

.main.not-home .destaque .img_holder{
    height: 230px;
}

@media screen and (min-width: 1024px) {
    /* line 1, components/_institucional.scss */
    .main.not-home {
        margin-top: 116px;
        padding-bottom: 102px;
    }
}
/* line 7, components/_institucional.scss */
.main.not-home .destaque {
    float: left;
    display: block;
    width: 100%;
    position: relative;
}
/* line 11, components/_institucional.scss */
.main.not-home .destaque .img_holder {
    float: left;
    display: block;
    width: 100%;
    height: 170px;
    background-position: center center;
    background-size: cover;
    border-bottom: 5px solid #00a9e0;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
/* line 18, components/_institucional.scss */
.main.not-home .destaque .img_holder img {
    display: none;
}
@media screen and (min-width: 1199px) {
    /* line 11, components/_institucional.scss */
    .main.not-home .destaque .img_holder {
        xmax-height: 663px;
        height: auto;
        border-bottom: 10px solid #00a9e0;
        height: 230px;
        background-size: cover !important;
    }
}
/* line 32, components/_institucional.scss */
.main.not-home .destaque .text {
    float: left;
    display: block;
    padding: 0 5%;
    padding-top: 30px;
    padding-bottom: 12px;
}
@media screen and (min-width: 1024px) {
    .main.not-home .destaque .img_holder {
        height: 450px;
    }

    /* line 32, components/_institucional.scss */
    .main.not-home .destaque .text {
        max-width: 1278px;
        width: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        padding-left: 30px;
        padding-right: 30px;
        position: absolute;
        bottom: 42px;
    }
}
/* line 51, components/_institucional.scss */
.main.not-home .destaque .text .holder {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {

    /* line 51, components/_institucional.scss */
    .main.not-home .destaque .text .holder {
        float: left;
        display: block;
        width: 49.26108%;
        padding-right: 30px;
    }
}
/* line 60, components/_institucional.scss */
.main.not-home .destaque .text span {
    float: left;
    display: block;
    width: 100%;
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 12px;
    font-weight: 800;
    color: #00a9e0;
    text-transform: uppercase;
    margin-bottom: 3px;
}
@media screen and (min-width: 1199px) {
    /* line 60, components/_institucional.scss */
    .main.not-home .destaque .text span {
        font-size: 20px;
        line-height: 18px;
        margin-bottom: 8px;
    }
}
/* line 73, components/_institucional.scss */
.main.not-home .destaque .text h1 {
    font-family: 'Open Sans';
    font-size: 33px;
    line-height: 30px;
    font-weight: 800;
    color: #363636;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.banner .text h1.pesquisa {
    font-size: 33px;
    line-height: 30px;
    font-weight: 800;
    color: #363636!important;;
    margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
    /* line 73, components/_institucional.scss */
    .main.not-home .destaque .text h1 {
        color: white;
    }
    
    .banner .text h1.pesquisa {
        font-size: 45px!important;
        line-height: 45px;
        font-weight: 800!important;
        color: #ffffff!important;
        margin-bottom: 0px;
    }

}
@media screen and (min-width: 1199px) {
    /* line 73, components/_institucional.scss */
    .main.not-home .destaque .text h1 {
        font-size: 45px;
        line-height: 32px;
        margin-bottom: 25px;
    }
}
/* line 86, components/_institucional.scss */
.main.not-home .destaque .text h2 {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
    color: #454545;
    margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
    /* line 86, components/_institucional.scss */
    .main.not-home .destaque .text h2 {
        color: white;
    }
}
@media screen and (min-width: 1199px) {
    /* line 86, components/_institucional.scss */
    .main.not-home .destaque .text h2 {
        font-size: 19px;
        line-height: 25px;
        margin-bottom: 11px;
    }
}
/* line 98, components/_institucional.scss */
.main.not-home .destaque .text p {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #454545;
    margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
    /* line 98, components/_institucional.scss */
    .main.not-home .destaque .text p {
        color: white;
    }
}
@media screen and (min-width: 1199px) {
    /* line 98, components/_institucional.scss */
    .main.not-home .destaque .text p {
        font-size: 15px;
        line-height: 23px;
        margin-bottom: 0;
    }
}

/* line 114, components/_institucional.scss */
.sobre {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 114, components/_institucional.scss */
    .sobre {
        float: none;
        max-width: 1278px;
        width: 100%;
        margin: 0 auto;
        padding: 0 30px;
        overflow: hidden;
        padding-top: 100px;
    }
}
/* line 126, components/_institucional.scss */
.sobre .top {
    float: left;
    display: block;
    width: 100%;
    position: relative;
}
@media screen and (min-width: 1024px) {
    /* line 126, components/_institucional.scss */
    .sobre .top {
        margin-bottom: 50px;
    }
}
/* line 133, components/_institucional.scss */
.sobre .top img {
    width: 100%;
    height: auto;
}
@media screen and (min-width: 1024px) {
    /* line 133, components/_institucional.scss */
    .sobre .top img {
        float: right;
        display: block;
        width: 76.84729%;
    }
}
/* line 141, components/_institucional.scss */
.sobre .top .text {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
    padding-top: 29px;
    padding-bottom: 24px;
}
@media screen and (min-width: 1024px) {
    /* line 141, components/_institucional.scss */
    .sobre .top .text {
        position: absolute;
        left: 0px;
        top: 60px;
        width: 46.30542%;
        background-color: #f4f4f4;
        text-align: center;
        padding-top: 27px;
        padding-bottom: 23px;
        padding-left: 15px;
        padding-right: 15px;
    }
}
/* line 159, components/_institucional.scss */
.sobre .top .text h3 {
    font-family: 'Open Sans';
    font-size: 20px;
    line-height: 22px;
    font-weight: 800;
    color: #454545;
    text-transform: uppercase;
    margin-bottom: 7px;
}
@media screen and (min-width: 1024px) {
    /* line 159, components/_institucional.scss */
    .sobre .top .text h3 {
        font-size: 35px;
        line-height: 32px;
        margin-bottom: 37px;
        position: relative;
    }
    /* line 168, components/_institucional.scss */
    .sobre .top .text h3:after {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: -28px;
        width: 20px;
        height: 2px;
        background-color: #00a9e0;
        content: '';
    }
}
/* line 180, components/_institucional.scss */
.sobre .top .text p {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #454545;
    margin-bottom: 5px;
}
@media screen and (min-width: 1199px) {
    /* line 180, components/_institucional.scss */
    .sobre .top .text p {
        font-size: 15px;
        line-height: 23px;
        margin-bottom: 23px;
        padding: 0 20px;
    }
    /* line 188, components/_institucional.scss */
    .sobre .top .text p:last-of-type {
        margin-bottom: 0;
    }
}
/* line 195, components/_institucional.scss */
.sobre .bottom {
    float: left;
    display: block;
    width: 100%;
    padding-bottom: 59px;
}
/* line 199, components/_institucional.scss */
.sobre .bottom img {
    width: 100%;
    height: auto;
}
@media screen and (min-width: 1024px) {
    /* line 199, components/_institucional.scss */
    .sobre .bottom img {
        width: 36.61741%;
        float: left;
        display: block;
    }
}
/* line 207, components/_institucional.scss */
.sobre .bottom ul {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
    padding-top: 29px;
}
@media screen and (min-width: 1024px) {
    /* line 207, components/_institucional.scss */
    .sobre .bottom ul {
        float: right;
        display: block;
        width: 57.30706%;
        padding: 0;
        margin-top: -3px;
    }
}
/* line 218, components/_institucional.scss */
.sobre .bottom ul li {
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 17px;
}
/* line 222, components/_institucional.scss */
.sobre .bottom ul li:last-child {
    margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
    /* line 218, components/_institucional.scss */
    .sobre .bottom ul li {
        margin-bottom: 16px;
    }
}
/* line 228, components/_institucional.scss */
.sobre .bottom ul li h3 {
    font-family: 'Open Sans';
    font-size: 20px;
    line-height: 22px;
    font-weight: 800;
    color: #454545;
    text-transform: uppercase;
    margin-bottom: 3px;
}
@media screen and (min-width: 1024px) {
    /* line 228, components/_institucional.scss */
    .sobre .bottom ul li h3 {
        line-height: 23px;
        font-family: 'Open Sans';
        font-size: 20px;
        line-height: 23px;
        font-weight: 300;
        color: #00a9e0;
        margin-bottom: 8px;
    }
}
/* line 238, components/_institucional.scss */
.sobre .bottom ul li p {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #454545;
    margin-bottom: 5px;
}
@media screen and (min-width: 1024px) {
    /* line 238, components/_institucional.scss */
    .sobre .bottom ul li p {
        font-family: 'Open Sans';
        font-size: 15px;
        line-height: 23px;
        font-weight: 400;
        color: #454545;
    }
}

/* line 250, components/_institucional.scss */
header .heading img,
header .logo img {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* line 256, components/_institucional.scss */
header .menu > ul > li.logo_desk {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 256, components/_institucional.scss */
    header .menu > ul > li.logo_desk {
        display: inline-block;
    }
}

/* line 263, components/_institucional.scss */
header.not-home {
    background-color: #efefef;
    border-top: white;
    border-bottom: 1px solid white;
}
@media screen and (min-width: 1024px) {
    /* line 263, components/_institucional.scss */
    header.not-home {
        background-color: #f7f7f7;
    }
    /* line 270, components/_institucional.scss */
    header.not-home .menu > ul {
        background-color: #f7f7f7;
        background-image: none;
    }
    /* line 274, components/_institucional.scss */
    header.not-home .menu > ul li.logo_desk a:first-child {
        display: none !important;
    }
    /* line 277, components/_institucional.scss */
    header.not-home .menu > ul li.logo_desk a:last-child {
        display: block !important;
    }
    /* line 278, components/_institucional.scss */
    header.not-home .menu > ul li.logo_desk a:last-child img {
        display: block !important;
    }
    /* line 285, components/_institucional.scss */
    header.not-home .menu > ul li:after {
        background-color: #454545;
    }
    /* line 289, components/_institucional.scss */
    header.not-home .menu > ul li:hover a {
        color: white;
    }
    /* line 293, components/_institucional.scss */
    header.not-home .menu > ul li a {
        color: #454545;
    }
    /* line 297, components/_institucional.scss */
    header.not-home .menu > ul li.active a {
        color: #0064a7;
    }
    /* line 301, components/_institucional.scss */
    header.not-home .menu > ul li.active:hover a {
        color: white;
    }
}
/* line 310, components/_institucional.scss */
header.not-home .heading img.white-logo {
    display: none !important;
}
/* line 313, components/_institucional.scss */
header.not-home .heading img.blue-logo {
    display: block !important;
}

/* line 1, components/_listagem.scss */
.listagem {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
    padding-bottom: 67px;
}
@media screen and (min-width: 1024px) {
    /* line 1, components/_listagem.scss */
    .listagem {
        max-width: 1278px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 30px;
        float: none;
        padding-top: 100px;
        clear: left;
        margin-bottom: 30px;
    }
    /* line 20, bourbon/addons/_clearfix.scss */
    .listagem::after {
        clear: both;
        content: "";
        display: table;
    }
}
/* line 13, components/_listagem.scss */
.listagem li {
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 30px;
}
/* line 17, components/_listagem.scss */
.listagem li:last-child {
    margin-bottom: 0;
}
@media screen and (min-width: 768px) {
    /* line 13, components/_listagem.scss */
    .listagem li {
        float: none;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
    }
    /* line 89, neat/grid/_span-columns.scss */
    .listagem li:last-child {
        margin-right: 0;
    }

    /* line 78, neat/grid/_omega.scss */
    .listagem li:nth-child(2n) {
        margin-right: 0;
    }
    /* line 83, neat/grid/_omega.scss */
    .listagem li:nth-child(2n+1) {
        clear: left;
    }

}

@media screen and (min-width: 1024px) {
    /* line 13, components/_listagem.scss */
    .listagem li {
        float: none;
        float: left;
        display: block;
        margin-right: 2.28311%;
        width: 31.81126%;
    }
    /* line 89, neat/grid/_span-columns.scss */
    .listagem li:last-child {
        margin-right: 0;
    }
    /* line 78, neat/grid/_omega.scss */
    .listagem li:nth-child(2n) {
        margin-right: 2.28311%;
    }
    /* line 78, neat/grid/_omega.scss */
    .listagem li:nth-child(3n) {
        margin-right: 0;
    }
    /* line 83, neat/grid/_omega.scss */
    .listagem li:nth-child(3n+1) {
        clear: left;
    }
    /* line 83, neat/grid/_omega.scss */
    .listagem li:nth-child(2n+1) {
        clear: none;
    }
}

/* line 25, components/_listagem.scss */
.listagem li a {
    float: left;
    display: block;
    width: 100%;
}
/* line 28, components/_listagem.scss */
.listagem li a .img_holder {
    float: left;
    display: block;
    width: 100%;
    position: relative;
}
/* line 33, components/_listagem.scss */
.listagem li a .overlay {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 33, components/_listagem.scss */
    .listagem li a .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 100, 167, 0.6);
        display: block;
        opacity: 0;
        -webkit-transition: opacity 0.2s;
        -moz-transition: opacity 0.2s;
        transition: opacity 0.2s;
    }
}
/* line 47, components/_listagem.scss */
.listagem li a img {
    width: 100%;
    height: auto;
    float: left;
    display: block;
}
/* line 52, components/_listagem.scss */
.listagem li a .text {
    float: left;
    display: block;
    width: 100%;
    background-color: #f4f4f4;
    text-align: center;
    padding-top: 13px;
    margin-bottom: 15px;
    position: relative;
}
@media screen and (min-width: 1024px) {
    /* line 52, components/_listagem.scss */
    .listagem li a .text {
        margin-bottom: 19px;
        padding-bottom: 40px;
    }
}
/* line 62, components/_listagem.scss */
.listagem li a .text p {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 62, components/_listagem.scss */
    .listagem li a .text p {
        display: block;
        font-family: 'Open Sans';
        font-size: 14px;
        line-height: 19px;
        font-weight: 400;
        color: #454545;
        padding: 0 15px;
        margin-bottom: 7px;
    }
}
/* line 71, components/_listagem.scss */
.listagem li a .text h4 {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 71, components/_listagem.scss */
    .listagem li a .text h4 {
        display: block;
        font-family: 'Open Sans';
        font-size: 14px;
        line-height: 19px;
        font-weight: 700;
        color: #454545;
    }
}
/* line 78, components/_listagem.scss */
.listagem li a .text h3 {
    font-family: 'Open Sans';
    font-size: 20px;
    line-height: 22px;
    font-weight: 800;
    color: #454545;
    padding: 0 30px;
    text-transform: uppercase;
    margin-bottom: -3px;
}
@media screen and (min-width: 1024px) {
    /* line 78, components/_listagem.scss */
    .listagem li a .text h3 {
        font-size: 25px;
        line-height: 23px;
        margin: 0;
        margin-bottom: 25px;
        position: relative;
    }
    /* line 89, components/_listagem.scss */
    .listagem li a .text h3:after {
        position: absolute;
        left: 50%;
        bottom: -14px;
        width: 20px;
        height: 2px;
        content: '';
        display: block;
        background-color: #00a9e0;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}
/* line 102, components/_listagem.scss */
.listagem li a .text span:not(.data) {
    display: inline-block;
    background-color: #00a9e0;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 40px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    padding-left: 16px;
    padding-right: 15px;
    position: relative;
    top: 15px;
    display: table;
    margin: 0 auto;

}
@media screen and (min-width: 1024px) {
    /* line 102, components/_listagem.scss */
    .listagem li a .text span:not(.data) {
        line-height: 51px;
        padding-left: 30px;
        padding-right: 30px;
        top: auto;
        position: absolute;
        transform: translateX(-50%);
        left: 50%;
        bottom: -25.5px;
    }
}
/* line 117, components/_listagem.scss */
.listagem li a .text span:not(.data).noticia {
    padding-left: 0;
}
/* line 119, components/_listagem.scss */
.listagem li a .text span:not(.data).noticia:before {
    width: 40px;
    height: 40px;
    float: left;
    display: block;
    background-color: #0064a7;
    content: '';
    margin-right: 16px;
    background-image: url(../img/doc.png);
    background-position: center center;
    background-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
    /* line 117, components/_listagem.scss */
    .listagem li a .text span:not(.data).noticia {
        position:absolute;
        bottom: -21px;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        left: 50%;
        top:auto;
    }
    /* line 132, components/_listagem.scss */
    .listagem li a .text span:not(.data).noticia:before {
        height: 51px;
        width: 51px;
        background-image: url(../img/doc_big.png);
        margin-right: 32px;
    }
}
/* line 142, components/_listagem.scss */
.listagem li a .text .data {
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 12px;
    font-weight: 800;
    color: #00a9e0;
    text-transform: uppercase;
    position: relative;
    top: -3px;
}
@media screen and (min-width: 1024px) {
    /* line 142, components/_listagem.scss */
    .listagem li a .text .data {
        top: -4px;
        margin-bottom: 8px;
        display: inline-block;
    }
}
/* line 155, components/_listagem.scss */
.listagem li a:hover h3 {
    color: #0064a7;
}
/* line 158, components/_listagem.scss */
.listagem li a:hover span:not(.data) {
    background-color: #0064a7;
}
/* line 161, components/_listagem.scss */
.listagem li a:hover span:not(.data).noticia:before {
    background-color: #1d1d1d;
}
/* line 167, components/_listagem.scss */
.listagem li a:hover .overlay {
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
/* line 174, components/_listagem.scss */
.listagem.noticias {
    padding-bottom: 30px;
}

/* line 179, components/_listagem.scss */
body {
    position: relative;
}

/* line 183, components/_listagem.scss */
.filtros_d {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 183, components/_listagem.scss */
    .filtros_d {
        float: left;
        display: block;
        width: 100%;
        border-bottom: 1px solid #e4e4e4;
        padding-top: 19px;
        padding-bottom: 28px;
        -webkit-box-shadow: 0px 0px 67px -6px rgba(0, 0, 0, 0.22);
        -moz-box-shadow: 0px 0px 67px -6px rgba(0, 0, 0, 0.22);
        box-shadow: 0px 0px 67px -6px rgba(0, 0, 0, 0.22);
    }
    /* line 194, components/_listagem.scss */
    .filtros_d > ul {
        max-width: 1278px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 30px;
    }
    /* line 20, bourbon/addons/_clearfix.scss */
    .filtros_d > ul::after {
        clear: both;
        content: "";
        display: table;
    }
    /* line 197, components/_listagem.scss */
    .filtros_d > ul > li {
        float: left;
        display: block;
        width: 17.07718%;
        position: relative;
        padding-left: 2.46305%;
    }
    /* line 202, components/_listagem.scss */
    .filtros_d > ul > li:after {
        content: '';
        position: absolute;
        right: 0;
        top: 2px;
        width: 1px;
        height: 27px;
        background-color: #e8e8e8;
    }
    /* line 212, components/_listagem.scss */
    .filtros_d > ul > li:first-child {
        width: 14.61412%;
        padding-left: 0;
    }
    /* line 215, components/_listagem.scss */
    .filtros_d > ul > li:first-child p {
        font-family: 'Open Sans';
        font-size: 15px;
        line-height: 16px;
        font-weight: 700;
        color: #00a9e0;
        text-transform: uppercase;
        padding-right: 50%;
    }
    /* line 221, components/_listagem.scss */
    .filtros_d > ul > li .select {
        float: left;
        display: block;
        font-family: 'Open Sans';
        font-size: 12px;
        line-height: 14px;
        font-weight: 700;
        color: #454545;
        width: 100%;
        text-transform: uppercase;
        position: relative;
        margin-bottom: 3px;
    }
    /* line 228, components/_listagem.scss */
    .filtros_d > ul > li .select:hover {
        color: #00a9e0;
        cursor: pointer;
    }
    /* line 232, components/_listagem.scss */
    .filtros_d > ul > li .select:after {
        content: '';
        display: inline-block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 3px 3px 0 3px;
        border-color: #00a8e0 transparent transparent transparent;
        position: relative;
        top: -1px;
        margin-left: 4px;
    }
    /* line 245, components/_listagem.scss */
    .filtros_d > ul > li .label {
        float: left;
        display: block;
        width: 100%;
        font-family: 'Open Sans';
        font-size: 14px;
        line-height: 16px;
        font-weight: 400;
        color: #454545;
    }
    /* line 251, components/_listagem.scss */
    .filtros_d > ul > li > ul {
        display: none;
        position: absolute;
        top: 18px;
        left: 0;
        width: 100%;
        background-color: white;
        padding-bottom: 22px;
        padding-top: 11px;
        padding-left: 14.42308%;
        z-index: 9;
    }
    /* line 261, components/_listagem.scss */
    .filtros_d > ul > li > ul li {
        float: left;
        display: block;
        width: 100%;
        font-family: 'Open Sans';
        font-size: 14px;
        line-height: 16px;
        font-weight: 400;
        color: #454545;
        position: relative;
        padding-top: 5px;
        padding-bottom: 5px;
        cursor: pointer;
    }
    /* line 269, components/_listagem.scss */
    .filtros_d > ul > li > ul li:hover {
        color: #00a9e0;
    }
    /* line 272, components/_listagem.scss */
    .filtros_d > ul > li > ul li.active {
        color: #1e76b1;
    }
    /* line 279, components/_listagem.scss */
    .filtros_d > ul > li.open .select {
        color: #00a9e0;
    }
}
/* line 286, components/_listagem.scss */
.filtros_d.fixed {
    position: fixed;
    z-index: 9;
    background-color: white;
}

/* line 293, components/_listagem.scss */
.overlay_f {
    display: none;
    position: absolute;
    background-color: rgba(29, 29, 29, 0.8);
    z-index: 99;
    width: 100%;
    height: 100%;
    z-index: 10;
    z-index: 99;
    position: fixed;
}
/* line 304, components/_listagem.scss */
.overlay_f .container {
    float: left;
    display: block;
    width: 100%;
    background-color: white;
    clear: both;
    margin-top: 42px;
    padding: 0 5%;
    padding-top: 27px;
}
/* line 312, components/_listagem.scss */
.overlay_f .container h4 {
    width: 160px;
    font-family: 'Open Sans';
    font-size: 30px;
    line-height: 30px;
    font-weight: 300;
    color: #454545;
    text-transform: uppercase;
    margin-bottom: 28px;
}
/* line 318, components/_listagem.scss */
.overlay_f .container form {
    float: left;
    display: block;
    width: 100%;
    clear: left;
}
/* line 322, components/_listagem.scss */
.overlay_f .container form .item {
    float: left;
    display: block;
    width: 100%;
    border: 1px solid #e8e8e8;
    padding: 13px 15px 10px 15px;
    margin-bottom: 16px;
}
/* line 328, components/_listagem.scss */
.overlay_f .container form .item > p {
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    color: #454545;
    text-transform: uppercase;
    margin-bottom: 2px;
}
/* line 334, components/_listagem.scss */
.overlay_f .container form button {
    float: left;
    display: block;
    border: 0;
    outline: 0;
    background-color: #00a9e0;
    height: 40px;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 40px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin-top: 16px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 32px;
}
/* line 347, components/_listagem.scss */
.overlay_f .container form .to_select {
    display: block;
    float: left;
    clear: left;
    position: relative;
    width: 100%;
}
/* line 354, components/_listagem.scss */
.overlay_f .container form .to_select label {
    display: block;
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    padding: 5px 10px;
    font-size: 13px;
    line-height: 15px;
    color: #000;
    background-image: url(../img/seta_drop.png);
    background-position: right 9px;
    background-repeat: no-repeat;
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    color: #454545;
    padding-left: 0;
}
/* line 376, components/_listagem.scss */
.overlay_f .container form .to_select select {
    display: block;
    float: left;
    position: relative;
    height: 25px;
    z-index: 99;
    opacity: 0;
    padding: 0 30px 0 0;
    cursor: pointer;
    width: 100%;
}
/* line 389, components/_listagem.scss */
.overlay_f button.close {
    float: right;
    display: block;
    width: 42px;
    height: 42px;
    background-color: white;
    outline: 0;
    border: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-image: url(../img/close_filter.png);
    background-position: center center;
    background-repeat: no-repeat;
}

/* line 405, components/_listagem.scss */
.banner {
    float: left;
    display: block;
    width: 100%;
    position: relative;
    text-align: center;
}
@media screen and (min-width: 1024px) {
    /* line 405, components/_listagem.scss */
    .banner {
        height: 281px;
    }
}
/* line 413, components/_listagem.scss */
.banner .img_holder {
    float: left;
    display: block;
    width: 100%;
    border-bottom: 5px solid #00a9e0;
    height: 108px;
    background-position: center center!important;
    background-size: cover!important;
}
@media screen and (min-width: 1024px) {
    /* line 413, components/_listagem.scss */
    .banner .img_holder {
        border-bottom: 10px solid #00a9e0;
        height: 281px;
        position: absolute;
    }
}
/* line 426, components/_listagem.scss */
.banner .caminho {
    position: absolute;
    padding: 0 5%;
    padding: 0;
    top: -25px;
}
@media screen and (min-width: 1024px) {
    /* line 426, components/_listagem.scss */
    .banner .caminho {
        top: auto;
        bottom: 25px;
        position: relative;
        bottom: auto;
        width: 100%;
        overflow: hidden;
        margin-bottom: 6px;
    }
}
/* line 441, components/_listagem.scss */
.banner .caminho li {
    float: left;
    display: block;
    margin-right: 11px;
}
/* line 445, components/_listagem.scss */
.banner .caminho li:last-child:after {
    content: none;
}
/* line 449, components/_listagem.scss */
.banner .caminho li:after {
    content: '';
    float: right;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 3px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 12px;
    margin-top: 3px;
}
/* line 460, components/_listagem.scss */
.banner .caminho li a {
    float: left;
    display: block;
    font-family: 'Open Sans';
    font-size: 11px;
    line-height: 11px;
    font-weight: 400;
    color: #efefef;
    text-transform: uppercase;
    text-decoration: none;
}
@media screen and (min-width: 1024px) {
    /* line 466, components/_listagem.scss */
    .banner .caminho li a:hover {
        color: #0064a7;
    }
}
/* line 473, components/_listagem.scss */
.banner .text {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
    padding-top: 30px;
    padding-bottom: 25px;
    text-align: left;
    position: relative;
}
@media screen and (min-width: 1024px) {
    /* line 473, components/_listagem.scss */
    .banner .text {
        position: relative;
        bottom: auto;
        position: absolute;
        bottom: 10px;
        padding: 0 30px;
        padding-bottom: 26px;
        width: 100%;
        max-width: 1278px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}
/* line 492, components/_listagem.scss */
.banner .text p {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 13px;
    font-weight: 800;
    color: #00a9e0;
    text-transform: uppercase;
    margin-bottom: 2px;
}
@media screen and (min-width: 1024px) {
    /* line 492, components/_listagem.scss */
    .banner .text p {
        display: none;
    }
}
/* line 500, components/_listagem.scss */
.banner .text h1 {
    font-family: 'Open Sans';
    font-size: 33px;
    line-height: 30px;
    font-weight: 800;
    color: #363636;
    text-transform: uppercase;
    margin-bottom: 4px;
}
@media screen and (min-width: 1024px) {
    /* line 500, components/_listagem.scss */
    .banner .text h1 {
        font-family: 'Open Sans';
        margin-bottom: 0;
        font-size: 45px;
        line-height: 45px;
        color: #ffffff; 
        margin-bottom: 1px;
        margin-top:0;
    }
}
/* line 512, components/_listagem.scss */
.banner .text h2 {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 15px;
    font-weight: 300;
    color: #00a9e0;
    text-transform: uppercase;
    margin-bottom: 2px;
}
@media screen and (min-width: 1024px) {
    /* line 512, components/_listagem.scss */
    .banner .text h2 {
        display: block;
        font-family: 'Open Sans';
        font-size: 20px;
        line-height: 22px;
        font-weight: 300;
        color: #00a9e0;
        text-transform: uppercase;
    }
}
/* line 522, components/_listagem.scss */
.banner .text button {
    display: inline-block;
    border: 0;
    outline: 0;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 40px;
    font-weight: 600;
    color: white;
    background-color: #00a9e0;
    text-transform: uppercase;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 522, components/_listagem.scss */
    .banner .text button {
        display: none;
    }
}

/* line 537, components/_listagem.scss */
.pagination {
    float: left;
    display: block;
    width: auto;
    margin-bottom: 1px;
    padding: 0 5%;
}
@media screen and (min-width: 1024px) {
    /* line 537, components/_listagem.scss */
    .pagination {
        padding: 0;
        padding-top: 22px;
    }
}
/* line 546, components/_listagem.scss */
.pagination li {
    float: left;
    display: block;
    margin-right: 1px;
}
/* line 550, components/_listagem.scss */
.pagination li a,
.pagination li.active{
    float: left;
    display: block;
    width: 45px;
    text-align: center;
    background-color: #f4f4f4;
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 45px;
    font-weight: 700;
    color: rgba(69, 69, 69, 0.5);
    text-decoration: none;
}
.pagination li:first-child, .pagination li:last-child{
    display: none;
}
.pagination.disabled{
    display: none;
}
/* line 557, components/_listagem.scss */
.pagination li a:hover {
    background-color: #0064a7;
    color: white;
}
/* line 563, components/_listagem.scss */
.pagination li.active a,
.pagination li.active span{
    color: #00a9e0;
}
/* line 565, components/_listagem.scss */
.pagination li.active a:hover {
    background-color: #0064a7;
    color: white;
}
/* line 571, components/_listagem.scss */
.pagination li.dots {
    width: 58px;
    height: 45px;
    background-color: white;
    text-align: center;
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 45px;
    font-weight: 700;
    color: rgba(69, 69, 69, 0.5);
}
/* line 578, components/_listagem.scss */
.pagination li:last-child {
    margin-right: 0;
}

/* line 584, components/_listagem.scss */
.show_more_c {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
    padding-bottom: 75px;
}
@media screen and (min-width: 1024px) {
    /* line 584, components/_listagem.scss */
    .show_more_c {
        width: auto;
        float: right;
        padding: 0 30px;
        padding: 0;
        padding-top: 22px;
    }
}
/* line 596, components/_listagem.scss */
.show_more_c a {
    float: left;
    display: block;
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 45px;
    font-weight: 700;
    color: rgba(69, 69, 69, 0.5);
    text-decoration: none;
    text-transform: uppercase;
    background-color: #f4f4f4;
    width: 100%;
    position: relative;
    padding: 0 15px;
}
/* line 606, components/_listagem.scss */
.show_more_c a:after {
    content: '';
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -227px -190px;
    width: 17px;
    height: 11px;
    float: right;
    margin-top: 17px;
}
@media screen and (min-width: 1024px) {
    /* line 596, components/_listagem.scss */
    .show_more_c a {
        width: 243px;
        padding: 0 31px;
    }
}

/* line 1, components/_detalhe.scss */
.cotacao {
    float: left;
    display: block;
    width: 100%;
    background-color: #0064a7;
}
@media screen and (min-width: 1024px) {
    /* line 1, components/_detalhe.scss */
    .cotacao {
        border-bottom: 1px solid #66a2ca;
    }
}
/* line 8, components/_detalhe.scss */
.cotacao .container {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
    text-align: center;
    padding-top: 29px;
    padding-bottom: 32px;
}
@media screen and (min-width: 1024px) {
    /* line 8, components/_detalhe.scss */
    .cotacao .container {
        float: none;
        width: 100%;
        max-width: 1278px;
        padding: 0 30px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        padding-top: 62px;
        padding-bottom: 62px;
    }
}
/* line 26, components/_detalhe.scss */
.cotacao .container h3 {
    font-family: 'Open Sans';
    font-size: 14px;
    line-height: 16px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    margin-bottom: 13px;
}
@media screen and (min-width: 1024px) {
    /* line 26, components/_detalhe.scss */
    .cotacao .container h3 {
        float: left;
        display: block;
        font-size: 25px;
        line-height: 27px;
        width: 80%;
        text-align: left;
        margin-bottom: 0;
    }
}
/* line 39, components/_detalhe.scss */
.cotacao .container a {
    display: inline-block;
    background-color: #00a9e0;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 40px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    padding-left: 16px;
    padding-right: 16px;
}
@media screen and (min-width: 1024px) {
    /* line 39, components/_detalhe.scss */
    .cotacao .container a {
        float: right;
        display: block;
        font-size: 13px;
        line-height: 51px;
        padding-right: 30px;
        padding-left: 30px;
        position: absolute;
        top: 50%;
        right: 30px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

/* line 64, components/_detalhe.scss */
.not-home .text.no-pad {
    padding-top: 0;
    padding-bottom: 0;
}

/* line 70, components/_detalhe.scss */
.info {
    float: left;
    display: block;
    width: 100%;
    padding-top: 30px;
}
@media screen and (min-width: 1024px) {
    /* line 70, components/_detalhe.scss */
    .info {
        padding-bottom: 16px;
        padding-top: 0;
        padding-bottom: 93px;
    }
}
/* line 79, components/_detalhe.scss */
.info .container {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
}
@media screen and (min-width: 1024px) {
    /* line 79, components/_detalhe.scss */
    .info .container {
        float: none;
        max-width: 1278px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 30px;
    }
    /* line 20, bourbon/addons/_clearfix.scss */
    .info .container::after {
        clear: both;
        content: "";
        display: table;
    }
}
/* line 89, components/_detalhe.scss */
.info .left {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 89, components/_detalhe.scss */
    .info .left {
        width: 37.76683%;
        text-align: right;
    }
}
/* line 98, components/_detalhe.scss */
.info .right {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 98, components/_detalhe.scss */
    .info .right {
        width: 57.30706%;
        float: right;
        display: block;
    }
}
/* line 105, components/_detalhe.scss */
.info .right h4 {
    font-family: 'Open Sans';
    font-size: 20px;
    line-height: 32px;
    font-weight: 800;
    color: #00a9e0;
    text-transform: uppercase;
    margin-bottom: 7px;
}
/* line 115, components/_detalhe.scss */
.info .img_holder {
    float: left;
    display: block;
    width: 100%;
}
/* line 118, components/_detalhe.scss */
.info .img_holder img {
    float: left;
    display: block;
    width: 100%;
    height: auto;
    height: auto;
}
/* line 125, components/_detalhe.scss */
.info .tit {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 125, components/_detalhe.scss */
    .info .tit {
        display: block;
    }
    /* line 129, components/_detalhe.scss */
    .info .tit p {
        font-family: 'Open Sans';
        font-size: 20px;
        line-height: 20px;
        font-weight: 800;
        color: #00a9e0;
        text-transform: uppercase;
        margin-bottom: 3px;
    }
    /* line 134, components/_detalhe.scss */
    .info .tit h1 {
        font-family: 'Open Sans';
        font-size: 45px;
        line-height: 40px;
        font-weight: 800;
        color: #363636;
        margin-bottom: 29px;
        text-transform: uppercase;
        margin-top: 0;
    }
}
/* line 140, components/_detalhe.scss */
.info .tit.mobile {
    float: left;
    display: block;
}
/* line 142, components/_detalhe.scss */
.info .tit.mobile p {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 13px;
    font-weight: 800;
    color: #00a9e0;
    text-transform: uppercase;
    margin-bottom: 2px;
}
/* line 147, components/_detalhe.scss */
.info .tit.mobile h2 {
    font-family: 'Open Sans';
    font-size: 33px;
    line-height: 30px;
    font-weight: 800;
    color: #363636;
    text-transform: uppercase;
    margin-bottom: 25px;
}
@media screen and (min-width: 1024px) {
    /* line 140, components/_detalhe.scss */
    .info .tit.mobile {
        display: none;
    }
}
/* line 158, components/_detalhe.scss */
.info .gal {
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 40px;
    position: relative;
}
@media screen and (min-width: 1024px) {
    /* line 158, components/_detalhe.scss */
    .info .gal {
        margin-bottom: 0;
    }
    /* line 167, components/_detalhe.scss */
    .info .gal:hover > span {
        opacity: .2;
    }
}
/* line 172, components/_detalhe.scss */
.info .gal ul {
    float: left;
    display: block;
    width: 100%;
}
/* line 175, components/_detalhe.scss */
.info .gal ul li {
    float: left;
    display: block;
    width: 100%;
}
/* line 178, components/_detalhe.scss */
.info .gal ul li:not(:first-child) {
    display: none;
}
/* line 181, components/_detalhe.scss */
.info .gal ul li a {
    float: left;
    display: block;
    width: 100%;
}
/* line 185, components/_detalhe.scss */
.info .gal ul li a:hover .overlay {
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
/* line 190, components/_detalhe.scss */
.info .gal ul li a img {
    float: left;
    display: block;
    width: 100%;
    height: auto;
}
/* line 195, components/_detalhe.scss */
.info .gal ul li a .overlay {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 195, components/_detalhe.scss */
    .info .gal ul li a .overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 169, 224, 0.8);
        opacity: 0;
        -webkit-transition: opacity 0.2s;
        -moz-transition: opacity 0.2s;
        transition: opacity 0.2s;
    }
    /* line 207, components/_detalhe.scss */
    .info .gal ul li a .overlay .holder {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
    }
    /* line 213, components/_detalhe.scss */
    .info .gal ul li a .overlay .holder .ico {
        background-image: url(../img/sprites/spritesheet.png);
        background-position: -161px -44px;
        width: 55px;
        height: 55px;
        display: inline-block;
        display: block;
        margin: 0 auto;
        margin-bottom: 16px;
    }
    /* line 220, components/_detalhe.scss */
    .info .gal ul li a .overlay .holder span {
        font-family: 'Open Sans';
        font-size: 15px;
        line-height: 20px;
        font-weight: 800;
        color: white;
        text-transform: uppercase;
    }
}
/* line 230, components/_detalhe.scss */
.info .gal > span {
    position: absolute;
    bottom: 10px;
    left: 0;
    display: block;
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 13px;
    font-weight: 300;
    color: #363636;
}
/* line 236, components/_detalhe.scss */
.info .gal > span strong {
    font-family: 'Open Sans';
    font-size: 30px;
    line-height: 13px;
    font-weight: 300;
    color: #363636;
}
/* line 239, components/_detalhe.scss */
.info .gal > span:before {
    content: '';
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -110px -217px;
    width: 18px;
    height: 18px;
    float: left;
    margin-right: 14px;
}
@media screen and (min-width: 1024px) {
    /* line 230, components/_detalhe.scss */
    .info .gal > span {
        padding-bottom: 10px;
        background-color: white;
        padding-top: 16px;
        padding-right: 30px;
        bottom: 0px;
    }
    /* line 251, components/_detalhe.scss */
    .info .gal > span:before {
        content: none;
    }
}
/* line 258, components/_detalhe.scss */
.info .texto {
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 7px;
}
@media screen and (min-width: 1024px) {
    /* line 258, components/_detalhe.scss */
    .info .texto {
        margin-bottom: 14px;
    }
}
/* line 265, components/_detalhe.scss */
.info .texto p {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #454545;
    margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
    /* line 265, components/_detalhe.scss */
    .info .texto p {
        font-size: 15px;
        line-height: 23px;
    }
}
/* line 273, components/_detalhe.scss */
.info .texto ul {
    float: left;
    display: block;
    width: 100%;
    padding-top: 28px;
    padding-bottom: 21px;
}
/* line 278, components/_detalhe.scss */
.info .texto ul li {
    float: left;
    display: block;
    width: 100%;
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #454545;
    margin-bottom: 18px;
    padding-left: 8px;
    position: relative;
}
/* line 285, components/_detalhe.scss */
.info .texto ul li:before {
    content: '';
    float: left;
    width: 5px;
    height: 5px;
    display: block;
    background-color: #00a9e0;
    position: absolute;
    left: 0;
    top: 8px;
}
/* line 296, components/_detalhe.scss */
.info .texto ul li:last-child {
    margin-bottom: 0;
}
/* line 303, components/_detalhe.scss */
.info .assistencia {
    float: left;
    display: block;
    width: 100%;
    border-top: 1px solid #efefef;
    padding-top: 13px;
    padding-bottom: 68px;
}
/* line 309, components/_detalhe.scss */
.info .assistencia h3 {
    font-family: 'Open Sans';
    font-size: 20px;
    line-height: 20px;
    font-weight: 300;
    color: #00a9e0;
    text-transform: uppercase;
    margin-bottom: 13px;
}
/* line 314, components/_detalhe.scss */
.info .assistencia button {
    border: 0;
    outline: 0;
    background-color: #00a9e0;
    height: 40px;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    padding-left: 10px;
    padding-right: 10px;
}
/* line 326, components/_detalhe.scss */
.info .vid {
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 14px;
}
@media screen and (min-width: 1024px) {
    /* line 326, components/_detalhe.scss */
    .info .vid {
        margin-bottom: 43px;
    }
}
/* line 333, components/_detalhe.scss */
.info .vid a {
    float: left;
    display: block;
    width: 100%;
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    color: #363636;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #f4f4f4;
    padding-left: 30px;
    padding-right: 30%;
    position: relative;
    padding-top: 12px;
    padding-bottom: 12px;
}
/* line 346, components/_detalhe.scss */
.info .vid a:after {
    content: '';
    position: absolute;
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -120px -190px;
    width: 28px;
    height: 22px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 16px;
}
@media screen and (min-width: 1024px) {
    /* line 333, components/_detalhe.scss */
    .info .vid a {
        font-size: 15px;
        padding-top: 14px;
        padding-bottom: 14px;
    }
}
/* line 362, components/_detalhe.scss */
.info .downloads {
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 34px;
}
/* line 366, components/_detalhe.scss */
.info .downloads h4 {
    font-family: 'Open Sans';
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    color: #00a9e0;
    text-transform: uppercase;
    margin-bottom: 6px;
}
@media screen and (min-width: 1024px) {
    /* line 366, components/_detalhe.scss */
    .info .downloads h4 {
        font-size: 25px;
        margin-bottom: 7px;
    }
}
/* line 375, components/_detalhe.scss */
.info .downloads ul {
    float: left;
    display: block;
    width: 100%;
}
/* line 378, components/_detalhe.scss */
.info .downloads ul li {
    float: left;
    display: block;
    width: 100%;
    border-bottom: 1px solid #efefef;
}
/* line 383, components/_detalhe.scss */
.info .downloads ul li:first-child {
    border-top: 1px solid #efefef;
}
/* line 386, components/_detalhe.scss */
.info .downloads ul li a {
    float: left;
    display: block;
    width: 100%;
    text-decoration: none;
    position: relative;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 30px;
}
@media screen and (min-width: 1024px) {
    /* line 386, components/_detalhe.scss */
    .info .downloads ul li a {
        padding-bottom: 10px;
    }
    /* line 397, components/_detalhe.scss */
    .info .downloads ul li a:hover h4, .info .downloads ul li a:hover p {
        color: #0064a7;
    }
}
/* line 402, components/_detalhe.scss */
.info .downloads ul li a h4 {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 13px;
    font-weight: 800;
    color: #363636;
    text-transform: uppercase;
    margin-bottom: 2px;
}
@media screen and (min-width: 1024px) {
    /* line 402, components/_detalhe.scss */
    .info .downloads ul li a h4 {
        float: left;
        display: block;
    }
}
/* line 410, components/_detalhe.scss */
.info .downloads ul li a p {
    font-family: 'Open Sans';
    font-size: 11px;
    line-height: 11px;
    font-weight: 500;
    color: #7c7c7c;
}
@media screen and (min-width: 1024px) {
    /* line 410, components/_detalhe.scss */
    .info .downloads ul li a p {
        float: right;
        display: block;
    }
}
/* line 416, components/_detalhe.scss */
.info .downloads ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
}
/* line 423, components/_detalhe.scss */
.info .downloads ul li a.pdf:before {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -54px -217px;
    width: 20px;
    height: 23px;
}
/* line 428, components/_detalhe.scss */
.info .downloads ul li a.file:before {
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -34px -217px;
    width: 20px;
    height: 23px;
}

/* line 439, components/_detalhe.scss */
.tec {
    float: left;
    display: block;
    width: 100%;
    background-color: #fbfbfb;
    border-top: 1px solid #cceef9;
    padding-top: 23px;
    padding-bottom: 6px;
}
@media screen and (min-width: 1024px) {
    /* line 439, components/_detalhe.scss */
    .tec {
        overflow: hidden;
        padding-bottom: 0;
    }
}
/* line 450, components/_detalhe.scss */
.tec .container {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
}
@media screen and (min-width: 1024px) {
    /* line 450, components/_detalhe.scss */
    .tec .container {
        width: 100%;
        max-width: 1278px;
        float: none;
        margin: 0 auto;
        overflow: hidden;
        padding: 0 30px;
    }
}
/* line 462, components/_detalhe.scss */
.tec .container .left {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 462, components/_detalhe.scss */
    .tec .container .left {
        width: 37.76683%;
        text-align: right;
        padding-top: 19px;
    }
}
/* line 470, components/_detalhe.scss */
.tec .container .left h3 {
    font-family: 'Open Sans';
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    color: #00a9e0;
    text-transform: uppercase;
    margin-bottom: 11px;
}
@media screen and (min-width: 1024px) {
    /* line 470, components/_detalhe.scss */
    .tec .container .left h3 {
        font-size: 35px;
        line-height: normal;
    }
}
/* line 480, components/_detalhe.scss */
.tec .container .right {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 480, components/_detalhe.scss */
    .tec .container .right {
        width: 57.30706%;
        float: right;
        display: block;
        padding-top: 27px;
        padding-bottom: 48px;
    }
}
/* line 489, components/_detalhe.scss */
.tec .container .right h4 {
    font-family: 'Open Sans';
    font-size: 20px;
    line-height: 32px;
    font-weight: 800;
    color: #00a9e0;
    text-transform: uppercase;
    margin-bottom: 7px;
}
/* line 494, components/_detalhe.scss */
.tec .container .right ul {
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 26px;
}
@media screen and (min-width: 1024px) {
    /* line 494, components/_detalhe.scss */
    .tec .container .right ul {
        margin-bottom: 52px;
    }
}
/* line 501, components/_detalhe.scss */
.tec .container .right ul li {
    float: left;
    display: block;
}
/* line 505, components/_detalhe.scss */
.tec .container .right ul:not(.aplicacoes) li {
    width: 100%;
    border-bottom: 1px solid #ececec;
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    color: #454545;
    padding-top: 11px;
    padding-bottom: 11px;
}
@media screen and (min-width: 1024px) {
    /* line 505, components/_detalhe.scss */
    .tec .container .right ul:not(.aplicacoes) li {
        font-size: 15px;
        line-height: 15px;
        padding-top: 13px;
        padding-bottom: 13px;
    }
}
/* line 517, components/_detalhe.scss */
.tec .container .right ul:not(.aplicacoes) li span {
    float: right;
    display: block;
}
/* line 520, components/_detalhe.scss */
.tec .container .right ul:not(.aplicacoes) li:first-child {
    border-top: 1px solid #ececec;
}
/* line 526, components/_detalhe.scss */
.tec .container .right ul.aplicacoes li {
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    color: #454545;
    background-color: #ececec;
    clear: left;
    position: relative;
    margin-bottom: 15px;
}
/* line 533, components/_detalhe.scss */
.tec .container .right ul.aplicacoes li:last-child {
    margin-bottom: 0;
}
/* line 536, components/_detalhe.scss */
/*
.tec .container .right ul.aplicacoes li:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #d9d9d9;
    display: block;
    top: 0;
    right: -40px;
    background-image: url(../img/seta_mobile.png);
    background-position: center center;
    background-repeat: no-repeat;
} */
.tec .container .right ul.aplicacoes li a:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #d9d9d9;
    display: block;
    top: 0;
    right: -40px;
    background-image: url(../img/seta_mobile.png);
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    right: 0;
}

.tec .container .right ul.aplicacoes li a:hover:after {
    background-color: #ccc;
}


@media screen and (min-width: 1024px) {
    /* line 526, components/_detalhe.scss */
    .tec .container .right ul.aplicacoes li {
        width: auto;
        clear: none;
        float: left;
        display: block;
        margin-right: 54px;
        clear: both;
    }
}
/* line 559, components/_detalhe.scss */
.tec .container .right table {
    display: block;
    width: 100% !important;
    margin-bottom: 26px;
    overflow: hidden;
}
/* line 564, components/_detalhe.scss */
.tec .container .right table tbody {
    width: 100%;
    display: block;
}
/* line 568, components/_detalhe.scss */
.tec .container .right table tr {
    float: left;
    display: block;
    width: 50%;
}
/* line 572, components/_detalhe.scss */
.tec .container .right table tr:last-child {
    text-align: right;
}
/* line 575, components/_detalhe.scss */
.tec .container .right table tr td {
    border-bottom: 1px solid #ececec;
    display: block;
    width: 100%;
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    color: #454545;
    padding-top: 11px;
    padding-bottom: 11px;
    text-align: left;
}
/* line 582, components/_detalhe.scss */
.tec .container .right table tr td:first-child {
    /*display: none;*/
    font-weight: bold;
}
/* line 585, components/_detalhe.scss */
.tec .container .right table tr td:nth-child(2) {
    border-top: 1px solid #ececec;
}
@media screen and (min-width: 1024px) {
    /* line 559, components/_detalhe.scss */
    .tec .container .right table {
        display: table;
        width: auto;
        border: 1px solid #ececec;
        margin-bottom: 52px;
    }
    /* line 596, components/_detalhe.scss */
    .tec .container .right table tbody {
        display: table-row-group;
    }
    /* line 599, components/_detalhe.scss */
    .tec .container .right table tr {
        width: auto;
        display: table-row;
        float: none;
    }
    /* line 604, components/_detalhe.scss */
    .tec .container .right table tr:last-child td {
        border-bottom: none;
    }
    /* line 608, components/_detalhe.scss */
    .tec .container .right table tr td {
        display: table-cell;
        width: auto;
        text-align: center;
        border-top: none;
        border-bottom: none;
        width: 74px;
        width: 100px;
        border-right: 1px solid #ececec;
        border-bottom: 1px solid #ececec;
        font-size: 15px;
        padding-top: 14px;
        padding-bottom: 13px;
    }
    /* line 621, components/_detalhe.scss */
    .tec .container .right table tr td .legenda, .tec .container .right table tr td .unidade {
        display: none;
    }
    /* line 624, components/_detalhe.scss */
    .tec .container .right table tr td:first-child {
        display: table-cell;
        font-weight: 800;
    }
    /* line 628, components/_detalhe.scss */
    .tec .container .right table tr td:nth-child(2) {
        border-top: none;
    }
    /* line 631, components/_detalhe.scss */
    .tec .container .right table tr td:last-child {
        border-right: 0;
    }
}

/* line 641, components/_detalhe.scss */
.fancybox-skin {
    padding: 0 !important;
}

@media screen and (min-width: 1024px) {
    /* line 645, components/_detalhe.scss */
    .overlay_f.detalhe {
        position: absolute;
    }
}
@media screen and (min-width: 1024px) {
    /* line 649, components/_detalhe.scss */
    .overlay_f.detalhe .close {
        position: absolute;
        right: 0;
        top: -42px;
    }
}
@media screen and (min-width: 1024px) {
    /* line 656, components/_detalhe.scss */
    .overlay_f.detalhe .container {
        float: none;
        max-width: 921px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        background-color: #fbfbfb;
        padding-top: 56px;
        padding-left: 59px;
        padding-right: 59px;
        margin-top: 52px;
    }
    /* line 668, components/_detalhe.scss */
    .overlay_f.detalhe .container:after {
        content: "";
        display: table;
        clear: both;
    }
}
/* line 674, components/_detalhe.scss */
.overlay_f.detalhe .container .resposta {
    float: left;
    display: block;
    width: 100%;
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    color: #66d87c;
    padding-top: 9px;
    padding-bottom: 9px;
}
@media screen and (min-width: 1024px) {
    /* line 674, components/_detalhe.scss */
    .overlay_f.detalhe .container .resposta {
        padding-bottom: 38px;
    }
}
/* line 683, components/_detalhe.scss */
.overlay_f.detalhe .container .resposta.erro {
    color: #f4674b;
}
/* line 688, components/_detalhe.scss */
.overlay_f.detalhe .container h4 {
    font-family: 'Open Sans';
    font-size: 30px;
    line-height: 30px;
    font-weight: 300;
    color: #00a9e0;
    text-transform: uppercase;
    margin-bottom: 0;
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 7px;
}
@media screen and (min-width: 1024px) {
    /* line 688, components/_detalhe.scss */
    .overlay_f.detalhe .container h4 {
        font-size: 35px;
        line-height: 37px;
        margin-bottom: 18px;
    }
}
/* line 701, components/_detalhe.scss */
.overlay_f.detalhe .container p {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #454545;
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
    /* line 701, components/_detalhe.scss */
    .overlay_f.detalhe .container p {
        font-size: 15px;
        line-height: 23px;
        margin-bottom: 38px;
    }
}
/* line 712, components/_detalhe.scss */
.overlay_f.detalhe .container h5 {
    font-family: 'Open Sans';
    font-size: 20px;
    line-height: 22px;
    font-weight: 800;
    color: #00a9e0;
    text-transform: uppercase;
    margin-top: 13px;
    margin-bottom: 12px;
    float: left;
    display: block;
    width: 100%;
}
/* line 721, components/_detalhe.scss */
.overlay_f.detalhe .container .assistencia {
    float: left;
    display: block;
    width: 100%;
}
/* line 728, components/_detalhe.scss */
.overlay_f.detalhe .container form > p {
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 19px;
    font-weight: 400;
    color: #454545;
    float: left;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 728, components/_detalhe.scss */
    .overlay_f.detalhe .container form > p {
        width: auto;
        font-size: 15px;
        margin-top: 12px;
    }
}
/* line 741, components/_detalhe.scss */
.overlay_f.detalhe .container form > p span {
    font-family: 'Open Sans';
    font-size: 20px;
    line-height: 19px;
    font-weight: 800;
    color: #00a9e0;
}
@media screen and (min-width: 1024px) {
    /* line 749, components/_detalhe.scss */
    .overlay_f.detalhe .container form button {
        margin-top: 0;
        float: right;
        height: 51px;
        padding: 0 29px;
        margin-bottom: 60px;
    }
    /* line 756, components/_detalhe.scss */
    .overlay_f.detalhe .container form button:hover {
        background-color: #0064a7;
    }
}
/* line 763, components/_detalhe.scss */
.overlay_f.detalhe .container .item {
    padding-top: 12px;
    padding-bottom: 12px;
}
/* line 766, components/_detalhe.scss */
.overlay_f.detalhe .container .item.focus {
    border-color: #00a9e0;
}
/* line 769, components/_detalhe.scss */
.overlay_f.detalhe .container .item.erro {
    border-color: #f4674b;
}
@media screen and (min-width: 1024px) {
    /* line 763, components/_detalhe.scss */
    .overlay_f.detalhe .container .item {
        background-color: white;
        margin-bottom: 30px;
        width: 48.12968%;
    }
    /* line 776, components/_detalhe.scss */
    .overlay_f.detalhe .container .item.left {
        float: left;
        position: relative;
        padding-right: 60px;
    }
    /* line 779, components/_detalhe.scss */
    .overlay_f.detalhe .container .item.right {
        float: right;
        position: relative;
        padding-right: 60px;
    }
    /* line 782, components/_detalhe.scss */
    .overlay_f.detalhe .container .item.full {
        width: 100%;
    }
}
/* line 786, components/_detalhe.scss */
.overlay_f.detalhe .container .item label {
    float: left;
    display: block;
    width: 100%;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 14px;
    font-weight: 700;
    color: #454545;
    text-transform: uppercase;
    margin-bottom: 4px;
    height: 14px;
}
/* line 793, components/_detalhe.scss */
.overlay_f.detalhe .container .item label span {
    font-family: 'Open Sans';
    font-size: 20px;
    line-height: 14px;
    font-weight: 800;
    color: #00a9e0;
}
/* line 798, components/_detalhe.scss */
.overlay_f.detalhe .container .item input[type="text"], .overlay_f.detalhe .container .item input[type="mail"] {
    float: left;
    display: block;
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 17px;
    font-weight: 400;
    color: #454545;
    text-transform: none;
    width: 100%;
    border: none;
    outline: none;
}
/* line 808, components/_detalhe.scss */
.overlay_f.detalhe .container .item .to_select option {
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 17px;
    font-weight: 400;
    color: #454545;
}
/* line 811, components/_detalhe.scss */
.overlay_f.detalhe .container .item .to_select select {
    height: 23px;
}
/* line 814, components/_detalhe.scss */
.overlay_f.detalhe .container .item .to_select label {
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 17px;
    font-weight: 400;
    color: #454545;
    text-transform: none;
}
/* line 819, components/_detalhe.scss */
.overlay_f.detalhe .container .item textarea {
    float: left;
    display: block;
    width: 100%;
    border: 0;
    outline: 0;
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 19px;
    font-weight: 400;
    color: #454545;
    resize: none;
}
/* line 827, components/_detalhe.scss */
.overlay_f.detalhe .container .item textarea.morada_d {
    height: 69px;
}
/* line 830, components/_detalhe.scss */
.overlay_f.detalhe .container .item textarea.avaria {
    height: 240px;
}
@media screen and (min-width: 1024px) {
    /* line 830, components/_detalhe.scss */
    .overlay_f.detalhe .container .item textarea.avaria {
        height: 165px;
    }
}
/* line 839, components/_detalhe.scss */
.overlay_f.detalhe .container .group {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 839, components/_detalhe.scss */
    .overlay_f.detalhe .container .group {
        margin-bottom: 20px;
    }
}
@media screen and (min-width: 1024px) {
    /* line 845, components/_detalhe.scss */
    .overlay_f.detalhe .container .group .item {
        width: 48.12968%;
        float: left;
        margin-bottom: 10px;
        position: relative;
        padding-right: 60px;
    }
    /* line 850, components/_detalhe.scss */
    .overlay_f.detalhe .container .group .item.left {
        float: left;
    }
    /* line 853, components/_detalhe.scss */
    .overlay_f.detalhe .container .group .item.right {
        float: right;
    }
    /* line 856, components/_detalhe.scss */
    .overlay_f.detalhe .container .group .item .morada_d {
        height: 92px;
    }
    /* line 859, components/_detalhe.scss */
    .overlay_f.detalhe .container .group .item.pull-right {
        float: right;
    }
}

/* line 870, components/_detalhe.scss */
.aplicacoes {
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 26px;
    padding-bottom: 38px;
}
@media screen and (min-width: 1024px) {
    /* line 870, components/_detalhe.scss */
    .aplicacoes {
        margin-bottom: 52px;
    }
}
/* line 879, components/_detalhe.scss */
.aplicacoes li a{
    float: left;
    display: block;
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    color: #454545;
    background-color: #ececec;
    clear: left;
    position: relative;
    padding: 5px 15px;
    text-decoration: none;
    padding-right: 50px;
}
.aplicacoes li a:hover{
    background: #d9d9d9;
}
.aplicacoes li a:hover:after{
    background-color: #ccc;
}

.aplicacoes li {
    float: left;
    display: block;
    clear: left;
    position: relative;
    margin-bottom: 15px;
}
/* line 887, components/_detalhe.scss */
.aplicacoes li:last-child {
    margin-bottom: 0;
}
/* line 890, components/_detalhe.scss */
.aplicacoes li a:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #d9d9d9;
    display: block;
    top: 0;
    right: -40px;
    background-image: url(../img/seta_mobile.png);
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    right: 0px;
}
@media screen and (min-width: 1024px) {
    /* line 879, components/_detalhe.scss */
    .aplicacoes li {
        width: auto;
        clear: none;
        float: left;
        display: block;
        margin-right: 54px;
    }
    .aplicacoes li {
        width: auto;
        clear: none;
        float: left;
        display: block;
        margin-right: 54px;
        clear: both;
    }
}

/* line 911, components/_detalhe.scss */
.resposta {
    float: left;
    display: block;
    width: 100%;   

    color: #66d87c;
    padding-top: 9px;
    padding-bottom: 9px;
}
.resposta.error p {
    color: #C70000;
}
.resposta p {
    line-height: 23px;
    font-weight: 400;
    font-family: 'Open Sans'!important;
    font-size: 15px!important;
    color: #66d87c!important;
}
@media screen and (min-width: 1024px) {
    /* line 911, components/_detalhe.scss */
    .resposta {
    }
}
/* line 920, components/_detalhe.scss */
.resposta.erro {
    color: #f4674b;
}

/* line 1, components/_categorias.scss */
.categorias {
    float: left;
    display: block;
    width: 100%;
    padding-bottom: 64px;
}
@media screen and (min-width: 1024px) {
    /* line 1, components/_categorias.scss */
    .categorias {
        padding-bottom: 69px;
    }
}
/* line 9, components/_categorias.scss */
.categorias > ul {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 9, components/_categorias.scss */
    .categorias > ul {
        float: none;
        max-width: 1278px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 30px;
    }
    /* line 20, bourbon/addons/_clearfix.scss */
    .categorias > ul::after {
        clear: both;
        content: "";
        display: table;
    }
}
/* line 17, components/_categorias.scss */
.categorias > ul li {
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
    /* line 17, components/_categorias.scss */
    .categorias > ul li {
        float: left;
        display: block;
        margin-right: 2.28311%;
        width: 48.85845%;
        margin-bottom: 30px;
    }
    /* line 89, neat/grid/_span-columns.scss */
    .categorias > ul li:last-child {
        margin-right: 0;
    }
    /* line 78, neat/grid/_omega.scss */
    .categorias > ul li:nth-child(2n) {
        margin-right: 0;
    }
    /* line 83, neat/grid/_omega.scss */
    .categorias > ul li:nth-child(2n+1) {
        clear: left;
    }
}
/* line 26, components/_categorias.scss */
.categorias > ul li:last-child {
    margin-bottom: 0;
}
/* line 29, components/_categorias.scss */
.categorias > ul li a {
    float: left;
    display: block;
    width: 100%;
    text-decoration: none;
}
/* line 33, components/_categorias.scss */
.categorias > ul li a .img_holder {
    float: left;
    display: block;
    width: 100%;
    position: relative;
}
/* line 37, components/_categorias.scss */
.categorias > ul li a .img_holder .overlay {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 37, components/_categorias.scss */
    .categorias > ul li a .img_holder .overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        -webkit-transition: opacity 0.2s;
        -moz-transition: opacity 0.2s;
        transition: opacity 0.2s;
        background-color: rgba(0, 100, 167, 0.7);
    }
}
/* line 51, components/_categorias.scss */
.categorias > ul li a .img_holder img {
    float: left;
    display: block;
    width: 100%;
}
/* line 56, components/_categorias.scss */
.categorias > ul li a .texto {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
    text-align: center;
    position: relative;
    margin-top: -15px;
}
@media screen and (min-width: 1024px) {
    /* line 56, components/_categorias.scss */
    .categorias > ul li a .texto {
        margin-top: -51px;
        padding: 0 30px;
    }
}
/* line 67, components/_categorias.scss */
.categorias > ul li a .texto .holder {
    float: left;
    display: block;
    width: 100%;
    text-align: center;
    background-color: #f4f4f4;
    padding-top: 12px;
    padding-bottom: 36px;
}
@media screen and (min-width: 1024px) {
    /* line 67, components/_categorias.scss */
    .categorias > ul li a .texto .holder {
        padding: 0px 20px;
        padding-top: 26px;
        padding-bottom: 54px;
    }
}
/* line 79, components/_categorias.scss */
.categorias > ul li a .texto .holder h3 {
    font-family: 'Open Sans';
    font-size: 20px;
    line-height: 22px;
    font-weight: 800;
    color: #454545;
    text-transform: uppercase;
    margin-bottom: 9px;
}
@media screen and (min-width: 1024px) {
    /* line 79, components/_categorias.scss */
    .categorias > ul li a .texto .holder h3 {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 35px;
        position: relative;
    }
    /* line 88, components/_categorias.scss */
    .categorias > ul li a .texto .holder h3:after {
        content: '';
        bottom: -27px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        position: absolute;
        width: 20px;
        height: 2px;
        background-color: #00a9e0;
    }
}
/* line 100, components/_categorias.scss */
.categorias > ul li a .texto .holder p {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #454545;
}
@media screen and (min-width: 1024px) {
    /* line 100, components/_categorias.scss */
    .categorias > ul li a .texto .holder p {
        font-size: 15px;
        line-height: 23px;
    }
}
/* line 108, components/_categorias.scss */
.categorias > ul li a .texto span {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 40px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    background-color: #00a9e0;
    display: inline-block;
    position: relative;
    margin-top: -25px;
    padding: 0 15px;
}
@media screen and (min-width: 1024px) {
    /* line 108, components/_categorias.scss */
    .categorias > ul li a .texto span {
        margin-top: -30px;
        line-height: 51px;
        padding: 0 27px;
    }
}
/* line 124, components/_categorias.scss */
.categorias > ul li a:hover .overlay {
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
/* line 129, components/_categorias.scss */
.categorias > ul li a:hover span {
    background-color: #0064a7;
}

/* line 139, components/_categorias.scss */
.blue-link {
    float: left;
    display: block;
    width: 100%;
    background-size: cover;
    background-position: center center;
}
/* line 144, components/_categorias.scss */
.blue-link .container {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
    text-align: center;
    padding-top: 25px;
    padding-bottom: 30px;
}
@media screen and (min-width: 1024px) {
    /* line 144, components/_categorias.scss */
    .blue-link .container {
        padding-top: 42px;
        padding-bottom: 47px;
    }
}
/* line 155, components/_categorias.scss */
.blue-link .container h3 {
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 22px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
}
/* line 158, components/_categorias.scss */
.blue-link .container h3 strong {
    display: block;
    font-size: 20px;
    margin-top: -2px;
}
@media screen and (min-width: 1024px) {
    /* line 155, components/_categorias.scss */
    .blue-link .container h3 {
        font-size: 37px;
        line-height: 43px;
    }
    /* line 167, components/_categorias.scss */
    .blue-link .container h3 strong {
        font-size: 37px;
        line-height: 43px;
        margin-top: 4px;
        font-weight: 800;
    }
}
/* line 175, components/_categorias.scss */
.blue-link .container a {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    background-color: #00a9e0;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 40px;
    font-weight: 700;
    color: white;
    margin-top: 11px;
}
@media screen and (min-width: 1024px) {
    /* line 175, components/_categorias.scss */
    .blue-link .container a {
        line-height: 51px;
        width: auto;
        max-width: none;
        margin-top: 22px;
        padding: 0 27px;
    }
    /* line 190, components/_categorias.scss */
    .blue-link .container a:hover {
        background-color: #0064a7;
    }
}

/* line 1, components/_sistemas.scss */
.sistemas {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
}
@media screen and (min-width: 1024px) {
    /* line 1, components/_sistemas.scss */
    .sistemas {
        padding-top: 119px;
        float: none;
        max-width: 1278px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 30px;
        padding-right: 30px;
        overflow: hidden;
    }
    /* line 20, bourbon/addons/_clearfix.scss */
    .sistemas::after {
        clear: both;
        content: "";
        display: table;
    }
}
/* line 13, components/_sistemas.scss */
.sistemas > p {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 18px;
    font-weight: 600;
    color: #454545;
    margin-bottom: 26px;
    margin-top: -4px;
}
@media screen and (min-width: 1024px) {
    /* line 13, components/_sistemas.scss */
    .sistemas > p {
        font-family: 'Open Sans';
        font-size: 20px;
        line-height: 26px;
        font-weight: 300;
        color: #454545;
        margin-bottom: 45px;
    }
}
/* line 23, components/_sistemas.scss */
.sistemas ul {
    float: left;
    display: block;
    width: 100%;
    padding-bottom: 44px;
}
@media screen and (min-width: 1024px) {
    /* line 23, components/_sistemas.scss */
    .sistemas ul {
        xpadding-bottom: 0;
    }
}
/* line 30, components/_sistemas.scss */
.sistemas ul li {
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 47px;
}
/* line 34, components/_sistemas.scss */
.sistemas ul li:last-child {
    margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
    /* line 30, components/_sistemas.scss */
    .sistemas ul li {
        float: left;
        display: block;
        margin-right: 2.28311%;
        width: 31.81126%;
    }
    /* line 89, neat/grid/_span-columns.scss */
    .sistemas ul li:last-child {
        margin-right: 0;
    }
    /* line 78, neat/grid/_omega.scss */
    .sistemas ul li:nth-child(3n) {
        margin-right: 0;
    }
    /* line 83, neat/grid/_omega.scss */
    .sistemas ul li:nth-child(3n+1) {
        clear: left;
    }
}
@media screen and (min-width: 1599px) {
    /* line 30, components/_sistemas.scss */
    .sistemas ul li {
        float: left;
        display: block;
        margin-right: 2.28311%;
        width: 23.28767%;
        margin-bottom: 50px;
    }
    /* line 13, base/_variables.scss */
    .sistemas ul li:nth-child(3n) {
        margin-right: 2.28311%;
    }
    /* line 14, base/_variables.scss */
    .sistemas ul li:nth-child(3n+1) {
        clear: none;
    }
    /* line 89, neat/grid/_span-columns.scss */
    .sistemas ul li:last-child {
        margin-right: 0;
    }
    /* line 78, neat/grid/_omega.scss */
    .sistemas ul li:nth-child(4n) {
        margin-right: 0;
    }
    /* line 83, neat/grid/_omega.scss */
    .sistemas ul li:nth-child(4n+1) {
        clear: left;
    }
}
/* line 50, components/_sistemas.scss */
.sistemas ul li a {
    float: left;
    display: block;
    width: 100%;
    position: relative;
}
/* line 55, components/_sistemas.scss */
.sistemas ul li a .img_holder {
    float: left;
    display: block;
    width: 100%;
}
/* line 58, components/_sistemas.scss */
.sistemas ul li a .img_holder img {
    float: left;
    display: block;
    width: 100%;
}
/* line 62, components/_sistemas.scss */
.sistemas ul li a .img_holder .overlay {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 62, components/_sistemas.scss */
    .sistemas ul li a .img_holder .overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        -webkit-transition: opacity 0.2s;
        -moz-transition: opacity 0.2s;
        transition: opacity 0.2s;
        background-color: rgba(0, 100, 167, 0.7);
    }
}
/* line 80, components/_sistemas.scss */
.sistemas ul li a span {
    background-color: #00a9e0;
    position: absolute;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    width: calc(100% - 34px);
    text-align: center;
    padding-top: 13px;
    padding-bottom: 13px;
}
@media screen and (min-width: 1024px) {
    /* line 80, components/_sistemas.scss */
    .sistemas ul li a span {
        bottom: -20px;
        line-height: 13px;
        padding-top: 19px;
        padding-bottom: 18px;
    }
}
/* line 100, components/_sistemas.scss */
.sistemas ul li a:hover .overlay {
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
/* line 104, components/_sistemas.scss */
.sistemas ul li a:hover span {
    background-color: #0064a7;
}

/* line 1, components/_pesquisa.scss */
.r_pesquisa {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
}
@media screen and (min-width: 1024px) {
    /* line 1, components/_pesquisa.scss */
    .r_pesquisa {
        max-width: 1278px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 30px;
        float: none;
        padding-top: 96px;
        clear: both;
    }
    /* line 20, bourbon/addons/_clearfix.scss */
    .r_pesquisa::after {
        clear: both;
        content: "";
        display: table;
    }
}
/* line 12, components/_pesquisa.scss */
.r_pesquisa > p {
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: normal;
    font-weight: 400;
    color: #454545;
    text-transform: uppercase;
    margin-top: -2px;
    margin-bottom: 11px;
}
@media screen and (min-width: 1024px) {
    /* line 12, components/_pesquisa.scss */
    .r_pesquisa > p {
        font-size: 20px;
        margin-bottom: 24px;
    }
}
/* line 21, components/_pesquisa.scss */
.r_pesquisa > p span {
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: normal;
    font-weight: 800;
    color: #00a9e0;
}
@media screen and (min-width: 1024px) {
    /* line 21, components/_pesquisa.scss */
    .r_pesquisa > p span {
        font-size: 20px;
    }
}
/* line 29, components/_pesquisa.scss */
.r_pesquisa > ul {
    float: left;
    display: block;
    width: 100%;
    padding-bottom: 30px;
}
/* line 33, components/_pesquisa.scss */
.r_pesquisa > ul > li {
    float: left;
    display: block;
    width: 100%;
    background-color: #f4f4f4;
}
/* line 37, components/_pesquisa.scss */
.r_pesquisa > ul > li:nth-child(even) {
    background-color: #fbfbfb;
}
/* line 40, components/_pesquisa.scss */
.r_pesquisa > ul > li a {
    float: left;
    display: block;
    width: 100%;
    text-decoration: none;
}
@media screen and (min-width: 1024px) {
    /* line 40, components/_pesquisa.scss */
    .r_pesquisa > ul > li a {
        padding: 30px;
        position: relative;
    }
}
/* line 48, components/_pesquisa.scss */
.r_pesquisa > ul > li a .img_holder {
    float: left;
    display: block;
    padding-left: 16px;
    width: 23.61111%;
    padding-top: 16px;
    position: relative;
}
@media screen and (min-width: 1024px) {
    /* line 48, components/_pesquisa.scss */
    .r_pesquisa > ul > li a .img_holder {
        width: 252px;
        padding: 0;
    }
}
/* line 59, components/_pesquisa.scss */
.r_pesquisa > ul > li a .img_holder img {
    float: left;
    display: block;
    width: 100%;
    height: auto;
}
/* line 65, components/_pesquisa.scss */
.r_pesquisa > ul > li a .overlay {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 65, components/_pesquisa.scss */
    .r_pesquisa > ul > li a .overlay {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        opacity: 0;
        -webkit-transition: opacity 0.2s;
        -moz-transition: opacity 0.2s;
        transition: opacity 0.2s;
        background-color: rgba(0, 169, 224, 0.7);
    }
}
/* line 79, components/_pesquisa.scss */
.r_pesquisa > ul > li a .text {
    float: right;
    display: block;
    width: 76.38889%;
    padding-left: 16px;
    padding-top: 14px;
    padding-bottom: 12px;
    padding-right: 16px;
}
@media screen and (min-width: 1024px) {
    /* line 79, components/_pesquisa.scss */
    .r_pesquisa > ul > li a .text {
        width: calc(100% - 282px);
        padding: 0;
    }
}
/* line 90, components/_pesquisa.scss */
.r_pesquisa > ul > li a .text p {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
    color: #454545;
}
@media screen and (min-width: 1024px) {
    /* line 90, components/_pesquisa.scss */
    .r_pesquisa > ul > li a .text p {
        font-size: 15px;
        line-height: 23px;
    }
}
/* line 97, components/_pesquisa.scss */
.r_pesquisa > ul > li a .text .caminho_p {
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 5px;
}
@media screen and (min-width: 1024px) {
    /* line 97, components/_pesquisa.scss */
    .r_pesquisa > ul > li a .text .caminho_p {
        margin-bottom: 4px;
    }
}
/* line 104, components/_pesquisa.scss */
.r_pesquisa > ul > li a .text .caminho_p li {
    float: left;
    display: block;
    display: none;
}
/* line 107, components/_pesquisa.scss */
.r_pesquisa > ul > li a .text .caminho_p li:first-child {
    display: block;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 12px;
    font-weight: 800;
    color: #00a9e0;
    text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
    /* line 104, components/_pesquisa.scss */
    .r_pesquisa > ul > li a .text .caminho_p li {
        display: block;
        font-family: 'Open Sans';
        font-size: 12px;
        line-height: 12px;
        font-weight: 800;
        color: #00a9e0;
        text-transform: uppercase;
        margin-right: 10px;
    }
    /* line 117, components/_pesquisa.scss */
    .r_pesquisa > ul > li a .text .caminho_p li:after {
        content: '';
        display: inline-block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 3px 0 3px 3px;
        border-color: transparent transparent transparent #00a9e0;
        margin-left: 10px;
        position: relative;
        top: -2px;
    }
    /* line 129, components/_pesquisa.scss */
    .r_pesquisa > ul > li a .text .caminho_p li:last-child {
        margin-right: 0;
    }
    /* line 131, components/_pesquisa.scss */
    .r_pesquisa > ul > li a .text .caminho_p li:last-child:after {
        content: none;
    }
}
/* line 138, components/_pesquisa.scss */
.r_pesquisa > ul > li a .text h3 {
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 15px;
    font-weight: 800;
    color: #454545;
    text-transform: uppercase;
    margin-bottom: 6px;
}
@media screen and (min-width: 1024px) {
    /* line 138, components/_pesquisa.scss */
    .r_pesquisa > ul > li a .text h3 {
        font-size: 20px;
        line-height: 23px;
    }
}
/* line 148, components/_pesquisa.scss */
.r_pesquisa > ul > li a .text .go_btn {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 148, components/_pesquisa.scss */
    .r_pesquisa > ul > li a .text .go_btn {
        float: left;
        display: block;
        font-family: 'Open Sans';
        font-size: 13px;
        line-height: 51px;
        font-weight: 700;
        color: white;
        text-transform: uppercase;
        background-color: #00a9e0;
        padding-left: 29px;
        padding-right: 29px;
        position: absolute;
        bottom: 30px;
    }
}
/* line 164, components/_pesquisa.scss */
.r_pesquisa > ul > li a:hover .overlay {
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
/* line 169, components/_pesquisa.scss */
.r_pesquisa > ul > li a:hover h3 {
    color: #0064a7;
}
/* line 173, components/_pesquisa.scss */
.r_pesquisa > ul > li a:hover .go_btn {
    background-color: #1e76b1;
}
/* line 181, components/_pesquisa.scss */
.r_pesquisa > ul > li.no-img .text {
    width: 100%;
}
/* line 183, components/_pesquisa.scss */
.r_pesquisa > ul > li.no-img .text span {
    position: relative;
    bottom: auto;
    margin-top: 29px;
}

/* line 194, components/_pesquisa.scss */
.navigation {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 194, components/_pesquisa.scss */
    .navigation {
        max-width: 1278px;
        margin-left: auto;
        margin-right: auto;
        float: none;
        padding: 0 30px;
    }
    /* line 20, bourbon/addons/_clearfix.scss */
    .navigation::after {
        clear: both;
        content: "";
        display: table;
    }
}

/* line 1, components/_referencias.scss */
.referencias {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
    padding-bottom: 64px;
}
@media screen and (min-width: 1024px) {
    /* line 1, components/_referencias.scss */
    .referencias {
        float: none;
        max-width: 1278px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 30px;
    }
    /* line 20, bourbon/addons/_clearfix.scss */
    .referencias::after {
        clear: both;
        content: "";
        display: table;
    }
}
/* line 11, components/_referencias.scss */
.referencias ul {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 11, components/_referencias.scss */
    .referencias ul {
        padding-top: 120px;
    }
}
/* line 17, components/_referencias.scss */
.referencias ul li {
    float: left;
    display: block;
    width: 100%;
    border: 1px solid #e8e8e8;
    position: relative;
    height: 172px;
    margin-bottom: 15px;
}
/* line 24, components/_referencias.scss */
.referencias ul li:last-child {
    margin-bottom: 0;
}
@media screen and (min-width: 768px) {
    /* line 17, components/_referencias.scss */
    .referencias ul li {
        float: left;
        display: block;
        margin-right: 15.46392%;
        width: 42.26804%;
    }
    /* line 89, neat/grid/_span-columns.scss */
    .referencias ul li:last-child {
        margin-right: 0;
    }
    /* line 78, neat/grid/_omega.scss */
    .referencias ul li:nth-child(2n) {
        margin-right: 0;
    }
    /* line 83, neat/grid/_omega.scss */
    .referencias ul li:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (min-width: 1024px) {
    /* line 17, components/_referencias.scss */
    .referencias ul li {
        float: left;
        display: block;
        margin-right: 2.28311%;
        width: 23.28767%;
        margin-bottom: 29px;
    }
    /* line 89, neat/grid/_span-columns.scss */
    .referencias ul li:last-child {
        margin-right: 0;
    }
    /* line 13, base/_variables.scss */
    .referencias ul li:nth-child(2n) {
        margin-right: 2.28311%;
    }
    /* line 14, base/_variables.scss */
    .referencias ul li:nth-child(2n+1) {
        clear: none;
    }
    /* line 78, neat/grid/_omega.scss */
    .referencias ul li:nth-child(4n) {
        margin-right: 0;
    }
    /* line 83, neat/grid/_omega.scss */
    .referencias ul li:nth-child(4n+1) {
        clear: left;
    }
}
/* line 37, components/_referencias.scss */
.referencias ul li a {
    float: left;
    display: block;
    padding: 0 16px;
    text-align: center;
    position: absolute;
    background-color: white;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 20px;
}
/* line 48, components/_referencias.scss */
.referencias ul li a:before {
    content: none;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}
/* line 54, components/_referencias.scss */
.referencias ul li a img {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
@media screen and (min-width: 1024px) {
    /* line 54, components/_referencias.scss */
    .referencias ul li a img {
        /* Firefox 10+, Firefox on Android */
       /* filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale"); */
        /* IE 6-9 */
       /* filter: gray; */
        /* Chrome 19+, Safari 6+, Safari 6+ iOS */
       /* -webkit-filter: grayscale(100%); */
    }
}
/* line 73, components/_referencias.scss */
.referencias ul li a:hover img {
    -webkit-filter: none;
    filter: none;
}

/* line 1, components/_contactos.scss */
.directions-panel {
    display: none;
    float: left;
    width: 100%;
    height: auto;
    background-color: #fff;
}

/* line 9, components/_contactos.scss */
.adp-summary {
    color: #e41b13;
    font-weight: bold;
    text-align: center;
    font-size: 15px;
    font-family: "Roboto-Bold" !important;
    text-transform: uppercase;
}

/* line 18, components/_contactos.scss */
.adp-directions tr {
    background-color: #fff;
}

/* line 22, components/_contactos.scss */
.adp-directions tr:nth-child(even) {
    background-color: #f7f7f7;
}

/* line 26, components/_contactos.scss */
.adp-placemark {
    margin-top: 0 !important;
    border: none;
}

/* line 31, components/_contactos.scss */
.adp,
.adp table,
.adp-list {
    font-family: "Roboto-Light" !important;
}

/* line 37, components/_contactos.scss */
.adp-legal {
    display: none;
}

/* line 41, components/_contactos.scss */
.gm-style-iw {
    overflow: hidden !important;
}

/* line 45, components/_contactos.scss */
.map table.adp-placemark,
.map table.adp-directions,
table.adp-placemark,
table.adp-directions {
    width: 100%;
}

/* line 52, components/_contactos.scss */
.directions-panel.estatico .map table.adp-placemark,
.directions-panel.estatico .map table.adp-directions,
.directions-panel.estatico table.adp-placemark,
.directions-panel.estatico table.adp-directions {
    width: 100%;
}

/* line 59, components/_contactos.scss */
.directions-panel.companies table.adp-placemark,
.directions-panel.companies table.adp-directions {
    width: 330px;
}

/* line 64, components/_contactos.scss */
#distanceBlock {
    display: none;
    line-height: 20px !important;
}

/* line 69, components/_contactos.scss */
#distanceBlock span {
    line-height: 20px !important;
}

/* line 73, components/_contactos.scss */
#distancePointA {
    font-weight: bold;
    color: #e41b13;
}

/* line 78, components/_contactos.scss */
#distancePointB {
    font-weight: bold;
    color: #e41b13;
}

/* line 83, components/_contactos.scss */
#closeDirectionsBt {
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 30px;
    position: absolute;
    right: 0;
    top: 0;
}

/* line 93, components/_contactos.scss */
p#getDirections {
    display: block;
    min-height: 20px;
}

/* line 98, components/_contactos.scss */
img.adp-marker {
    display: none;
}

/* line 102, components/_contactos.scss */
.adp-text {
    background-color: white;
    font-family: 'Open Sans';
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: #454545;
    text-transform: uppercase;
    padding-left: 22px;
    position: relative;
}
/* line 108, components/_contactos.scss */
.adp-text:before {
    content: '';
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -242px -156px;
    width: 14px;
    height: 21px;
    float: left;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}
@media screen and (min-width: 1024px) {
    /* line 102, components/_contactos.scss */
    .adp-text {
        font-size: 20px;
        line-height: 20px;
        padding-left: 30px;
    }
    /* line 120, components/_contactos.scss */
    .adp-text:before {
        background-image: url(../img/sprites/spritesheet.png);
        background-position: -128px -74px;
        width: 21px;
        height: 32px;
        top: -8px;
    }
}

/* line 127, components/_contactos.scss */
.adp-summary,
.adp-summary span {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 13px;
    font-weight: 400;
    color: #00a9e0;
}

/* line 132, components/_contactos.scss */
.adp-summary {
    background-color: #f4f4f4;
    padding-top: 15px;
    padding-bottom: 12px;
    text-transform: none;
}
@media screen and (min-width: 1024px) {
    /* line 132, components/_contactos.scss */
    .adp-summary {
        font-size: 15px;
        text-align: left;
        padding-top: 14px;
        padding-left: 30px;
    }
}

/* line 145, components/_contactos.scss */
.adp-substep {
    border-bottom: 1px dashed #afafaf;
    border-top: none;
}
/* line 148, components/_contactos.scss */
.adp-substep > div:not(.adp-stepicon):not(.adp-distance) {
    color: #2967b1;
    font-size: 12px !important;
    line-height: 17px !important;
}
@media screen and (min-width: 1024px) {
    /* line 148, components/_contactos.scss */
    .adp-substep > div:not(.adp-stepicon):not(.adp-distance) {
        font-size: 13px !important;
        line-height: 18px !important;
        padding-top: 4px;
    }
}
/* line 157, components/_contactos.scss */
.adp-substep > div:not(.adp-stepicon):not(.adp-distance):before {
    content: '';
    float: left;
    display: block;
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -239px -78px;
    width: 15px;
    height: 15px;
    margin-right: 8px;
}
@media screen and (min-width: 1024px) {
    /* line 145, components/_contactos.scss */
    .adp-substep {
        padding-top: 9px;
        padding-bottom: 8px;
    }
}

/* line 170, components/_contactos.scss */
.adp-directions {
    margin-top: 15px;
    margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
    /* line 170, components/_contactos.scss */
    .adp-directions {
        margin-bottom: 33px;
    }
}
/* line 177, components/_contactos.scss */
.adp-directions tr:nth-child(2n) {
    background-color: white;
}
/* line 180, components/_contactos.scss */
.adp-directions tr td:nth-child(2) {
    display: none;
}
/* line 183, components/_contactos.scss */
.adp-directions tr td:nth-child(3) {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #454545;
    text-transform: none;
}
@media screen and (min-width: 1024px) {
    /* line 183, components/_contactos.scss */
    .adp-directions tr td:nth-child(3) {
        font-size: 15px;
        line-height: 19px;
    }
}
/* line 191, components/_contactos.scss */
.adp-directions tr td:nth-child(4) {
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #00a9e0;
    text-transform: none;
}
@media screen and (min-width: 1024px) {
    /* line 191, components/_contactos.scss */
    .adp-directions tr td:nth-child(4) {
        font-size: 15px;
        line-height: 21px;
    }
}

@media screen and (min-width: 1024px) {
    /* line 202, components/_contactos.scss */
    .mobile.cancel-dir {
        display: none;
    }
}

/* line 209, components/_contactos.scss */
.text.open .d_holder {
    border-bottom: 1px solid #cceef9;
    position: relative;
    margin-bottom: 25px;
}
/* line 213, components/_contactos.scss */
.text.open .d_holder:before {
    content: '';
    position: absolute;
    bottom: -1px;
    width: 500px;
    left: -500px;
    height: 1px;
    background-color: #cceef9;
}
/* line 222, components/_contactos.scss */
.text.open .d_holder:after {
    content: '';
    position: absolute;
    bottom: -1px;
    width: 500px;
    right: -500px;
    height: 1px;
    background-color: #cceef9;
}

@media screen and (min-width: 1024px) {
    /* line 234, components/_contactos.scss */
    .banner-mapa {
        height: 462px;
    }
}
/* line 238, components/_contactos.scss */
.banner-mapa .img_holder {
    height: 294px;
}
@media screen and (min-width: 1024px) {
    /* line 238, components/_contactos.scss */
    .banner-mapa .img_holder {
        height: 462px;
    }
    /* line 242, components/_contactos.scss */
    .banner-mapa .img_holder .gm-style > div > div {
        -webkit-box-shadow: inset -2px -50px 89px -30px rgba(0, 0, 0, 0.45);
        -moz-box-shadow: inset -2px -50px 89px -30px rgba(0, 0, 0, 0.45);
        box-shadow: inset -2px -50px 89px -30px rgba(0, 0, 0, 0.45);
    }
}
@media screen and (min-width: 1024px) {
    /* line 249, components/_contactos.scss */
    .banner-mapa .text {
        top: 0;
    }
    /* line 252, components/_contactos.scss */
    .banner-mapa .text h1 {
        bottom: 26px;
        position: absolute;
    }
}
/* line 258, components/_contactos.scss */
.banner-mapa .mapa {
    height: 100%;
}
/* line 261, components/_contactos.scss */
.banner-mapa .d_holder {
    float: left;
}
/* line 266, components/_contactos.scss */
.banner-mapa .d_holder .directions-panel.open {
    margin-bottom: 15px;
}
@media screen and (min-width: 1024px) {
    /* line 261, components/_contactos.scss */
    .banner-mapa .d_holder {
        display: none;
    }
}
/* line 274, components/_contactos.scss */
.banner-mapa .local_q {
    float: left;
    display: block;
    width: 100%;
    background-color: #f4f4f4;
    padding: 29px 16px 20px;
    position: relative;
    margin-top: -50px;
    margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
    /* line 274, components/_contactos.scss */
    .banner-mapa .local_q {
        margin-top: 0;
        position: absolute;
        bottom: -38px;
        right: 30px;
        width: 386px;
        margin-bottom: 0;
        padding: 51px 30px 29px;
    }
}
/* line 291, components/_contactos.scss */
.banner-mapa .local_q > a {
    display: none;
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 40px;
    font-weight: 700;
    color: white;
    background-color: #1d1d1d;
    text-transform: uppercase;
    padding: 0 16px;
    float: left;
    text-decoration: none;
    display: none;
    margin-top: 10px;
}
@media screen and (min-width: 1024px) {
    /* line 291, components/_contactos.scss */
    .banner-mapa .local_q > a {
        display: none;
    }
}
/* line 305, components/_contactos.scss */
.banner-mapa .local_q h3 {
    font-family: 'Open Sans';
    font-size: 20px;
    line-height: 20px;
    font-weight: 800;
    color: #00a9e0;
    margin-bottom: 6px;
}
@media screen and (min-width: 1024px) {
    /* line 305, components/_contactos.scss */
    .banner-mapa .local_q h3 {
        font-size: 25px;
        margin-bottom: 5px;
    }
}
/* line 313, components/_contactos.scss */
.banner-mapa .local_q p {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 313, components/_contactos.scss */
    .banner-mapa .local_q p {
        display: block;
        font-family: 'Open Sans';
        font-size: 15px;
        line-height: 23px;
        font-weight: 400;
        color: #454545;
        text-transform: none;
        margin-bottom: 24px;
    }
}
/* line 322, components/_contactos.scss */
.banner-mapa .local_q form {
    float: left;
    display: block;
    width: 100%;
    background-color: white;
    border: 1px solid #e8e8e8;
    padding: 30px 10px 10px 13px;
}
@media screen and (min-width: 1024px) {
    /* line 322, components/_contactos.scss */
    .banner-mapa .local_q form {
        background-color: transparent;
        border: none;
        padding: 0;
        position: relative;
    }
}
/* line 334, components/_contactos.scss */
.banner-mapa .local_q form label {
    display: none;
    position: absolute;
}
@media screen and (min-width: 1024px) {
    /* line 334, components/_contactos.scss */
    .banner-mapa .local_q form label {
        display: block;
        font-family: 'Open Sans';
        font-size: 12px;
        line-height: 19px;
        font-weight: 700;
        color: #454545;
        text-transform: uppercase;
        top: 11px;
        left: 30px;
    }
}
/* line 345, components/_contactos.scss */
.banner-mapa .local_q form a {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 345, components/_contactos.scss */
    .banner-mapa .local_q form a {
        font-family: 'Open Sans';
        font-size: 13px;
        line-height: 51px;
        font-weight: 700;
        color: white;
        background-color: #1d1d1d;
        text-transform: uppercase;
        padding: 0 29px;
        float: left;
        display: block;
        text-decoration: none;
        display: none;
    }
}
/* line 357, components/_contactos.scss */
.banner-mapa .local_q form input {
    float: left;
    display: block;
    background-color: transparent;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 19px;
    font-weight: 700;
    color: #454545;
    border: 0;
    outline: 0;
    width: 90%;
}
/* line 4, bourbon/css3/_placeholder.scss */
.banner-mapa .local_q form input::-webkit-input-placeholder {
    text-transform: uppercase;
}
/* line 4, bourbon/css3/_placeholder.scss */
.banner-mapa .local_q form input::-moz-placeholder {
    text-transform: uppercase;
}
/* line 4, bourbon/css3/_placeholder.scss */
.banner-mapa .local_q form input:-moz-placeholder {
    text-transform: uppercase;
}
/* line 4, bourbon/css3/_placeholder.scss */
.banner-mapa .local_q form input:-ms-input-placeholder {
    text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
    /* line 357, components/_contactos.scss */
    .banner-mapa .local_q form input {
        width: 100%;
        background-color: white;
        border: 1px solid #e8e8e8;
        padding-left: 28px;
        padding: 30px 28px 12px;
        margin-bottom: 10px;
        text-transform: none;
        font-weight: 400;
    }
    /* line 4, bourbon/css3/_placeholder.scss */
    .banner-mapa .local_q form input::-webkit-input-placeholder {
        color: white;
    }
    /* line 4, bourbon/css3/_placeholder.scss */
    .banner-mapa .local_q form input::-moz-placeholder {
        color: white;
    }
    /* line 4, bourbon/css3/_placeholder.scss */
    .banner-mapa .local_q form input:-moz-placeholder {
        color: white;
    }
    /* line 4, bourbon/css3/_placeholder.scss */
    .banner-mapa .local_q form input:-ms-input-placeholder {
        color: white;
    }
    /* line 379, components/_contactos.scss */
    .banner-mapa .local_q form input:focus {
        border-color: #00a9e0;
    }
}
/* line 384, components/_contactos.scss */
.banner-mapa .local_q form button {
    float: right;
    display: block;
    background-color: transparent;
    background-image: url(../img/sprites/spritesheet.png);
    background-position: -149px -85px;
    width: 12px;
    height: 11px;
    margin-top: 6px;
    overflow: hidden;
}
@media screen and (min-width: 1024px) {
    /* line 384, components/_contactos.scss */
    .banner-mapa .local_q form button {
        background-image: none;
        width: auto;
        height: auto;
        padding: 0;
        background-color: #00a9e0;
        font-family: 'Open Sans';
        font-size: 13px;
        line-height: normal;
        font-weight: 700;
        color: white;
        text-transform: uppercase;
        height: 51px;
        padding: 0 29px;
        margin-top: 0;
    }
    /* line 401, components/_contactos.scss */
    .banner-mapa .local_q form button:hover {
        background-color: #0064a7;
    }
}

/* line 410, components/_contactos.scss */
.main > .d_holder {
    display: none;
}
@media screen and (min-width: 1024px) {
    /* line 410, components/_contactos.scss */
    .main > .d_holder {
        max-width: 1278px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 30px;
        display: block;
    }
    /* line 20, bourbon/addons/_clearfix.scss */
    .main > .d_holder::after {
        clear: both;
        content: "";
        display: table;
    }
    /* line 416, components/_contactos.scss */
    .main > .d_holder.open {
        padding-top: 50px;
        clear: left;
    }
    /* line 421, components/_contactos.scss */
    .main > .d_holder .directions-panel {
        float: left;
        display: block;
        margin-right: 2.28311%;
        width: 65.90563%;
    }
    /* line 89, neat/grid/_span-columns.scss */
    .main > .d_holder .directions-panel:last-child {
        margin-right: 0;
    }
    /* line 423, components/_contactos.scss */
    .main > .d_holder .directions-panel.open {
        margin-bottom: 43px;
    }
}

/* line 430, components/_contactos.scss */
.contactos {
    float: left;
    display: block;
    width: 100%;
    padding: 0 5%;
    margin-top: -9px;
}
@media screen and (min-width: 1024px) {
    /* line 430, components/_contactos.scss */
    .contactos {
        margin-top: 0;
        padding: 0;
        float: none;
        max-width: 1278px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 30px;
        clear: left;
        padding-top: 41px;
    }
    /* line 20, bourbon/addons/_clearfix.scss */
    .contactos::after {
        clear: both;
        content: "";
        display: table;
    }
    /* line 443, components/_contactos.scss */
    .contactos.wBorder {
        border-top: 1px solid #cceef9;
    }
}
/* line 447, components/_contactos.scss */
.contactos .info {
    float: left;
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 9px;
}
@media screen and (min-width: 1024px) {
    /* line 447, components/_contactos.scss */
    .contactos .info {
        float: left;
        display: block;
        margin-right: 2.28311%;
        width: 31.81126%;
        padding-top: 94px;
    }
    /* line 89, neat/grid/_span-columns.scss */
    .contactos .info:last-child {
        margin-right: 0;
    }
}
@media screen and (min-width: 1024px) {
    /* line 458, components/_contactos.scss */
    .contactos .info .outros p {
        margin-bottom: 10px;
    }
    /* line 460, components/_contactos.scss */
    .contactos .info .outros p.less {
        margin-bottom: 0;
    }
}
/* line 466, components/_contactos.scss */
.contactos .info > div {
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
/* line 471, components/_contactos.scss */
.contactos .info h2 {
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 23px;
    font-weight: 800;
    color: #00a9e0;
    text-transform: uppercase;
}
/* line 475, components/_contactos.scss */
.contactos .info p,
.contactos .info address {
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    color: #454545;
}
/* line 478, components/_contactos.scss */
.contactos .info p strong,
.contactos .info address strong {
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 23px;
    font-weight: 800;
    color: #00a9e0;
    text-transform: uppercase;
}
/* line 482, components/_contactos.scss */
.contactos .info p a,
.contactos .info address a {
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    color: #454545;
    text-decoration: none;
}

/* line 490, components/_contactos.scss */
.formulario {
    float: left;
    display: block;
    width: 100%;
    padding-bottom: 65px;
}
@media screen and (min-width: 1024px) {
    /* line 490, components/_contactos.scss */
    .formulario {
        float: left;
        display: block;
        margin-right: 2.28311%;
        width: 65.90563%;
        padding-bottom: 0;
    }
    /* line 89, neat/grid/_span-columns.scss */
    .formulario:last-child {
        margin-right: 0;
    }
}
/* line 498, components/_contactos.scss */
.formulario .split {
    float: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    /* line 498, components/_contactos.scss */
    .formulario .split {
        float: left;
        display: block;
        margin-right: 3.4642%;
        width: 48.2679%;
    }
    /* line 89, neat/grid/_span-columns.scss */
    .formulario .split:last-child {
        margin-right: 0;
    }
    /* line 503, components/_contactos.scss */
    .formulario .split:last-child {
    }
}
/* line 508, components/_contactos.scss */
.formulario h3 {
    font-family: 'Open Sans';
    font-size: 25px;
    line-height: 25px;
    font-weight: 300;
    color: #00a9e0;
    text-transform: uppercase;
    margin-bottom: 13px;
}
@media screen and (min-width: 1024px) {
    /* line 508, components/_contactos.scss */
    .formulario h3 {
        font-size: 35px;
        line-height: 43px;
        margin-bottom: 14px;
    }
}
/* line 518, components/_contactos.scss */
.formulario .item {
    float: left;
    display: block;
    width: 100%;
    border: 1px solid #e8e8e8;
    margin-bottom: 15px;
    padding: 9px 15px 11px;
    position: relative;
}
@media screen and (min-width: 1024px) {
    /* line 518, components/_contactos.scss */
    .formulario .item {
        padding-top: 9px;
        margin-bottom: 10px;
    }
    /* line 527, components/_contactos.scss */
    .formulario .item.focus {
        border-color: #00a9e0;
    }
}
/* line 532, components/_contactos.scss */
.formulario label {
    float: left;
    display: block;
    width: 100%;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 19px;
    font-weight: 700;
    color: #454545;
    text-transform: uppercase;
}
/* line 537, components/_contactos.scss */
.formulario label span {
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 19px;
    font-weight: 800;
    color: #00a9e0;
}
/* line 541, components/_contactos.scss */
.formulario input {
    float: left;
    display: block;
    width: 100%;
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 19px;
    font-weight: 400;
    color: #454545;
    border: 0;
    outline: 0;
    padding-right: 50px;
}
/* line 548, components/_contactos.scss */
.formulario textarea {
    resize: none;
    float: left;
    display: block;
    width: 100%;
    border: 0;
    outline: 0;
    min-height: 133px;
}
@media screen and (min-width: 1024px) {
    /* line 548, components/_contactos.scss */
    .formulario textarea {
        min-height: 165px;
    }
}
/* line 559, components/_contactos.scss */
.formulario p {
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 19px;
    font-weight: 400;
    color: #454545;
}
/* line 563, components/_contactos.scss */
.formulario p span {
    font-family: 'Open Sans';
    font-size: 20px;
    line-height: 19px;
    font-weight: 800;
    color: #00a9e0;
}
/* line 567, components/_contactos.scss */
.formulario button,  .btn-primary{
    float: left;
    display: block;
    background-color: #00a9e0;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: normal;
    font-weight: 700;
    color: white;
    height: 40px;
    text-transform: uppercase;
    border: 0;
    outline: 0;
    padding: 0 16px;
}
@media screen and (min-width: 1024px) {
    /* line 567, components/_contactos.scss */
    .formulario button {
        float: right;
        display: block;
        height: 51px;
        padding: 0 29px;
    }
    /* line 580, components/_contactos.scss */
    .formulario button:hover {
        background-color: #0064a7;
    }
}

.error{
    color: #C70000!important;
    font-weight: normal!important;
}

.overlay_g {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));   
}
.hide{
    display: none!important;
}

footer .top .cert .left{
    width: 45%;
    float:left;
}

.error-pages h2 {
    font-family: 'Open Sans';
    font-size: 20px;
    line-height: 20px;
    font-weight: 800;
    color: #00a9e0;
    text-transform: uppercase;
    margin-bottom: 3px;
}
.error-pages h1 {
    font-family: 'Open Sans';
    font-size: 45px;
    line-height: 40px;
    font-weight: 800;
    color: #363636;
    margin-bottom: 29px;
    text-transform: uppercase;
}
.error-pages p{
    font-family: 'Open Sans';
    float: left;
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 23px;
}
.item.erro {
    border-color: #f4674b!important;
}

.pesquisa form button {
    position: absolute;
    right: 4%;
    display: block;
    width: 32px;
    height: 32px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background: transparent;
    border: none;
}

.baseForm{
    display: block;
    position: relative!important;
    background: none;

}

.info .right.fullWidth{
    width: 100%;
    float: left;
}

.info .right.fullWidth .overlay_f.detalhe .container .item label{
    float: left;
    text-align: left;
}

.baseForm.overlay_f.detalhe .container{
    max-width: 100%;
    background: none;
}
.baseForm.overlay_f .container form .item > p{
    text-align: left;
}



.btn-primary {
    text-decoration: none;
    line-height: 22px;
    padding: 10px 29px;
}

.split .item .hoverinfo,
.assistencia .item .hoverinfo,
.group .item .hoverinfo {
    position: absolute;
    top: 50%;
    right: 0px;
    font-size: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    background-color: #00a9e0;
    width: 15%;
    height: 100%; 
}

.split .item .hoverinfo span, .assistencia .item .hoverinfo span, .group .item .hoverinfo span {
    color: white;
    font-size: 35px;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.split .item .hoverinfo p, .assistencia .item .hoverinfo p, .group .item .hoverinfo p{
    display: none;
    color: #000000;
    border-radius: 8px;
    padding: 10px;
    background-color: white;
    font-size: 15px;
    font-family: 'Open Sans';
    box-shadow: 2px 0 20px black;
    width: 300px;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    text-align: left;
}

@media (max-width: 1024px){
    .split .item .hoverinfo p, .assistencia .item .hoverinfo p, .group .item .hoverinfo p{
        left: auto;
        right: -6px;
    }
}
.split .item .hoverinfo:hover, .assistencia .item .hoverinfo:hover, .group .item .hoverinfo:hover{
    z-index: 2;
}
.split .item .hoverinfo:hover span + p, .assistencia .item .hoverinfo:hover span + p, .group .item .hoverinfo:hover span + p {
    display: inline-block !important;
    
}
/* 

.assistencia .item.left .hoverinfo {
    position: absolute;
    top: 50%;
    right: 0px;
    font-size: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    background-color: #00a9e0;
    width: 15%;
    height: 100%; 
}


.assistencia .item.left .hoverinfo span {
    color: white;
    font-size: 35px;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.assistencia .item.left .hoverinfo p{
    display: none;
    color: #000000;
    border-radius: 8px;
    padding: 10px;
    background-color: white;
    font-size: 15px;
    font-family: 'Open Sans';
    box-shadow: 2px 0 20px black;
    width: 300px;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
} */

/* @media (max-width: 1024px){
    .assistencia .item.left .hoverinfo p{
        left: auto;
        right: -6px;
    }
}
.assistencia .item.left .hoverinfo:hover{
    z-index: 2;
}
.assistencia .item .hoverinfo:hover span + p {
    display: inline-block !important;
    
} */
/* 
.assistencia .item .hoverinfo {
    position: absolute;
    top: 50%;
    right: 0px;
    font-size: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    background-color: #00a9e0;
    width: 15%;
    height: 100%; 
}

.assistencia .item .hoverinfo span {
    color: white;
    font-size: 35px;
    top: 14px;
    right: 6px;
    position: relative;
    padding: 20px; 
}

.assistencia .item .hoverinfo p{
    display: none;
    color: #000000;
    border-radius: 8px;
    padding: 10px;
    background-color: white;
    font-size: 15px;
    font-family: 'Open Sans';
    box-shadow: 2px 0 20px black;
}

.assistencia .item .hoverinfo:hover span + p {
    display: block !important;
    top: 50%;
    transform: translateY(-50%);
} */
/* 
.group .item .hoverinfo {
    position: absolute;
    top: 49%;
    right: 0px;
    font-size: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    background-color: #00a9e0;
    width: 15%;
    height: 100%; 
}

.group .item .hoverinfo span {
    color: white;
    font-size: 35px;
    top: 14px;
    right: 6px;
    position: relative;
    padding: 20px; 
}

.group .item .hoverinfo p{
    display: none;
    color: #000000;
    border-radius: 8px;
    padding: 10px;
    background-color: white;
    font-size: 15px;
    font-family: 'Open Sans';
    box-shadow: 2px 0 20px black;
}

.group .item .hoverinfo:hover span + p {
    display: block !important;
    top: 50%;
    transform: translateY(-50%);
}

.group .item.pull-right .hoverinfo {
    position: absolute;
    top: 50%;
    right: 0px;
    font-size: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    background-color: #00a9e0;
    width: 15%;
    height: 100%; 
}

.group .item.pull-right .hoverinfo span {
    color: white;
    font-size: 35px;
    top: 14px;
    right: 6px;
    position: relative;
    padding: 20px; 
}

.group .item.pull-right .hoverinfo p{
    display: none;
    color: #000000;
    border-radius: 8px;
    padding: 10px;
    background-color: white;
    font-size: 15px;
    font-family: 'Open Sans';
    box-shadow: 2px 0 20px black;
}

.group .item.pull-right .hoverinfo:hover span + p {
    display: block !important;
    top: 50%;
    transform: translateY(-50%);
} */
.overlay_f.detalhe .container .item{
    position: relative;
}

.item-checkbox{
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 5px 0;
}

.item-checkbox input,
.item-checkbox label{
    width: auto;
}

.item-checkbox input{ position: absolute; top: 3px; }

.item-checkbox label{ margin-left: 25px; }


/* Barra cookies */
/* line 2, base/_cookies.scss */
.cookies-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2247483648 !important;
    background-color: #0064a7;
    font-size: 12px;
  }
  .cookies-bar .container{
    width: 100%;
    max-width: 1278px;
    margin: 0 auto;
  }
  /* line 16, base/_cookies.scss */
  .cookies-bar * {
    box-sizing: border-box;
  }
  
  /* line 21, base/_cookies.scss */
  .cookies-bar-inner {
    display: block;
    width: 100%;
    padding: 20px 0;
    float: left;
  }
  
  /* line 28, base/_cookies.scss */
  .cookies-bar-message {
    display: block;
    width: 85%;
    height: auto;
    float: left;
    color: #fff;
    font-size: 1em;
    line-height: 22px;
  }
  
  /* line 38, base/_cookies.scss */
  .cookies-bar-buttons {
    display: block;
    float: right;
  }
  
  /* line 43, base/_cookies.scss */
  .cookies-bar-know-more {
    display: block;
    width: auto;
    height: 26px;
    padding: 0 20px;
    float: left;
    color: #9a9a9a;
    font-size: 1em;
    line-height: 26px;
    text-decoration: underline;
    transition: color 0.2s ease;
  }
  /* line 55, base/_cookies.scss */
  .cookies-bar-know-more:hover {
    color: white;
  }
  
  /* line 60, base/_cookies.scss */
  .cookies-bar-accept {
    display: block;
    width: auto;
    height: 26px;
    padding: 0 16px;
    float: left;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  /* line 77, base/_cookies.scss */
  .cookies-bar-accept:hover {
    border: 1px solid #fff;
    background-color: #fff;
    color: #000;
    text-decoration: none;
  }
  
  @media (max-width: 991px) {
    /* line 86, base/_cookies.scss */
    .cookies-bar-inner {
      padding: 10px;
    }
  
    /* line 90, base/_cookies.scss */
    .cookies-bar-message {
      height: auto;
    }
  
    /* line 94, base/_cookies.scss */
    .cookies-bar-buttons {
      float: left;
      clear: both;
    }
  
    /* line 99, base/_cookies.scss */
    .cookies-bar-know-more {
      padding-left: 0;
    }
  }
  /* Barra cookies END */
  .item-checkbox.erro input{
      color: red;
      box-shadow: 0px 0px 1px 0px;
      background: red;
  }

.item-checkbox a{
	color: #00a9e0;
}