

:root {
	--color_1: #d40505;            /* Vermelho louco */
	--color_2: #f1f1f1;            /* Cinzento */
	--botao_verde: #5aad00;		   /* Verde botões */
	--botao_verde_hover: #519805;  /* Verde botão*/
}


*,*:after,*:before {box-sizing: border-box;}

html {background: #000;}

html,body {
	padding: 0; margin: 0;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #333;
	background: #FFF;
	overflow-x: hidden;
}

body.opened {
	overflow-y: hidden;
}

td,th {
	vertical-align: top;
}

b,strong,h1,h2,h3,h4,h5,h6 {
	font-family: 'Podkova', serif;
	font-weight: 700;
}


input[type=text],
input[type=email],
input[type=number],
select {
	border: 1px solid rgb(238, 238, 238);
	padding: 4px;
}

img {
	max-width: 100%;
	height: auto;
}

button {
	cursor: pointer;
}


.clear {
	clear: both;
	display: block;
	content: '';
	float: none;
}


.color-green {
	color: #5aad00;
}

.bg-yellow {
	background: yellow;
	display: inline-block;
    padding: 3px;
	padding-right: 10px;
}

.estilizado input[type=submit],
.estilizado input[type=button],
.estilizado button:not([type=button]){
	padding: 15px 10px;
	background: #5aad00;
	color: #FFF;
	border: 1px solid rgba(0,0,0,.05);
	cursor: pointer;
	transition: .3s;
}

.estilizado input[type=submit]:hover,
.estilizado input[type=button]:hover,
.estilizado button:not([type=button]):hover {
	background: #519805;
}


body .pagamentos_seguro {
	margin-top: 26px;
}

.pagamentos_seguro img:not(.special) {
	width: 400px;
}

.pagamentos_seguro img.special {
	position: relative;
	top: 5px;
}


/**************/
/* 	 HELPERS  */
/**************/
.limit-width {
	max-width: 90%;
	margin: 0 auto;
}

.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}


.inline-block {
	display: inline-block;
}

.block {
	display: block;
}


.inline {
	display: inline;
}

.float-right {
	float: right;
}

.float-left {
	float: left;
}

@media all and (min-width: 768px) {
	.float-right-desktop {
		float: right;
	}
	.float-left-desktop {
		float: left;
	}
}

.vertical-middle {
	vertical-align: middle;
}

.vertical-top {
	vertical-align: top;
}

.vertical-bottom {
	vertical-align: bottom;
}

.after-clear:after {
	content: '';
	clear: both;
	float: none;
	display: block;
}

.relative {
	position: relative;  
}

.no-margin-top {margin-top: 0 !important;}
.no-margin-left {margin-left: 0 !important;}
.no-margin-right {margin-right: 0 !important;}
.no-margin-bottom {margin-bottom: 0 !important;}


.margin-right {
	margin-right: 10px;
}
.margin-left {
	margin-left: 10px;
}
.margin-top {
	margin-top: 10px;
}
.margin-bottom {
	margin-bottom: 10px;
}



.margin-right-20 {
	margin-right: 20px;
}
.margin-left-20 {
	margin-left: 20px;
}
.margin-top-20 {
	margin-top: 20px;
}
.margin-bottom-20 {
	margin-bottom: 20px;
}


.width-50pc {
	width: calc(50% - 5px);
}


.red_bold {
	font-weight: bold;
	color: #d40505;
}

.black_bold {
	font-weight: bold;
	color: #333;
}




.btn {
	display: inline-block;
	border: 1px solid;
	padding: 10px 19px;
	font-weight: bold;
	text-decoration: none;
	transition: .3s; 
}

.btn-void {
	color: #d40505;
}

.btn-void:hover {
	background: #d40505;
	color: #FFF;	
}

.botao {
    border: 1px solid #5baf00;
    padding: 5px 23px;
    background: #5baf00;
    color: #FFF;
	padding-right: 50px;
	position: relative;
	transition: .3s;
}

@media all and (min-width: 1023px){		
	.botao.grande {
		padding: 5px 50px;
		padding-right: 60px;
		font-size: 16px;
	}
}

.botao.grande i.fa {
	width: 3.5rem; height: 3.5rem;
	transform: translate(25%,-50%);
}

.botao i.fa {
	position: absolute;
	font-size: 30px;
	background: #fafafa;
	top:50%;right:0;bottom:0;
	border-radius: 100%;
	width: 3.2rem; height: 3.2rem;
	-ms-transform: translate(20%,-50%);
	-webkit-transform: translate(20%,-50%);
	-moz-transform: translate(20%,-50%);
	-o-transform: translate(20%,-50%);
	transform: translate(20%,-50%);
	color: #6f6f6f;
	box-shadow: 1px 1px 6px 1px rgba(0,0,0,0.5);
	transition: .1s;
	line-height: 3.2rem;
	will-change: transform;
}

