@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

html, body {
	min-height: 100%;
	scroll-behaviour: smooth;
}
body {
	background: #FFF;
	padding: 0px;
	margin: 0px;
	font-family: 'Montserrat', sans-serif;
  	font-size: 14px;
	position: relative;
	color: #000;
	font-weight: 500;
	overflow-x: hidden;
}

h2 {
	font-size: 32px;
	font-weight: 600;
}
h5 {
	font-size: 16px;
	font-weight: 600;
}

hr {
	border: none;
	border-bottom: #000 1px dashed;
	padding: 0px;
	margin: 30px 0;
}

/* Formatações gerais */
a {
	color: inherit;
	text-decoration: none;
	transition: all 0.5s;
}
a:hover {
	color: #999999;
}

input[type=submit], input[type=reset], input[type=button], button {
	display: inline-block;
	vertical-align: top;
	text-transform: uppercase;
	color: #FFF;
	background: #000;
	border: #000 1px solid;
	padding: 7px 35px !important;
	border: none;
	cursor: pointer;
	cursor: hand;
	transition: all 0.5s;
}
input[type=submit]:hover, input[type=reset]:hover, button:hover {
	background: #FFF;
	color: #000;
}
input[type=text], input[type=search], input[type=email], input[type=date], input[type=number], input[type=datetime], input[type=password], textarea, select {
	display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background: #FFF;
    border: 1px solid #CCC;
	border-radius: 4px;
	resize: none;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 6px 0;
}
input[type=search] {
	display: inline-block;
	vertical-align: top;
	width: auto;
}
textarea {
	height: auto;
}
input[type=text], input[type=email], input[type=number], input[type=datetime], input[type=datetime], textarea {
	max-width: calc(100% - 26px);
	padding: 2px 12px;
}
option {
	font-weight: normal;
    display: block;
    white-space: pre;
    min-height: 1.2em;
    padding: 0px 2px 1px;
	font-size: 14px;
    line-height: 1.42857143;
    color: #555555;
	font-family: 'Montserrat', sans-serif;
}


nav {
	display: grid;
	grid-template-columns: 210px auto 170px;
	padding: 10px 50px;
	margin: 0px;
	grid-gap: 30px;
	align-items: center;
}
/* Pesquisa */
.pesquisa {
	display: grid;
	grid-template-columns: auto 25px;
	grid-gap: 10px;
	align-items: center;
	border: #000 1px solid;
	border-radius: 20px;
	padding: 0 10px 0 5px;
	max-width: 450px;
	width: 100%;
	justify-self: center;
	background: #FFF;
}
.pesquisa input[type=search] {
	border: none;
	background: none;
	margin: 0px;
	outline: none;	
}
.pesquisa input[type=image] {
	max-height: 20px;
	width: auto;
}

/* Telefone */
.tel {
	font-size: 9px;
}
.tel a {
	display: block;
	font-size: 28px;
	font-weight: 600;
}

/* Menu */
#menu {
	background: #000;
	padding: 7px 50px;
}
#menu menu {
	padding: 0px;
	margin: 0px;
	justify-self: center;
}
menu section:nth-of-type(1), 
menu section:nth-of-type(2),
menu section:nth-of-type(3),
menu section:nth-of-type(5) {
	display: none;
}

