/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/************************************/
/* RESET */
/************************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
	box-sizing: border-box;
}

img {
  width: 100%;
}

:focus {
	outline: none;
}

.clearFix {
	clear: both;
}

#preloader {
	webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50vh;
    position: fixed;
    display: none;
    padding: 20px;
    background-color: rgba(255,255,255,.8);
    border-radius: 50%;
    width: 150px;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  -moz-appearance:none;
  margin: 0; 
}


/************************************/
/* END RESET */
/************************************/

:root {

	/* fonts */
	--baseTextColor: #333;
	--baseLinkColor: #ca971b;

	/* forms */
	--formBackgroundColor: #fff;
	--formBorder: 1px solid #ccc;
	--formCheckedColor: #ca971b;
	--formDropDownOptionHoverBackgroundColor: #333;
	--formDropDownOptionHoverTextColor: #fff;

	/* font-family: 'Satisfy', cursive; */
	font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--baseTextColor);
	background: #333;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 2000px;
	padding: 0 3vw;
  position: relative;
  margin: auto;
}

.size100 { font-size: 100px; }
.size56 { font-size: 56px; }
.size36 { font-size: 36px; }
.size26 { font-size: 26px; }
.size20 { font-size: 20px; }

section {
	width: 100%;
	padding: 9vh 0 0 0;
	position: relative;
}

@media (max-width:1200px) {

	.size100 { font-size: 80px; }
	.size56 { font-size: 48px; }
	.size36 { font-size: 30px; }
	.size26 { font-size: 20px; }
	.size20 { font-size: 18px; }

	section {
		padding: 5vh 0 0 0;
	}

}

@media (max-width:767px) {

	.size100 { font-size: 60px; }
	.size56 { font-size: 36px; }
	.size36 { font-size: 24px; }
	.size26 { font-size: 18px; }
	.size20 { font-size: 18px; }

	section {
		padding: 7vh 0 0 0;
	}

}

a {
  color: var(--baseLinkColor);
}

a:hover {
  text-decoration: none;
}

button {
	border-top: none;
	border-bottom: none;
}

/************************************/
/* GRAPHIC ELEMENTS */
/************************************/

/* TRANSITION STYLE */