.botao:hover {background:#519c00;}
/*
.botao:hover i.fa {
	-ms-transform: translate(21%,-50%);
	-webkit-transform: translate(21%,-50%);
	-moz-transform: translate(21%,-50%);
	-o-transform: translate(21%,-50%);
	transform: translate(21%,-50%);
}
.botao i.fa:before {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
*/
.botao span {
	display: block;
	text-align: left;
	font-weight: bold;
}

/************/
/*  HEADER  */
/************/
header {
	font-weight: 400;
	background: #FFF;
	height: 177px;
}

header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	transition: .3s;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.05);
	height: 134px;
}

@media all and (max-width: 768px) and (min-width: 0){
    header, header.fixed {
        height: auto;
    }
}
 
header .fixed-logo,
header .menu.opened .fixed-logo {display:none;}  
header.fixed .fixed-logo {display: initial; margin-right: 10px;}
header.fixed .fixed-logo img {width: 120px;vertical-align: middle;}

header .header-top {
	background: #d40505; 
	height: 34px;
	line-height: 34px;
	color: #FFF;
} 

header .header-top a,
header .header-top ul.menu-ish a {
	font-family: Podkova, serif;
	font-weight: 800;
	color: #FFF;
	text-decoration: none; 
} 

header.fixed .header-middle,
header.fixed .header-top {
	display: none;
}

header .header-middle {
	background: #FFF;
	color: #141414;
	height: 125px;
	line-height: 125px;
	vertical-align: middle;
} 

header .header-middle .limit-width {
	padding: 10px 0;
}

header .header-middle .c1 {
	float: left;
	width: 33.33%;
}

header .header-middle .c2 {
	width: 33.33%;
}

header .header-middle .c3 {
	float: right;
	width: 33.33%;
	font-weight: 600;
}

header .header-bottom {
	height: 70px;
	line-height: 70px;
	vertical-align: middle;
	box-shadow: 0 1px 1px rgba(0,0,0,0.05);
	
}

header.fixed .header-bottom {
	background: #FFF;
}

header .header-bottom-logo {
	display: none;
	position: relative;
}
header.fixed .header-bottom-logo {
	display: inline-block;
	margin-right: 10px;
}

header .logo {
	max-width: 250px;
	margin-top: 10px;
}

header .header-slogan {
	display: block;
	font-size: 16px;
	color: #afadad;
	margin-bottom: 5px;
}

.header-bottom-logo img {
	width: 170px;
	vertical-align: middle;
}
 
header .social-link-icon {
	display: inline-block;
	text-decoration: none;
	display: inline-block;
	color: #FFF;
	transition: .3s;
	margin-right: 5px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	background: #383838;
	border-radius: 100%;
	text-align: center;
}

header .social-link-icon:hover {
	background: #7d7d7d;
}

header .header-middle {
			line-height: 1.3;
		}
		
		header .header-top a,
		header .header-top a:hover	{
			color: #FFF;
			background: transparent;
		}
		
		header .header-middle .limit-width .header-two-rows {
			line-height: 56px;
		}
		ul.menu-ish .has-drop ul {
			min-width: 200px;
		}
		
		header.fixed .header-middle {
			display: block;
			background: #FFF;
		}

/* BUSCA */

header.fixed .header-search select,
header.fixed .toggle-search{
	display: none !important;
}


header.fixed .header-search input[type=text] {
	width: 150px;
}

header .header-search input[type=text], 
header .header-search select,
header .header-search form button {
	height: 40px;
	position: relative;
	top: 1px;
}

header .header-search input[type=text] {
	width: 90px;
}

@media all and (min-width: 1380px){
	header.fixed .header-search input[type=text],
	header .header-search input[type=text] {
		width: 180px;
	}
}

header .header-search *:focus {outline:0;}

header .header-search form button {
	width: 40px;
}

header .header-search select {
	position: relative;
	left: -5px;
	width: 70px;
}

header .header-search form button {
	position: relative;
	left: -10px;
	top: 1px;
	font-size: 18px;
	background: ##5aad00;
	border: 1px solid ##5aad00;
	color: #FFF;
	transition: .3s;
}

header .header-search form button:hover {
	background: #5aad22;
}

header .header-icons button,
header .toggle-menu {
	background: transparent;
	border: 0;
	padding: 0;
	font-size: 26px;
	color: #383838;
	width: 40px;
	text-align: center;
	
	position: relative;
	top: 3px;
}

header .header-icons a {
	color: #383838;
	text-decoration: none;
}