menu ul {
	list-style: none;
	display: block;
	vertical-align: top;
	margin: 0px;
	padding: 0px;
}
menu ul li {
	display: inline-block;
	vertical-align: top;
	padding: 2px 15px;
	margin: 0px;
	text-align: left;
	border-right: #FFF 1px solid;
}
menu ul li:last-of-type {
	border: none;
}
menu ul li a, menu ul li label {
	color: #FFF;
	font-size: 14px;
	display: block;
	vertical-align: top;
	position: relative;
	margin: 0 auto 0 auto;
	padding: 0px;
	text-transform: uppercase;
}
menu ul li label {
	padding: 0 20px 0 0;
	cursor: pointer;
	cursor: hand;
	
}
menu ul li a:after, menu ul li label:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #FFF;
    transition: width .3s;
}
menu ul li a:hover:after, menu ul li label:hover:after {
    width: 100%;
}
menu ul li label span:after {
	content: '';
	position: absolute;
	display: inline-block;
	vertical-align: top;
	border: solid #FFF;
	border-width: 0 2px 2px 0;
	padding: 3px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	margin: 3px 0 0 6px;
	transition: all 0.1s;
}
menu ul li label:hover > span:after {
	margin: 8px 0 0 10px;
	border: solid #FFF;
	border-width: 2px 2px 0 0;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

/* Submenus */
menu li ul {
	position: absolute;
	display: block;
	padding: 5px;
	margin: 0px;
	height: 0px;
	overflow: hidden;
	opacity: 0;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 4px;
	transition: all 0.3s ease-in;
}
menu li ul li {
	display: block;
	border: none;
	padding: 0px;
}
menu ul li:hover > ul {
	opacity: 1;
}
menu li ul li a {
	font-size: 12px;
	padding: 3px 7px;
	margin: 0px;
	color: #FFF;
	border-radius: 4px;
	text-transform: none;
}
menu li ul li a:hover {
	color: #FFF;
}
menu li ul li a:before {
	content: none;
}
menu li ul li a:after {
    background: #FFF;
}

nav #hamburguer {
	justify-self: end;
	display: none;
}

/* Header do site */
header {
	display: block;
	padding: 0px;
	height: 550px;
}
#backs {
	display: none;
}
header #backimg, header #backfade, header #darken {
	position: absolute;
	padding: 0px;
	margin: 0px;
	width: 100%;
	height: 550px;
	object-fit: cover;
	object-position: center bottom;
	z-index: -10;
}
header #darken {
	background: rgba(0, 0, 0, 0.3);
	z-index: -5;
}
header #backfade {
	transition: opacity 1s;
	-webkit-transition: opacity 1s;
}
#backfade.fadeout {
	opacity: 0;
}
#backfade.fadein {
	opacity: 1;
}
header section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 0px;
	padding: 50px;
	justify-items: start;
	align-items: center;
	color: #FFF;
	height: 450px;
}
header article {
	max-width: 550px;
}
header h2 {
	font-size: 46px;
	font-weight: 500;
	margin: 0px;
	padding: 0px;
}

/* Mini header */
#miniheader {
	display: block;
	height: 140px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding: 0 0 10px 0;
	background-color: #000;
}

/* Estrutura do site */
#corpo {
	background: #FFF;
	padding: 0 100px 80px 100px;
	margin: 0px;
}

/* Footer */
footer {
	padding: 10px 50px 60px 50px;
	background: #333;
	background-size: cover;
	color: #FFF;
	display: grid;
	grid-template-columns: 1fr 1fr 2fr 3fr;
	grid-gap: 0 30px;
}
footer h3 {
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
}
footer ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: block;
	vertical-align: top;
}
footer ul li {
	display: block;
	vertical-align: top;
	padding: 0 0 3px 0;
	margin: 0px;
	font-size: 12px;
}
footer a {
	font-size: 12px;
}
footer ul li label {
	display: inline-block;
	vertical-align: top;
	padding: 0 40px 10px 0;
	text-align: right;
	font-size: 28px;
	font-weight: 500;
}
footer section {
	justify-self: end;
	text-align: right;
}
footer section span {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 0 5px;
	justify-items: center;
	max-width: 190px;
	margin: 0 0 0 auto;
}
footer section label {
	display: block;
	vertical-align: top;
	text-align: center;
	height: 25px;
	cursor: pointer;
	cursor: pointer;
}
footer section label:after {
	content: attr(data-content);
	font-size: 10px;
	text-align: center;
	color: #FFF;
	display: block;
	margin: 3px 0 0 0;
	opacity: 0;
	transition: all 0.5s;
}
footer section label:hover:after {
	opacity: 1;
}
footer section label:hover a {
	transform: translateY(-5px); 
	background-color: #FFF;
	transition: all 0.5s;
}
footer section a {
	display: block;
	vertical-align: top;
	background-color: #FFF;
	width: 20px;
	height: 20px;
	font-size: 14px;
	margin: 0 auto 0 auto;
	opacity: 0.5;
}
footer section label:hover a {
	opacity: 1;
}
footer section label:nth-of-type(1) a {
	background: url(../img/facebook.svg) no-repeat center center;
	background-size: contain;
}
footer section label:nth-of-type(2) a {
	background: url(../img/instagram.svg) no-repeat center center;
	background-size: contain;
}
#baixo {
	background: #000;
	padding: 10px 50px;
	color: #FFF;
	font-size: 12px;
	font-weight: 300;
}
#baixo a {
	font-weight: 600;
}

