/* 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;
}

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

/* FONTS NÃO GOGGLE */
/* @font-face {
	font-family: 'myFont';
	src: url('myfont-webfont.eot?#iefix') format('embedded-opentype'),
	     url('myfont-webfont.ttf')  format('truetype');
} */

:root {

	font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333;
	background: #fff;
  -webkit-font-smoothing: antialiased;
}

.nothingYouCouldDo {
	font-family: 'Nothing You Could Do', cursive;
}

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

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

.size36 { font-size: 36px; }
.size26 { font-size: 26px; }
.size22 { font-size: 22px; }

@media (max-width:1200px) {

	.size36 { font-size: 30px; }
	.size28 { font-size: 22px; }
	.size22 { font-size: 20px; }

}

@media (max-width:767px) {

	.size36 { font-size: 24px; }
	.size28 { font-size: 20px; }
	.size22 { font-size: 18px; }

}

a {
  color: #193b67;
	text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* CALL TO ACTION */

.cta {
	background: #193b67;
	color: #fff;
	display: inline-block;
	padding: 10px 20px;
	border-radius: 3px;
	cursor: pointer;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	border: 1px solid #193b67;
	font-size: 15px;
	cursor: pointer;
}

.ctaBlue {
	background: #006999;
	border: 1px solid #006999;
}

.ctaGreen {
	background: #006a68;
	border: 1px solid #006a68;
}

.ctaGold {
	background: #ba9c7d;
	border: 1px solid #ba9c7d;
}

.ctaLightBlue {
	color: #193b67;
	background: #f8f9fa;
	border: 1px solid #a2b3c0;
}

.ctaWhite {
	color: #193b67;
	background: #fff;
	border: 1px solid #fff;
	padding: 5px;
}

.cta:hover {
	background: #333;
	color: #fff;
	border: 1px solid #333;
	text-decoration: none;
}

/* TRANSITION STYLE */

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

/* FORMS */

/* input */

.formStyle {
	position: relative;
}

.formStyle .fsInput {
	background: #fff;
	border: 1px solid #ccc;
	color: #333;
	padding: 10px;
	width: 100%;
	font-size: 15px;
	margin-bottom: 10px;
	min-height: 40px;
	font-family: 'Roboto Condensed', sans-serif;
}

.formStyle .fsInput.extraPadding {
	padding: 10px 40px 10px 10px;
}

/* dropdown */

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

.formStyle .fsDropDown::after {
	color: #333;
	content: '\e813';
  font-family: 'icomoon';
  speak: none;
	position: absolute;
	top: 50%;
	right: 10px;
	font-size: 15px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.formStyle .fsDropHover::after {
	transform: rotate(180deg);
	top: calc(50% - 8px);
}

.formStyle .fsDropDown li {
	position: relative;
}

.formStyle .fsDropDown .fsSelected {
	background: #fff;
	color: #333;
	border: 1px solid #ccc;
	width: 100%;
	display: block;
	padding: 9px 30px 9px 10px;
	text-align: left;
}

.formStyle .fsDropDown .fsOptions {
	background: #fff;
	position: absolute;
	box-shadow: 0 0 2px rgba(0,0,0,.2);
	min-width: 100%;
	display: none;
	z-index: 1;
	white-space: nowrap;
}

.formStyle .fsDropDown .fsOptions > li {
	border-bottom: 1px solid #ccc;
	position: relative;
	padding: 10px;
	text-align: left;
	cursor: pointer;
}

.formStyle .fsDropDown .fsOptions > li:hover {
	color: #fff;
	background: #193b67;
}

/* checkbox */

.formStyle .fsCheckbox {
	background: #fff;
	border: 1px solid #ccc;
	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: #193b67;
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 1px;
	display: block;
}

/* radiobutton */

.formStyle .fsRadio {
	background: #fff;
	border: 1px solid #ccc;
	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: #193b67;
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: block;
}

/* input file */
.formStyle .fsFile {
	position: relative;
	margin-bottom: 10px;
}

.formStyle .fsFile input[type="file"]{
	display: none;
}

.formStyle .fsFile .fsFileLabel{
  cursor: pointer;
	display: inline-block;
}

.formStyle .fsFile .fsFileText{
  display: inline-block;
	padding: 5px;
}

/* form error */

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

.formStyle textarea {
	font-size: 15px;
	font-family: 'Roboto Condensed', sans-serif;
}

.formStyle .col2 {
	display: inline-block;
	width: 50%;
	padding: 0 5px 0 0;
}

.formStyle .col2:last-child {
	padding: 0 0 0 5px;
}

.formStyle .col3 {
	display: inline-block;
	width: 33.33%;
	padding: 0 5px;
}

.formStyle .col3:first-child {
	padding: 0 5px 0 0;
}

.formStyle .col3:last-child {
	padding: 0 0 0 5px;
}

.formStyle .col4 {
	display: inline-block;
	width: 25%;
	padding: 0 5px;
}

.formStyle .col4:first-child {
	padding: 0 5px 0 0;
}

.formStyle .col4:last-child {
	padding: 0 0 0 5px;
}

@media (max-width: 767px) {
	.formStyle .col4 {
		width: 50%;
	}

	.formStyle .col4:first-child {
		padding: 0 5px 0 0;
	}

	.formStyle .col4:nth-child(2) {
		padding: 0 0 0 5px;
	}

	.formStyle .col4:nth-child(3) {
		padding: 0 5px 0 0;
	}

	.formStyle .col4:last-child {
		padding: 0 0 0 5px;
	}
}

.formStyle button {
	font-size: 15px;
	font-family: 'Roboto Condensed', sans-serif;
}

.formStyle .formDisclaimerDiv {
  padding: 10px 0;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
	margin: 0 0 10px 0;
}

.formStyle .formDisclaimerUl {
  padding: 0 0 5px 0;
}

.formStyle .formDisclaimerLi {
  width: 40px;
  vertical-align: top;
  display: inline-block;
}

.formStyle .formDisclaimerLi:last-child {
  width: calc(100% - 40px);
  padding-top: 12px;
}

/* END FORMS */

/* CENTER IMAGES */

figure.centerImg {
	overflow: hidden;
	position: relative;
}

figure.centerImg img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/* END CENTER IMAGES */

/* SITE TITLES */

.siteTitle {
	text-align: center;
	color: #193b67;
}

.tabTitle {
	background: #fff;
	color: #ba9c7d;
	display: inline-block;
	padding: 5px 10px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	text-transform: uppercase;
	border: 1px solid #ccc;
	border-bottom: 0;
}

.tabSubTitle {
	color: #ba9c7d;
	padding: 10px 0;
}

/* END SITE TITLES */

.catBlueBg {
	background: #006999;
}

.catBlueTxt {
	color: #006999;
}

.catGreenBg {
	background: #006a68;
}

.catGreenTxt {
	color: #006a68;
}

/* PRODUTOS */

a.produtoDiv {
	width: 100%;
	display: block;
	position: relative;
	text-decoration: none;
	text-align: center;
}

a.produtoDiv:hover > .produtoImg img {
	width: 120%;
	filter: grayscale(.7);
}

a.produtoDiv .produtoImg {
	width: 100%;
	height: 13.5vw;
	max-height: 185px;
	margin: 0 0 10px 0;
}

a.produtoDiv .produtoTitle {
	font-weight: 700;
}

a.produtoDiv .produtoValor {
	margin: 5px 0 0 0;
	padding: 5px 0;
	position: relative;
}

a.produtoDiv .produtoValor::before {
	content: "";
	position: absolute;
	top: 0;
	left: 25%;
	width: 50%;
	height: 1px;
	background: #ccc;
}

a.produtoDiv .produtoSumario {
	display: none;
}

a.produtoDiv.lista {
	text-align: left;
}

a.produtoDiv.lista .produtoImg {
	width: 30%;
	height: 16.5vw;
	min-width: 300px;
	max-height: 250px;
	margin: 0;
	display: inline-block;
	vertical-align: top;
}

a.produtoDiv.lista .produtoInfoDiv {
	width: calc(70% - 100px);
	display: inline-block;
	vertical-align: top;
	padding: 30px 0 0 20px;
}

a.produtoDiv.lista .produtoValor {
	margin: 0;
	padding: 0;
	position: absolute;
	right: 0;
	top: 35px;
	font-size: 22px;
}

a.produtoDiv.lista .produtoTitle {
	font-size: 26px;
}

a.produtoDiv.lista .produtoValor::before {
	display: none;
}

a.produtoDiv.lista .produtoSumario {
	display: block;
	color: #333;
	padding: 20px 0;
}

/* END PRODUTOS */

/* AUTOCOMPLETE */

.ui-state-hover, .ui-state-active {
  background-color: #193b67 !important;
	border: 1px solid #193b67 !important;
}

/* END AUTOCOMPLETE */

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

/************************************/
/* HEADER */
/************************************/

#header {
	width: 100%;
	z-index: 20;
}

#header .topBlue {
	background-color: #193b67;
	padding: 10px 0;
}