@media all and (max-width: 1320px) and (min-width: 0){
	header .logo {
		max-width: 220px;
	}
	
	
		
	header.fixed .header-icons small.hide-on-mobile {
		display: none;
	}
}

@media all and (max-width: 1310px) and (min-width: 0){
	
	header {
		height: auto;
	}
	
	header:not(.fixed) .float-left,
	header:not(.fixed) .float-right {
		float: none;
	}
	header:not(.fixed) .header-middle {
		height: auto;
	}
	header:not(.fixed) .float-right.text-right {
		text-align: center;
	}
}




/* VANTAGENS */
.vantagens {
		background: #FFF;
		padding-top: 20px;
		display: inline-block;
		font-size: 13px;
		position: relative;
		top: 1px;
		font-weight: bold;
	}

header .vantagens {
	padding-top: 0;
	font-size: 15px;
}
header.fixed .vantagens {
	font-size: 13px;
}
	
	
	.vantagens .vantagem {
		display: inline-block;
		white-space:nowrap;
		vertical-align: top;
		text-align: left;
		margin: 0 2px;
		padding: 10px 7px;
		border: 1px solid rgba(0,0,0,0.1);
		margin-bottom: 15px;
		line-height: 1;
		background: #f7f7f7;
	}

header .vantagens .vantagem {
	margin-bottom: 5px;
	padding: 15px 10px;
}

header.fixed .vantagens .vantagem {
	margin-bottom: 0;
	padding: 10px 7px;
}	
	.vantagens .vantagem div {
		vertical-align: top;
		line-height: 1.2;
	}
	
	.vantagens .vantagem div.texto {
		width: calc(100% - 45px);
	}
	
	@media all and (max-width: 1320px) and (min-width: 1023px) {
		.vantagens .vantagem {
			width: calc(33% - 20px);
			min-width: 220px;
		}
		
		header.fixed .vantagens .vantagem {
			width: calc(33% - 20px);
			min-width: 200px;
			font-size: 11px;
		}
		
		.vantagens .vantagem.maior {
			min-width: 250px;
		}
		
		header.fixed .header-two-rows .inline-block.header-icons{
			position: absolute;
			top: 10px;
			right: 10px;
		}
		
		.vantagens .vantagem .subtitulo {
			font-size: 13px;
		} 
		
	}
	
	@media all and (max-width: 915px) and (min-width: 767px){		
		header.fixed .vantagens {
			display: none;
		}
	}
	
	@media all and (max-width: 766px) and (min-width: 0) { 
	
		.vantagens .vantagem {
			margin: 5px;
			margin-right: 0;
			margin-top: 5px;
			margin-bottom: 5px;
		}
		.vantagens {
			padding-top: 5px;
			padding-bottom: 5px;
		}
	}
	
	@media all and (max-width: 600px) and (min-width: 0) { 
		.vantagens .vantagem {
			margin-right: 5px;
			width: calc(50% - 20px);
		}
	}
	.vantagens .vantagem .titulo {
		margin-bottom: 2px;
		margin-top: 0;
	}
	.vantagens .vantagem .subtitulo {
		font-weight: bold;
		color: #78b932;
		margin-top: 2px;
		margin-bottom: 0;
	}
	
	.vantagens .vantagem img {
		width: 30px;
		margin-right: 5px;
	}
	
	.vantagens .vantagem img.pagamento-seguro-img {
		width: 180px;
		margin-bottom: -10px;
	}
	
	 .box-vantagens  {
		width: 100%;
		margin: 0 auto;
		margin-top: 30px;
	}
	
	.box-vantagens img {
		width: 90px;
		height: auto;
		max-width: 100%;
	}
	
	.box-vantagens .vantagem {
		display: inline-block;
		vertical-align: top;
		width: calc(25% - 23px);
		position: relative;
		margin: 0 10px;
		padding: 10px;
		padding-top: 20px;
		background: rgba(0, 0, 0, 0.78);
		border-left: 5px solid rgba(212, 5, 5, 0.6);
		min-height: 228px;
		overflow: hidden;
	}
	
	.box-vantagens p.titulo {
		margin-top: 10px;
		margin-bottom: 0;
		font-weight: bold; 
		font-size: 21px;
		font-family: Podkova, serif;
		text-transform: uppercase;
		color: rgb(99, 181, 9);
	}
	.box-vantagens p:not(.titulo) {
		margin-top: 0;
	}
	
	
	@media all and (max-width: 1023px) and (min-width: 0){
		.vantagem .hidden-small {display: none;}
	}
	@media all and (max-width: 1023px) and (min-width: 768px){
		.box-vantagens .vantagem {
			width: calc(45% - 20px);
			margin-bottom: 20px;
		}
		.box-vantagens {
			margin-top: 5%;
		}
	} 
	
	@media all and (max-width: 768px) and (min-width: 0) {
		
		.box-vantagens .vantagem {
			padding: 10px;
			padding-left: 70px;
			text-align: left;
		}
		
		.box-vantagens .vantagem.white {
			padding-left: 10px;
			text-align: center;
		}
	
		.box-vantagens img.special {
			width: 45px;
			left: 12px;
		}
		
		.box-vantagens img {
			width: 50px;
			position: absolute;
			left: 10px;
			top: 50%;
			transform: translateY(-50%);
		}
		
		.box-vantagens .vantagem {
			width: calc(50% - 16px);
			min-width: 270px;
			min-height: auto;
			margin-bottom: 10px;
			margin-left: 0;
		}
		
		.vantagens .vantagem {
			max-width: 320px;
		}
		
		.vantagens .vantagem:last-of-type {
			width: calc(100% - 15px);
			margin-left: 10px;
			text-align: center;
		}
		
		.vantagens .vantagem img.pagamento-seguro-img {
			width: 100%;
		}
		
		.vantagens .vantagem .titulo {
			font-size: 1.2em;
		}
	}
	
	@media all and (max-width: 600px) and (min-width: 0){
		
		.vantagens .vantagem .titulo {
			font-size: 1.1em;
		}
		
		.vantagens .vantagem {
			margin-right: 5px;	
			width: calc(50% - 12px);
			text-align: center;
			padding-left: 0;
		}
		
		.vantagens .vantagem:nth-of-type(2){
			margin-right: 0;
			margin-left: 0;
		}
		
		.vantagens .vantagem img {
			width: 25px;
			margin-right: 0;
			position: relative;
			top: 0px;
		}
		.vantagens {
			font-size: 10px;
		}
	}