#aviso_cks {
	background: rgba(0, 0, 0, 0.7);
	position: fixed;
	width: 100%;
	top: 0px;
	z-index: 9999999;
	opacity: 1;
	transition: all 0.5s;
}
#aviso_cks div {
	max-width: 980px;
	width: auto;
	margin: 0 auto 0 auto;
	padding: 15px 0 15px 0;
}
#aviso_cks * {
	color: #FFF;
}
#aviso_cks a {
	font-weight: bold;
}
#aviso_cks input {
	padding: 5px 13px !important;
	border: none;
	margin: 0 0 0 15px;
	outline: none;
	font-size: 12px;
	font-weight: normal;
	cursor: pointer;
	cursor: hand;
}
#aviso_cks input:hover {
	color: #000;
	background: #FFF;
	transition: all 0.5s;
}

/* Galeria */
#imgaleria span {
	display: inline-block;
	vertical-align: top;
	margin: 0 3px 6px 3px;
	border: #666 1px solid;
	width: 150px;
	height: 150px;
	background: #FFF;
}
#imgaleria a {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 150px;
	height: 150px;
}
#imgaleria img {
	max-height: 150px;
	max-width: 150px;
	width: auto;
	height: auto;
}

/* Lightbox */
#lightbox {
	margin-top: 50px;
}
body:after {
  content: url(../img/close.png) url(../img/loading.gif) url(../img/prev.png) url(../img/next.png);
  display: none;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: auto;
  height: auto;
  margin: 0 auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-container {
  padding: 4px;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../img/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../img/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../img/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Notícias */
.entry {
	box-sizing: border-box;
	background: #FFF;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
	display: block;
	vertical-align: top;
	border: #000 1px solid;
	margin-bottom: 25px;
}
.entry figure {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	position: relative;
	width: 100%;
	height: auto;
}
.entry figure img, .entry figure iframe {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	width: 500px;
	height: 300px;
	max-width: 100%;
	max-height: 200px;
	object-fit: cover;
}
.entry div {
	display: block;
	vertical-align: top;
	padding: 25px;
	margin: 0px;
}
.entry h2 {
	margin-top: 0px;
  	font-weight: 800;
  	font-size: 18px;
	letter-spacing: 0.1em;
	font-weight: 400;
	text-transform: uppercase;
}
.entry_feed {
	display: grid;
	grid-gap: 50px 0;
}

/* Contactos */
#contactos {
	display: grid;
	grid-template-columns: auto calc(100%/2.8);
	grid-gap: 0 60px;
}
#contactos form {
	display: block;
	vertical-align: top;
	max-width: 100%;
}
#contactos form label {
	display: block;
	vertical-align: top;
	font-weight: 400;
	margin: 0 0 5px 0;
} 
#contactos form textarea {
	margin: 0 0 20px 0;
}
#contactos h2 {
	text-align: left;
}

#noticia {
	display: grid;
	grid-template-columns: 1fr 3fr;
	grid-gap: 40px;
}

