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

*{
	margin: 0;
	padding: 0;
	border: 0;
	list-style:none;
	outline:none;
}

body{
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	color: #000;
	background-color: #fff;
}

a{
	text-decoration: none;
	color:#000;
	transition: 0.3s ease-in;
		-webkit-transition: 0.3s ease-in;
		-moz-transition: 0.3s ease-in;
		-o-transition: 0.3s ease-in;
}

a:hover{
	text-decoration: none;
	color:#b5b5b5;
}

.underline{ text-decoration: underline; }

.destaque{
	font-weight: 900;
}

.normal{
	font-weight: normal;
}

.clear{
	clear:both;	
}

.f10{
	font-size:10px;
}

.f12{
	font-size:12px;
}

.f14{
	font-size:14px;
}

.f16{
	font-size:16px;
}

.f18{
	font-size:18px;
}

.f20{
	font-size:20px;
}

.f24{
	font-size:24px;
}

.f26{
	font-size:26px;
}

.f30{
	font-size:30px;
}

.f36{
	font-size:36px;
}

.f40{
	font-size:40px;
}

.f50{
	font-size:50px;
}

.preto-branco{
    filter: grayscale(100%);
    filter: gray;
    	-webkit-filter: grayscale(100%);
}

.preto-branco:hover{
	filter: none;
    filter: none;
    	-webkit-filter: none;
}

.branco{
	color:#fff;
}

.preto{
	color:#000;
}

.azul{
	color:#003778;
}

.laranja{
	color:#eb840e;
}

.cinza{
	color:#666;
}

.prata{
	color:#bfbfbf;
}

.bg-preto{ background: #000; padding: 0 20px; }
.bg-verde{ background: #cfe188; padding: 0 20px; }

.bordas{ border-right:1px solid #eb840e; }

.form-control{ padding: 20px 10px; }

.justify{
	text-align:justify;
}

.center{
	text-align:center;
}

.vmiddle{
	vertical-align:middle;
}

.left{
	float:left;
}

.right{
	float:right;
}

.textos-left{
	float:left;
	width:75%;
}

.textos-right{
	float:right;
	width:22%;
	text-align: right;
	margin-top: 45px;
}

.textos-right div{ margin-bottom: 10px; }

.m0{ margin:0; }
.pt-5{ padding-top: 5px; }
.pb-5{ padding-bottom: 5px; }
.p-10{ padding: 10px; }
.pt-10{ padding-top: 10px; }
.plr-10{ padding:0 10px; }
.pb-10{ padding-bottom: 10px; }
.pt-20{ padding-top: 20px; }
.pb-20{ padding-bottom: 20px; }
.pt-30{ padding-top: 30px; }
.pb-30{ padding-bottom: 30px; }
.mt-30{ margin-top: 30px; }
.mb-30{ margin-bottom: 30px; }
.pt-50{ padding-top: 50px; }
.pb-50{ padding-bottom: 50px; }
.mt-50{ margin-top: 50px; }
.mb-50{ margin-bottom: 50px; }
.pt-150{ padding-top: 150px; }

h1{
	font-size:22px;
	margin:0;
	padding:0;
}

.w1200{
	max-width:1180px;
	margin:auto;
}

.w1400{
	max-width:1400px;
	margin:auto;
}

.w33{
	float:left;
	width:33.33%;
	padding:0;
}

.w50{
	float:left;
	width:48%;
	padding:0 1%;
}

.empresa .w33{
	float:left;
	width:33.33%;
	padding:0 20px;
}

.w9{ width:9%; }
.w10{ width:10%; }
.w11{ width:11%; }
.w15{ width:15%; }
.w20{ width:20%; }
.w25{ width:25%; }
.w30{ width:30%; }
.w35{ width:35%; }
.w40{ width:40%; }
.w60{ width:60%; }

.conteudo{
	padding:20px;
}

.min{ min-height:65vh; }

.esconde{ display: none; }

.seta{ font-size: 60px; color: #BFBFBF }
.seta:hover{ color: #999 }

/*ESTRUTURA DO SITE*/
header#topo{
	padding:10px;
	background:#fff;
}

header#topo .logo{
	float:left;
	width:25%;
}

header#topo .logo img{
	max-width:200px;
	width:100%;
}

header#topo .topo-right{
	float:right;
	padding:10px 0 0 0;
	width:75%;
}

header#topo .idiomas{ float: right; width: 20%; text-align: right; padding: 15px 0 0 0; }

header#topo nav.menu ul{
	margin:auto;
	display:table;
	padding:15px 0 0 0;
	width:80%;
}

header#topo nav.menu ul li{
	float:left;
}

header#topo nav.menu ul li a{
	color:#666;
	font-size:15px;
	padding-bottom:0;
	transition: 0.5s ease-in;
		-webkit-transition: 0.2s ease-in;
		-moz-transition: 0.2s ease-in;
		-o-transition: 0.2s ease-in;
}

header#topo nav.menu ul li:hover a{
	color:#eb840e;
	font-weight: bold;
	padding-bottom:6px;
	border-bottom:1px solid #eb840e;
}

header#topo nav.menu ul li.active a{
	color:#eb840e;
	font-weight: bold;
	padding-bottom:6px;
	border-bottom:1px solid #eb840e;
}

/*menu dropdown*/
header#topo nav.menu ul li ul{
	background:#d1a743;
	padding:10px 5px 10px 5px;
	position:absolute;
	z-index:9999999999999999999999;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
		visibility:hidden;
		opacity:0;
		transition:visibility 0s linear 0.5s,opacity 0.5s linear;
		z-index:999999999;
}

header#topo nav.menu ul li ul li{
	float:none;
	width:100%;
	background:none;
	padding:0;
	margin:0 5px 0 5px;
	line-height:24px;
	text-align:left;
	font-size:16px;
}