@media all and (max-width: 720px) and (min-width: 0){
	
	.box-vantagens .vantagem {
		width: 100%;
		display: block;
		
	}
	
}

@media all and (max-width: 489px) and (min-width: 0){
    
    .vantagens .vantagem {
        letter-spacing: 0;
    }
    
    .vantagens .vantagem .titulo,
    .vantagens .vantagem .subtitulo {
        font-size: 1em;
    }
    
    .vantagens .vantagem.maior .titulo,
    .vantagens .vantagem.maior .subtitulo {
        font-size: 0.95em;
    }
    .vantagens .vantagem img {
        width: 20px;
        top: 1px;
    }
    .vantagens .vantagem:last-of-type {
        max-width: 100%;
    }
    
    .vantagens .vantagem div:nth-of-type(1) {
        margin-left: -5px;
    }
    
    .vantagens .vantagem.maior {
        margin-left: 0;
    }
    
    .vantagens .vantagem:last-of-type {
        margin-left: 5px;
    }
}



/* MENUS */

ul.menu-ish{
	padding: 0; margin: 0;
}

@media all and (min-width: 768px) {
		
	.fixed ul.menu-ish {
		display: inline-block;
	}
}

ul.menu-ish > li {
	display: inline-block;
}
ul.menu-ish a {
	text-decoration: none;
	color: #333;
	transition: .3s;
	padding: 0 5px;
}

ul.menu-ish .has-drop {position: relative;z-index:100;}

ul.menu-ish .has-drop ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	line-height: 2.3;
	width: 110%;
	padding: 0;
	padding-left: 10px;
	list-style-type: none;
	background: #FFF;
	box-shadow: 0 2px 2px rgba(0,0,0,0.1);
	width: 110%;
	min-width: 240px;
	padding-bottom: 10px;
} 


.opened ul.menu-ish .has-drop ul {
	position: static;
	box-shadow: none;
}

ul.menu-ish .has-drop:hover ul {
	display: block; 
}
  
ul.menu-ish a:hover { 
	color: #d40505;
} 

header .menu {
	font-family: Podkova, serif; 
	font-size: 18px;
	font-weight: 800;
}  

ul.menu-ish .has-drop ul{
	font-weight: 700;
	font-size: 16px;
	padding-left: 20px;
}

header .menu .close-menu {
	display: none;
}
header .menu.opened .close-menu {
    position:  absolute;
    top: 20px;
    right: 20px;
    font-size:  2.2em;
	display: block;
}

header .menu.opened big {
	font-size: 2em;
	color: #d40505;
	font-weight: bold;
}

@media all and (max-width: 768px) and (min-width: 0) {	
	header .menu {
		position: fixed;  
		top:0;left:0;right:0;bottom:0;
		background: #FFF;	
		z-index: 9999;
		padding-left: 20px;  
		line-height: 2.3;
		transform: translateX(-110%);
		transition: .3s;
	}  
	
	header .menu:not(.opened) .fixed-logo {
		transform: translateX(110%);
	}
	
	header .menu.opened{
		transform: translateX(0);
	}
} 