#header .topHeaderUl {
	display: block;
	text-align: center;
	padding: 0 40px;
}

#header .topHeaderLi {
	display: inline-block;
	vertical-align: middle;
	padding: 5px;
}

#header .logo {
	max-width: 300px;
}

#header .claim {
	color: #fff;
}

#header .language {
	position: absolute;
	padding: 10px;
	right: 4vw;
	top: 0;
	color: #fff;
	text-transform: uppercase;
	font-size: 13px;
}

#header .logogs {
	position: absolute;
	padding: 2px;
	left: 4vw;
	top: 0;
	color: #fff;
	text-transform: uppercase;
	font-size: 13px;
}

#header .topLightBlue {
	background: #f3f5f7;
}

#header .checkWidthWrap {
	display: inline-block;
	width: 100%;
	background: #f3f5f7;
	text-align: center;
	border-bottom: 1px solid #d1d8e1;
}

#header .cwExtra {
	display: inline-block;
	width: 1px;
}

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

#header .burger {
	width: 40px;
	height: 40px;
	padding: 5px;
	display: none;
	position: relative;
}

#header .burger li {
	position: absolute;
	width: 30px;
	height: 1px;
	top: 20px;
	left: 5px;
	background: #193b67;
}

#header .burger li:first-child {
	top: 10px;
}

#header .burger li:last-child {
	top: 30px;
}

#header .burger.mobile li:first-child {
	left: 100px;
	opacity: 0;
}

#header .burger.mobile li:last-child {
	left: -100px;
	opacity: 0;
}

#header.mobile .burger {
	display: block;
}

#header .mainNav {
	display: block;
	z-index: 10;
}

#header.mobile .mainNav {
	display: none;
	position: absolute;
	left: 0;
	width: 100%;
}

#header .mainLinksUl {
	padding: 0 4vw;
}

#header.mobile .mainLinksUl {
	border-bottom: 1px solid #d1d8e1;
	min-width: initial;
}

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

#header.mobile .mainLinksLi {
	display: block;
}

#header .mainLink {
	padding: 20px 30px;
	display: block;
	text-transform: uppercase;
	border-right: 1px solid #d1d8e1;
	cursor: pointer;
}

#header .mainLinksLi:first-child .mainLink {
	border-left: 1px solid #d1d8e1;
}

#header .mainLink:hover {
	background: #fff;
	text-decoration: none;
}

#header.mobile .mainLink {
	padding: 10px 0;
	display: block;
	border-right: none;
	border-top: 1px solid #d1d8e1;
}

#header.mobile .mainLinksLi:first-child .mainLink {
	border-left: none;
}

#header .subLinksDiv {
	width: 100%;
	background: #fff;
	position: absolute;
	left: 0;
	text-align: center;
	box-shadow: 0 3px 3px rgba(0,0,0,.1);
	display: none;
	z-index: 100;
}

#header .subLinksWrap {
	position: relative;
	max-width: 1400px;
	margin: auto;
	background: #fff;
	z-index: 30;
}

#header .subLinksLi {
	display: inline-block;
	width: 33.33%;
	padding: 0 2vw 10px 2vw;
	text-align: left;
	vertical-align: top;
}

#header .subLinksTitle {
	padding: 20px 0 10px 0;
	font-size: 18px;
}

#header .ctaHeader {
	width: 100%;
	text-align: center;
}

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

#header .subLinksMarcasLi {
	display: inline-block;
	width: 50%;
	padding: 5px;
	border-right: 1px dashed #ccc;
}

#header .subLinksMarcasLi:nth-child(1) {
	border-bottom: 1px dashed #ccc;
}

#header .subLinksMarcasLi:nth-child(2) {
	border-right: none;
	border-bottom: 1px dashed #ccc;
}

#header .subLinksMarcasLi:nth-child(4) {
	border-right: none;
}

#header .subLinksMarcasImg {
	width: 100%;
	height: 10.5vw;
	max-height: 140px;
}

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

#header .subLinksDicasLi {
	border-bottom: 1px solid #d1d8e1;
	background: #e8ebef;
}

#header .subLinksDicasLi:nth-child(even) {
	background: #f3f5f7;
}

#header .subLinksDicasLink {
	padding: 10px;
	display: block;
}

#header .subLinksDicasContacto {
	color: #193b67;
	font-weight: 700;
	padding: 10px 0 10px 30px;
	position: relative;
}

#header .subLinksDicasContacto::before {
	content: "\e811";
	font-family: "icomoon";
	font-size: 20px;
	left: 0;
	position: absolute;
}

#header .subLinksDicasSubmit {
	position: absolute;
	padding: 10px;
	background: none;
	border: none;
	font-size: 20px;
	top: 0;
	right: 0;
}

@media (max-width: 767px) {
	#header .claim {
		font-size: 15px;
	}

	#header .logo {
		max-width: initial;
		width: auto;
		height: 30px;
	}
}

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

/************************************/
/* FOOTER */
/************************************/

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

#footer .rotaDiv > * {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	padding: 10px 0;
}

#footer .rotaImg {
	width: 8vw;
	max-width: 50px;
	margin: 0 0 0 10px;
}

#footer .slickMarcas {
	margin: auto;
	padding: 10px 0;
	max-width: 816px; /* ESTAVA 1000px; saíu sea sky - MA @2020.09.23 */
	border-top: 3px solid #999;
	border-bottom: 3px solid #999;
}

#footer .slickMarcas .slide {
	vertical-align: top;
	padding: 10px;
}

#footer .footerMarcasLink {
	text-align: center;
	color: #999;
}

#footer .newsletterDiv {
	padding: 2vh 0;
	text-align: center;
}

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

#footer .newsletterLi, #footer .widget.widget_sendy_widget {
	display: inline-block;
	width: 280px;
	padding: 10px 10px 0 10px;
}

#footer .newsletterLi:last-child {
	width: auto;
}

#footer .bottomBlue {
	background-color: #193b67;
	text-align: center;
}

#footer .footerLinks {
	padding: 30px;
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
}

#footer .footerMap iframe {
	width: 100%;
	height: 30vh;
	min-height: 200px;
}

#footer .footerInfo {
	padding: 3vh 0;
	background: #f3f5f7;
}

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

#footer .footerInfoLi:last-child {
	text-align: right;
}

#footer .phone::before {
	content: "\e811";
	font-family: "icomoon";
	position: relative;
	padding: 0 10px 0 0;
	color: #333;
}

#footer .mail::before {
	content: "\e80e";
	font-family: "icomoon";
	position: relative;
	padding: 0 10px 0 0;
	color: #333;
}

#footer .location::before {
	content: "\e810";
	font-family: "icomoon";
	position: relative;
	padding: 0 10px 0 0;
	color: #333;
}

#footer .footerContactLink {
	display: inline-block;
	padding: 5px 0;
	font-family: var(--baseFontFamily);
}

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

#footer .socialIcon {
	padding: 10px;
	margin: 0 0 5px 5px;
	border: 0;
	font-size: 20px;
}

#footer .icon-facebook {
	background: #3d5b95;
}

#footer .icon-youtube {
	background: #fa1216;
}

#footer .icon-instagram {
	background: #873eb6;
}

#footer .socialIcon:hover {
	background: #333;
	color: #fff;
}

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

#footer .icon-kriacao {
	color: #999;
	font-size: 12px;
	display: inline-block;
	margin: 0 0 10px 0;
}

#footer .litigio {
	text-align: center;
	font-size: 12px;
	color: #999;
	padding: 0 0 40px 0;
}

.mobile {
	display: none !important;
}

.desktop {
	display: block !important;
}

@media (max-width: 767px) {
	#footer .newsletterTxt {
		display: none;
	}

	#footer .newsletterLi {
		width: 100%;
	}

	#footer .newsletterLi:last-child {
		text-align: left;
		width: 100%;
		padding-top: 0;
	}

	#footer .footerLinks {
		padding: 20px;
	}

	#footer .footerInfoLi {
		width: 100%;
	}

	#footer .footerInfoLi:last-child {
		text-align: left;
		padding: 10px 0 0 0;
	}

	.mobile {
		display: inline-block !important;
	}

	.desktop {
		display: none !important;
	}
}

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

/************************************/
/* ASIDE */
/************************************/

.aside {
	position: fixed;
	z-index: 20;
	left: calc(100% - 40px);
	top: 50%;
	transform: translateY(-50%);
}

.aside .asideLi {
	position: relative;
	margin: 0 0 1px 0;
	display: block;
}

.aside .cta {
	padding: 10px 30px 10px 40px;
	position: relative;
	display: inline-block;
	white-space: nowrap;
	box-shadow: 0 0 3px rgba(0,0,0,.3);
}

.aside .icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
	font-size: 16px;
	color: #fff;
}

@media (max-width: 767px){
	.aside {
		left: initial;
		top: initial;
		bottom: 0;
		transform: translateY(0);
		width: 100%;
		padding: 5px 4vw;
		background: #ba9c7d;
	}

	.aside .asideLi {
		position: relative;
		margin: 0;
		display: inline-block;
		width: 33%;
	}

	.aside .cta {
		padding: 20px 5px 0 5px;
		display: block;
		white-space: normal;
		box-shadow: none;
		text-align: center;
	}

	.aside .icon {
		top: 5px;
		transform: translateY(0);
		left: 50%;
		transform: translateX(-50%);
	}

	#infoIcon {
		width: 100%;
		margin: 5px 0;
	}
}

.widget_sendy_widget input {padding:4px 8px;width:100%;margin-bottom:20px;}
.widget_sendy_widget input#sub-submit{padding:12px;border:1px solid #193b67;color:white;background-color:#193b67;cursor:pointer;}
.widget_sendy_widget input#sub-submit:hover{border:1px solid #193b67;color:#193b67;background-color:transparent;}

/************************************/
/* END ASIDE */
/************************************/