.transition {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

/* CALL TO ACTION */

.cta {
	color: #fff;
	display: inline-block;
	position: relative;
	padding: 10px 20px;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	cursor: pointer;
	text-transform: uppercase;
	text-decoration: none;
}

.cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #fff;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.cta::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 1px;
	background: #fff;
	transform: rotate(180deg);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.ctaBlack {
	color: #333;
	display: inline-block;
	position: relative;
	padding: 10px 20px;
	border-left: 1px solid #333;
	border-right: 1px solid #333;
	cursor: pointer;
	text-transform: uppercase;
	text-decoration: none;
}

.ctaBlack::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #333;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.ctaBlack::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 1px;
	background: #333;
	transform: rotate(180deg);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.cta:hover {
	text-shadow: 0 0 10px rgba(255,255,255,.7);
}

.ctaHover::before {
	width: 100%;
}

.ctaHover::after {
	width: 100%;
}

/* FORMS */

/* input */

.formStyle .fsInput {
	background: var(--formBackgroundColor);
	border: var(--formBorder);
	color: var(--baseTextColor);
	padding: 10px;
	width: 100%;
	font-size: 15px;
	margin-bottom: 10px;
	min-height: 40px;
}

/* dropdown */

.formStyle .fsDropDown {
	position: relative;
	width: 100%;
	margin-bottom: 10px;
	min-height: 40px;
	cursor: pointer;
}

.formStyle .fsDropDown::after {
	color: var(--baseTextColor);
	content: '\e813';
  font-family: 'icomoon';
  speak: none;
	position: absolute;
	top: 14px;
	right: 10px;
	font-size: 15px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.formStyle .fsDropHover::after {
	transform: rotate(180deg);
}

.formStyle .fsDropDown li {
	position: relative;
}

.formStyle .fsDropDown .fsSelected {
	background: var(--formBackgroundColor);
	color: var(--baseTextColor);
	border: var(--formBorder);
	width: 100%;
	display: block;
	padding: 10px;
	text-align: left;
}

.formStyle .fsDropDown .fsOptions {
	background: var(--formBackgroundColor);
	position: absolute;
	box-shadow: 0 0 2px rgba(0,0,0,.2);
	width: 100%;
	display: none;
	z-index: 1;
}

.formStyle .fsDropDown .fsOptions > li {
	border-bottom: var(--formBorder);
	position: relative;
	padding: 10px;
	text-align: left;
	cursor: pointer;
}

.formStyle .fsDropDown .fsOptions > li:hover {
	color: var(--formDropDownOptionHoverTextColor);
	background: var(--formDropDownOptionHoverBackgroundColor);
}

/* checkbox */

.formStyle .fsCheckbox {
	background: var(--formBackgroundColor);
	border: var(--formBorder);
	width: 30px;
	height: 30px;
	padding: 8px;
	margin: 5px 0 15px 0;
	display: inline-block;
	cursor: pointer;
	position: relative;
	vertical-align: middle;
}

.formStyle .fsCheckbox.fsChecked {
	background: #f1f1f1;
}

.formStyle .fsCheckbox.fsChecked::after {
	background: var(--formCheckedColor);
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 1px;
	display: block;
}

/* radiobutton */

.formStyle .fsRadio {
	background: var(--formBackgroundColor);
	border: var(--formBorder);
	width: 30px;
	height: 30px;
	padding: 8px;
	margin: 5px 0 15px 0;
	display: inline-block;
	cursor: pointer;
	position: relative;
	border-radius: 50%;
	vertical-align: middle;
}

.formStyle .fsRadio.fsChecked {
	background: #f1f1f1;
}

.formStyle .fsRadio.fsChecked::after {
	background: var(--formCheckedColor);
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: block;
}

/* form error */

.formStyle .fsError {
	border: 1px solid #ff0000;
	box-shadow: 0 0 2px #ff0000;
}

/* END FORMS */

/* PRODUCTS LISTING */

.itemContainer .itemImg {
  overflow: hidden;
  position: relative;
}

.itemContainer.col4 .itemImg {
  height: 26.5vw;
}

.itemContainer.col6 .itemImg {
  height: 17.6vw;
}

.itemContainer.col3_5 .itemImg {
	height: 17vw;
}

.itemContainer .itemImg img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform:translate(-50%, -50%);
  -moz-transform:translate(-50%, -50%);
  -ms-transform:translate(-50%, -50%);
  -o-transform:translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.itemContainer .itemInfo {
  width: 100%;
}

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

.itemContainer .call {
  width: 60%;
}

.itemContainer .ctaBlack {
  width: 100%;
  text-align: center;
}

.itemContainer .price {
  width: 40%;
  color: #fff;
  background: #333;
  padding: 10px;
  text-align: right;
  font-weight: 700;
}

.itemContainer .itemTitle {
  width: 100%;
  padding: 20px 10px;
  text-align: center;
  color: var(--baseTextColor);
}

.itemContainer .itemLink {
  text-decoration: none;
}

.itemContainer .itemImg img {
  -webkit-filter: grayscale(60%);
  filter: grayscale(60%);
}

.itemContainer .itemLink:hover > .itemImg img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  width: 105%;
}

@media (min-width:1600px){
  .itemContainer.col4 .itemImg {
    height: 20vw;
    max-height: 422px;
  }
}

@media (max-width:1400px){
	.itemContainer.col3_5 .itemImg {
		height: 26vw;
	}
}

@media(max-width: 1000px) {
  .itemContainer.col6 .itemImg {
    height: 35vw;
  }

	.itemContainer.col4 .itemImg {
    height: 35vw;
  }

	.itemContainer.col3_5 .itemImg {
		height: 35vw;
	}
}

@media (max-width:750px){
  .itemContainer.col4 .itemImg {
    height: 52vw;
  }

	.itemContainer.col3_5 .itemImg {
		height: 52vw;
	}
}

@media (max-width:480px){
  .itemContainer.col4 .itemImg {
    height: 70vw;
  }

	.itemContainer.col6 .itemImg {
    height: 51vw;
  }

	.itemContainer.col3_5 .itemImg {
		height: 103vw;
	}
}

/* END PRODUCTS LISTING */


/************************************/
/* END GRAPHIC ELEMENTS */
/************************************/

/************************************/
/* HEADER */
/************************************/
#header {
	z-index: 2;
	position: fixed;
	width: 100%;
	color: #fff;
}

#header > .wrap {
	z-index: 1;
}

#header > .wrap > a {
	display: inline-block;
}

#header .searchHeader {
	height: 40px;
	position: absolute;
	text-align: right;
	z-index: 2;
	right: 0;
	display: inline-block;
	width: 100%;
}

#header .mainHeaderContainer {
	height: 50px;
	padding-top: 70px;
	position: absolute;
	text-align: right;
	right: 0;
	display: inline-block;
	width: 100%;
}

#header .headerLogo {
	width: 16vw;
	min-width: 180px;
	max-width: 320px;
	padding: 20px 0;
}

#header .burger {
	position: absolute;
	margin-top: -70px;
	display: none;
	right: 3vw;
}

#header .mainNav {
	position: relative;
	z-index: 3;
	display: inline-block;
}

#header .linksContainer {
	display: inline-block;
}

.linkContainer {
	display: inline-block;
	position: relative;
}

.linkContainer > .cta {
	display: inline-block;
	border-left: 1px solid #999;
	border-right: none;
	color: #ccc;
	padding: 10px 15px;
}

.linkContainer > .cta:hover {
	color: #fff;
}

.linkContainer > .cta::before {
	background: #999;
}

.linkContainer > .cta::after {
	background: #999;
}

.linkContainer:last-child .cta {
	border-right: 1px solid #999;
}

#header .searchContainer {
	display: inline-block;
	vertical-align: top;
	text-decoration: none;
}

#header .cartContainer {
	position: relative;
	width: 60px;
	height: 60px;
	background: #fff;
	border-bottom-left-radius: 50%;
	border-bottom-right-radius: 50%;
}

#header .number {
	width: 100%;
	height: 30px;
	background: var(--baseLinkColor);
	color: #fff;
	text-align: center;
	padding: 5px;
}

#header .icon-cart {
	color: #333;
	text-align: center;
	font-size: 20px;
}

#header .cart:hover > .cartContainer {
	background: var(--baseLinkColor);
	color: #333;
}

#header .icon-search {
	padding: 10px 40px 10px 20px;
	font-size: 30px;
	cursor: pointer;
}

#header .icon-search:hover {
	color: var(--baseLinkColor);
}

#header .registo {
	display: inline-block;
	text-decoration: none;
	padding: 10px 20px;
	vertical-align: middle;
	color: #fff;
	text-transform: uppercase;
}

#header .registo::before {
	content: "\e909";
	font-family: "icomoon";
	font-size: 30px;
	display: inline-block;
	vertical-align: middle;
}

#header .registo:hover {
	color: var(--baseLinkColor);
}

#header .icon {
	display: none;
}

#header .nivel1 {
	position: absolute;
	background: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,.4);
	text-align: left;
	display: none;
}

#header .nivel1Link {
	position: relative;
}

#header .ctaSub {
	display: block;
	padding: 6px 20px;
	white-space: nowrap;
	text-decoration: none;
	color: #333;
	text-transform: uppercase;
}

#header .ctaSub:hover {
	color: #fff;
	background: #333;
}

#header .nivel1.rightAlign {
	right: 0;
}

#header .nivel2 {
	position: absolute;
	background: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,.4);
	text-align: left;
	left: calc(100% - 5px);
	top: 0;
	display: none;
}

#header .nivel2.rightAlign {
	left: initial;
	right: calc(100% - 5px);
}

#header .searchBox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #333;
	z-index: 10;
	color: #fff;
	display: none;
}

#header .searchBox .formStyle {
	margin: auto;
	width: 80%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	position: relative;
}

#header .searchBox .fsInput {
	background: rgba(0,0,0,.2);
	border: none;
	color: #fff;
	margin-bottom: 0;
	height: 10vh;
	font-size: 1.5rem;
}

#header .searchBox .searchSubmit {
	position: absolute;
	top: 0;
	right: 0;
	width: 10vh;
	height: 10vh;
	font-size: 1.5rem;
	min-height: 42px;
	border: 0;
}

#header .searchBox .searchClose {
	color: #fff;
	font-size: 3rem;
	padding: 20px;
	cursor: pointer;
	display: block;
	text-align: center;
}

#header .searchBox .searchClose:hover {
	color: var(--baseLinkColor);
}


@media (max-width: 1260px){
	#header .searchHeader {
		padding-right: 100px;
	}

	#header .mainHeaderContainer {
		position: initial;
		float: right;
		width: auto;
	}

	#header .burger {
		display: inline-block;
		z-index: 5;
		text-transform: uppercase;
		text-align: center;
		border-left: 1px solid #ccc;
		border-right: 1px solid #ccc;
		padding: 10px 10px 0 10px;
		cursor: pointer;
	}

	#header .burger.close::before {
		content: "";
		position: fixed;
		width: 50%;
		height: 70px;
		background: #333;;
		right: 0;
		top: 0;
	}

	#header .burger:hover {
		color: var(--baseLinkColor);
	}

	#header .linesContainer {
		position: relative;
		height: 30px;
		width: 30px;
		margin: auto;
	}

	#header .linesContainer li {
		width: 100%;
		height: 1px;
		background: #ccc;
		position: absolute;
		top: 10px;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
	}

	#header .linesContainer li:first-child {
		top: 0;
	}

	#header .linesContainer li:last-child {
		top: 20px;
	}

	#header .linesContainer.close li {
		opacity: 0;
	}

	#header .linesContainer.close li:nth-child(2) {
		opacity: 1;
		transform: rotate(45deg);
	}

	#header .linesContainer.close li:nth-child(3) {
		opacity: 1;
		transform: rotate(-45deg);
	}

	#header .mainNav {
		display: none;
		/* display: block; */
		overflow: auto;
		height: 100vh;
		background: #333;
		position: fixed;
		width: 50%;
		right: 0;
		top: 0;
		padding: 80px 0 30px 0;
		text-align: center;
	}

	#header .mainNav::-webkit-scrollbar {
    display: none;
	}

	#header .linksContainer {
		display: block;
	}

	#header .linkContainer {
		display: block;
	}

	#header .linkContainer > .cta {
		display: block;
		text-align: left;
		margin: 0 0 0 50px;
		border: none;
	}

	#header .nivel1 {
		position: relative;
		box-shadow: none;
	}

	#header .ctaSub {
		margin: 0 0 0 50px;
		padding: 10px 20px;
	}

	#header .nivel1.rightAlign {
		right: auto;
	}

	#header .icon {
		position: absolute;
		left: 10px;
		top: 2px;
		font-size: 20px;
		padding: 6px;
		text-align: left;
		display: inline-block;
		border: 1px solid #666;
		border-radius: 2px;
		cursor: pointer;
	}

	#header .nivel2 {
		position: relative;
		box-shadow: none;
		background: #f1f1f1;
		left: initial;
		right: initial;
	}

	#header .nivel1 .icon {
		color: #333;
	}
}

@media (max-width:767px){
	#header .searchHeader {
		width: 100%;
		position: relative;
		background: #333;
		padding-right: 0;
	}

	#header .headerLogo {
		padding: 10px 0;
	}

	#header .mainNav {
		width: 100%;
		padding: 110px 0 30px 0;
	}

	#header .burger.close::before {
		width: 100%;
		height: 100px;
	}

	#header .cartContainer {
		height: 40px;
		background: none;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		width: 74px;
	}

	#header .number {
		display: inline-block;
		vertical-align: middle;
		height: 40px;
		width: 40px;
		padding: 10px;
	}

	#header .icon-cart {
		display: inline-block;
		color: #fff;
		vertical-align: middle;
		width: 30px;
	}

	#header .icon-search {
		font-size: 20px;
		padding: 10px 20px 10px 10px;
	}

	#header .registo {
		padding: 10px;
	}

	#header .registo::before {
		font-size: 20px;
	}

	#header .searchBox .searchClose {
		font-size: 2rem;
	}

	#header .searchBox .fsInput {
		font-size: 1rem;
	}
}


/************************************/
/* END HEADER */
/************************************/

/************************************/
/* FOOTER */
/************************************/
#footer {
	width: 100%;
	padding: 3vh 0;
}

#footer .footerLogo {
	display: block;
	margin: auto;
	max-width: 130px;
}

#footer .info {
	display: inline-block;
	width: 33.33%;
	vertical-align: top;
}

#footer .disclaimer {
	text-align: center;
	color: #fff;
}

#footer .icon-kriacao {
	display: block;
	text-align: center;
	text-decoration: none;
	color: #666;
	padding: 10px;
	cursor: pointer;
}

#footer .icon-kriacao:hover {
	color: var(--baseLinkColor);
}

#footer .infoContainer {
	padding: 2vh 0;
}

#footer .social {
	font-size: 40px;
	color: #fff;
	padding-right: 10px;
	text-decoration: none;
	display: inline-block;
	vertical-align: top;
}

#footer .social:hover {
	color: var(--baseLinkColor);
}

#footer .socialTxt {
	padding: 10px 0;
	color: #fff;
}

#footer .newsForm {
	display: inline-block;
	vertical-align: top;
	margin-left: 20px;
	min-width: 200px;
	position: relative;
}

#footer .newsSubmit {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	background: #fff;
	border: 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

#footer .footerNav {
	text-align: center;
}

#footer .supportTxt {
	padding: 20px 0 10px 0;
	text-align: center;
	text-transform: uppercase;
	color: var(--baseLinkColor);
}

#footer .supportContact {
	text-align: center;
}

#footer .support {
	color: #fff;
	text-decoration: none;
	display: inline-block;
	padding: 0 15px;
}

#footer .support:hover {
	color: var(--baseLinkColor);
}

#footer .icon-mb {
	color: #fff;
	font-size: 30px;
	text-align: right;
}

@media(max-width:1190px){
	#footer .info {
		display: block;
		width: 100%;
		text-align: center;
		padding: 0 0 20px 0;
	}

	#footer .supportTxt {
		padding: 10px 0;
	}

	#footer .icon-mb {
		text-align: center;
	}
}

@media(max-width:767px){
	#footer .cta {
		padding: 10px 5px;
	}
}

/************************************/
/* END FOOTER */
/************************************/