/* Notícias relacionadas */
#relacionadas {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px 30px;
}
#relacionadas article {
	display: grid;
	grid-template-columns: 152px auto;
	grid-gap: 0 10px;
}
#relacionadas article figure {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	border: #000 1px solid;
}
#relacionadas article figure img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	max-width: 150px;
	height: auto;
}

/* Classes gerais */
.resp_thumb {
	padding: 0px;
    line-height: 1.42857143;
    background-color: #FFF;
    border: 4px solid #FFF;
    border-radius: 4px;
	max-width: 100%;
	height: auto;
	-webkit-box-shadow: 0 0 1px 1px #666;
	box-shadow: 0 0 1px 1px #666;
}
.botoes {
	padding-top: 40px;
	text-align: right;
}
.botoes a {
	display: inline-block;
	vertical-align: top;
	padding: 10px 15px;
	background: #FF3C20;
	color: #FFF;
	font-size: 16px;
	font-weight: 500;
}
.botoes a:hover {
	background: #000;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.duas_colunas {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-areas: 'left right';
	grid-gap: 40px;
}
.colleft {
	grid-area: left;
}
.colright {
	grid-area: right;
}

#destaques, #artigos {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 10px;
}
#artigos {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 10px;
}
#destaques article, #artigos article {
	display: block;
	vertical-align: top;
	margin: 0px;
	padding: 10px;
	border: #CCC 1px solid;
	border-radius: 7px;
	text-align: center;
	min-height: 280px;
}
#destaques img, #artigos img {
	display: block;
	padding: 0px;
	margin: 0px;
	width: 100%;
	height: auto;
	object-fit: cover;
}
#destaques label, #artigos label {
	display: block;
	padding: 10px 0 0 0;
}
#destaques article h3, #artigos article h3 {
	font-size: 16px;
	font-weight: 600;
}

#paginas  {
	text-align: center;
	padding: 50px 0 0 0;
}
#paginas a, #paginas span {
	display: inline-block;
	vertical-align: top;
	padding: 1px 9px;
	border-radius: 4px;
	text-align: center;
	line-height: none;
	font-size: 18px;
}
#paginas label {
	display: inline-block;
	vertical-align: top;
	padding: 1px 9px;
	line-height: none;
	font-size: 18px;
}
#paginas span {
	background: #999;
	color: #FFF;
}
#paginas a:hover {
	text-decoration: none;
	background: #738CAA;
	color: #FFF;
}


/* Produtos */
#vartigo {
	display: grid;
	grid-template-columns: 400px 1fr;
	grid-gap: 0 20px;
}
#vartigo article {
	justify-self: center;
	max-width: 100%;
	height: auto;
	display: block;
	vertical-align: top;
	position: relative;
}
#vartigo article img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	border: #333 1px solid;
	border-radius: 6px;
	width: 100%;
	height: auto;
}
#vartigo article div {
	padding: 20px 0 0 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 20px;
}
#vartigo article div img {
	cursor: pointer;
	cursor: hand;
	width: 70px;
	height: auto;
}
#vartigo section h2 {
	font-weight: 400;
	text-align: left;
}
#resumo {
	padding-bottom: 40px;
	border-bottom: #CCC 1px solid;
}
#precos {
	padding: 10px 0 0 0;
	text-align: right;
}
#redes {
	text-align: right;
	padding-bottom: 30px;
	border-bottom: #CCC 1px solid;
}

#amp {
	position: fixed;
	left: 0px;
	right: 0px;
	bottom: 0px;
	top: 0px;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	grid-template-columns: auto;
	justify-items: center;
	align-items: center;
	z-index: 99999;
}
#amp article {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	text-align: right;
}
#amp article a {
	display: inline-block;
	vertical-align: bottom;
	background: #FFF;
	color: #000;
	padding: 3px 12px;
	margin: 0 10px 0 0;
	border-radius: 4px 4px 0 0;
}
#amp article figure {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	border: #FFF 4px solid;
	border-radius: 6px;
	background: #FFF;
	-webkit-box-shadow: 0 0 4px 2px #000;
	box-shadow: 0 0 4px 2px #000;
}
#amp img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	max-width: 100%;
	height: auto;
}