header#topo nav.menu ul li ul li a, header#topo nav.menu ul li:hover ul li a,header#topo nav.menu ul li.active ul li a{
	color:#101010;
	background:none;
}

header#topo nav.menu ul li ul li:hover a{
	color:#4e4e4e;
	background:none;
}

header#topo nav.menu ul li:hover ul{
	opacity:1;
	transition-delay:0s;
	visibility:visible;
}

/*menu mobile*/
header#topo nav.menuMobile{
	display:none;
}

header#topo nav.menuMobile ul li{
	text-align:left;
}

header#topo nav.menuMobile ul li ul{
	display:none;
}

header#topo nav.menuMobile ul li:hover ul{
	display:block;
}

header#topo nav.menuMobile ul li:hover{
	background:#333;
}

header#topo nav.menuMobile ul li ul li:hover{
	background:#ddd;
	color:#666;
}

header#topo nav.menuMobile ul li ul li a{
	color:#333;
}

header#topo nav.menuMobile ul li ul li{
	padding:0 3px 0 24px;
}

header#topo #menu-mobile{ background:#eb840e; }

header#topo #menu-mobile li{ display:table; width:100%; text-align:left; }

header#topo #menu-mobile li a{ color:#fff; }
header#topo #menu-mobile a:hover, header#topo #menu-mobile li.active{ background:#666; }

header#topo #menu-mobile li:hover { background:#666; }
/*/ESTRUTURA DO SITE*/
.contatoLeft{
	width:55%;
	float:left;
}

.contatoRight{
	width:40%;
	float:right;
	margin-left:5%;
}

.link:hover{
	border-bottom:3px solid #1c779f;
	padding-bottom:10px;
}

.img:hover{
	opacity: 0.6;
	transition: 0.3s ease-in;
		-webkit-transition: 0.3s ease-in;
		-moz-transition: 0.3s ease-in;
		-o-transition: 0.3s ease-in;
}

.miniaturas {
    height: 300px;
}

.miniaturas img {
    width: 100%;
    height: 100%;
    object-fit: none;
	object-position: 50% 50%;
}

footer#rodape{
	background:#333;
	padding-top:10px;
}

footer#rodape i{ border-color: #fff; }
footer#rodape i:hover{ border-color: #ccc; }

footer#rodape .infos{ padding:20px 10px; }
footer#rodape .w25{ float: left }
footer#rodape .w25:nth-last-child(2) { float: right; text-align: right }
footer#rodape .infos .w25 .horarios {display: table; margin: auto; text-align: left }

footer#rodape .assinatura{
	background:#161616;
	padding:10px;
}

a[href="#top"]{
    padding:10px;
    position:fixed;
    top: 90%;
    right:40px;
    display:none;
    font-size: 30px;
	border:1px solid;
}

a[href="#top"]:hover{
    text-decoration:none;
	border:1px solid #787878;
}

.whats{ position: fixed; bottom: 20px; right: 20px }

@media (max-width: 1400px){
}

@media (max-width: 1200px){
}

@media (max-width: 1180px){
	.textos-left{ width:65%; }

	.textos-right{ width:32%; }
}

@media (max-width: 950px){
	header#topo{ height: 105px; margin: 0; padding: 0; }
	header#topo .topo{ width: 100%; background: #fff; z-index: 998; }
	
	header#topo nav.menu{ display:none; }
	
	header#topo nav.menuMobile{ display:block; }
	
	header#topo .logo{ float: none; width:100%; text-align:center; }
	
	header#topo .topo-right{ float: none; width:100%; padding:0; }
	
	header#topo nav.menuMobile{ 
		position: absolute;
		top: 32px;
		lef:20px;
	}
	
	header#topo .idiomas{
		float: none; 
		width: auto;
		position: absolute;
		top: 12px;
		right:10px;
	}

	.min{ min-height:20vh; }
	
	.textos-left, .textos-right{
		float:none;
		width:100%;
		text-align: none;
		margin-top: 10px;
	}

	.textos-right div{ float:left; width: 25%; margin: 10px; }
	
	.serv-home .w33{ float:none; width: 100%; }
	.bordas{ border:0; border-bottom:1px solid #eb840e; margin: 15px 0; }
}

@media (max-width: 750px){
	.contatoLeft{
		width:100%;
		margin:auto;
		float:none;
	}
	
	.contatoRight{
		width:100%;
		margin:auto;
		float:none;
	}
	
	footer#rodape .infos .w25{ width: 60%; text-align: left; margin: 15px 0; }
	footer#rodape .infosfooter#rodape .infos .w25:nth-last-child(2) { float: left; text-align: left }
	footer#rodape .infos .w25 .horarios {display: block; margin: auto; text-align: left }
	footer#rodape .infos .w25:nth-child(even) { width: 40% }
	
	.f40{ font-size: 30px; }
}

@media (max-width: 500px){
	header#topo .idiomas{ width: 14%; padding: 0; }
	header#topo .idiomas img{ float: right; margin: 5px 5px 0 0; }
	
	footer#rodape .assinatura .left{ float: none; width: 100%; text-align: center; }
	footer#rodape .assinatura .right{ float: none; width: 100%; text-align: center; margin-top: 5px; }
	
	.f40{ font-size: 26px; }
	.f24{ font-size: 20px; }
}

/*ALERTS E BOTOES*/
.alert{
	width:100%;
	position:absolute;
	top:20px;
	z-index:999999999999999999999999999999999999999999999999999;
	text-align:center;
	display:none;
}

.btn-primary {
  color: #045a80;
  background-color: #1e78a0;
  border-color: #045a80;
  margin-top:55px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  color: #87d1e2;
  background-color: #1c779f;
  border-color: #87d1e2;
}
