﻿/*! HTML5 Boilerplate v5.3.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
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * 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.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    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
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/*fonts*/

@font-face {
    font-family: 'din';
    src: url('../fonts/din_black-webfont.woff2') format('woff2'),
         url('../fonts/din_black-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;

}




@font-face {
    font-family: 'din';
    src: url('../fonts/dinb___-webfont.woff2') format('woff2'),
         url('../fonts/dinb___-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;

}




@font-face {
    font-family: 'din';
    src: url('../fonts/dinl___-webfont.woff2') format('woff2'),
         url('../fonts/dinl___-webfont.woff') format('woff');
    font-weight: 100;
    font-style: normal;

}




@font-face {
    font-family: 'din';
    src: url('../fonts/dinm___-webfont.woff2') format('woff2'),
         url('../fonts/dinm___-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;

}




@font-face {
    font-family: 'din';
    src: url('../fonts/dinr___-webfont.woff2') format('woff2'),
         url('../fonts/dinr___-webfont.woff') format('woff');
    font-weight: 200;
    font-style: normal;

}

* {
    outline: none;
}

body {
    font-family: 'din', sans-serif;
    font-weight: 100;
    font-size: 18px;
    letter-spacing: -0.5px;
    padding-top: 100px;
    background: #000;
}

body a, body a:focus {
    color: #222;
    text-decoration: none;
}

body a:hover {
    color: #ea7e26;
}


.central {
    width: 1080px;
    margin: auto;
    max-width: 100%;
}

.central2 {
    width: 720px;
    margin: auto;
    max-width: 100%;
}

#overlay {
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 100;
    display: none;
}

.bgcinza {
    /* background: #f2f2f2; */
}

header {
    background: #222;
    top: 0;
    left: 0;
    height: 100px;
    z-index: 1000;
}
header .logo {width: 146px;height: 25px;background: url(../img/logochapada.png) center no-repeat;margin: 37.5px 0;position: relative;}
header .logo:before {
    content: url(../img/bgLaranja.jpg);
    position: absolute;
    right: 170px;
    top: -16px;
    /*width: 100px;*/
    display: none;
}
header .logo a {display: block;height: 100%;width: 100%;}
header .menu {/* margin: 42px 0; */}
header .menu nav {text-transform: uppercase;float: left;font-size: 16px;margin: 0 15px 0 0;/* line-height: 100px; */}
header .menu nav ul {}
header .menu nav ul li {
    float: left;
    /* margin: 0 0 0 35px; */
}
header .menu nav ul li {
    position: relative;
}
header .menu nav ul li.linksDrop:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: solid 15px transparent;
    border-bottom: solid 10px #fff;
    bottom: 0;
    left: 50%;
    margin-left: -15px;
    pointer-events:none;

    -webkit-transition: all 300ms cubic-bezier(0.250, 0.100, 0.250, 1.000); 
       -moz-transition: all 300ms cubic-bezier(0.250, 0.100, 0.250, 1.000); 
         -o-transition: all 300ms cubic-bezier(0.250, 0.100, 0.250, 1.000); 
            transition: all 300ms cubic-bezier(0.250, 0.100, 0.250, 1.000); /* ease (default) */

    -webkit-transition-timing-function: cubic-bezier(0.250, 0.100, 0.250, 1.000); 
       -moz-transition-timing-function: cubic-bezier(0.250, 0.100, 0.250, 1.000); 
         -o-transition-timing-function: cubic-bezier(0.250, 0.100, 0.250, 1.000); 
            transition-timing-function: cubic-bezier(0.250, 0.100, 0.250, 1.000); /* ease (default) */    

    -webkit-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
}
header .menu nav ul li.linksDrop:hover:after {
    /*display: block;*/

    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
}
header .menu nav ul li a {color: #ea7e26;padding: 42px 17px;display: block;}
header .menu nav ul li a:hover {color: #fff;}
header .menu nav ul li .seta {
    border: solid 15px transparent;
    border-top-color: #191919;
    position: absolute;
    top: 58px;
    margin: auto;
    left: 0;
    right: 0;
    width: 30px;
    z-index: 1;
    display: none;
}
header .menu nav ul li .submenu {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.35);
    border-bottom: solid 1px #222;
    display: none;
}
header .menu nav ul li .submenu .itens {
}
header .menu nav ul li .submenu .itens .item {
    width: 250px;
    float: left;
    margin: 40px 10px;
}
header .menu nav ul li .submenu .itens .item a {
    display: block;
    height: 100%;
}
header .menu nav ul li .submenu .itens .item .img {
    height: 130px;
    background-color: #000;
    border: solid 3px transparent;

    -webkit-opacity: 0.85;
    -moz-opacity: 0.85;
    -ms-opacity: 0.85;
    -o-opacity: 0.85;
    opacity: 0.85;

    background-size: cover!important;
}
header .menu nav ul li .submenu .itens .item.cozinha .img {
    background: url(../img/menu-cozinha.png) center no-repeat;
    background-size: cover;
}
header .menu nav ul li .submenu .itens .item.lar .img {
    background: url(../img/menu-lar.png) center no-repeat;
    background-size: cover;
}
header .menu nav ul li .submenu .itens .item.ventilacao .img {
    background: url(../img/menu-ventilacao.png) center no-repeat;
    background-size: cover;
}
header .menu nav ul li .submenu .itens .item.cuidados .img {
    background: url(../img/menu-cuidados.png) center no-repeat;
    background-size: cover;
}
header .menu nav ul li .submenu .itens .item:hover .img {
    border-color: #fff;

    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
}
header .menu nav ul li .submenu .itens .item h6 {
    text-align: center;
    font-size: 18px;
    font-weight: 100;
    margin: 15px 0 0 0;
}
header .menu .iconeBuscar {background: url(../img/busca.png) center no-repeat #111;width: 40px;height: 40px;margin: 20px 0;/* margin-top: -5px; */border-radius: 20px;}
header .menu .iconeBuscar a {
    display: block;
    height: 100%;
    width: 100$;
    position: relative;
}
header .menu .iconeBuscar a:after {
    content: "Buscar";
    position: absolute;
    bottom: -15px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 0px;
    width: 100%;
    text-align: center;
}
header .menu .listagemProdutosHdr {
    width: 100%;
    left: 0;
    top: 100px;
    background: rgba(255,255,255,0.9);
    padding: 40px 0;
    display: none;
}
header .menu .listagemProdutosHdr .lstProdutos {
    
}
header .menu .listagemProdutosHdr .lstProdutos .itmProduto {
    float: left;
    width: 100px;
    margin: 0 62px 30px 0;
    text-align: center;
}
header .menu .listagemProdutosHdr .lstProdutos .itmProduto a {
    display: block;
    color: #888;
}
header .menu .listagemProdutosHdr .lstProdutos .itmProduto a figure {
    width: 100px;
    height: 100px;
    border: solid 1px #ddd;
    background: #efefef;
}
header .menu .listagemProdutosHdr .lstProdutos .itmProduto:hover a figure {
    border-color: #ea7e26;
}
header .menu .listagemProdutosHdr .lstProdutos .itmProduto:hover a small {
    color: #ea7e26;
}
header .menu .listagemProdutosHdr .lstProdutos .itmProduto a figure img {
    display: block;
    mix-blend-mode: multiply;

    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}
header .menu .listagemProdutosHdr .lstProdutos .itmProduto a small {
    font-size: 14px;
    display: block;
    height: 20px;
    margin-top: 7px;
}
header .buscador {
    position: fixed;
    top: 100px;
    width: 100%;
    height: 80px;
    display: none;
}
header .buscador form {
    width: 100%;
    height: 100%;
}
header .buscador form input[type="text"] {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 24px;
    color: #777;
    padding: 0px;
    border-bottom: solid 1px #eee;
}
header .buscador form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0px;
    height: 100%;
    width: 110px;
    background: #f2f2f2;
}
header .buscador .fechar {
    width: 80px;
    height: 100%;
    text-align: center;
    right: 0px;
    color: #aaa;
    font-size: 40px;
    line-height: 70px;
    cursor: pointer;
}
header .blocoMenuMobile {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.95);
    left: 0;
    top: 0;
    z-index: 100;
    display: none;
}
header .blocoMenuMobile ul {
    list-style: none;
}
header .blocoMenuMobile > ul {
    text-indent: 20px;
    margin: 0px 0 0 0;
    height: 95%;
    overflow-y: auto;
}
header .blocoMenuMobile ul li {
    line-height: 2.8;
}
header .blocoMenuMobile ul li h5 {
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 20px 0 15px 0;
    color: #fff;
    font-size: 12px;
    border-top: solid 1px #ddd;
    background: #ea7e26;
}
header .blocoMenuMobile > ul > li > a {
    font-weight: 200;
    position: relative;
    border-top: dotted 1px rgba(0,0,0,0.1);
}
header .blocoMenuMobile > ul > li > a i {
    color: #ea7e26;
}
header .blocoMenuMobile > ul li ul {
    padding-left: 30px;
    display: none;
}
/*header .blocoMenuMobile ul li a:hover {
    background-color: #222!important;
}*/
header .blocoMenuMobile ul li > a {
    display: block;
    text-decoration: none;
}
header .blocoMenuMobile ul ul li a {
    color: #777;
}
header .blocoMenuMobile ul li .submenu {
    /* text-transform: uppercase; */
    text-indent: 55px;
    margin: 10px 0;
}
header .blocoMenuMobile ul li .submenu .itens {
    width: auto;
    padding: 0 0 0 0px;
}
header .blocoMenuMobile ul li .submenu .itens .helper {
    
}
header .blocoMenuMobile ul li .submenu .itens .item {
    border-left: solid 3px #fff;
    margin-bottom: 1px;
}
header .blocoMenuMobile ul li .submenu .itens .item a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 0;
}
header .blocoMenuMobile ul li .submenu .itens .item img {
    
}
header .blocoMenuMobile ul li .submenu .itens .item h6 {
    font-size: 18px;
    font-weight: 100;
}
header .blocoMenuMobile ul li .submenu .itens .item[data-titulo="Cozinha"] {
    border-color: #fedd3c;
    background: url(../img/icon-cozinha.png) 10px center no-repeat;
}
header .blocoMenuMobile ul li .submenu .itens .item[data-titulo="Cozinha"] a {
    color: #fedd3c;
}
header .blocoMenuMobile ul li .submenu .itens .item[data-titulo="Lar"] {
    border-color: #c44511;
    background: url(../img/icon-lar.png) 10px center no-repeat;
}
header .blocoMenuMobile ul li .submenu .itens .item[data-titulo="Lar"] a {
    color: #c44511;
}
header .blocoMenuMobile ul li .submenu .itens .item[data-titulo="Ventilacao"] {
    border-color: #08c9e3;
    background: url(../img/icon-ventilacao.png) 10px center no-repeat;
}
header .blocoMenuMobile ul li .submenu .itens .item[data-titulo="Ventilacao"] a {
    color: #08c9e3;
}
header .blocoMenuMobile ul li .submenu .itens .item[data-titulo="Cuidados pessoais"] {
    border-color: #c8c7c6;
    background: url(../img/icon-cuidados.png) 10px center no-repeat;
}
header .blocoMenuMobile ul li .submenu .itens .item[data-titulo="Cuidados pessoais"] a {
    color: #c8c7c6;
}
header .blocoMenuMobile .fechar {
    position: fixed;
    right: 10px;
    top: 7px;
    width: 35px;
    height: 35px;
    background: #222;
    color: #fff;
    line-height: 31px;
    text-align: center;
    font-size: 17px;
    cursor: pointer;
    border-radius: 100px;
}
.menuMobile {
    width: 30px;
    float: right;
    margin: 8px 0;
    display: none;
}
.menuMobile a {
    display: block;
}
.menuMobile .linha {
    height: 2px;
    background: #fff;
    margin: 7px 0px;
}