header .menu.opened button.toggle-menu.hide-on-desktop {
	display: none;
}

header .menu.opened .menu-ish {
	display: block;
	height: 100vh;
	max-height: 100vh;
	overflow-y: auto;
	overflow-x: hidden;
}

header .menu.opened > ul.menu-ish > li {
	display: block;
}

/* BANNER */
.banner {
	width: 100%;
	height: 500px;
	height: calc(100vw / 3.6);
	min-height: 340px;
	
	background-image: url('/images/banner/banner-2.jpeg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	
	position: relative;
	
	margin-bottom: 100px;
	
	color: #FFF;
}

.banner h1 {
	font-size: 3.5em;
	margin-bottom: 20px;
}

@media all and (min-width: 1100px){
	.banner {
		max-height: 320px;
	}
}

@media all and (max-width: 768px){
	.banner {		
		height: calc(100vw * 0.9);
	}
}

.banner .banner-content {
	position: relative;
	z-index: 2;
	overflow: hidden;
	width: 80%;
	max-width: 1100px;
	display: inline-block;
	vertical-align: top;
	
}

.banner:before {
	content: '';
	position: absolute;
	top:0;left:0;right:0;bottom:0;
	width:100%;height:100%;
	background-color: rgba(0,0,0,0.3);
}

.banner .banner-form {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateY(50%) translateX(-50%);
	
	background: #FFF;
	
	width: 80%;
	padding: 10px;
	/*padding-left: 20px;*/
	border: 1px solid rgba(0,0,0,.1);
	border-top: 0;
	border-left: 5px solid #d40505;
	
	color: #333;
}

.banner .banner-form .c1 {
	width: 20%;
	vertical-align: top;
}

.banner .banner-form .c2 {
	vertical-align: top;
	width: 75%;
}

.banner .banner-form .form-c1,
.banner .banner-form .form-c2 {
	width: 40%;
	padding: 0 10px;
}

.banner .banner-form .form-c3 {
	width: 18%;
	vertical-align: top;
	text-align: right;
}

.banner .banner-form input[type=text],
.banner .banner-form input[type=email],
.banner .banner-form select {
	width: 100%;
	margin-bottom: 10px;
	font-size: 1.1em;
	color: rgba(0,0,0,0.6);
	padding: 10px;
}

.banner .banner-form button {
	padding: 10px 26px;
	background: ##5aad00;
	color: #FFF;
	border: 1px solid rgba(0,0,0,0.1);
	cursor: pointer;
	transition: .3s;
	font-weight: bold;
}

.banner .banner-form button:hover {
	background: #5fb303;
}


/**********************/
/* TABELA DE PRODUTOS */
/**********************/

.product .price-store {
	position: absolute;
	bottom: 70px;
	width: 100%;
	left: 0; right: 0;
	font-size: 1.05em;
}
.product .price-store .price-store-value{
	background: #fcf102;
    padding: 2px 6px;
    color: #1fa000;
    font-weight: bold;
}

#products-tab {
	overflow-y: auto;
}

#products-tab .tab-links {
	display: inline-block;
}

#products-tab .tab-links a {
	display: inline-block;
	padding: 10px 16px;
	border: 1px solid;
	color: #aaa;
}

#products-tab .tab-links a.active,
#products-tab .tab-links a:hover {
	background: #d40505;
	color: #FFF;
} 


#products-tab .product {
	width: 320px;
	min-width: 280px;
	max-width: calc(25% - 20px);
	min-height: 440px;
	vertical-align: top;
	display: inline-block;
	transition: .3s;	
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 10px;
	line-height: 1.6;
	position: relative;
}

#products-tab .product .product-padding {
	padding: 20px;
}

#products-tab .product button.add {
	background: #c70000;
	color: #FFF;
	font-weight: bold;
	opacity: 0;
	transition: .3s;
	border: 0;
	width: 100%;
	font-size: 1.2em;
	padding: 15px 10px;
	cursor: pointer;
	font-family: Podkova, serif;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
#products-tab .product:focus button.add,
#products-tab .product:active button.add,
#products-tab .product:hover button.add,
#products-tab .product button.add:hover {	
	background: #d40505;
}
#products-tab .product:focus button.add,
#products-tab .product:active button.add,
#products-tab .product:hover button.add,
#products-tab.active .product button.add {
	opacity: 1;
}


#products-tab .product:focus,
#products-tab .product:active,
#products-tab .product:hover, 
#products-tab.active .product {
	box-shadow: 0 0.3125rem 1.875rem 0 rgba(0,0,0,.15);
}