/* Barra */
#barrav1 {
	display: grid;
	grid-template-columns: auto 500px;
	grid-gap: 0px;
	margin: 0px;
	padding: 0px;
}
#barrav2 {
	margin: 0px;
	padding: 0px;
}
#barrav1 figure, #barrav2 figure {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
}
#barrav1 figcaption {
	margin: 370px 500px 0 0;
	transform: translateX(-100%);
	min-width: calc((100vw - 500px) / 2);
	background: #000;
	padding: 20px;
	transform
	color: #FFF !important;
	text-transform: uppercase;
	position: absolute;
	display: inline-block;
	z-index: 300;
}
#barrav2 figcaption {
	margin: 370px 0 0 0;
	transform: translateX(-100%);
	min-width: calc((100vw - 500px) / 2);
	background: #000;
	padding: 20px;
	transform
	color: #FFF !important;
	text-transform: uppercase;
	position: absolute;
	display: inline-block;
	z-index: 300;
}
#barrav1 a figcaption, #barrav2 a figcaption {
	color: #FFF;
}
#barrav1 section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	text-align: center;
	text-transform: uppercase;
	padding: 0px;
	margin: 0px;
	grid-gap: 0px 0px;
}
#barrav1 img, #barrav2 img {
	width: 100%;
	height: 500px;
	padding: 0px;
	margin: 0px;
	object-fit: cover;
}
#barrav1 section img {
	width: 250px;
	height: 250px;
	padding: 0px;
	margin: 0px;
	object-fit: cover;
	display: block;
	vertical-align: top;
}
#barrav1 section img, #barrav1 section article {
	margin-top: -3px;
}
#barrav1 section img:nth-of-type(2), #barrav1 section article:nth-of-type(2) {
	margin-top: -7px;
}
#barrav1 article {
	height: 230px;
	width: 230px;
	padding: 0px;
	margin: 0px;
	display: grid;
	grid-template-columns: auto;
	padding: 10px;
	align-items: center;
}
#barrav1 article:nth-of-type(1) {
	background: #EBEBEB;
}
#barrav1 article:nth-of-type(2) {
	background: #333;
	color: #FFF;
}

#marcas {
	padding: 0px 100px 50px 100px;
	text-align: center;
}
#marcas img {
	display: inline-block;
	vertical-align:  central;
	padding: 0px;
	margin: 20px;
	max-height: 20px !important;
	width: auto;
}

/* Menu dos catalogos */
#toglemenu {
	display: none;
	padding: 15px;
	font-size: 18px;
	margin: 30px 0 0 0;
}

#menucatalogo {
	display: grid;
	grid-template-columns: 1fr 4fr;
	grid-gap: 30px;
}
#menucatalogo section:nth-of-type(1) {
	padding: 20px 0 0 0;
}
#menucatalogo section:nth-of-type(1) h3 {
	text-transform: uppercase;
	text-align: center;
}

/* Menu produtos lateral */
#menuv {
	display: block;
	vertical-align: top;
	padding: 0px;
}

/* Menu produtos */
#menuv ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
#menuv li div {
	font-weight: bold;
	margin-top: 20px;
	padding-bottom: 10px;
	border-bottom: #ededed 1px solid;
	padding-left: 20px;
	background: #026BAD;
	font-size: 12px;
	color: #FFF;
	padding-top: 10px;
}
#menuv li a {
	display: block;
	border-bottom: #ededed 1px solid;
	padding: 6px;
	color: #000000;
	font-size: 12px;
}

.vtopico {
	cursor: pointer;
	cursor: hand;
}
.varea {
	overflow: hidden;
	height: 0px;
	-webkit-transition: height 1.5s ease;
	-moz-transition: height 1.5s ease;
	-o-transition: height 1.5s ease;
	transition: height 1s ease;
}