.slideshowHome {
    /*height: 500px;*/
    background: #eee;
    position: relative;
}
.slideshowHome .itens {height: 100%;width: 100%;overflow: hidden;}
.slideshowHome .itens .item {width: 100%;float: left;}
.slideshowHome .itens .item a.banner-mobile img {display: none;}
.slideshowHome .itens .item .helper {height: 100%;}
.slideshowHome .itens .item .helper .box {width: 400px;position: absolute;left: 50%;top: 30%;z-index: 1;}
.slideshowHome .itens .item .helper .box .titulo {height: 150px;background: #191919;}
.slideshowHome .itens .item .helper .box .titulo h3 {color: #fff;font-size: 53px;font-weight: 300;letter-spacing: -2px;padding: 20px 40px;}
.slideshowHome .itens .item .helper .box .link {height: 50px;background: #ccc;overflow: hidden;}
.slideshowHome .itens .item .helper .box .link a {
    display: block;
    line-height: 50px;
    font-size: 22px;
    text-decoration: none;
    text-indent: 40px;
}

.slideshowHome .itens .item.cozinha .box .link, .slideshowHome .itens .item.cozinha .q1 .q13 {
    background: #fedd3c;
}
.slideshowHome .itens .item.cozinha .q1 > * {
    border-color: #fedd3c;
}

.slideshowHome .itens .item.lar .box .link, .slideshowHome .itens .item.lar .q1 .q13 {
    background: #c44511;
}
.slideshowHome .itens .item.lar .q1 > * {
    border-color: #c44511;
}
.slideshowHome .itens .item.lar .box .link a {
    color: #fff;
}

.slideshowHome .itens .item.cuidados .box .link, .slideshowHome .itens .item.cuidados .q1 .q13 {
    background: #c8c7c6;
}
.slideshowHome .itens .item.cuidados .q1 > * {
    border-color: #c8c7c6;
}

.slideshowHome .itens .item.ventilacao .box .link, .slideshowHome .itens .item.ventilacao .q1 .q13 {
    background: #08c9e3;
}
.slideshowHome .itens .item.ventilacao .q1 > * {
    border-color: #08c9e3;
}

.slideshowHome .itens .item img {
    width: 100%;
}

.slideshowHome .seta {width: 50px;height: 80px;top: 50%;margin-top: -40px;cursor: pointer;display: none;background-size: 15px!important;}
.slideshowHome .seta.esq {background: url(../img/setaesq.png) 50% center no-repeat rgba(0,0,0,0.15);border-radius: 0 5px 5px 0;}
.slideshowHome .seta.dir {right: 0;background: url(../img/setadir.png) 50% center no-repeat rgba(0,0,0,0.15);border-radius: 5px 0 0 5px;}
.slideshowHome .pag {}
.slideshowHome .pag ul {

}
.slideshowHome .pag ul li {

}
.slideshowHome .pag ul li a {

}

.migalhasdepao {overflow: hidden;font-size: 17px;text-transform: uppercase;margin: 0 0 25px 0;color: #999;}
.migalhasdepao > * {
    float: left;
}
.migalhasdepao a {
    color: #999;
    text-decoration: underline;
}
.migalhasdepao span {}
.migalhasdepao .separador {
    margin: 0 10px;
}

.listagemProdutos {
}
.listagemProdutos.right {
    /*width: 800px;*/
}
.listagemProdutos .filtrosusados {
    clear: both;
    display: table;
    margin: 0 auto;
    margin-bottom: 30px;
}
.listagemProdutos .filtrosusados .filtro {
    float: left;
    padding: 5px 10px;
    background: #fff;
    color: #191919;
    margin: 0 3px;
    font-size: 16px;
    border: solid 2px;
    font-weight: 300;
}
.filtrosusados a {
    float: left;
    margin: 0 0 0 20px;
    line-height: 25px;
    /* color: red; */
    text-decoration: none;
    border-bottom: solid 2px;
    font-weight: 300;
}
.listagemProdutos ul {
    list-style: none;
    clear: both;
}
.listagemProdutos ul li {
    float: left;
    margin: 0 26px 40px 0;
    width: 250px;
    height: 400px;
    border-bottom: solid 1px #e5e5e5;
    text-align: center;
}
.listagemProdutos ul li.destaque {
    width: 45.5%;
    height: auto;
    margin-right: 35px;
    background: #eee;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;
}
.listagemProdutos ul li.destaque .img {
    height: 520px;
}
.listagemProdutos ul li.destaque .img img {
    
}
.listagemProdutos ul li.destaque h4 {
    font-size: 36px;
    padding: 0 30px;
    margin: 20px 0;
    height: 109px;
    text-align: center;
}
.listagemProdutos ul li.destaque .detalhes {
    padding: 0 50px;
}
.listagemProdutos ul li.destaque .detalhes .detalhe {
    clear: both;
    margin: 0 0 30px 0;
    overflow: hidden;
    text-align: left;
}
.listagemProdutos ul li.destaque .detalhes .detalhe figure {
    width: 120px;
    height: 120px;
    background: #fff;
    float: left;
    margin: 0 20px 0 0;
    -webkit-border-radius: 20px 0 20px 0;
    -moz-border-radius: 20px 0 20px 0;
    -ms-border-radius: 20px 0 20px 0;
    -o-border-radius: 20px 0 20px 0;
    border-radius: 20px 0 20px 0;
    border: solid 2px #ea7e26;
}
.listagemProdutos ul li.destaque .detalhes .detalhe figure img {
    width: 100%;
    height: auto;
}
.listagemProdutos ul li.destaque .detalhes .detalhe p {
    font-size: 21px;
    text-transform: uppercase;
    line-height: 1.3;
    padding: 40px 0;
    /* padding-right: 70px; */
}
.listagemProdutos ul li.destaque span {
    background:#e97e26;
    color: #fff;
    width: 230px;
    height: 50px;
    line-height: 50px;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 13px;
    text-align: center;
    text-transform: uppercase;
    margin: 50px auto;
    display: block;
    border-bottom: none!important;
}
.listagemProdutos ul li.destaque:hover span {
    background: #3d2e80;
}
.listagemProdutos ul li .novo {
    position: absolute;
    width: 55px;
    height: 30px;
    background: #fb7641;
    color: #fff;
    z-index: 1;
    text-transform: uppercase;
    text-align: right;
    line-height: 30px;
    font-size: 15px;
    padding: 0 10px 0 0;
    top: 15px;
}
.listagemProdutos ul li a {
    display: block;
    height: 100%;
    /* border: solid 3px transparent; */
    text-decoration: none;
}
.listagemProdutos ul li .img {
    width: 100%;
    height: 240px;
    /* background: #fff; */
    /* border: solid 3px transparent; */
    /* overflow: hidden; */
}
.listagemProdutos ul li:hover .img {
    /* border-color: #191919; */
}
.listagemProdutos ul li .img img {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 90%;
    max-height: 115%;
}
.listagemProdutos ul li h4 {
    font-size: 22px;
    /* text-align: center; */
    /* text-transform: uppercase; */
    margin: 10px 0;
    font-weight: 100;
    height: 50px;
    overflow: hidden;
    position: relative;
}
.listagemProdutos ul li p {
    font-size: 14px;
    color: #888;
}
.listagemProdutos ul li span {
    font-size: 14px;
    color: #e97e26;
    font-weight: 400;
    display: inline-block;
    margin: 5px 0;
    letter-spacing: 0px;
    border-bottom: solid 1px transparent;
}
.listagemProdutos ul li a:hover span {
    border-bottom: solid 1px #e97e26;
}
.listagemProdutos ul li.text-align-c {
    height: 330px;
}

.filtroProdutos {
    width: 230px;
    display: none;
}
.filtroProdutos h3 {font-weight: 100;font-size: 36px;margin: 0 0 30px 0;}
.filtroProdutos .blocoFiltro {border-bottom: solid 1px #d2d2d2;}
.filtroProdutos .blocoFiltro .titulo {padding: 20px 0px;overflow: hidden;cursor: pointer;}
.filtroProdutos .blocoFiltro .titulo span {float: right;font-size: 10px;color: #888;line-height: 18px;}
.filtroProdutos .blocoFiltro .titulo:hover span {color: #333;}
.filtroProdutos .blocoFiltro .titulo h6 {float: left;font-weight: 100;font-size: 18px;}
.filtroProdutos .blocoFiltro .cont {padding: 0px 0px 20px 20px;display: none;}
.filtroProdutos .blocoFiltro .cont label {display: block;overflow: hidden;padding: 1px;cursor: pointer;}
.filtroProdutos .blocoFiltro .cont label span {float: left;line-height: 25px;}
.filtroProdutos .blocoFiltro .cont label input[type="radio"] {float: left;margin: 7px 10px 0 0;}

.paginacao {
    padding: 0px 0px 50px 0;
}
.paginacao ul {
    list-style: none;
    display: table;
    margin: 0 auto;
}
.paginacao ul li {
    float: left;
    width: 50px;
    height: 50px;
    background: #dcdcdc;
    text-align: center;
    line-height: 50px;
}
.paginacao ul li:hover a, .paginacao ul li.current a {
    background: #191919;
    color: #fff;
}
.paginacao ul li a {
    text-decoration: none;
    display: block;
    height: 100%;
}

.listagemDicas {
    margin-top: 50px;
    margin-bottom: 50px;
}
.listagemDicas ul {
    list-style: none;
}
.listagemDicas ul li {
    height: 140px;
    overflow: hidden;
    margin: 0 0 1px 0;
    background: #f6f6f6;
}
.listagemDicas ul li a {
    display: block;
    height: inherit;
    text-decoration: none;
    color: #555;
}
.listagemDicas ul li:hover {
    background: #3d2e80;
}

/*.listagemDicas ul li.cozinha:hover .tit h3 {
    color: #fedd3c;
}
*/.listagemDicas ul li.cozinha .img {
    border-color: #fedd3c;
}
/*.listagemDicas ul li.lar:hover .tit h3 {
    color: #c44511;
}
*/.listagemDicas ul li.lar .img {
    border-color: #c44511;
}
/*.listagemDicas ul li.cuidados:hover .tit h3 {
    color: #c8c7c6;
}
*/.listagemDicas ul li.cuidados .img {
    border-color: #c8c7c6;
}
/*.listagemDicas ul li.ventilacao:hover .tit h3 {
    color: #00c1de;
}
*/.listagemDicas ul li.ventilacao .img {
    border-color: #00c1de;
}

.listagemDicas ul li:hover * {
    color: #fff;
}
.listagemDicas ul li a > * {
    float: left;
    width: 25%;
    height: inherit;
    position: relative;
}
.listagemDicas ul li a > * > * {vertical-align: middle;display: table-cell;height: inherit;}
.listagemDicas ul li .cat {
    
}
.listagemDicas ul li .cat h5 {font-size: 18px;text-transform: uppercase;text-align: center;width: 270px;font-weight: 300;}
.listagemDicas ul li .tit {
    
}
.listagemDicas ul li .tit h3 {font-weight: 100;font-size: 24px;padding-right: 15px;}
.listagemDicas ul li .resumo {
    
}
.listagemDicas ul li .resumo p {
    font-size: 16px;
}
.listagemDicas ul li .img {
    width: 95px;
    height: 95px;
    margin: 25px auto;
    display: block;
    border: solid 0px #191919;
    background: #fff;
}
.listagemDicas ul li .img img {
    height: auto;
    display: block;
}
.dicasBloco {
    margin: 30px 0 50px 0;
}
.dicasBloco .dicaBloco {
    padding: 0 20px;
}
.dicasBloco .dicaBloco figure {
    
}
.dicasBloco .dicaBloco figure img {
    
}
.dicasBloco .dicaBloco .text {
    padding-top: 30px;
}
.dicasBloco .dicaBloco .text h4 {
    color: #222;
    font-size: 36px;
}
.dicasBloco .dicaBloco .text p {
    color: #999;
    font-size: 22px;
    line-height: 1.2;
    margin: 10px 0;
}
.dicasBloco .dicaBloco .text p a {
    color: #ea7e26;
}
.dicasBloco .dicaBloco .text p a:hover {
    color: #222;
}
.dicasBloco .dicaBloco .text hr {
    
}
.dicasBloco .dicaBloco .text small {
    
}
.dicasBloco .dicaBloco .text small a {
    color: #ea7e26;
    text-decoration: underline;
    letter-spacing: 0px;
    display: block;
    line-height: 1.4;
}
.dicasBloco .dicaBloco .text small a:hover {
    color: #222;
}

.listagemMidia {
    margin-bottom: 40px;
    margin-top: 50px;
}
.listagemMidia .filtro {
    height: 120px;
    background: url(../img/bgfiltro.jpg) right center no-repeat #e7e7e7;
    padding: 40px 50px;
    margin: 50px 0;
}
.listagemMidia .filtro h5 {
    float: left;
    text-transform: uppercase;
    margin: 0 30px 0 0;
    line-height: 40px;
}
.listagemMidia .filtro form {
    
}
.listagemMidia .filtro form input[type="text"] {
    height: 40px;
    width: 310px;
    float: left;
    margin: 0 10px 0 0;
}
.listagemMidia .filtro form input[type="submit"] {
    width: 65px;
    height: 40px;
    background: #191919;
    color: #fff;
    font-weight: 400;
}
.listagemMidia .filtro form select {
    float: left;
    margin: 0 10px 0 0;
    height: 40px;
    background: #fff;
    width: 150px;
    text-indent: 10px;
}
.listagemMidia .filtro form select option {
    
}
.listagemMidia .filtro form * {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}
.listagemMidia ul {
    list-style: none;
}
.listagemMidia ul li {
    float: left;
    width: 350px;
    height: 420px;
    overflow: hidden;
    background: #191919;
    margin: 0 15px 15px 0;
    position: relative;
}
.listagemMidia ul li a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: #fff;
}
.listagemMidia ul li .img {
    width: 100%;
    height: 100%;
}
.listagemMidia ul li .txt {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    padding: 130px 40px 40px 40px;
    text-align: center;
    width: 100%;
}
.listagemMidia ul li .txt h3 {
    font-size: 48px;
    font-weight: 100;
    letter-spacing: -2px;
}
.listagemMidia ul li .txt small {
    font-size: 18px;
    color: #00c1de;
}

.headerInterna {
    height: 400px;
    background: #f2f2f2;
    margin: 0 0 50px 0;
    /*    -webkit-box-shadow:inset 0 0 100px rgba(0,0,0,0.5) ;
    -moz-box-shadow:inset 0 0 100px rgba(0,0,0,0.5) ;
    -ms-box-shadow:inset 0 0 100px rgba(0,0,0,0.5) ;
    -o-box-shadow:inset 0 0 100px rgba(0,0,0,0.5) ;
    box-shadow:inset 0 0 100px rgba(0,0,0,0.5) ;*/
}
.headerInterna .helper {
    bottom: 0;
    margin-left: -30px;
    width: 570px;
}
.headerInterna .novotitulo {text-align: left;padding-top: 115px;width: 50%;float: right;}
.headerInterna .novotitulo h5 {
    font-weight: 100;
    text-transform: uppercase;
    background: #e97e26;
    /* display: inline-block; */
    padding: 5px;
    color: #fff;
    letter-spacing: 3px;
    font-size: 16px;
    float: left;
}
.headerInterna.claro .novotitulo h5 {
    
}
.headerInterna.claro .novotitulo h3 {
    /* color: #3d2e80; */
    font-size: 36px;
    max-width: 810px;
    margin: 0 auto;
}
.headerInterna.claro .novotitulo h3 span {
    color: #ea7e26;
    font-weight: 300;
}
.headerInterna .novotitulo h3 {
    font-weight: 100;
    font-size: 44px;
    color: #fff;
    letter-spacing: -1px;
    /* display: inline-block; */
    float: left;
    clear: both;
    padding: 5px 10px;
    margin-top: 10px;
    /* mix-blend-mode: multiply; */
    background: rgba(0,0,0,0.8);
}
.headerInterna .helper .subtitulo {
    text-transform: uppercase;
    width: 300px;
    padding: 10px 0 10px 30px;
    background: #fff;
    font-weight: 200;
}
.headerInterna .helper .titulo {
    background: #191919;
    padding: 20px 30px;
}
.headerInterna .helper .titulo h3 {
    font-weight: 100;
    letter-spacing: -1px;
    color: #fff;
}
.headerInterna .helper .titulo .q2 {
    right: 90px;
    top: -10px;
}
#conteudo {
    /* margin-bottom: 50px; */
    background: #fff;
    padding-bottom: 50px;
    overflow: hidden;
}
#conteudo > article {
    
}
#conteudo article img + h3 {
    font-weight: 300;
    color: #222;
    text-align: center;
}
#conteudo > article .helper {
    color: #888;
}
#conteudo > article p {
    margin-bottom: 25px;
}
#conteudo h4.bgRoxo {
    background: #222;
    color: #fff;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 45px;
    text-align: center;
    padding: 10px;
    margin: 50px 0;
}
#conteudo > article > div > * {
    margin: 0 0 30px 0;
    max-width: 100%;
}
#conteudo > article p {
    line-height: 25px;
}
#conteudo > article p a {
    color: #00c1de;
    text-decoration: underline;
}
#conteudo > article .headerArtigo {
    margin-top: 50px;
}
#conteudo > article .headerArtigo h5 {
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
}
#conteudo > article .headerArtigo h3 {
    font-size: 48px;
    font-weight: 100;
    letter-spacing: -2px;
}