#products-tab .product .image {
	max-width: 230px;
	margin: 10px auto;
	padding: 0 20px;
	text-align: center;
}

#products-tab .product .image img{
	height: 125px;
}

#products-tab .product .name {
	font-size: 14px;
	font-weight: 300;
}

#products-tab .product .short-description {
	font-size: 16px;
	font-weight: 500;
}
#products-tab .product .short-description a {
	text-decoration: none;
	color: inherit;
}

#products-tab .product .silver-description {
	font-size: 12px;
	color: #888;
}

#products-tab .product .price {
	margin-top: 10px;
	line-height: 1;
	position: absolute;
    bottom: 120px;
    text-align: center;
    width: 100%;
    left: 0;
    right: 0;
}

#products-tab .product .price span {
	font-size: 24px;
	color: #1fa000;
	font-weight: 600;
}

#products-tab .tab:not(.active){
	display: none;
}

/* exibição em lista */

#products-tab .product.product-list {
	width: 100%;
	max-width: 100%;
	text-align: left;
	min-height: auto;
	margin: 10px 0;
	margin-bottom: 20px;
	border: 1px solid rgba(0,0,0,0.2);
}

@media all and (min-width: 1400px) {
	#products-tab .product.product-list {
		width: calc(50% - 20px);
		max-width: calc(50% - 10px);
		margin-right: 20px;
		display: inline-block;
	}
}
	
#products-tab .product.product-list.col-2:nth-of-type(even){
	margin-right: 0;
}

#products-tab .product.product-list:hover {
	box-shadow: none;
}

#products-tab .product.product-list .name {
	padding: 10px;
    font-size: 16px;
    background: #333;
    color: white;
}
#products-tab .product.product-list .name a {
	color: white;
	text-decoration: none;
	font-weight: bold;
}

#products-tab .product.product-list .image {
	float: left;
	width: 320px;
	max-width: 100%;
}

#products-tab .product.product-list .image img {
	height: auto;
	max-width: 100%;
	max-height: 180px;
}

#products-tab .product.product-list .price,
#products-tab .product.product-list .price-store {
	position: static;
}

#products-tab .product.product-list .price-store {
	margin-bottom: 60px;
}

#products-tab .product.product-list button.add {
	width: auto;
	opacity: 1;
	padding-left: 50px;
	padding-right: 50px;
	left: auto;
}


	
#products-tab .product.product-list .product-padding:after {
	content: '';
	clear: both;
	float: none;
}

#products-tab .product.product-list .price {
	text-align: left;
	margin: 10px 0;
	margin-bottom: 20px;
}

#products-tab .product.product-list .price span {
	font-size: 28px;
}

#products-tab .product.product-list .price-store {
	font-size: 1.2em;
}

@media all and (max-width: 767px) and (min-width: 0){
	#products-tab .product.product-list button.add {
		width: 100%;
	}
} 


/* marcas */
.brands {
	margin: 100px 0;
	margin-top: 80px;
}

.brands img {
	filter: grayscale(100);
	transition: .3s;
	margin: 5px;
}

.brands img:hover {
	filter: unset;
}


footer {
	background: #000;
	color: #ccc;
	padding: 10px 0;
	line-height: 1.6;
}

footer .title {
	font-family: Podkova, serif;
	font-weight: bold;
	font-size: 1.5em;
	position: relative;
	padding-left: 10px;
	margin-bottom: 20px;
	color: #FFF;
}

footer .title:before {
	content: '';
	display: block;
	width: 4px;
	height: 80%;
	top: 10%;
	left: 0;
	position: absolute;
	background: #d40505;
}

footer ul {
	padding-left: 10px;
	list-style-type: none;
}

footer a {
	display: inline-block;
	color: #ccc;
	text-decoration: none;
	transition: .3s;
	position: relative;
}

footer ul a:hover {
	color: #d40505;
}

footer .c1,footer .c2,footer .c3 {
	vertical-align: top;
}

footer .c1 {
	width: 39%;
	padding-right: 50px;
}

footer .c2 {
	width: 20%;
}
footer .c3 {
	width: 20%;
}
footer .c4 {
	width: 20%;
}

.nossas-lojas  {
	background: #f5f5f5;
	padding: 20px 0;
}

.title-red {
	background: #d40505;
	color: #FFF;
	font-weight: bold;
	font-family: Podkova, serif;
	font-size: 1.6em;
	padding: 20px 0;
}

.nossas-lojas {
	background: #f1f1f1;
	font-weight: bold;
	color: #FFF;
	color: #333;
	line-height: 1.6;
	padding-top: 35px;
}

.nossas-lojas .title {
	font-family: Podkova, serif;
	font-size: 1.6em;
	margin-top: 0;
}

.nossas-lojas iframe {
	width: 100%;
	padding-right: 10px;
}

.nossas-lojas .c1,
.nossas-lojas .c2,
.nossas-lojas .c3,
.nossas-lojas .c4 {
	width: 24%;
	vertical-align: top;
}

.nossas-lojas .c1,
.nossas-lojas .c3 {
	padding-left: 10px;
}
.nossas-lojas .c3 {
	margin-left: 10px;
}

.nossas-lojas .footer-icon {
	display: inline-block;
	width: 24px;
	text-align: center;
	vertical-align: top;
	font-size: 1.2em;
	opacity: 0.8;
}

.nossas-lojas .footer-icon i.fa-mobile {
	font-size: 1.4em;
}

.nossas-lojas .footer-icon i.fa {
	margin-left: -12px;
}

.nossas-lojas .morada {
	width: calc(100% - 28px);
}


.only_mobile {
	display: none;
}

@media all and (max-width: 767px) and (min-width: 0){
	.only_desktop {
		display: none;
	}
	.only_mobile {
		display: initial;
	}
	.only_mobile.block {
		display: block !important;
	}
	.text-center-mobile {
		text-align: center !important;
	}
}



/* Carrinho */

#carrinho-breadcrumbs {
	background: #353535;
	color: #FFF;
	font-size: 1.1em;
	padding: 10px 0;
}

#carrinho-breadcrumbs a {
	color: #FFF;
	text-decoration: none;
}

#carrinho-breadcrumbs .p-1,
#carrinho-breadcrumbs .p-2,
#carrinho-breadcrumbs .p-3 {
	display: inline-block;
	width: calc(33% - 10px);
	vertical-align: top;
}

table .mais-informacoes {
	display: block;
	margin-top: 10px;
	color: rgba(0,0,0,0.5);
	transition: .3s;
	font-weight: bold;
	white-space: nowrap;
}
table .mais-informacoes:hover{
	color: rgba(0,0,0,0.8);
}

@media all and (max-width: 768px) and (min-width: 0){
	table .mais-informacoes {
		text-align: right;
	}
}

table.estilizado a { text-decoration: none; }
table.estilizado {
	width: 100%;
	border: 1px solid rgba(0,0,0,.15);
	margin-bottom: 20px;
	border-spacing: 0;
	border-left: 5px solid #d40505; 
}


table.estilizado img {
	max-width: 180px;
	max-height: 100px;
}

table.estilizado td,table.estilizado th {vertical-align:middle;}


table.carrinho-tabela tr:nth-of-type(odd),
table.estilizado tr:nth-of-type(odd) {
	background: rgba(0,0,0,0.05);
}
table.estilizado tr:nth-of-type(even),
table.carrinho-tabela tr:nth-of-type(even) {
	background: rgba(0,0,0,0.02);
}


table.carrinho-tabela td,
table.carrinho-tabela th,
table.estilizado th {
	padding: 10px;

}

table.estilizado td { 
	padding: 5px 10px;
}

table.carrinho-tabela .carrinho-tabela-titulo, 
table.estilizado .tabela-titulo {
	background: #222 !important;
	color: #FFF; 
	text-transform: uppercase;
} 


/* Categorias */
.icone_cat {
	display: inline-block;
	vertical-align: top;
	border: 1px solid rgba(0,0,0,0.2);
	background: #FFF;
	margin: 10px;
	min-width: 180px;
	transition: .3s;
}

.icone_cat:hover {
	box-shadow: 0 0.3125rem 1.875rem 0 rgba(0,0,0,.15);
}

.icone_cat_img {
	min-width: 280px;
	min-height: 110px;
	padding: 10px;
	position: relative;
	text-align: center;
}

.icone_cat_img a {
	display: block;
	position: absolute;
	top: 0; left: 0; 
	right: 0; bottom: 0;
	padding: 10px;
}

.icone_cat_txt {
	background: #d40505;
	color: #FFF;
	padding: 5px;
	text-align: center;
}

.icone_cat_txt a {
	color: #FFF;
	text-decoration: none;
} 


@media all and (max-width: 1400px) and (min-width: 1100px){
	
	.icone_cat {
		width: 220px;
	}
	
	.icone_cat_img {
		min-width: auto; 		
	}
	
	.icone_cat_txt {
	    min-height: 48px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
}


/* Página da bateria */
.pagina-produto-imagem {
	width: 440px;
	display: inline-block;
	vertical-align: top;
}

.pagina-produto-descricao {
	width: calc(100% - 450px);
	display: inline-block;
	vertical-align: top;
}

.produto-descricao .titulo {
	margin-top: 0;
}



.container-links.ver-lojas a {	
	background: #4e4e4e;
	color: #FFF;
	padding: 10px 30px;
}

.container-links a {
	color: #d40505;
	text-decoration: none;
	transition: .3s;
}

.container-links.ver-lojas a:hover {
	background: #222;
}





/* Breadcrumbs */
.breadcrumbs {
	background: #252525;
	color: #FFF;
	padding: 10px 5px;
}
.breadcrumbs a {
	color: #FFF;
	text-decoration: none;
	font-weight: 400;
}

.breadcrumbs ul {
	list-style-type: none;
	margin: 0; padding: 0;
}

.breadcrumbs li {
	display: inline-block; 
	vertical-align: middle;
}

.breadcrumbs li:after {
	content: '»';
	display: inline-block;
	margin-left: 5px;
}

.breadcrumbs span {
	color: #f5f5f5;
}

.breadcrumbs li:last-of-type:after {display:none;}



/* Página do produto */
.produto-descricao {
	float: left;
	width: calc(100% - 530px);
}

.produto-imagem {
	width: 512px;
	height: 425px;
	border: 1px solid silver;
	float: right;
	padding: 10px;
	margin-right: 10px;
	
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.produto-col-2 {
	width: 50%;
	display: inline-block;
	vertical-align: top;
}


.produto-vantagens-lojas img {
	width: 21%;
}

.produto-preco {
	padding: 10px;
	background: rgb(237, 246, 227);
	border: 1px solid rgba(0,0,0,0.1);
}

table .produto-preco {
	padding: 0 10px;
	padding-bottom: 7px;
}

#div_central table .produto-preco {
	padding-bottom: 0;
}

.pagina-bateria .produto-imagem img {
	max-height: 100%;
}

.pagina-bateria .produto-imagem {
	float: left;
	border: 1px solid rgba(0,0,0,0.1);
	margin-bottom: 10px;
	width: 320px;
	height: 300px;
}

.pagina-bateria .produto-coluna-preco {
	padding: 10px 0;
	max-width: 320px;
}

.pagina-bateria .produto-vantagens-lojas img {
	width: 48%;
	margin-bottom: 10px;
}

.pagina-bateria .produto-descricao {
	width: calc(100% - 340px);
}

.pagina-bateria .preco-loja {
	margin-top: 20px;
}

table .preco-loja {
	margin-top: 5px;
	margin-bottom: 2px;
	white-space: nowrap;
}

.pagina-bateria .entrega-gratuita {
	margin: 10px 0;
	display: inline-block;
	vertical-align: middle;
	font-size: 18px;
	line-height: 32px;
	font-weight: bold;
	color: #333;
}

.pagina-bateria .entrega-gratuita img {
	width: 32px;
	float: left;
	margin-right: 10px;
	vertical-align: middle;
}

@media all and (max-width: 767px) and (min-width: 0){
	.pagina-bateria {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.produto-coluna-preco {
		order: 2;
	}
	.produto-descricao {
		order: 1;
	}
	.retoma-bateria {
		order: 3;
	}
}

.catalogo-marca {
	display: inline-block;
	vertical-align: top;
	width: calc(25% - 10px);
	min-width: 320px;
	margin-bottom: 20px;
	border: 1px solid #f1f1f1;
	border-left: 2px solid #d40505;
	padding: 10px;
	margin-right: 10px;
	box-shadow: 0 2px 2px rgba(0,0,0,0.05);
}

.catalogo-marca.c3 {
	width: calc(33% - 10px);
}

.catalogo-marca a {
	color: #656565;
	text-decoration: none;
	display: block;
	margin-bottom: 5px;
	transition: .3s;
}

.catalogo-marca a:hover {
	text-decoration: underline;
}


.titulo-categoria {
	font-size: 42px;
}
.imagem-categoria {
	vertical-align: middle;
}


.form-row input[type=text], .form-row select {
    background: #fff;
}


/* form contact */
#form_contact input[type=text],
#form_contact input[type=email],
#form_contact textarea {
	padding: 10px;
	width: 100%;
	border: 1px solid #ccc;
	margin-bottom: 10px;
}
#form_contact input[type=text]#code_txt {
	width: calc(100% - 125px);
	padding: 12px 10px;
}


#form_contact {
	margin: 10px auto;
	margin-bottom: 50px;
	display: inline-block;
	text-align: left;
}

#form_contact button[type=submit]{
	padding: 10px 25px;
	border: 0;
	background: #55a003;
	cursor: pointer;
	color: white;
	margin: 10px 0;
}
#form_contact button[type=submit]:hover{
	background: ##5aad00;
}