/*
Theme Name: poliwar2024
Author: Globaltech Soluções Digitais
Author URI: https://www.globaltech.com.br
*/
.topoInfos {
    background-color: #ff550b;
    color: #fff;
    padding: 5px 0;
    font-weight: bold;
}
.topoInfos a {
	text-decoration: none;
	color: inherit;
}
.topoInfos .topoInfosInterno {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}
.botaoTopoInfos {
	background-color: #2db742;
	padding: 2px 18px;
	border-radius: 30px;
	color: #fff !important;
	font-size: 14px;
	display: flex;
	align-items: center;
	text-align: center;
	text-decoration: none;
}
.botaoTopoInfos i {
	margin-right: 5px;
}

@media (max-width: 768px) {
.topoInfos .topoInfosInterno {
	display: none !important;
}
}
header {
    color: #000;
    /* background-color: #f96208; */
    background-image: linear-gradient(to bottom, #ff550b4a, #f8f8f8,  #f1f1f1, #eeeeee);
    padding: 20px;
    width: 100%;
    height: 103px;
    z-index: 1000;
    position: fixed;
    transition: 0.3s !important;
    backdrop-filter: saturate(200%) blur(15px) !important;
    box-shadow: rgb(0 0 0 / 31%) 0px 10px 20px, rgb(0 0 0 / 25%) 0px 6px 6px !important;
    box-sizing: border-box;
}

@media (max-width: 768px) {
header {
	position: absolute !important;
	/* position: fixed !important; */
	color: #000;
	padding: 20px;
	width: 100%;
	height: 106px;
	z-index: 1000;
	transition: 0.3s !important;
	/* backdrop-filter: saturate(200%) blur(15px) !important; */
    /* box-shadow: rgb(0 0 0 / 19%) 0px 10px 20px, rgb(0 0 0 / 23%) 0px 6px 6px !important; */
	box-sizing: border-box;
}
}
header.efeitoScroll {
    width: 100%;
    height: 86px;
    top: 0;
    transition: 0.3s !important;
    background-image: none !important;
    box-shadow: rgb(0 0 0 / 19%) 0px 10px 20px, rgb(0 0 0 / 23%) 0px 6px 6px !important;
    background-color: rgb(249 98 8 / 12%) !important;
    backdrop-filter: blur(2px) !important;
}
.logo {
	margin: 0;
	width: 100%;
	transition: 0.3s !important;
}
.logo.efeitoScroll {
	width: 80% !important;
	transition: 0.3s !important;
	margin-top: 3px;
}

@media (max-width: 768px) {
.logo {
	margin: 0;
	width: 210px;
	transition: 0.3s !important;
	margin-left: 19.5vw;
}
}
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	margin-top: -13px;
	transition: 0.3s !important;
}
nav.efeitoScroll {
	margin-top: -16px;
	transition: 0.3s !important;
}
.menu {
	display: flex;
	gap: 30px;
	margin-top: -10px;
}
.menu ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}
.menu li {
	margin: 0;
	padding: 0;
}
.menu a {
    color: #fff;
    background-color: #000;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 25px;
    margin: 5px;
    text-shadow: 0px 0px 20px #ebebeb;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	
}
.menu a:hover {
	color: #000;
	background-color: #f96208;
}
.menu .current-menu-item > a, .menu .current-menu-ancestor > a, .menu .current-menu-parent > a, .menu .current_page_item > a {
	color: #000;
	 background-color: #f96208; 
}

@media (max-width: 768px) {
.menu {
	flex-direction: column;
	position: absolute;
	top: 116px;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	text-align: center;
	z-index: 9999;
	margin-left: -20px;
	transition: max-height 0.2s ease-in-out;
	background-image: none !important;
	box-shadow: rgb(0 0 0 / 19%) 0px 10px 20px, rgb(0 0 0 / 23%) 0px 6px 6px !important;
	background-color: rgb(255 255 255 / 97%) !important;
	backdrop-filter: blur(2px) !important;
	box-sizing: border-box;
}
.menu.active {
	max-height: 100vh;
}
.menu ul {
	flex-direction: column;
	margin-bottom: 20px;
	margin-top: 20px;
}
.menu li {
	margin: 10px;
	padding: 10px;
}
.menu a {
	padding: 10px;
}
.menuMobile {
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	z-index: 9999;
	display: flex;
}
.menuMobile::after {
	content: 'Menu' !important;
	display: block!important;
	height: auto!important;
	width: auto!important;
	color: #000 !important;
	cursor: pointer!important;
	text-decoration: none !important;
	font-size: 11px;
}
.menuMobile div {
	width: 30px;
	height: 4px;
	background-color: #000;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.menuMobile.active div:nth-child(1) {
	transform: rotate(45deg) translate(6px, 5px);
}
.menuMobile.active div:nth-child(2) {
	opacity: 0;
}
.menuMobile.active div:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}
}
body {
	font-family: 'Century Gothic';
	margin: 0;
	padding: 0;
	background-color: #fff;
	color: #333;
	line-height: 1.6;
}
main {
	padding: 100px 20px 20px 20px;
	overflow: hidden;
	line-height: 36px;
	color: #333;
	letter-spacing: 2px;
	text-align: justify;
}
main p {
	font-size: 14px;
	line-height: 25px;
	text-align: justify;
	color: #505050;
	letter-spacing: 3px;
}
.conteudo {
	width: 1200px;
	margin: 0 auto;
}

@media (max-width: 768px) {
.conteudo {
	width: 100% !important;
}
}
.col2 {
	width: 50%;
	float: left;
	padding: 10px;
	box-sizing: border-box;
	margin-top: 25px;
	margin-bottom: 25px;
}
.col3 {
	width: 33%;
	float: left;
	padding: 10px;
	box-sizing: border-box;
	margin-top: 25px;
	margin-bottom: 25px;
}

@media (max-width: 768px) {
.col2, .col3 {
	width: 100%;
	padding: 3px;
}
}
@font-face {
	font-family: 'Century Gothic';
	src: url('fonts/hinted-CenturyGothic.woff2') format('woff2'), url('fonts/hinted-CenturyGothic.woff') format('woff'), url('fonts/hinted-CenturyGothic.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
button {
	cursor: pointer !important;
}
.titulo {
	font-size: 36px;
	margin-top: 40px;
	margin-bottom: 30px;
	text-align: center;
	color: #f96208;
}
.titulo a {
	color: #f96208;
	text-decoration: none;
}

@media (max-width: 768px) {
.titulo {
	font-size: 24px !important;
	margin-top: 30px;
	margin-bottom: 18px;
	text-align: center;
	color: #f96208;
}
}
h1 {
	font-size: 36px;
	margin-top: 40px;
	margin-bottom: 30px;
}
h2 {
	font-size: 24px;
	margin-top: 40px;
	margin-bottom: 30px;
}
h3, h4, h5, h6 {
	font-size: 18px;
	margin-top: 40px;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
h1, h2, h3, h4, h5, h6 {
	font-size: 18px !important;
	margin-top: 24px;
	margin-bottom: 24px;
}
}
footer {
    /* background-image: linear-gradient(to bottom, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #fefefe, #fcfcfc, #fbfbfb, #f8f8f8, #f4f4f4, #f1f1f1, #eeeeee); */
    background-color: #f96208;
    text-align: center;
    width: 100%;
    padding: 20px !important;
    box-sizing: border-box;
    border-top: 4px #000000 solid;
    box-shadow: 0px 0px 6px 4px #f9620838;
}
.conteudoFooter, .conteudoFooter a {
	max-width: 1200px;
	margin: 0 auto !important;
	color: #000 !important;
	text-decoration: none !important;
}
.logoFooter {
	float: left;
	margin-top: 10px;
}

@media (max-width: 768px) {
.logoFooter {
	float: inherit;
	margin-top: 10px;
}
}
.col3Footer {
	display: inline-table;
	float: left;
	width: 33.333%;
	overflow: hidden;
}

@media (max-width: 768px) {
.col3Footer {
	width: 100% !important;
	overflow: hidden;
}
}
.blocoFullFooter {
	margin: 0 auto !important;
	text-align: center;
	width: 100%;
	overflow: hidden;
	font-size: 12px !important;
	letter-spacing: 1px;
}
.enderecoFooter {
	font-size: 16px !important;
	font-weight: bold;
	text-align: center;
	margin-top: 10px;
}
.mapaFooter {
	font-size: 12px !important;
}
.horarioFooter {
	font-size: 14px !important;
}
.emailFooter {
	font-size: 14px !important;
}
.redesSociaisFooter {
	font-size: 30px !important;
	display: inline-block !important;
	text-align: center !important;
	padding: 5px;
}
.telefoneFooter a {
	font-size: 22px !important;
}
.tituloFooter {
	font-size: 18px;
}
.marcaFooter {
	width: 93%;
	text-align: right;
	margin-top: -48px;
}

@media (max-width: 768px) {
.marcaFooter {
	width: 100%;
	text-align: center;
	margin-top: 18px;
	margin-bottom: 5px;
}
}
.avisoPoliticaPrivacidade {
	position: fixed;
	bottom: 16px;
	left: 6px;
	width: 198px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff !important;
	text-align: center;
	padding: 8px;
	font-size: 11px;
	line-height: 13px;
	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
	z-index: 99999;
	display: none;
	font-weight: bold;
}
.avisoPoliticaPrivacidade button {
	background-color: #4CAF50;
	color: #000;
	border: none;
	padding: 3px;
	margin: 5px;
	cursor: pointer !important;
	font-size: 11px;
	border-radius: 10px;
	width: 68px;
}
.avisoPoliticaPrivacidade button:hover {
	background-color: #45a049;
}
.avisoPoliticaPrivacidade a {
	color: #000;
	text-decoration: none !important;
}
input[type="text"], input[type="search"], input[type="password"], input[type="email"], input[type="url"], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="number"], input[type="range"], input[type="tel"], input[type="time"], input[type="week"], textarea {
    background: #f962080d;
    border-radius: 4px;
    box-shadow: 0 0 2px 1px rgb(249 98 8);
    border: 1px solid #ffffff;
    margin: 0 auto;
    width: 100%;
    padding: 8px;
    color: #3D5166 !important;
    font-size: 13px;
    font-family: 'Century Gothic', Arial, 'Arial Unicode MS', Helvetica, Sans-Serif;
    font-weight: normal;
    font-style: normal;
    text-shadow: none;
}

@media (max-width: 768px) {
input[type="text"], input[type="search"], input[type="password"], input[type="email"], input[type="url"], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="number"], input[type="range"], input[type="tel"], input[type="time"], input[type="week"], textarea {
	width: 96% !important;
}
}
select {
	height: 37px !important;
	background: #F9FAFB !important;
	border-radius: 4px !important;
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.35) !important;
	border: 1px solid #B9C2CB !important;
	margin: 0 auto !important;
	font-size: 16px !important;
	color: #000 !important;
}

@media (max-width: 768px) {
select {
	font-size: 12px !important;
}
}
.wpcf7-submit {
	width: 250px !important;
	background-color: #f96208 !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 25px !important;
	cursor: pointer !important;
	font-size: 18px;
	padding: 10px;
}
.wpcf7-submit:hover {
	background-color: #b6bfc9 !important;
	color: #FFFFFF !important;
}
img.wpcf7-form-control.wpcf7-captchac.wpcf7-captcha-captcha {
	width: 138px !important;
	height: 37px !important;
	margin-top: 4px !important;
	margin-left: 12px !important;
	margin-bottom: 8px !important;
}

@media (max-width: 768px) {
img.wpcf7-form-control.wpcf7-captchac.wpcf7-captcha-captcha {
	height: 30px !important;
}
}
.formCol3 {
	width: 390px;
	float: left !important;
	padding: 4px;
	font-size: 18px;
	font-weight: bold;
}

@media (max-width: 768px) {
.formCol3 {
	width: 100%;
	float: left !important;
	padding: 0px;
	font-size: 18px;
	font-weight: bold;
}
}
.formCol2 {
	width: 48%;
	float: left;
	padding: 7px;
	font-size: 18px;
	font-weight: bold;
}

@media (max-width: 768px) {
.formCol2 {
	width: 100%;
	float: left;
	padding: 0px;
	font-size: 18px;
	font-weight: bold;
}
}
.formColFull {
	width: 1185px;
	float: left;
	padding: 5px;
	font-size: 18px;
	font-weight: bold;
}

@media (max-width: 768px) {
.formColFull {
	width: 100%;
	float: left;
	padding: 0px;
	font-size: 18px;
	font-weight: bold;
}
}
::placeholder {
color:#000 !important;
font-size:14px !important;
}

@media (max-width: 768px) {
 
::placeholder {
font-size:12px !important;
}
}
span.wpcf7-not-valid-tip {
	font-size: 13px !important;
}

@media (max-width: 768px) {
span.wpcf7-not-valid-tip {
	font-size: 12px !important;
	text-align: left;
	line-height: 16px;
	margin-bottom: 10px;
}
}
.wpcf7-validation-errors {
	margin-top: 20px !important;
	color: #fff !important;
	font-size: 16px !important;
	line-height: normal;
	background: #f00 !important;
	padding: 10px !important;
	text-align: center !important;
	float: left;
	border: none !important;
	width: 100%;
	box-sizing: border-box;
	font-weight: bold !important;
	animation: pulse 1.0s infinite !important;
	animation-direction: alternate !important;
	animation-name: pulse !important;
}
.wpcf7-mail-sent-ok {
	margin-top: 20px !important;
	color: #000 !important;
	font-size: 18px !important;
	background: #a3ff03 !important;
	padding: 10px !important;
	text-align: center !important;
	float: left;
	border: none !important;
	width: 100%;
	box-sizing: border-box;
	font-weight: bold !important;
	animation: pulse 1.0s infinite !important;
	animation-direction: alternate !important;
	animation-name: pulse !important;
}

@media (max-width: 768px) {
.wpcf7-validation-errors, div.wpcf7-mail-sent-ok {
	width: 96%;
}
}
blockquote {
	background: #f1f1f1;
	padding: 6px 47px;
	font-style: italic;
	width: 100%;
	box-sizing: border-box;
	margin: 25px;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	height: auto;
}
.alignleft {
	float: left;
	margin: 25px;
	max-width: 100%;
	height: auto;
}
.alignright {
	float: right;
	margin: 25px;
	max-width: 100%;
	height: auto;
}

@media (max-width: 768px) {
.aligncenter, .alignleft, .alignright {
	float: none !important;
	width: 100%;
	height: auto;
	margin: auto;
	margin-left: auto;
	margin-right: auto;
}
}
/***/

.blocoIntroFull {
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	position: relative;
	margin-bottom: -50px;
}
.blocoFull {
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	position: relative;
}
.bloco {
	width: 1200px;
	margin: 0 auto;
	overflow: hidden;
}

@media (max-width: 768px) {
.blocoIntroFull, .blocoFull, .bloco {
	width: 100% !important;
	position: relative;
	left: 0 !important;
	right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}
}
.wa__popup_chat_box .wa__popup_heading {
	display: none !important;
}
.wa__btn_popup {
	right: 30px !important;
}
.wa__btn_popup .wa__btn_popup_txt {
	font-weight: bold !important;
	width: 130px !important;
	right: 100% !important;
	text-align: center !important;
	font-size: 12px !important;
	top: 15px !important;
	padding: 7px 0 7px 0px !important;
	margin-right: -99px !important;
	margin-top: -56px !important;
	letter-spacing: inherit !important;
	line-height: 11px !important;
	border-radius: 20px !important;
	transition: 0.4s ease all !important;
}

@media (max-width: 768px) {
.wa__btn_popup .wa__btn_popup_txt {
	font-weight: bold !important;
	width: 100px !important;
	height: auto !important;
	right: 100% !important;
	text-align: center !important;
	font-size: 9px !important;
	top: 11px !important;
	padding: 5px !important;
	margin-right: -78px !important;
	margin-top: -45px !important;
	letter-spacing: inherit !important;
	line-height: 10px !important;
	border-radius: 16px !important;
	transition: 0.4s ease all !important;
}
}
.wa__btn_popup .wa__btn_popup_icon {
	width: 70px !important;
	height: 70px !important;
	animation: pulse 1.0s infinite !important;
	animation-direction: alternate !important;
	animation-name: pulse !important;
}
.wa__btn_popup .wa__btn_popup_icon:before {
	background-size: 40px auto !important;
}

@media (max-width: 768px) {
.wa__btn_popup .wa__btn_popup_icon {
	width: 55px !important;
	height: 55px !important;
	animation: pulse 1.0s infinite !important;
	animation-direction: alternate !important;
	animation-name: pulse !important;
}
.wa__btn_popup .wa__btn_popup_icon:before {
	background-size: 30px auto !important;
}
}

@media (max-width: 768px) {
.hm {
	display: none !important;
}
}

@media (min-width: 1000px) {
.hd {
	display: none !important;
}
}