.headerInterna.cozinha .helper .subtitulo {
    background: #fedd3c;
}
.headerInterna.lar .helper .subtitulo {
    background: #c44511;
    color: #fff;
}
.headerInterna.ventilacao .helper .subtitulo {
    background: #00c1de;
    width: 300px;
}
.headerInterna.cuidados .helper .subtitulo {
    background: #c8c7c6;
}

.headerInterna.cozinha .helper .titulo .q2 * {border-color: #fedd3c;}
.headerInterna.lar .helper .titulo .q2 * {border-color: #c44511;}
.headerInterna.ventilacao .helper .titulo .q2 * {border-color: #00c1de;}
.headerInterna.cuidados .helper .titulo .q2 * {border-color: #c8c7c6;}

.produtosDestaque {overflow: hidden;background: #262626;}
.produtosDestaque article {
    height: 400px;
    /* color: #fff; */
}
.produtosDestaque article.esq {
    right:-30px;
}
.produtosDestaque article.dir {
    left:-30px;
}
.produtosDestaque article > * {
    height: 100%;
    float: left;
}
.produtosDestaque article .foto {padding: 40px 80px;}
.produtosDestaque article .foto .helper {
    z-index: 1;
}
.produtosDestaque article.dir .foto {float: right;}
.produtosDestaque article .foto .txt {margin: 0 0 20px 0;width: 50%;}
.produtosDestaque article .foto .txt h3 {margin: 0;color: #fff;font-weight: 100;font-size: 40px;}
.produtosDestaque article .foto .txt h3 strong {
    font-weight: 300;
    color: #ccc;
}
.produtosDestaque article .foto .cta {width: 250px;height: 60px;line-height: 60px;margin: 0 0 15px 0;}
.produtosDestaque article .foto .cta a {display: block;text-align: center;text-decoration: none;background: #ccc;text-transform: uppercase;font-weight: 500;font-size: 18px;}
.produtosDestaque article .foto .cta + a {color: #fff;font-size: 18px;}
.produtosDestaque article .foto .cta + a strong {}

.produtosDestaque article .foto .img {
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 385px;
    z-index: 1;
    overflow: hidden;
    height: 90%;
}
.produtosDestaque article .foto .img img {
}

.produtosDestaque article .foto .bg {top: 0;left: 0px;width: 100%;height: 100%;/* z-index: -1; */ background-color: #fff!important;}
.produtosDestaque article .foto .bg .opacidade {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
}
.produtosDestaque article .caracteristicas {background: #f2f2f2;padding: 40px 140px;}
.produtosDestaque article.esq .caracteristicas .seta {width: 0;height: 0;border: solid 30px transparent;top: 50%;margin-top: -30px;left: -50px;border-right-color: #f2f2f2;border-right-width: 20px;}
.produtosDestaque article.dir .caracteristicas .seta {width: 0;height: 0;border: solid 30px transparent;top: 50%;margin-top: -30px;right: -50px;border-left-color: #f2f2f2;border-left-width: 20px;}
.produtosDestaque article .caracteristicas h4 {font-size: 30px;margin: 0 0 25px 0;}
.produtosDestaque article .caracteristicas ul {list-style: none;font-size: 18px;}
.produtosDestaque article .caracteristicas ul li {margin: 0 0 12px 0;background: url(../img/check.png) left 3px no-repeat;padding: 0 0 0 30px;}

.produtosDestaque article.cozinha .foto .txt h3 strong {color: #fedd3c;}
.produtosDestaque article.lar .foto .txt h3 strong {color: #c44511;}
.produtosDestaque article.ventilacao .foto .txt h3 strong {color: #00c1de;display: block;}
.produtosDestaque article.cuidados .foto .txt h3 strong {color: #c8c7c6;}

.produtosDestaque article.cozinha .foto .cta a {background: #fedd3c;}
.produtosDestaque article.lar .foto .cta a {background: #c44511;}
.produtosDestaque article.ventilacao .foto .cta a {background: #00c1de;}
.produtosDestaque article.cuidados .foto .cta a {background: #c8c7c6;}

.destaquesHome {
    margin-top: 40px;
}
.destaquesHome section {
    
}
.destaquesHome section article {
    float: left;
    width: 25%;
    padding: 0 20px;
}
.destaquesHome section article > * {
    margin-bottom: 20px;
}
.destaquesHome section article figure {
    /* height: 340px; */
    background: #eee;
    overflow: hidden;
}
.destaquesHome section article figure a {
    display: block;
    height: 100%;
}
.destaquesHome section article figure img {
    width: 100%;
}
.destaquesHome section article small {
    color: #e97e26;
    text-transform: uppercase;
    font-size: 14px;
}
.destaquesHome section article h4 {
    font-size: 26px;
    font-weight: 100;
    color: #222;
    letter-spacing: -1px;
    height: 50px;
}
.destaquesHome section article p {
    line-height: 1.4;
    color: #7f7f7f;
    font-size: 17px;
}
.destaquesHome section article > a {
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    color: #222;
}
.destaquesHome section article > a:hover {
    color: #e97e26;
}
.destaquesHome section article > a:before {
    content: '>';
    /* float: left; */
    margin-right: 10px;
}
.destaquesHome section article hr {
    
}
.destaquesHome section article .link {
    
}
.destaquesHome section article .link a {
    background: #e97e26;
    display: block;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    padding: 15px;
}
.destaquesHome section article .link a strong {
    font-weight: 400;
}
.destaquesHome section article .link a:hover {
    background: #222;
}

.q1 > *, .q2 > * {
    width: 60px;
    height: 60px;
    border: solid 1px #fff;
}
.q1 {top: 25%;left: 50%;margin-left: 380px;}
.q1 .q11 {width: 80px;height: 80px;bottom: -20px;left: 30px;}
.q1 .q12 {width: 80px;height: 80px;bottom: -60px;right: -20px;}
.q1 .q13 {width: 40px;height: 40px;background: #fff;}
.q1 .q14 {bottom: 0px;right: 40px;}

.q2 {top: -20px;right: 70px;}

.q2 .q21 {top: 50px;left: -50px;}
.q2 .q22 {
    top: 40px;
    left: 40px;
}
.q2 .q23 {
    
}
.q2 .q24 {
    
}

.blocos {
    margin: 70px auto;
}
.dicasReceitas {
    width: 540px;
}
.dicasReceitas h6 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 200;
    margin: 0 0 15px 0;
}
.dicasReceitas section {
    width: 540px;
}
.dicasReceitas section article {
    height: 120px;
    background: #f2f2f2;
    margin: 0 0 10px 0;
    overflow: hidden;
}
.dicasReceitas section article a {
    display: block;
    text-decoration: none;
    height: 100%;
    padding: 0 0 0 40px;
}
.dicasReceitas section article h4 {
    font-size: 30px;
    font-weight: 300;
    padding-top: 25px;
}
.dicasReceitas section article small {
    font-size: 18px;
    margin: 5px 0 0 0;
    display: block;
}
.dicasReceitas section article .img {
    height: 100%;
    width: 185px;
    margin-right: -10px;
    -webkit-transform: skewX(-10deg);
    -moz-transform: skewX(-10deg);
    -ms-transform: skewX(-10deg);
    -o-transform: skewX(-10deg);
    transform: skewX(-10deg);
}
.dicasReceitas section article .img .helper {
    height: 100%;
    -webkit-transform: skewX(10deg);
    -moz-transform: skewX(10deg);
    -ms-transform: skewX(10deg);
    -o-transform: skewX(10deg);
    transform: skewX(10deg);
}
.dicasReceitas section article .img .helper img {
    width: 140%;
    max-width: none;
    margin-left: -10px;
    /*margin-top: -20px;*/
    background: #ddd;
}

.dicasReceitas section article.cozinha:hover {
    background: #fedd3c;
}
.dicasReceitas section article.lar:hover {
    background: #c44511;
}
.dicasReceitas section article.lar:hover * {
    color: #fff;
}
.dicasReceitas section article.ventilacao:hover {
    background: #00c1de;
}
.dicasReceitas section article.cuidados:hover {
    background: #c8c7c6;
}

.dicasReceitas section + a {float: right;}

.midia {
    width: 510px;
}
.midia h6 {font-size: 18px;text-transform: uppercase;font-weight: 200;margin: 0 0 15px 0;}
.midia section {
    height: 380px;
    background: #f2f2f2;
    margin: 0 0 10px 0;
    overflow: hidden;
}
.midia section article {
    height: 380px;
    float: left;
    width: 100%;
}
.midia section article .relative {
    height: 100%;
}
.midia section article .relative a {
    display: block;
    height: 100%;
    overflow: hidden;
}
.midia section article .relative img {
    width: 100%;
}
.midia section article .relative .txt {
    width: 100%;
    height: 230px;
    bottom: 0px;
    padding: 40px;
    background: url(../img/bgfade1.png) bottom left repeat-x;
}
.midia section article .relative .txt h3 {
    color: #fff;
    font-weight: 100;
    letter-spacing: -1px;
    position: absolute;
    bottom: 40px;
}
.midia section + a {
    float: right;
}

.headerAtendimento {
    height: 730px;
    background: url(../img/bgazulcortado.png) right center no-repeat #eee;
    margin-bottom: 40px;
}
.headerAtendimento > .central {
    /* border-bottom: solid 3px #221c51; */
}
.headerAtendimento .txts {
    padding-top: 100px;
}
.headerAtendimento .txts form {
    display: none;
}
.headerAtendimento .txts form select {
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin: 0 0 10px 0;
}
.headerAtendimento .txts form select option {
    
}
.headerAtendimento .txts h3 {
    font-size: 48px;
    font-weight: 100;
    letter-spacing: -3px;
    color: #3d2e80;
}
.headerAtendimento .txts h3 + p {
    font-size: 24px;
    line-height: 1.3;
    padding-right: 120px;
    color: #888;
}
.headerAtendimento .txts hr {
    margin: 20px 0;
}
.headerAtendimento .txts p {
    font-size: 24px;
    letter-spacing: -1px;
    margin: 20px 0;
    line-height: 1.3;
    color: #888;
    padding-right: 120px;
}
.headerAtendimento .txts p strong {
    font-weight: 300;
}
.headerAtendimento .txts .pdf {
    background: #fff;
    padding: 15px 30px 30px 30px;
    border: solid 1px #bbb;
    border-bottom-width: 5px;
}
.headerAtendimento .txts .pdf p {
    font-size: 17px;
    line-height: 23px;
    padding: 15px 0 0 0;
    margin: 0;
    color: #616161;
}
.headerAtendimento .txts .pdf img {
    float: left;
    margin: 0 20px 0 0;
}
.headerAtendimento .mapa {
    padding-top: 50px;
}
.headerAtendimento .mapa svg {right: 0;position: absolute;}
.headerAtendimento .mapa svg a {}
.headerAtendimento .mapa svg a path {
    fill: #f5f5f5;
    -webkit-transition: all 300ms cubic-bezier(0.250, 0.100, 0.250, 1.000);
    -moz-transition: all 300ms cubic-bezier(0.250, 0.100, 0.250, 1.000);
    -o-transition: all 300ms cubic-bezier(0.250, 0.100, 0.250, 1.000);
    transition: all 300ms cubic-bezier(0.250, 0.100, 0.250, 1.000); /* ease (default) */
    -webkit-transition-timing-function: cubic-bezier(0.250, 0.100, 0.250, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.250, 0.100, 0.250, 1.000);
    -o-transition-timing-function: cubic-bezier(0.250, 0.100, 0.250, 1.000);
    transition-timing-function: cubic-bezier(0.250, 0.100, 0.250, 1.000); /* ease (default) */
}
.headerAtendimento .mapa svg a:hover path {
    fill: #eb8234;
}
.headerAtendimento .mapa svg a:hover text {
    fill: #fff!important;
}
.headerAtendimento .mapa svg text {
    font-size: 12px;
    fill: #191919!important;
}

.cidades {
    
}
.cidades .cidade {
    margin-bottom: 1px;
    overflow: hidden;
}
.cidades .cidade h4 {
    height: 50px;
    line-height: 50px;
}
.cidades .cidade h4 a {
    color: #444;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 200;
    display: block;
    height: 100%;
    text-indent: 20px;
    background: #eee;
}
.cidades .cidade h4 a:hover, .cidades .cidade.on h4 a {
    background: #e97e26;
    color: #fff;
}
.cidades .cidade .itens {
    display: none;
    margin: 10px 0 20px 0;
}
.cidades .cidade .itens .item {
    height: 200px;
    border: solid 1px #ddd;
    margin: 0 0 10px 0;
}
.cidades .cidade .itens .item > * {
    float: left;
}
.cidades .cidade .itens .item h3 {
    width: 25%;
    padding: 50px 40px;
    font-weight: 100;
    letter-spacing: -1px;
    padding-bottom: 0;
    font-size: 20px;
    color: #3e307b;
}
.cidades .cidade .itens .item .dados {
    width: 50%;
    padding: 40px 0;
    color: #888;
    font-size: 16px;
}
.cidades .cidade .itens .item .dados p {
    line-height: 40px;
    padding: 0 0 0 45px;
}
.cidades .cidade .itens .item .dados .end {background: url(../img/icone-local.png) 5px center no-repeat;}
.cidades .cidade .itens .item .dados .ema {
    background: url(../img/icone-at.png) 0px center no-repeat;
}
.cidades .cidade .itens .item .dados .tel {
    background: url(../img/icone-fone.png) 3px center no-repeat;
}
.cidades .cidade .itens .item .gMaps {
    width: 25%;
    text-align: center;
    padding-top: 20px;
}
.cidades .cidade .itens .item .gMaps img {
    
}
.cidades .cidade .itens .item .gMaps small {
    display: block;
    padding: 0 60px;
    font-size: 18px;
    margin-top: 15px;
}

#conteudo.contato {
    padding-top: 50px;
}
#conteudo.contato article {
    width: 660px;
}
#conteudo.contato article h3 {
    font-size: 40px;
    font-weight: 100;
    letter-spacing: -3px;
    color: #222;
}
#conteudo.contato article h5 {
    font-size: 24px;
    font-weight: 100;
    letter-spacing: -1px;
    margin: 15px 0;
    line-height: 1.3;
}
#conteudo.contato article small {
    font-size: 18px;
    color: #f19393;
}
#conteudo.contato article form {
    margin: 30px 0 0 0;
}
#conteudo.contato article form label {
    display: block;
    text-transform: uppercase;
    font-weight: 100;
    margin: 0 0 5px 0;
    color: #555;
    font-size: 14px;
}
#conteudo.contato article form textarea {
    height: 140px;
}
#conteudo.contato article form input[type="text"], #conteudo.contato article form input[type="email"] {
    width: 100%;
    /* background: #f2f2f2; */
    height: 50px;
    line-height: 50px;
    margin: 0 0 20px 0;
    border: solid 1px #ccc;
    border-radius: 5px;
}
#conteudo.contato article form input[type="submit"] {
    background: #ea7e26;
    color: #fff;
    text-align: center;
    height: 50px;
    width: 100%;
    text-transform: uppercase;
    /* font-weight: 300; */
    letter-spacing: 10px;
}
#conteudo.contato aside {
    width: 350px;
}
#conteudo.contato aside > * {
    margin-bottom: 20px;
}
#conteudo.contato aside .gmapa {
    height: 440px;
}
#conteudo.contato aside .gmapa iframe {
    width: 100%;
    height: 100%;
}
#conteudo.contato aside p {
    
}
#conteudo.contato aside h3 {
    font-weight: 100;
}
#conteudo.contato aside hr {
    border-top: solid 1px #ddd;
}
#conteudo.contato aside .banner {
    
}

.produto {
    
}
.produto > h3 {
    font-size: 48px;
    font-weight: 100;
    letter-spacing: -2px;
    margin: 0 0 10px 0;
    color: #3d2e80;
}
.produto > h3 + p {
    font-size: 24px;
    color: #949494;
    margin: 0 0 40px 0;
}
.produto .desc {
    margin-bottom: 50px;
}
.produto .desc .slideshowProduto {
    width: 585px;
    height: 585px;
    margin: 0 100px 0 0;
}
.produto .desc .slideshowProduto .itens {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: solid 1px transparent;
}
.produto .desc .slideshowProduto .itens .item {
    float: left;
}
.produto .desc .slideshowProduto .itens .item .img {
    text-align: center;
}
.produto .desc .slideshowProduto .itens .item .img img {
    width: auto;
    max-height: 540px;
}
.produto .desc .slideshowProduto .seta {
    width: 125px;
    height: 50px;
    background: #eee;
    color: #999;
    bottom: 0px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    font-size: 16px;
}
.produto .desc .slideshowProduto .seta.esq {
    left: 0;
}
.produto .desc .slideshowProduto .seta.dir {
    right: 0;
}
.produto .desc .slideshowProduto .thumbs {
    position: absolute;
    right: -85px;
    z-index: 100;
    width: 80px;
    top: -30px;
    -webkit-transform: scale(0.8);
    /* zoom: 0.8; */
}
.produto .desc .slideshowProduto .thumbs ul {
    list-style: none;
    /* max-height: 100px; */
    overflow: hidden;
}
.produto .desc .slideshowProduto .thumbs ul li {
    height: 80px;
    width: 80px!important;
    margin: 0 0 10px 0!important;
    border: solid 2px #e8e8e8;
    background: #fff;
}
.produto .desc .slideshowProduto .thumbs ul li a {
    display: block;
}
.produto .desc .slideshowProduto .thumbs ul li img {
    -webkit-opacity: 0.3;
    -moz-opacity: 0.3;
    -ms-opacity: 0.3;
    -o-opacity: 0.3;
    opacity: 0.3;
    /* padding: 5px; */
    width: 100%;
}
.produto .desc .slideshowProduto .thumbs ul li.slick-current {
    border-color: #ea7e26;
}
.produto .desc .slideshowProduto .thumbs ul li.slick-current img, .produto .desc .slideshowProduto .thumbs ul li:hover img {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
} 
.produto .desc .slideshowProduto ~ * {
    display: inline-block;
    width: 390px;
    /* margin: 15px 0; */
}
.produto .desc .slideshowProduto + h5 {
    /* padding-top: 40px; */
    color: #3d2e80;
}
.produto .desc .videoProduto {
    margin-bottom: 30px;
    /*display: none!important;*/
}
.produto .desc .videoProduto iframe {
    width: 100%;
    height: 230px;
}
.produto h5, .produto + h5 {
    font-size: 30px;
    font-weight: 100;
    margin: 0 0 20px 0;
}
.produto .desc h5 + ul {
    /* list-style: none; */
    font-size: 16px;
    /* padding: 0 0 0 10px; */
    color: #999;
    /* list-style-position: inside; */
    padding: 0 0 0 25px;
}
.produto .desc h5 + ul li {
    margin: 0 0 10px 0;
    /* background: url(../img/check.png) left 3px no-repeat; */
    /* padding: 0 0 0 30px; */
    /* float: left; */
    line-height: 1.2;
}
.produto .desc .comprar {
    width: 360px;
    height: 75px;
    background: #222;
}
.produto .desc .comprar ~ a {
    text-decoration: underline;
    line-height: 23px;
    font-size: 17px;
}
.produto .desc .comprar a {
    display: block;
    height: 100%;
    text-align: center;
    background: url(../img/cart.png) -10% 43% no-repeat #00c1de;
    border-bottom: solid 5px #009ab1;
    color: #fff;
    line-height: 70px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 24px;
}
.produto .desc .comprar a:hover {
    background-color: #aedf3a;
    border-bottom-color: #8eb62e;
    color: #191919;
    text-indent: 30px;
    background-position: 30% 43%;
}
.produto .desc .comprar + a {
    width: 360px;
    margin: 20px 0 0 0;
    font-weight: 300;
    text-align: center;
}
.produto .desc hr {
    margin: 15px 0;
}
.produto .icones {
    /* display: table!important; */
    /* margin: 0 auto; */
    /* width: auto!important; */
    font-size: 15px;
}
.produto .icones .icone {
    
}
.produto .icones .icone a {
    
}
.produto .icones .icone a i {
    float: left;
    margin: 0 10px 0 0;
    color: #ea7e26;
}
.produto .icones .icone a span {
    color: #474747;
    text-transform: uppercase;
    font-weight: 300;
}

.helper .balao {
    text-align: center;
    width: 200px;
    font-size: 14px;
    background: #000;
    padding: 10px;
    color: #fff;
    margin-left: -100px;
    left: 50%;
    top: -60px;
    display: none;
}
.helper:hover .balao {
    display: block;
}
.helper .balao .seta {
    position: absolute;
    width: 0;
    height: 0;
    border: solid 8px transparent;
    border-top-color: #000;
    bottom: -14px;
    left: 50%;
    margin-left: -8px;
}

.produto .icones .icone {
    margin: 0 0 15px 0;
    width: 50%;
}
#conteudo.pageProduto {
    /* margin-top: 50px; */
    padding-top: 40px;
}
.dadosProduto {
    margin-bottom: 50px;
}
.dadosProduto table {
    width: 100%;
}
.dadosProduto table tr {line-height: 50px;text-indent: 20px;}
.dadosProduto table tr * {
    font-weight: 100;
}
.dadosProduto table tr:nth-child(even) {
    background: #f7f7f7;
}
.dadosProduto table tr:nth-child(odd) {
    background: #efefef;
}
.imgsConceito {
    margin-bottom: 50px;
}
.imgsConceito h3 {

}
.imgsConceito .img {
    /*height: 450px;*/
    font-size: 48px;
    letter-spacing: -2px;
}
.imgsConceito .img img {
    width: 100%;
    height: auto;
}
.imgsConceito .img .align-r {
    text-align: right;
}
.imgsConceito .img .align-l {
    text-align: left;
}
.imgsConceito .img p {
    line-height: 45px;
    height: 450px;
    vertical-align: middle;
    display: table-cell;
    width: 1080px;
    max-width: 100%;
}
.demaisprodutos {
    text-align: center;
    padding: 0 50px;
    margin-top: 70px;
}
.demaisprodutos h5 {
    font-size: 30px;
    font-weight: 100;
    color: #3d2e80;
}
.demaisprodutos ul {
    list-style: none;
    margin-top: 40px;
}
.demaisprodutos ul li {
    float: left;
    width: 14.2%;
    margin: 0 0 50px 0;
    height: 130px;
}
.demaisprodutos ul li a {
    display: block;
    text-decoration: none;
}
.demaisprodutos ul li .img {
    width: 100px;
    height: 100px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    background: #efefef;
    border: solid 1px transparent;
    -webkit-transform: rotate(0.000001deg);
}
.demaisprodutos ul li .img img {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 0;
    margin-left: -63px;
    max-width: 130%;
}
.demaisprodutos ul li:hover .img img {
    /*bottom:10px;*/
}
.demaisprodutos ul li:hover a {
    /*color: #00c1de;*/
}
.demaisprodutos ul li h6 {
    font-size: 15px;
    font-weight: 100;
    padding: 0 20px;
    color: #888;
    padding-top: 10px;
}
.demaisprodutos ul li a:hover .img {
    border-color: #e97e26;
}
.demaisprodutos ul li a:hover h6 {
    color: #e97e26;
}

/*landing*/
.landing {
    margin-top: 0!important;
}
.landing .infosProdutoHd {padding: 0 0 30px 0;}
.landing .infosProdutoHd .left {

}
.landing .infosProdutoHd .left .migalhasdepao {
    margin-bottom: 15px;
}
.landing .infosProdutoHd .left h3 {
    font-size: 30px;
    color: #3d2e80;
    font-weight: 100;
}
.landing .infosProdutoHd .right span {
    width: 150px;
    text-align: right;
    float: left;
    color: #999;
    padding: 7px 0;
}
.landing .infosProdutoHd .right .botao {
    float: right;
    width: 220px;
    height: 50px;
    margin-left: 20px;
}
.landing .infosProdutoHd .right .botao a {display: block;height: 100%;text-align: center;line-height: 50px;background: #3d2e80;color: #fff;text-transform: uppercase;font-size: 14px;font-weight: 300;}
.landing .infosProdutoHd .right .botao a:hover {
    background: #ea7e26;
}
.landing .videoFull {height: 600px;}
.landing .videoFull iframe {width: 100%;height: 100%;}
.landing .tiras {width: 100%;height: 10px;}
.landing .tiras .tira {float: left;width: 25%;height: 100%;}
.landing .tiras .tira.tira1 {background: #f59e2d;}
.landing .tiras .tira.tira2 {background: #eb8234;}
.landing .tiras .tira.tira3 {background: #3d2e80;}
.landing .tiras .tira.tira4 {background: #221c51;}
.landing .features {clear: both;overflow: hidden;display: table;margin: 70px auto;text-align: center;}
.landing .features .feature {float: left;width: 245px;margin: 0 65px;}
.landing .features .feature figure {
    -webkit-border-radius: 90px;
    -moz-border-radius: 90px;
    -ms-border-radius: 90px;
    -o-border-radius: 90px;
    border-radius: 90px;

    overflow: hidden;
}
.landing .features .feature figure img {

}
.landing .features .feature h4 {font-weight: 100;color: #3d2e80;font-size: 36px;letter-spacing: -2px;line-height: 1.1;margin: 20px 0;}
.landing .features .feature p {color: #888;font-size: 21px;line-height: 1.2;}
.landing .caracteristicas {margin-bottom: 60px;}
.landing .caracteristicas ul {
    list-style: none;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    -ms-column-count: 2;
    -o-column-count: 2;
    column-count: 2;

    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    -ms-column-gap: 50px;
    -o-column-gap: 50px;
    column-gap: 50px;
    /* line-height: 2; */
    color: #888;
}
.landing .caracteristicas ul li {margin: 0 0 25px 0;padding: 0 0 0 30px;background: url(../img/check.png) left 4px no-repeat;line-height: 1.3;}
.landing .outrasInfos {margin-bottom: 50px;}
.landing .outrasInfos .left {width: 50%;}
.landing .outrasInfos .left .selos {position: static;margin: 0;width: auto;}
.landing .outrasInfos .left .selos a {float: left;/* max-width: 100px; */}
.landing .outrasInfos .left .selos a img {max-height: 70px;}
.landing .outrasInfos .right {width: 50%;}
.landing .outrasInfos .right .icones {

}
.landing .outrasInfos .right .icones .icone {width: 50%;margin-bottom: 15px;}
.landing .outrasInfos .right .icones .icone a {

}
.landing .outrasInfos .right .icones .icone a i {color: #ea7e26;float: left;margin-right: 10px;}
.landing .outrasInfos .right .icones .icone a span {text-transform: uppercase;font-size: 14px;font-weight: 300;color: #666;}

.bannerRetangular {margin: 60px 0;clear: both;display: none;}
.bannerRetangular a {

}
.bannerRetangular a img {

}
.marcas {background: #f2f2f2;overflow: hidden;padding: 40px 0;}
.marcas ul {list-style: none;}
.marcas ul li {float: left;width: 12%;height: 40px;text-align: center;}
.marcas ul li a {display: block;height: 100%;padding: 5px 0px;

    -webkit-opacity:0.5 ;
    -moz-opacity:0.5 ;
    -ms-opacity:0.5 ;
    -o-opacity:0.5 ;
    opacity:0.5 ;
}
.marcas ul li a:hover {
    -webkit-opacity:1 ;
    -moz-opacity:1 ;
    -ms-opacity:1 ;
    -o-opacity:1 ;
    opacity:1 ;    
}

.zoomProduto {
    background: rgba(0,0,0,0.85);
    top: 0;
    left: 0;
    z-index: 2000;
    display: none;
}
.zoomProduto .content {
    width: 1200px;
    max-width: 100%;
    position: relative;
    margin: 40px auto;
    background: #fff;
}
.zoomProduto .content .fechar {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.1);
    color: #888;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
    font-size: 24px;
    right: 0;
    top: 0;
    font-weight: 300;
}
.zoomProduto .content .img {text-align: center;}
.zoomProduto .content .img img {

}

.interessou {text-align: center;}
.interessou .helper {
    padding: 30px 0;
}
.interessou hr {

}
.interessou h4 {font-weight: 100;font-size: 30px;margin-bottom: 15px;color: #3d2e80;}
.interessou .botao {width: 220px;height: 50px;margin: 0 auto;}
.interessou .botao a {display: block;height: 100%;background: #e97e26;color: #fff;font-size: 14px;text-transform: uppercase;line-height: 50px;font-weight: 300;letter-spacing: 0;}
.interessou .botao a:hover {
    background: #3d2e80;
}

.column2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    -ms-column-count: 2;
    -o-column-count: 2;
    column-count: 2;

    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    -ms-column-gap: 50px;
    -o-column-gap: 50px;
    column-gap: 50px;
}

.ondecomprar {

}
.ondecomprar .aplicacao {height: 460px;overflow: hidden;}
.ondecomprar .aplicacao .left {

}
.ondecomprar .aplicacao .left #mapaMallory {
    width: 100%;
    height: 100%;
}
.ondecomprar .aplicacao .right {
    background: #3d2e80;
    color: #fff;
}
.ondecomprar .aplicacao .right .helper {
    padding: 30px 60px;
}
.ondecomprar .aplicacao .right .helper > a {display: block;color: #ececec;text-decoration: underline;}
.ondecomprar .aplicacao .right .helper > a i {color: #e97e26;font-size: 25px;float: left;margin: -5px 7px 0 0;}
.ondecomprar .aplicacao .right .helper > a:before {
}
.ondecomprar .aplicacao .right .helper > * {
    margin-bottom: 25px;
}
.ondecomprar .aplicacao .right span {display: block;color: #7f62ff;margin-bottom: 10px!important;}
.ondecomprar .aplicacao .right form {margin-bottom: 0!important;}
.ondecomprar .aplicacao .right form fieldset {

}
.ondecomprar .aplicacao .right form fieldset > * {
    float: left;
    height: 50px;
}
.ondecomprar .aplicacao .right form select {width: 38%;margin-right: 1%;background: #2c215d;font-size: 16px;color: #a69eca;text-indent: 10px;}
.ondecomprar .aplicacao .right form select option {

}
.ondecomprar .aplicacao .right form input[type="submit"] {width: 20%;background: #e97e26;}
.ondecomprar .aplicacao .right .resultados {

}
.ondecomprar .aplicacao .right .resultados > p {
    text-align: center;
}
.ondecomprar .aplicacao .right .resultados ul {height: 280px;overflow-y: auto;}
.ondecomprar .aplicacao .right .resultados ul li {border-top: solid 1px #111;}
.ondecomprar .aplicacao .right .resultados ul li a {display: block;padding: 24.5px 60px;}
.ondecomprar .aplicacao .right .resultados ul li a:hover {
    background: #2a1f5d;
}
.ondecomprar .aplicacao .right .resultados ul li a h5 {color: #e97e26;font-weight: 100;font-size: 24px;margin-bottom: 5px;}
.ondecomprar .aplicacao .right .resultados ul li a small {display: block;color: #fbfbfb;text-transform: uppercase;font-size: 12px;letter-spacing: 0;}
.ondecomprar .iw-toolbar {
    background-color: orange;
}
.revendas {
    
}
.revendas > div > h3 {
    text-align: center;
    font-weight: 100;
    color: #3d2e80;
    font-size: 36px;
}
.revendas > div > p {
    text-align: center;
    font-size: 24px;
    color: #ea7e26;
}
.revendas .listagem {
    
}
.revendas .listagem ul {
    list-style: none;
    /* overflow: hidden; */
    width: 110%;
}
.revendas .listagem ul li {
    float: left;
    text-align: center;
    margin: 0 16px 30px 0;
}
.revendas .listagem ul li a {
    display: block;
}
.revendas .listagem ul li figure {
    width: 256px;
    height: 137px;
    margin-bottom: 10px;
    border: solid 1px #f5f5f5;
}
.revendas .listagem ul li:hover figure {
    border-color: #ea7e26;
}
.revendas .listagem ul li figure img {
    width: 100%;
}
.revendas .listagem ul li h5 {
    font-size: 24px;
    font-weight: 100;
    line-height: 1;
}
.revendas .listagem ul li small {
    color: #bbb;
    border-bottom: solid 1px;
}
.revendas .listagem ul li:hover small {
    color: #ea7e26;
}


footer {
    background: #222;
    padding: 50px 0 40px 0;
}
footer a {
    color: #fff;
}
footer .menufooter {
    font-size: 13px;
    text-transform: uppercase;
    overflow: hidden;
    letter-spacing: 0px;
}
footer .menufooter ul {
    float: left;
    width: 50%;
    line-height: 25px;
}
footer .menufooter ul li {
    
}
footer .menufooter ul li h5 {
    color: #fff;
    margin: 0 0 10px 0;
}
footer .menufooter ul li a {
    color: #fff;
    display: block;
}
footer .menufooter ul li a:hover {
    color: #ea7e26;
}
footer .infos {
    overflow: hidden;
    margin: 120px 0 0 0;
}
footer .infos > * {
    float: left;
}
footer .infos .logofooter {
    
}
footer .infos .logofooter a {
    
}
footer .infos .logofooter a img {
    
}
footer .infos .separador {
    color: #fff;
    font-size: 30px;
    font-weight: 100;
    margin: 0 20px;
}
footer .infos .social {
    font-size: 25px;
}
footer .infos .social ul {
    
}
footer .infos .social ul li {
    float: left;
    margin: 0 5px;
}
footer .infos .social ul li a {
    color: #fff;
}
footer .infos .social ul li a:hover {
    color: #ea7e26;
}
footer .infos .taurus {
    
}
footer .infos .taurus a {
    
}
footer .infos .taurus a img {
    
}
footer .catalogo .fotoCatalogo {
    width: 220px;
    height: 310px;
    /* background: #fff; */
    margin: 0 55px 0 0;
    overflow: hidden;
}
footer .catalogo .fotoCatalogo a {
    
}
footer .catalogo .fotoCatalogo a img {
    border-right: solid 3px #fff;
    border-bottom: solid 2px #fff;
    box-shadow: 0 0 50px rgba(0,0,0,0.3);
}
footer .catalogo .fotoCatalogo + h4 {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 10px 0;
}
footer .catalogo p {
    color: #fff;
    /* font-size: 30px; */
    /* text-transform: uppercase; */
    line-height: 1.4;
    margin-bottom: 30px;
}
footer .catalogo p strong {
    color: #fff;
}
footer .catalogo a {
    /* display: block; */
}
footer .catalogo p + a {
    color: #fff;
    text-decoration: underline;
    margin: 20px 0;
}
footer .catalogo p + a:hover {
    /* color: #ea7e26; */
}
footer .catalogo p + a + a {
    text-align: right;
    text-decoration: underline;
    margin-top: 115px;
}
.formrodape {background: #ea7e26;padding: 40px 0 30px 0;color: #fff;}
.formrodape h4 {font-size: 22px;font-weight: 100;color: #ea7e26;margin: 0 0 10px 0;}
.formrodape p {line-height: 1.4;font-size: 15px;color: #fff;}
.formrodape form {font-size: 15px;}
.formrodape form fieldset {
    float: left;
    width: 33.33%;
    padding-right: 10px;
}
.formrodape form input[type="text"], .formrodape form input[type="tel"], .formrodape form input[type="email"] {background: #d06d1d;float: left;width: 100%;margin-bottom: 10px;line-height: 30px;}
.formrodape form input[type="submit"] {clear: both;float: right;background: #222222;color: #ea7e26;text-transform: uppercase;font-size: 15px;font-weight: 400;padding: 12px 43px 12px 43px;}
.formrodape form textarea {background: #d06d1d;float: right;width: 33.33%;height: 110px;}
.formrodape .left {
    width: 25%;
    padding-right: 20px;
    padding-top: 0px;
}
.formrodape .right {
    width: 75%;
}



/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.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
 */

.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
 */

.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
 */

.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.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.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: 1500px){
    .headerInterna {
        height: 550px;
    }
}

@media only screen and (max-width: 1350px){
    .produtosDestaque article {
        right: 0!important;
        left: 0!important;
    }
    .produtosDestaque article .foto .txt h3 {
        font-size: 36px;
    }
}

@media only screen and (max-width: 1250px){
    .produtosDestaque article > * {
        width: 100%;
    }
    .produtosDestaque article .foto .txt h3 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 1200px){
    body {
        padding-top: 50px;
    }
    .central {
        width: 100%;
        padding: 0 15px;
    }
    header {
        height: 50px;
    }
    header .logo {
        margin: 12.5px 0;
    }
    header .menu nav {
        display: none;
    }
    header .menu {
        /*margin: 30px 0;*/
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        -o-transform: scale(0.7);
        transform: scale(0.7);
    }
    header .buscador {
        top: 50px;
        height: 60px;
        font-size: 10px;
    }
    header .buscador .fechar {
        font-size: 30px;
        line-height: 55px;
        color: #f53333;
    }
    header .buscador form input[type="text"] {
        font-size: 18px;
    }
    header .menu .iconeBuscar {
        margin: 0 0 0 10px;
    }
    .slideshowHome .seta {
        width: 50px;
    }
    .headerInterna {
        margin-bottom: 30px;
    }
    .headerAtendimento {
        background: #f2f2f2;
        height: auto;
    }
    #conteudo > article h1,
    #conteudo > article h2,
    #conteudo > article h3,
    #conteudo > article h4,
    #conteudo > article h5,
    #conteudo > article h6 {
        zoom: 0.85;
    }
    .largura-110 {
        width: 100%;
    }
    .listagemProdutos ul li {
        width: 23%;
        margin: 0 1% 40px 1%;
    }
    .helperProdutos > * {
        width: 100%!important;
        float: none;
    }
    .filtroProdutos {
        margin-bottom: 20px;
    }
    #conteudo.contato {
        padding-top: 30px;
    }
    #conteudo.contato article {
        margin: 0 0 50px 0;
    }
    #conteudo.contato article, #conteudo.contato aside {
        float: none;
        width: 100%;
    }
    #conteudo.contato aside .banner {
        display: none;
    }
    .listagemMidia ul li {
        width: 31.33%;
        margin: 0 1% 20px 1%;
    }
    .listagemMidia .filtro {
        background:#e7e7e7;
        padding: 15px 20px;
        height: auto;
        margin: 30px 0;
    }
    .produto .desc .slideshowProduto {
        width: 100%;
        height: auto;
    }
    .produto .desc .slideshowProduto ~ * {
        display: block;
        width: 100%;
        margin-bottom: 25px;
    }
    .produto .desc .slideshowProduto + h5 {
        clear: both;
    }
    .imgsConceito .img p {
        height: auto;
        padding: 0px 10px;
        padding-top: 100px;
        font-size: 36px;
        line-height: 1;
    }
    .menuMobile {
        display: block;
    }
    .dicasReceitas, .midia, .dicasReceitas section {
        width: 100%;
    }
    .midia section, .midia section article {
        height: auto;
    }
    .destaquesHome section article figure {
        height: auto;
    }
    .destaquesHome section article h4 {
        font-size: 24px;
    }
    .listagemProdutos ul li.destaque {
        width: 49%;
    }
}
@media only screen and (max-width: 1150px){
    .revendas .listagem ul {
        width: 100%;
    }
    .revendas .listagem ul li {
        width: 23%;
        margin: 0 1% 30px;
    }
    .revendas .listagem ul li figure {
        width: auto;
        height: auto;
    }
    .revendas .listagem ul li h5 {
        font-size: 18px;
    }

    .landing .features {
        margin: 40px auto;
    }
    .landing .features .feature {
        width: 200px;
        margin: 0 10px;
    }
    .landing .features .feature h4 {
        font-size: 24px;
        letter-spacing: -1px;
    }
    .landing .features .feature p {
        font-size: 18px;
    }
}
@media only screen and (max-width: 1050px){
    .headerAtendimento > .central > * {
        clear: both;
        width: 100%;
    }
    .headerAtendimento .mapa {
        display: none;
    }
    .headerAtendimento .txts {
        padding-top: 25px;
    }
    .headerAtendimento .txts .pdf {
        overflow: hidden;
        margin-bottom: 30px;
    }
    .headerAtendimento .txts p {
        font-size: 20px!important;
        margin: 15px 0;
    }
    .headerAtendimento .txts h3 + p {
        display: none;
    }
    .headerAtendimento .txts p:first-child {
        display: block;
    }
    .slideshowHome, .slideshowHome .itens, .slideshowHome .itens .item {
        height: auto;
    }
    .slideshowHome .itens .item a.banner-mobile img {
        width: 100%;
        height: auto;
        display: block !important;
    }
    .slideshowHome .itens .item a.banner-desktop img {
        width: 100%;
        height: auto;
        display: none !important;
    }
    .slideshowHome .pag {
        display: none;
    }
    .slideshowHome .itens .item .helper .box, .q1 {
        display: none;
    }
    .slideshowHome .itens .item {background: none!important;}
    .demaisprodutos ul li {
        width: 25%;
    }
    .imgsConceito .img {
        /* height: 350px; */
    }
    .produto > h3 + p {
        line-height: 1.3;
    } 
    #conteudo.pageProduto {
        /* margin-top: 30px; */
    }
    .headerAtendimento .txts form {
        display: block;
    }
    .dicasBloco .dicaBloco .text {
        /*padding-top: 0;*/
    }
    .dicasBloco .dicaBloco > * {
        float: none;
        width: 100%;
    }
    .dicasBloco .dicaBloco figure img {
        width: 100%;
    }
    .dicasBloco .dicaBloco .text h4 {
        font-weight: 200;
    }
    .ondecomprar .aplicacao {
        height: auto;
    }
    .ondecomprar .aplicacao .left, .ondecomprar .aplicacao .right {
        width: 100%;
        height: 300px;
        float: none;
    }
    .ondecomprar .aplicacao .right .helper {
        padding: 25px 20px;
    }
    .ondecomprar .aplicacao .right .resultados ul li a {
        padding: 15px 20px;
    }
    .ondecomprar .aplicacao .right {
        height: auto;
    }
    .ondecomprar .aplicacao .right .resultados ul {
        height: 230px;
    }
}
@media only screen and (max-width: 1000px){
    .headerInterna {
        height: 250px;
    }    
    .marcas ul li {
        width: 20%
    }
    .headerInterna .novotitulo {
        padding-top: 50px;
    }
    .headerInterna .novotitulo h3 {
        font-size: 25px!important;
    }
}
@media only screen and (max-width: 950px){
    .cidades .cidade .itens .item h3 {
        font-size: 24px;
    }
    .cidades .cidade .itens .item .dados p {
        padding-left: 0;
        background: none!important;
        line-height: 30px;
    }
    .cidades .cidade .itens .item .gMaps img {
        display: none;
    }
    .cidades .cidade .itens .item .gMaps small {
        padding: 0 10px;
    }
    .listagemMidia ul li {
        width: 48%;
    }
    .listagemMidia .filtro * {
        float: none!important;
        width: 100%!important;
        text-align: center;
        display: block;
        margin: 0 0 5px 0!important;
    }
    .destaquesHome section article {
        width: 50%;
        /* height: 650px; */
    }
    .destaquesHome section article figure img {
        width: 100%;
    }
    .destaquesHome section article h4 {
        height: 40px;
    }
    #conteudo h4.bgRoxo {
        letter-spacing: 18px;
    }

    /*landing*/
    .landing .infosProdutoHd .right {
        display: none;
    }
}
@media only screen and (max-width: 900px){
    .listagemProdutos ul li {
        width: 31%;
    }
    .listagemDicas ul li .cat h5 {
        font-size: 18px;
    }
    .listagemDicas ul li .tit h3 {
        font-size: 24px;
    }
    footer .central {
        overflow: hidden;
    }
    footer {
        padding: 25px 0;
    }
    footer .central > div {
        width: 100%;
        float: none;
    }
    footer .menufooter {
        text-align: center;
    }
    footer .infos {
        margin: 30px auto;
        display: table;
    }
    footer .infos > * {

    }
    footer .catalogo {
        padding: 30px 0 0 0;
        border-top: solid 1px rgba(0,0,0,0.1);
    }
    footer .catalogo .fotoCatalogo {
        margin: 0 20px 0 0;
        height: auto;
        width: 100px;
    }
    footer .catalogo p + a {
        margin: 10px 0;
    }
    footer .catalogo p + a + a {
        margin: 20px 0 0 0;
        /*text-align: center;*/
    }
    .listagemProdutos ul li.destaque {
        width: 100%;
        margin: 0;
    }
    .listagemProdutos ul li.destaque h4 {
        padding: 0;
        margin: 20px 0;
        text-align: center;
        height: auto;
        font-size: 30px;
    }
    .listagemProdutos ul li.destaque .img {
        height: auto;
    }
    .listagemProdutos ul li.destaque .img img {
        position: static;
        margin: 0 auto;
        display: block;
    }
    .listagemProdutos ul li.destaque .detalhes .detalhe {
        width: 80%;
        margin: 0 auto 10px;
    }
    .listagemProdutos ul li.destaque .detalhes .detalhe p {
        font-size: 18px;
        text-align: left;
        padding: 20px 0;
    }
}
@media only screen and (max-width: 850px){
    .formrodape .left, .formrodape .right {
        width: 100%;
        float: none;
    }
    .formrodape .left {
        margin-bottom: 20px;
    }
    .formrodape form > * {
        float: none!important;
        width: 100%!important;
    }
    .formrodape form fieldset {
        padding:0;
    }
    .revendas .listagem ul li {
        width: 48%
    }
}
@media only screen and (max-width: 800px){}
@media only screen and (max-width: 750px){
    .listagemProdutos ul li {
        width: 48%;
    }
    .demaisprodutos ul li {
        width: 50%;
    }
    .dadosProduto table {
        font-size: 14px;
    }
    .listagemProdutos ul li {
        text-align: center;
    }
}
@media only screen and (max-width: 700px){
    .listagemDicas ul li {
        height: auto;
        text-align: center;
    }
    .listagemDicas ul li a {
        padding: 25px;
    }
    .listagemDicas ul li a > * {
        margin: 0 0 10px 0;
    }
    .listagemDicas ul li a > *, .listagemDicas ul li .cat h5 {
        float: none;
        width: 100%;
    }
    .listagemDicas ul li a > * > * {
        height: auto;
        display: block;
    }
    .listagemDicas ul li .img {
        margin: 0 auto;
    }
    .column2 {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        -ms-column-count: 1;
        -o-column-count: 1;
        column-count: 1;

        -webkit-column-gap: 0px;
        -moz-column-gap: 0px;
        -ms-column-gap: 0px;
        -o-column-gap: 0px;
        column-gap: 0px;
    }
    .listagemProdutos ul li.destaque span {
        margin: 20px auto;
    }
    .landing .features .feature {
        width: 100%;
        padding: 0 40px;
        margin: 0 0 30px 0;
    }
    .landing .features .feature figure img {
        width: 100%;
    }
    .landing .features .feature h4 {
        margin: 10px 0;
    }
}
@media only screen and (max-width: 650px){
    .marcas ul li {
        width: 25%;
    }
    .migalhasdepao {
        font-size: 15px;
        margin: 0 0 20px 0;
    }
    .cidades .cidade .itens .item {
        height: auto;
        padding: 20px 0;
    }
    .cidades .cidade .itens .item > * {
        clear: both;
        float: none;
        width: 100%!important;
        padding: 10px 20px!important;
    }
    .cidades .cidade .itens .item .gMaps small {
        margin: 0;
    }
    .listagemMidia ul li {
        width: 98%;
    }    
    .listagemMidia ul li .txt h3 {
        font-size: 36px;
    }
    .produtosDestaque article {
        height: auto;
        text-align: center;
        overflow: hidden;
    }
    .produtosDestaque article .foto {
        padding: 20px 20px;
    }
    .produtosDestaque article .foto .txt {
        margin: 20px 0;
    }
    .produtosDestaque article .foto .txt h3 {
        font-size: 30px;
    }
    .produtosDestaque article .foto .img {
        position: relative;
        height: 200px;
        right: auto;
        margin: 0 auto;
    }
    .produtosDestaque article .foto .img img {
        max-height: 100%;
    }
    .produtosDestaque article .foto .txt, .produtosDestaque article .foto .cta {
        width: 100%;
    }
    .produtosDestaque article .caracteristicas {
        padding: 30px 30px;
        text-align: left;
    }
    .headerInterna .novotitulo {
        width: 65%;
    }
}
@media only screen and (max-width: 600px){
    .headerInterna .helper {
        width: 100%;
        margin-left: -20px;
    }
    .headerInterna .helper .titulo {
        padding: 20px 20px;
    }
    .headerInterna .helper .titulo h3 {
        font-size: 24px;
    }
    .headerInterna .helper .titulo .q2 {
        zoom: 0.8;
    }
    .headerInterna .helper .subtitulo {
        padding-left: 20px;
    }
    .headerInterna.ventilacao .helper .subtitulo {
        width: 70%;
    }
    .headerAtendimento .txts .pdf img {
        margin-bottom: 10px;
    }
    .produto .desc .slideshowProduto .thumbs {
        display: none;
    }
    .interessou .helper {
        padding: 10px 0;
    }
    .landing .outrasInfos .right, .landing .outrasInfos .left {
        width: 100%;
        float: none;
        clear: both;
        overflow: hidden;
        margin-bottom: 20px;
    }
    .landing .caracteristicas ul {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        -ms-column-count: 1;
        -o-column-count: 1;
        column-count: 1;
    }
    .landing .caracteristicas, .landing .outrasInfos {
        margin-bottom: 0px;
    }
    .caracteristicas, .outrasInfos {
        padding: 0 20px;
    }
    .landing .features {
        margin-bottom: 20px;
    }
    .landing .outrasInfos .right .icones .icone {
        width: 100%;
        float: none;
        text-align: center;
    }
    .landing .outrasInfos .right .icones .icone a i {
        float: none;
        display: inline-block;
    }
}
@media only screen and (max-width: 550px){
    .central {
        padding: 0 20px;
    }
    .slideshowHome .seta {
        display: none!important;
    }
    .dicasReceitas section article .img {
        display: none;
    }
    .dicasReceitas section article {
        height: auto;
    }
    .dicasReceitas section article a {
        padding: 20px 20px;
    }
    .dicasReceitas section article h4 {
        padding-top: 0;
    }
    .produto .desc .slideshowProduto .seta {
        width: 50%;
        font-size: 14px;
        border-right: solid 1px #333;
        background: #000;
    }
    .produto .desc .comprar + a {
        width: auto;
    }
    .dadosProduto table {
        font-size: 13px;
    }
    .dadosProduto table tr {
        line-height: 20px;
        text-indent: 0px;
    }
    .dadosProduto table tr td {
        padding: 10px 10px;
    }
    .dadosProduto table tr td:first-child {
        font-weight: 400;
    }
    .imgsConceito .img {
        /* height: 150px; */
    }
    .imgsConceito .img p {
        font-size: 18px;
        padding: 0;
        padding-top: 50px;
        letter-spacing: -1px;
    }
    footer .infos > * {
        clear: both;
        float: none;
        text-align: center;
        margin: 0 0 20px 0;
    }
    footer .infos .separador {
        display: none;
    }
    footer .infos .social ul {
        display: table;
        margin: 0 auto;
    }
    footer .catalogo p {
        font-size: 18px;
        line-height: 1.2;
    }
    #conteudo h4.bgRoxo {
        letter-spacing: 2px;
    }
    footer .menufooter {
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }
    footer .central > div {
        padding: 20px 20px;
    }
    #conteudo.contato aside {
        text-align: center;
    }
    .headerAtendimento .txts .pdf {
        display: none;
    }
    .headerAtendimento .txts h3 {
        text-align: center;
    }
    .headerAtendimento .txts p {
        padding: 0;
        text-align:center;
    }
    .ondecomprar .aplicacao .right form fieldset > * {
        width: 100%!important;
        margin: 0 0 5px 0;
    }
    .ondecomprar .aplicacao .right span {
        text-align: center;
    }
    .revendas > div > p {
        font-size: 18px;
    }
    .listagemProdutos ul li.destaque .detalhes .detalhe {
        width: 100%;
    }
    .listagemProdutos ul li.destaque .detalhes .detalhe figure {
        width: 100px;
        height: 100px;
    }
}
@media only screen and (max-width: 500px){
    header .logo {
    background-size: contain;
    width: 40%;
    }
    .marcas ul li {
        width: 50%;
    }
    .listagemProdutos ul li {
        width: 98%;
    }    
    .destaquesHome section article, .dicasBloco .dicaBloco {
        width: 80%;
        padding: 0;
        float: none;
        margin: 0 auto;
    }
    .destaquesHome section article h4 {
        height: auto;
    }
    .revendas .listagem ul li {
        width: 98%;
    }
    .migalhasdepao {
        font-size: 12px;
    }
    .produto > h3 {
        font-size: 36px;
        letter-spacing: -1px;
    }
    /*.destaquesHome section article > a:before {}*/
}
@media only screen and (max-width: 450px){
    .produtosDestaque article .foto .img {
        width: 100%;
    }    
    .demaisprodutos ul li {
        width: 100%;
    }
}
@media only screen and (max-width: 400px){}
@media only screen and (max-width: 350px){}
@media only screen and (max-width: 300px){
    .marcas ul li {
        width: 100%;
    }
    footer .menufooter ul {
        width: 100%;
        margin: 0 0 20px 0;
    }
    footer .catalogo p + a + a {
        text-align: center;
    }
}
@media only screen and (max-width: 250px){}
@media only screen and (max-width: 200px){}
@media only screen and (max-width: 150px){}
@media only screen and (max-width: 100px){}

@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: 1.25dppx),
       (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 {
    *,
    *:before,
    *:after,
    *:first-letter,
    *:first-line {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }