@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700;800;900&display=swap');
@import url("tinymce.css");
@import url("padrao.css?1");



body {
	margin: 0px;
	padding: 0px;
	font-family: 'Fira Sans', sans-serif;
	color: #717171;
	font-weight: 400;
	/* line-height: normal; */
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	/* background: no-repeat url('../images/bg.jpg') top / 100% 100%; */
}

#body {
	flex: 1;
}

#topo {
	background-color: var(--azul_2);
	height: 30px;
	width: 100%;
}

.btn-custom-outline {
	color: #0A75A3;
	border: 2px solid #0A75A3;
	border-radius: 5px;
	padding: 10px 20px;
	font-weight: 500;
	text-transform: uppercase;
	background-color: transparent;
	transition: all 0.3s ease;
}

.btn-custom-outline:hover {
	color: white;
	background-color: #0A75A3;
}


#head {
	width: 100%;
	background: white;
	transition: all 0.3s ease-in-out;


}

/* Quando reduzido */
#head.shrink {
	padding-top: 0;
	height: 70px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#head.shrink img {
	width: 90px;
	margin-top: 0px !important;
}

#menu {
	padding: 10px;
}

nav#menu a {
	margin: 0 5px;
	display: block;
	cursor: pointer;
}

.underline-effect {
	display: inline-block;
	position: relative;
	text-decoration: none;
}

.underline-effect::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 0;
	height: 2px;
	background-color: var(--azul_2);
	transition: width 0.3s ease;
}

.underline-effect:hover::after,
.underline-effect.active::after {
	width: 100%;
}

#menu_mob {
	position: fixed;
	background-color: #000000d1;
	width: 100%;
	height: 100%;
	z-index: 999;
	display: none;
}

#menu_mob nav {
	position: relative;
	background-color: var(--azul_2);
	width: 100%;
	max-width: 280px;
	height: 100%;
	list-style-type: none;
	margin: 0;
	padding: 10px 20px;
	left: -280px;
}

#menu_mob nav a {
	padding: 5px 0px;
	display: block;
}

#menu_mob .menu_close {
	position: absolute;
	right: 8px;
}

#destaque .container-fluid {
	max-width: 1900px;
	margin: 0 auto;
	padding: 0;
}

#destaque .video-container {
	position: relative;
	width: 100%;
	height: 60vh;
	overflow: hidden;
}

#destaque .video-container video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 768px) {
	#destaque .video-container {
		height: 30vh;
	}
}

.img_destaque .container-fluid {
	max-width: 1900px;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

.img_destaque .responsive-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	object-position: center;
}

.img_destaque .title-overlay {
	position: absolute;
	top: 50%;
	left: 20%;
	/* transform: translate(-50%, -50%); */
	transform: translateY(-50%);
	color: white;
	font-size: 2rem;
	text-align: center;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
	.img_destaque .responsive-image {
		object-position: -45px;
		height: 280px;
	}
}

.titulo hr {
	width: 60px;
	height: 4px;
	margin-top: 3px;
}

.card {
	transition: background-color 0.5s ease;
	border-radius: var(--radius);
}

.card i {
	color: var(--azul_1);
}

.card:hover i {
	color: var(--branco);
}

.card:hover {
	background-color: var(--azul_2);
	color: var(--branco);
}

#noticias .thumb {
	border-top-right-radius: var(--radius);
	border-top-left-radius: var(--radius);
}




#sobre .video-container {
	position: relative;
	width: 700px;
	max-width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

#sobre .video-container video {
	width: 100%;
	border-radius: var(--radius);
}

#sobre .video-container .play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;

}

#sobre .video-container .play-icon.hidden {
	display: none;
}

#sobre .video-container .play-icon i {
	font-size: 45px;
	color: white;
}

#sobre .video-container .play-icon .pulse {
	position: absolute;
	width: 50px;
	height: 50px;
	/* background-color: var(--azul_2); */
	border: 3px solid var(--azul_3);
	border-radius: 50%;
	animation: pulse 1.5s infinite;
	z-index: 0;
}

#contato .circle {
	background-color: var(--azul_4);
	border-radius: 50%;
	width: 80px;
	height: 80px;
	font-size: 40px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--azul_1);
}



@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}

	50% {
		transform: scale(1.5);
		opacity: 0.4;
	}

	100% {
		transform: scale(2);
		opacity: 0;
	}
}

.quotes::before {
	content: '"';
	font-size: 25px;
	position: absolute;
	margin-left: -10px;
}

.quotes::after {
	content: '"';
	font-size: 25px;
	position: absolute;
}

.banner {
	position: absolute;
	z-index: 99;
	color: #f6de7b;
	left: 50%;
	transform: translateX(-50%);
	background-color: #343;
	padding: 4px;
	font-style: italic;
}


@media only screen and (max-width: 850px) {}

#footer_top {
	background: no-repeat url('../images/ondas.jpg') top / 100% 100%;
	height: 100px;
}

footer {
	margin-top: auto;
	background-color: #1e4787;
}

footer hr {
	border-top: 1px solid #ffffff;
	opacity: 1;
}

/* Estilizando o botão flutuante */
.whatsapp-float {
	position: fixed;
	bottom: 40px;
	right: 20px;
	background-color: #25D366;
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
	transition: transform 0.2s ease-in-out;
	text-decoration: none;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	background-color: #1EBE5D;
	color: white;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0
}

input[type=number] {
	-moz-appearance: textfield
}

.titulo_page {
	background-color: var(--azul_1);
	/* height: 170px; */
	color: var(--branco);
	font-size: 40px;
}

.titulo_page p {
	color: var(--light_2);
	font-size: 20px;
}

#pages ul {
	display: inline-block;
}

#pages a {
	color: black;
	float: left;
	padding: 4px 10px;
	text-decoration: none;
	transition: background-color .3s;
	border: 1px solid #ddd;
	margin: 0 4px;
}

#pages a:hover {
	background-color: var(--azul_2);
	color: white;
	transition: background-color .4s;
}

#pages a.active {
	background-color: var(--azul_2);
	color: white;
	border: 1px solid var(--azul_2);
}