body {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 400 !important;
	color: #000 !important;
	overflow-x: hidden;
}


:root {
	--color-primary: #FFD600;
	--color-secondary: #000;
	--color-3: #ffc000;
	--color-texto: #000;
	--color-texto-hover: #FFF;
}



/* =================================================================== */
/* SEU CSS ORIGINAL (COPIADO E COLADO AQUI)                           */
/* =================================================================== */


.navbar {
	background-color: var(--color-primary) !important;
	/* Cor de fundo do menu */
}

.navbar-expand-lg .navbar-nav .nav-link {
	color: var(--color-texto) !important;
	font-size: 22px;
	text-transform: uppercase;
	font-weight: normal;
	padding: 8px 15px;
	font-family: "lato", sans-serif;
	font-style: italic;
}

/* (O resto do seu CSS extenso vai aqui...) */
/* ... */


/* =================================================================== */
/* CSS ADICIONAL PARA O MENU LATERAL (OFF-CANVAS)                      */
/* =================================================================== */

/* Esconde o menu de desktop em telas pequenas */
@media (max-width: 991.98px) {
	#navbarNavDropdown {
		display: none !important;
	}
}

/* Botão Hambúrguer Customizado */
.navbar-toggler {
	border: none !important;
	padding: 0;
	width: 50px;
	height: 50px;
	background: var(--color-secondary) !important;
	border-radius: 50%;
	z-index: 1001;
	/* Garante que fique acima de outros elementos */
}

.navbar-toggler:focus {
	box-shadow: none;
}

.hamburger {
	width: 25px;
	height: 20px;
	position: relative;
	transform: rotate(0deg);
	transition: 0.3s ease-in-out;
	margin: auto;
	/* Centraliza dentro do botão */
}

.hamburger span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: white;
	border-radius: 2px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
	top: 0px;
}

.hamburger span:nth-child(2) {
	top: 8px;
}

.hamburger span:nth-child(3) {
	top: 16px;
}

/* Animação para 'X' */
.navbar-toggler.active .hamburger span:nth-child(1) {
	top: 8px;
	transform: rotate(135deg);
}

.navbar-toggler.active .hamburger span:nth-child(2) {
	opacity: 0;
	left: -25px;
}

.navbar-toggler.active .hamburger span:nth-child(3) {
	top: 8px;
	transform: rotate(-135deg);
}

/* Menu Lateral (Side Nav) */
.side-nav {
	position: fixed;
	top: 50px;
	left: -300px;
	/* Começa fora da tela */
	width: 300px;
	height: 100vh;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-3) 100%);
	z-index: 1000;
	transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
	overflow-y: auto;
	display: block;
	/* Garante que ele exista, mesmo escondido */
}

.side-nav.active {
	left: 0;
	/* Entra na tela */
}

/* Overlay do Menu */
.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	display: block;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Header do Menu Lateral */
.side-menu-header {
	padding: 30px 25px;
	border-bottom: 1px solid var(--color-primary);
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--azul2) 100%);
}

.side-menu-title {
	color: white;
	font-size: 18px;
	font-weight: bold;
	margin-top: 10px;
	margin-bottom: 0;
}

/* Links do Menu Lateral */
.mobile-nav-menu {
	list-style: none;
	margin: 0;
	padding: 20px 0;
}

.mobile-nav-menu .nav-item {
	border-bottom: 1px solid var(--color-primary);
}

.mobile-nav-menu .nav-link {
	color: #000 !important;
	text-decoration: none;
	padding: 18px 25px;
	display: flex;
	align-items: center;
	font-size: 16px;
	transition: all 0.3s ease;
}

.mobile-nav-menu .nav-link:hover {
	background: rgba(233, 2, 9, 0.1);
	color: var(--color-secondary) !important;
}

.mobile-nav-menu .nav-link i {
	margin-right: 15px;
	font-size: 18px;
	width: 20px;
	text-align: center;
}





.slogan {
	font-size: 22px;
}



@media (max-width: 768px) {
	.slogan {
		text-align: center !important;
	}
}


.box_produtos {
	background: rgba(192, 208, 207, 0.5);
	margin: 5px;
	margin-bottom: 30px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	padding: 10px;
	min-height: 350px !important;
	padding-top: 40px;
}


.box_produtos h2 {
	font-size: 22px;
}

.box_produtos ul li {
	text-align: left;
	list-style-position: inside;
}

.box_produtos img {
	margin: 10px 0;
}

.texto {
	font-size: 20px;
}

.fotos_team img {
	margin-bottom: 25px;
}






.cursos_online {
	margin-bottom: 25px;
}


.galeria_fotos {
	margin-bottom: 25px;
}



.missao {
	text-align: center;
	min-height: 200px;
}


.titulo_destaque {
	font-size: 3.5rem;
	color: #000 !important;
}

.card-body {
	height: 350px !important;
}

.eventos {
	background: #F5F5F5;
	padding: 40px;
	border: 1px #CCC solid;
	margin: 20px 0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}


.texto_destaque {
	padding: 0 300px;
	text-align: center;
	margin-top: 150px;
}



.banner-panel {
	background-color: #ffffff;
	border-radius: 3px;
	position: relative;
	z-index: 2;
	padding: 60px;
	-webkit-box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.11);
	box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.11);
}


@media (min-width: 1500px) {
	.banner-panel:before {
		top: 100px;
	}
}

.banner-panel:before {
	content: '';
	position: absolute;
	top: 60px;
	left: 0;
	width: 8px;
	height: 170px;
	background-color: var(--color-primary);
}






.banner-panel {
	background-color: #ebebeb;
	-webkit-border-top-left-radius: 30px;
	-webkit-border-bottom-left-radius: 30px;
	-moz-border-radius-topleft: 30px;
	-moz-border-radius-bottomleft: 30px;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	position: relative;
	z-index: 2;
	padding: 60px 120px;
	-webkit-box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.11);
	box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.11);
}


@media (max-width: 768px) {
	.banner-panel {
		-webkit-border-top-left-radius: 30px;
		-webkit-border-bottom-left-radius: 30px;
		-moz-border-radius-topleft: 30px;
		-moz-border-radius-bottomleft: 30px;
		border-top-left-radius: 30px;
		border-bottom-left-radius: 30px;
		position: relative;
		z-index: 2;
		padding: 60px;
	}
}



/* Container da imagem que permite a sobreposição */
.image-with-text-overlay-container {
	position: relative;
	/* Essencial para posicionar o texto sobre a imagem */
	display: flex;
	/* Ajuda no alinhamento */
	align-items: center;
	justify-content: center;
}

/* Div que contém o texto sobreposto */
.image-text-overlay {
	position: absolute;
	/* Posiciona o texto sobre o container */
	z-index: 10;
	/* Garante que o texto fique na frente da imagem */
	text-align: center;
	color: white;
	/* Evita que o texto encoste nas bordas */
}

/* Estilo do título H1 */
.image-text-overlay h1 {
	font-size: 4.5rem;
	font-weight: normal;
	line-height: 1.2;
}

/* Ajustes para telas menores (responsividade) */
@media (max-width: 992px) {
	.image-text-overlay h1 {
		font-size: 3rem;
		/* Diminui a fonte em tablets */
	}
}

@media (max-width: 768px) {
	.image-text-overlay h1 {
		font-size: 2.2rem;
		/* Diminui ainda mais para celulares */
	}

	.image-with-text-overlay-container {
		min-height: 250px;
		/* Garante uma altura mínima para a imagem em telas pequenas */
	}
}







.info-box {
	background-color: #ebebeb;
	color: #000;
	padding: 70px 200px;
	border-radius: 10px;
	text-align: center;
	position: relative;
	margin-bottom: 25px;
}


/* Ajustes para telas menores */
@media (max-width: 768px) {
	.info-box {
		padding: 70px 20px;
	}
}



.info-box::after {
	content: "";
	/* Necessário para o pseudo-elemento ser renderizado */
	position: absolute;
	top: 100%;
	/* Posiciona o topo da seta na base do retângulo */
	left: 50%;
	/* Centraliza horizontalmente em relação ao retângulo */
	transform: translateX(-50%);
	/* Ajuste fino para centralização exata da seta */
	width: 0;
	height: 0;
	/* Criação do triângulo (seta) */
	border-left: 10px solid transparent;
	/* Lado esquerdo transparente */
	border-right: 10px solid transparent;
	/* Lado direito transparente */
	border-top: 10px solid #000;
	/* Topo colorido, formando a ponta para baixo */
	/* A cor deve ser a mesma do background-color do .info-box */
}




.featured-items .owl-nav {
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-35px);
}

.featured-items .owl-nav .owl-prev {
	position: absolute;
	left: -70px;
}

.featured-items .owl-nav .owl-next {
	position: absolute;
	right: -70px;
}

.featured-items .owl-nav .owl-prev span,
.featured-items .owl-nav .owl-next span {
	width: 46px;
	height: 46px;
	line-height: 46px;
	font-size: 24px;
	display: inline-block;
	color: #fff;
	background-color: #33839c;
	border-radius: 50%;
	opacity: 0.75;
	transition: all .3s;
}

.featured-items .owl-nav .owl-prev span:hover,
.featured-items .owl-nav .owl-next span:hover {
	opacity: 1;
}


.hot_mart {
	background: #193b47 !important;
	text-align: center;
	color: #FFF;
	padding: 50px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

.hot_mart p {
	margin: 0;
	vertical-align: middle;
}

.hot_mart .h_um {
	font-size: 60px;
	vertical-align: middle;
	font-weight: 900;
}

.hot_mart .h_dois {
	font-size: 120px;
	vertical-align: middle;
	font-weight: 900;
}

.hot_mart .h_tres {
	font-size: 70px;
	vertical-align: middle;
	font-weight: 900;
}

.icons_hot_mart {
	font-size: 20px;
	text-align: center;
}

.icons_hot_mart i {
	font-size: 50px;
	color: #33839c;
}



@media (max-width: 767px) {
	.header-area .main-nav .nav li.has-sub ul.sub-menu {
		display: none;
	}

	.testimonials .item .content {
		display: inline-block;
		text-align: center;
	}

	.testimonials .item .content .image {
		margin-top: 30px;
	}

	.testimonials .item .content .left-content {
		margin-right: 0px;
	}

	.featured-items .owl-nav .owl-next,
	.closed-contests .owl-nav .owl-next {
		right: -10px !important;
	}

	.featured-items .owl-nav .owl-prev,
	.closed-contests .owl-nav .owl-prev {
		left: -10px !important;
	}
}





@media (max-width: 1200px) {

	.featured-items .owl-nav .owl-next,
	.closed-contests .owl-nav .owl-next {
		right: -25px;
	}

	.featured-items .owl-nav .owl-prev,
	.closed-contests .owl-nav .owl-prev {
		left: -25px;
	}

	.featured-contests .item .hover-effect .content .info {
		display: none;
	}
}











.card-text {
	font-size: 14px !important;
	margin-bottom: 5px;
}



.media_contato i {
	font-size: 40px;
	color: #193b47;
	margin: 3px;
}

.media_contato i:hover {
	color: #2d7a94;
}

section#empresa {
	background-color: #e6e6e6;
	padding: 0;
	position: relative;
	padding: 120px 0;
}

section#empresa_fone {
	background-color: #dadada;
	padding: 0;
	position: relative;
	padding: 60px 0;
}




.nav_produtos {
	border: none !important;
	margin-bottom: 10px;
}

.nav_produtos .nav-link {
	border: none !important;
	margin: 5px !important;
	padding: 10px 30px !important;
	cursor: pointer;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

.nav_produtos .nav-link.active {
	color: #283277 !important;
	background-color: #FCD201 !important;
	border-color: none !important;
}





.whatsapp-link {
	position: fixed;
	width: 70px;
	height: 70px;
	bottom: 30px;
	right: 20px;
	background-color: #25d366;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	font-size: 40px;
	box-shadow: 1px 1px 2px #888;
	z-index: 99999;
	padding-top: 7px;
}


.copyright {
	background: #FFF !important;
	overflow: hidden;
	padding-top: 20px;
	padding-bottom: 7px;
	color: #000;
	font-size: 15px;
	margin-bottom: 0;
}

#slideshow {
	position: relative;
	margin: 0 -15px;
}

#slideshow IMG {
	position: absolute;

	z-index: 8;
	opacity: 0.0;

	width: 100%;
}

#slideshow IMG.active {
	z-index: 10;
	opacity: 1.0;
}

#slideshow IMG.last-active {
	z-index: 9;
}






section {

	margin-top: 100px;
}






.btn-primary {
	color: #000;
	background-color: var(--color-primary);
	font-size: 17px;
	padding: 30px 40px;
	border-radius: 15px;
	text-decoration: none;
	border: none;
}

.btn-primary:hover {
	color: #FFF;
	background-color: var(--color-secondary);
	background-image: none;
	text-decoration: none;
	border: none !important;
}







.btn-primary2 {
	color: #000;
	background-color: #FFF;
	font-size: 17px;
	padding: 30px 50px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	text-decoration: none;
	border: none;
}

.btn-primary2:hover {
	color: #FFF;
	background-color: #EC272C;
	background-image: none;
	text-decoration: none;
	border: none !important;
}


.btn-primary3 {
	color: #FFF;
	background-color: #000;
	font-size: 17px;
	padding: 30px 50px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	text-decoration: none;
	border: none;
}

.btn-primary3:hover {
	color: #000;
	background-color: #FFF;
	background-image: none;
	text-decoration: none;
	border: none !important;
}







.top .botao {
	background: #00AFEF;
	color: #FFF;
	padding: 20px 40px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	font-size: 20px;
	text-decoration: none !important;
}

.top .botao:hover {
	background: #FFF;
	color: #00AFEF;
}


h4.conteudo {
	font-weight: normal;
	font-size: 17px;
	color: #5F5F5F;
	line-height: 1.4;
	padding: 0;
}

.titulo_home {
	font-size: 20px;
	margin: 15px;
	font-weight: 600;
	color: #454545;
}

a.link {
	color: #283277;
	margin: 20px 0;
	display: block;
	text-decoration: none;
}

.rounded10 {
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}


.box_item {
	margin-bottom: 30px;
	padding: 20px 0;
	padding-top: 0;
	background: #F5F5F5;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}





.footer {

	padding: 0;

}




.footer h6 {
	color: #FFF;

}

.logo_footer {
	width: 70%;
	margin-bottom: 20px;

}

.yellow {
	color: #FCD201;
	font-weight: 900;
}

.bg-light {
	background-color: #193b47 !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
	color: #000 !important;
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 8px 15px;
	font-family: "lato", sans-serif;
	font-style: italic;
}


.navbar {
	padding: 0.3rem 1rem !important;
}


.dropdown-menu {
	padding: 20px 0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}






.box_itens {
	border: 2px solid #E5E4E0;
	margin: 0 -15px;
	padding: 35px 15px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	margin-bottom: 40px;
}

.box_itens h3 {
	color: #5F13FB;
	font-size: 17px;
	font-weight: 900;
}

.box_itens h6 {
	line-height: 1.5em;
}



.box_itens_2 {
	border-top: 1px solid #dee2e6;
	margin: 0;
	margin-bottom: 40px;
	padding-left: 20px;
	padding-top: 30px;
}


.box_itens_intro {
	margin: 0;
	margin-bottom: 10px;
	padding-left: 20px;
	padding-top: 30px;
}



.table-bordered th,
.table-bordered td {
	border: 1px solid #5F13FB !important;
}

.table {
	text-align: center;
	margin;
	0 -15px;
}

.table thead tr {
	background: #E5E4E0;
}


.table_2 tr {
	border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.table_2 td {
	padding: 1.25rem;
	padding-top: 0.5rem !important;
	vertical-align: top;
	display: block !important;
}

.table_2 th {
	padding: 1.25rem;
	padding-bottom: 0 !important;
	vertical-align: top;
	display: block !important;
}

.botao_alexa {
	text-align: center;
	margin-bottom: 100px;
	margin-top: 20px;
}

.color_roxo {
	color: #5F13FB !important;
	text-align: center;
}

.color_roxo_maior {
	color: #5F13FB !important;
	font-size: 22px;
}

.color_roxo_left {
	color: #5F13FB !important;
	text-align: left !important;
}


.branco_quente {
	background: #FF9900;
	color: #FFF;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding: 5px 10px;
}

.branco_neutro {
	background: #FFF8AF;
	color: #FFF;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding: 5px 10px;
}

.branco_frio {
	background: #a5e7ff;
	color: #FFF;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding: 5px 10px;
}



.branco_ajustavel {
	background-color: #FFF8AF;
	background-image: linear-gradient(320deg, #a5e7ff 0%, #FF9900 100%);
	color: #FFF;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding: 5px 10px;
}


button.close {
	color: #5F13FB !important;
	font-size: 40px;
	padding: 15px !important;
}

.close:not(:disabled):not(.disabled) {
	opacity: 1 !important;
}

.modal-body {
	padding: 10px 30px !important;
	padding-top: 10px !important;
	padding-bottom: 40px !important;
}

.modal-header {
	border-bottom: none !important;
}

a.btn_modal {
	cursor: pointer;
	text-decoration: underline !important;
	color: #5F13FB !important;
}





.box_roxo {
	background: #5F13FB;
	padding: 20px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.box_roxo h4 {
	color: #FFF;
	text-align: center;
	font-weight: 700;
	margin-bottom: 20px;
}

.box_roxo .row {
	margin: 0 !important;
}

.ju_left {
	width: 25%;
}

.ju_left img {
	width: 100%;
	padding: 0;
}

h2.titulo {
	color: #283277;
	text-align: center;
	font-size: 25px;
}

h2.titulo b {
	font-size: 32px;
	color: #283277;

}

h2 {
	color: #000 !important;
	font-weight: normal;
}



.galeria .col-sm-3 {
	padding: 0;
	margin: 0;
}

.galeria {
	background: #E5E4E0;
	margin: 30px 0;
	padding: 50px 0;
}

.luz {
	margin-bottom: 40px;
}

.luz .col-sm {
	border: 1px solid #CCC;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding: 40px 20px;
	margin: 0 20px;
}


.luz p {
	color: #3e5055;
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 20px;
}

.luz .work_alexa {
	width: 60%;
	margin-top: 20px;
	text-align: center;
}

.box_cinza {
	background: #dee2e6;
}


.spots {
	float: left;
	text-align: center;
	width: 14.2%;
}

.spots img {
	width: 85%;
}



.cor_perfil {
	float: left;
	text-align: center;
	width: 16%;
}




.alennium_corpo img {
	width: 40%;
	margin-top: 120px;
}

.alennium_corpo h6 {
	margin-top: 120px;
	color: #FFF;
}





.botao2 {
	background: #283277;
	color: #FCD201 !important;
	display: inline-block;
	padding: 10px;
	text-align: center;
	font-weight: 900;
	font-size: 20px;
	min-width: 300px;
	margin: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	text-decoration: none;
}

a.botao2 {
	text-decoration: none;
}

.botao2:hover {
	background: #FCD201;
	color: #283277 !important;
	cursor: pointer;

}


.borda {
	border: 1px solid #CCC;
	padding: 20px !important;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.quem_somos {
	background: #EFEFEF;
	padding: 120px 0;
}


.alennium_corpo2 img {
	width: 100%;
}

.card {
	margin: 1% !important;
	max-width: 23% !important;
	margin-bottom: 30px !important;
}


.card-title {
	font-weight: 900 !important;
	color: #1d5162 !important;
}


.card_faq {
	border: 1px solid rgba(0, 0, 0, .125);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	text-align: left !important;
}


.card_faq button {
	border: none !important;
	background: none;
	text-decoration: none;
	font-size: 22px;
	color: #33839c;
	text-align: left;
}

.card_faq button:focus {
	outline: none !important;
}

.card_faq button:hover {
	cursor: pointer;
	text-decoration: underline;
}

.card_faq_body {
	padding: 60px 20px;
	padding-top: 20px;
}


.formulario {
	background: #dadada;
	padding: 40px 80px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	margin: 0 20px;
}

label {
	margin-bottom: 0 !important;
	margin-top: .5rem;
	color: #193b47 !important;
}

button,
input,
textarea {
	border: none;
}



.fone_footer {
	margin-top: 20px;
	background: var(--color-primary);
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	color: #000 !important;
}


a.zap_footer {
	color: #FFF;
	display: block;
	text-decoration: none;
}


a:hover.zap_footer {
	text-decoration: underline;
}

.top {

	padding: 0;
	padding-top: 5px;
	background: url(../images/bg-topo.jpg);
	min-height: 170px;
}


@media (max-width: 800px) {
	.top {
		padding: 0;
		min-height: 570px;
		background-image:
			url(../images/bg-topo-menor.png),
			url(../images/bg-meio2.png);

		background-position:
			top center,
			bottom center;

		background-repeat:
			no-repeat,
			no-repeat;

		background-size:
			200% auto,
			200% auto;

		background-color: #011a69;
		/* Fundo sólido por baixo */
	}

	.logo_topo {
		margin-top: 30px;
	}


}




.industrias {
	background: #CCC;
	padding-bottom: 8rem;
	padding-top: 0;
}


.oregano {
	font-family: "Oregano", cursive;
	font-weight: 400;
	font-style: normal;
}

.oregano-italic {
	font-family: "Oregano", cursive;
	font-weight: 400;
	font-style: italic;
}

.bg_1 {
	background-image:
		url(../images/bg-meio.png),
		/* Imagem do TOPO */
		url(../images/bg-meio2.png);
	/* Imagem do RODAPÉ */

	background-position:
		top center,
		/* TOPO */
		bottom center;
	/* RODAPÉ */

	background-repeat:
		no-repeat,
		no-repeat;

	background-size:
		100% auto,
		100% auto;

	background-color: #000;
	/* Fundo sólido por baixo */
}



@media (max-width: 800px) {

	.bg_1 {
		background-size:
			250% auto,
			200% auto;
	}

}

.bg_footer {
	background-image:
		url(../images/bg-meio_footer.png),
		/* Imagem do TOPO */
		url(../images/bg-meio2.png);
	/* Imagem do RODAPÉ */

	background-position:
		top center,
		/* TOPO */
		bottom center;
	/* RODAPÉ */

	background-repeat:
		no-repeat,
		no-repeat;

	background-size:
		100% auto,
		100% auto;

	background-color: #000;
	/* Fundo sólido por baixo */
}

@media (max-width: 800px) {

	.bg_footer {
		background-image: url(../images/bg-meio.png),
			url(../images/bg-meio2.png);
		background-size:
			250% auto,
			200% auto;
	}

}



.product-img {
	height: 200px;
	/* altura fixa */
	object-fit: cover;
	/* mantém proporção e corta o excesso */
	width: 100%;
}

.product-desc {
	font-size: 14px;
	margin-top: 8px;
	min-height: 60px;
	font-family: 'Lato';
	font-weight: normal;
	text-align: center;
}





.titulo {
	font-size: 32px;
	font-weight: normal;
	text-align: center;
}

.texto {

	font-size: 1.3rem;
	font-weight: normal;
	text-align: center;
	line-height: 1.8rem;
	margin-top: 30px;
}


.mro {
	background: ;
}



.botoes_topo {
	margin-top: 50px;
}

.botoes_topo a {
	margin-left: 10px;
	padding: 20px 25px;
	background: none;
	color: #FFF !important;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: 1px solid #FFF;
}

.botoes_topo a:hover {
	background: #FFF;
	color: #193b47 !important;
	border: 1px solid #FFF;
}

.logo {
	width: 100%;
	margin-top: -10px;
}


.logo_csi {
	width: 100%;
	margin-top: 0;
}


.midia a i {
	font-size: 38px;
	color: var(--color-texto);
}

.midia a {
	margin-left: 5px;
}

.midia a:hover i {
	color: var(--color-texto-hover);
}



.email {
	background: var(--color-primary) !important;
	display: inline-block;
	padding: 20px 50px;
	margin-bottom: 10px;
	-webkit-border-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius: 10px;
	-moz-border-radius-bottomleft: 0;
	border-radius: 10px;
	border-bottom-left-radius: 0;
	transition: background 0.3s ease;
	font-family: lato;

}



.email a {
	color: var(--color-texto) !important;
	text-decoration: none;
}



.email_footer a {
	color: #FFF;
	text-decoration: none;
}


.email a:hover,
.email a:hover i {
	color: var(--color-texto-hover) !important;
}




.email a i {
	font-size: 25px !important;
}




.heart_team img {
	width: 50%;
	float: left;
}

.collapse .card-body {
	height: auto !important;
}


.equipe {
	padding: 3%;
}

.equipe .perfil {
	width: 90%;

}

.equipe .bandeira {
	width: 2.5%;
	position: absolute;
	z-index: 2;
	margin-left: -12%;
	margin-top: 9%;
}

.titulo_equipe {
	text-align: center;
	font-size: 18px;
	font-weight: 900;
	margin-top: 10px;
	display: block;
}

.border_equipe {
	background-image: linear-gradient(45deg, #ffffff 20%, #efefef 20%, #efefef 50%, #ffffff 50%, #ffffff 70%, #efefef 70%, #efefef 100%);
	background-size: 7.07px 7.07px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	padding: 5%;
}

.width_4heart_team {
	width: 80%;
}

.tarja_home {
	background: ;
	/* URL da imagem repetida horizontalmente, fixada no topo */
	padding: 150px 0;
	margin-bottom: 50px;
	padding-top: 100px;
}


.tarja_dollar {
	background: rgba(192, 208, 207, 0.5);
	padding: 150px 0;
	padding-top: 100px;
}


.miolo {
	margin-bottom: 25px;
}


.miolo h3 {
	font-size: 16px;
}

.miolo {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	margin-bottom: 30px;
}

.miolo img {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	transition: all 0.4s ease;
}

/* Efeito principal de hover */
.miolo:hover {
	transform: translateY(-15px) scale(1.05);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.miolo:hover img {
	transform: scale(1.0);
	filter: brightness(1.0) contrast(1.0) saturate(1.1);
}


.texto_fone {
	color: #000;
	text-decoration: none;
	font-size: 20px;
}

.tarja_whatsapp {
	background: url(../images/bg-meio.png) no-repeat #042a71;
	padding: 90px 0;
}

.cor_vermelho {
	color: #E90209 !important;
}



.cinco-colunas-container {
	display: flex;
	flex-wrap: wrap;
	/* Para quebrar em telas menores */
	justify-content: space-between;
	/* Ou space-around, ou center com gaps */
	gap: 15px;
	/* Espaçamento entre os itens, ajuste conforme necessário */
	margin-bottom: 30px;
	/* Espaço abaixo do container de válvulas */
}

.coluna-item {
	box-sizing: border-box;
	/* Importante para que padding/border não aumentem a largura */
	/* Para 5 colunas com gap: (100% - (N-1)*gap) / N
       (100% - (5-1)*15px) / 5 = (100% - 60px) / 5 = calc(20% - 12px)
    */
	flex-basis: calc(20% - 12px);
	/* Base de 20% menos a distribuição do gap */
	flex-grow: 1;
	/* Permite que cresçam um pouco se houver espaço extra mínimo */
	margin-bottom: 15px;
	/* Para espaçamento vertical quando quebrar linha */
}

/* Responsividade para o CSS personalizado */
@media (max-width: 991.98px) {

	/* Abaixo do 'lg' do Bootstrap */
	.coluna-item {
		/* 3 colunas: (100% - (3-1)*15px) / 3 = calc(33.333% - 10px) */
		flex-basis: calc(33.333% - 10px);
	}
}

@media (max-width: 767.98px) {

	/* Abaixo do 'md' do Bootstrap */
	.coluna-item {
		/* 2 colunas: (100% - (2-1)*15px) / 2 = calc(50% - 7.5px) */
		flex-basis: calc(50% - 7.5px);
	}
}

@media (max-width: 575.98px) {

	/* Abaixo do 'sm' do Bootstrap */
	.coluna-item {
		flex-basis: 100%;
		/* 1 coluna */
	}
}

.itenss {
	margin-bottom: 80px;
}

.titulo_produto {
	font-size: 18px !important;
}

.main-container {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}


/* Faixas de cores */
.color-band {
	position: absolute;
	width: 100%;
	height: 50vh;
	z-index: -5;
}

.red-band {
	top: 0;
	background: rgb(0, 153, 224);
}

.blue-band {
	bottom: 0;
	background: #0d6efd;
}

/* Formulário */
.form-container {
	position: relative;
	z-index: 3;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.custom-form {
	background: #FFF;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	padding: 2rem;
	margin: 0 auto;
	width: 100%;
	max-width: 500px;
}

.required:after {
	content: "*";
	color: red;
	margin-left: 3px;
}

.texto_footer {
	font-style: italic;
	max-width: 350px;
	font-size: 30px;
	margin-top: 175px;
	color: #000;
}

.email_footer {
	background: #000;
	display: inline-block;
	padding: 20px;
	margin-bottom: 10px;
	margin-top: 70px;
	-webkit-border-radius: 10px;
	-webkit-border-bottom-left-radius: 0;
	-moz-border-radius: 10px;
	-moz-border-radius-bottomleft: 0;
	border-radius: 10px;
	border-bottom-left-radius: 0;
	text-align: center;
}

@media (max-width: 768px) {
	.acoplamento-img {
		width: 80%;
		height: 40%;
	}

	.custom-form {
		margin: 20px;
		margin-top: 200px
	}

	.texto_footer {
		font-style: italic;
		max-width: 100%;
		font-size: 25px;
		margin-top: 5px;
		padding: 10px 20px;
		text-align: center;
		color: #FFF !important;
	}

	.email_footer {
		margin-bottom: 10px;
		margin-top: 30px;
		width: 100%;
	}
}


@media (max-width: 800px) {


	.tarja_home {
		padding: 100px 0;
	}

	.width_4heart_team {
		width: 100%;
	}

	.equipe {
		padding: 5%;
	}

	.equipe .bandeira {
		left: 15%;
		bottom: 15%;
	}

	.titulo_equipe {
		font-size: 20px;
	}

	.hot_mart {
		padding: 50px 10px;
	}

	.hot_mart .h_um {
		font-size: 35px;
	}

	.hot_mart .h_dois {
		font-size: 80px;
	}

	.hot_mart .h_tres {
		font-size: 45px;
	}

	.heart_team {
		margin-bottom: 50px;
	}



	.formulario {
		padding: 40px 30px;
		margin: 0;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
	}

	.botao2 {
		min-width: 100%;
		margin: 0;
		margin-bottom: 10px;
	}

	.card {
		margin: 3% !important;
		max-width: 100% !important;
	}

	.navbar-toggler {
		border: none !important;
		background: #2d7a94;
	}

	.alennium_corpo {
		background-position: right 65% bottom 45%;
		text-align: center;
		height: 600px;
	}



	.alennium_corpo2 img {
		width: 130%;
		margin-left: -20%;
	}


	.alennium_corpo img {
		width: 40%;
		margin-top: 50px;

	}

	.alennium_corpo h6 {
		margin-top: 40px;
		color: #FFF;
	}



	.footer .um {
		padding: 0 50px;
	}

	.footer .dois {
		padding: 0 70px;
	}


	.footer .tres {
		margin-top: 40px;
		padding: 0 70px;
	}

	.footer .quatro {
		margin-bottom: 80px;
	}








	.slogan {
		margin-top: 30px;
		padding: 0 40px;
		font-size: 25px;
	}


	.slogan_footer {
		padding: 0 50px;
	}

	.logo {
		width: 70%;
		margin-top: 20px;
	}


	.botoes_topo {
		margin-top: 90px;
	}

	.midia {
		margin-top: 30px;
		padding-bottom: 50px;
	}





	.footer {
		padding: 0;
		min-height: 200px;
	}

	.logo_footer {
		width: 50%;
		padding-top: 50px;
		margin-bottom: 50px;

	}

	@media (max-width: 800px) {
		.logo {
			width: 80%;
			margin-top: 30px;
			margin-bottom: 20px;
			display: block;
			margin-left: auto;
			margin-right: auto;
		}
	}

	@media (max-width: 800px) {
		.produto-item {
			display: none;
		}

		.produto-item.show-mobile {
			display: block;
		}
	}


	.brands-container {
		padding: 40px 0;
		background: #fff;
		margin: 40px 0;
		border: 1px solid #e0e0e0;
		border-radius: 15px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	}

	.brand-logo {
		max-height: 60px;
		width: auto;
		transition: transform 0.3s ease;
		padding: 10px;
		border-radius: 8px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		background: white;
	}

	.brand-logo:hover {
		transform: scale(1.05);
		box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
	}

	/* Media queries existentes */
	@media (max-width: 768px) {
		.row .col {
			flex: 0 0 33.333%;
			margin-bottom: 20px;
		}

		.brand-logo {
			max-height: 40px;
		}
	}

	@media (max-width: 576px) {
		.row .col {
			flex: 0 0 50%;
		}
	}
}

.map-section {
	width: 100%;
	margin: 0;
	padding: 0;
}

.map-section iframe {
	display: block;
	margin: 0;
	padding: 0;
}



.footer-section {
	color: #fff;
	padding-top: 0;
	padding-bottom: 60px;
	min-height: 1000px;
}


.copy {
	text-align: center;
	background: var(--color-primary) !important;
	color: #000;
	padding: 20px 0;
}



.footer-section .container {
	max-width: 1140px;
	margin: 0 auto;
}

.footer-section .row {
	justify-content: center;
	text-align: center;
}

.footer-section h4 {
	color: #fff;
	font-weight: 600;
	margin-bottom: 20px;
}

.footer-section p {
	color: #fff;
	line-height: 1.6;
}

.footer-section .btn-dark {
	padding: 10px 25px;
	font-size: 16px;
	transition: all 0.3s;
}

.footer-section .btn-dark:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Estilo similar ao .midia do header */
.midia-footer {
	margin-top: 0;
}

.midia-footer .email {
	text-align: center;
}

.midia-footer .email div {
	margin-bottom: 15px;
}

.midia-footer a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	transition: opacity 0.3s;
}

.midia-footer a i {
	font-size: 20px;
	margin-right: 5px;
}

.midia-footer a:hover {
	opacity: 0.8;
}

.midia-footer .texto_fone {
	color: #fff;
	font-size: 16px;
	margin: 10px 0;
}

.copyright {
	background-color: rgba(0, 0, 0, 0.2);
	color: #fff;
	padding: 15px 0;
}

/* Responsividade */
@media (max-width: 768px) {
	.footer-section {
		padding: 30px 0;
	}

	.footer-section .col-md-4 {
		margin-bottom: 30px;
	}
}


/* Estilos para a página de rolamentos */
.tarja_dollar {
	padding: 50px 0;
	background: #fff;
}

.texto_interna {
	color: #333;
	font-size: 24px;
	margin-bottom: 40px;
	line-height: 1.6;
	padding: 0 15px;
}

/* Novo estilo para os cards de produto */
.produto-card {
	background: #ffffff;
	border-radius: 15px;
	padding: 15px;
	height: 100%;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.produto-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.produto-imagem {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 15px;
}

.produto-imagem img {
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

.produto-card:hover .produto-imagem img {
	transform: scale(1.05);
}

.produto-card h2 {
	font-size: 16px;
	color: #333;
	margin: 0;
	padding: 10px 5px;
	text-align: center;
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Responsividade */
@media (max-width: 1200px) {
	.row-cols-lg-5>* {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

@media (max-width: 992px) {
	.row-cols-lg-5>* {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
}

@media (max-width: 768px) {
	.row-cols-lg-5>* {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.texto_interna {
		font-size: 20px;
	}
}

@media (max-width: 576px) {
	.row-cols-lg-5>* {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.clearfix {
	clear: both;
}


.oswald {
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: weight;
	font-style: normal;
}


.destaque {
	margin-bottom: 0;
	margin-top: 0;
	border: none;
	border-radius: 15px;
	padding: 20px;
}

.destaque h2 {
	font-size: 60px;
	text-align: center;
	margin-bottom: 50px;
	color: #FFF !important;
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
	.destaque h2 {
		font-family: "lato", sans-serif;
		font-weight: 900;
		font-style: italic;
		font-size: 38px;
	}
}




.destaque h3 {
	text-align: center;
	font-weight: normal;
	color: #FFF !important;
}


.entre_em_contato {
	padding: 70px;
	background: #fff;
}


.um h1 {
	margin-top: -120px !important;
}

.dois h3 {
	margin-top: -30%;
	font-family: "lato", sans-serif;
	font-weight: normal;
	font-style: italic;
	font-size: 52px;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
	padding: 0 10%;
}


@media (max-width: 700px) {
	.dois h3 {
		margin-top: -140%;
		margin-left: auto;
		margin-right: auto;
		font-size: 32px;
		width: fit-content;
		text-align: center;
		display: block;
	}
}

.tres h1 {
	margin-top: -470px !important;
	line-height: 4.5rem;
}

.carousel-caption h1 {
	margin-top: -370px;
	font-family: "Lato", sans-serif;
	font-weight: 900;
	font-style: italic;
	font-size: 52px !important;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* Para celulares (telas pequenas) */
@media (max-width: 700px) {
	.carousel-caption h1 {
		font-size: 52px !important;
		text-align: center;
		margin-top: -500px;
	}
}




.produtos {
	background-image: url(../images/bg_gray.jpg);
	background-size: cover;
	background-position: center;
}

/* Adiciona um container de posicionamento para o overlay */
.hero_carrossel .carousel-item {
	position: relative;
	/* Uma cor de fundo para evitar um "flash" branco enquanto a imagem carrega */
	background-color: #2c3e50;
}

/* Cria o overlay semi-transparente */
.hero_carrossel .carousel-item::before {
	content: '';
	/* Essencial para o pseudo-elemento ser exibido */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 113, 194, 0.15);
	/* Cor preta com 50% de opacidade */
	z-index: 1;
	/* Coloca o overlay acima da imagem (z-index: 0) */
}

/* Garante que o texto e os controles fiquem acima do overlay */
.hero_carrossel .carousel-caption,
.hero_carrossel .carousel-control-prev,
.hero_carrossel .carousel-control-next {
	z-index: 2;
	/* Coloca o conteúdo acima do overlay (z-index: 1) */
}

/* Ajuste opcional para a altura do carrossel em telas maiores */
@media (min-width: 768px) {
	.hero_carrossel .carousel-item {
		height: 70vh;
		/* Ex: 80% da altura da tela */
		min-height: 400px;
	}

	.hero_carrossel .carousel-item img {
		height: 100%;
		object-fit: cover;
		/* Garante que a imagem cubra a área sem distorcer */
	}
}





.lato {
	font-family: "lato", sans-serif;
	font-weight: 900;
	font-style: italic;
	font-size: 52px;
}

.lato2 {
	font-family: "lato", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 42px;
}




.lato3 {
	font-family: "lato", sans-serif;
	font-weight: 900;
	font-style: italic;
	font-size: 32px;
}


.lato4 {
	font-family: "lato", sans-serif;
	font-weight: normal;
	font-style: italic;
	font-size: 32px;
}

.lato5 {
	font-family: "lato", sans-serif;
	font-weight: 900;
	font-style: italic;
	font-size: 28px;
}



/*AOS*/
/*AOS*/
/*AOS*/
/*AOS*/

.industria-item {
	position: relative;
	overflow: hidden;
	display: inline-block;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.industria-item img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.4s ease;
}

.industria-item .overlay-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.4s ease;
}

/* Opcional: Adicionar uma sombra sutil permanente no texto para melhorar a legibilidade */
.industria-item .overlay-text h2 {
	color: #fff !important;
	margin: 0;
	padding: 20px;
	/* Um pouco mais de padding para não ficar colado nas bordas */
	font-size: 3rem;
	text-align: center;
	/* Sombra no texto para garantir que seja legível mesmo sem o overlay escuro */
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);

	/* ALTERAÇÃO 3: Removemos a animação de entrada para que o texto fique sempre estático */
	transform: translateY(0);
	transition: transform 0.4s ease;
	/* Mantém a transição para suavidade geral */
}

/* EFEITO NO HOVER */

.industria-item:hover .overlay-text {
	/* ALTERAÇÃO 4: No hover, aplicamos a cor de fundo semi-transparente */
	background-color: rgba(255, 221, 0, 0.6);
	/* Aumentei um pouco a opacidade para dar mais destaque */
}

.industria-item:hover img {
	/* O efeito de zoom na imagem é mantido, pois é um ótimo toque */
	transform: scale(1.05);
}


/* Ajustes para telas menores se necessário */
@media (max-width: 768px) {
	.industria-item .overlay-text h2 {
		font-size: 4rem;
		/* Ajustei para um valor um pouco maior */
	}
}


.footer-section ul {
	border-left: 1px solid #fff;
	margin-left: 20px;
	padding-left: 20px;
	padding-top: 30px;
	padding-bottom: 30px;
}

.footer-section ul li {
	font-family: "lato", sans-serif;
	font-weight: normal;
	font-style: italic;
	font-size: 22px;
	text-align: left;
	margin-left: 20px;
	margin-bottom: 20px;
}







.valvulas {
	background-color: #f8f9fa;
}

.product-card {
	background: white;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	padding-bottom: 40px;
	padding-top: 40px;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card h2 {
	color: #2c3e50;
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 15px;
	min-height: 30px;
}

.product-card img {
	width: 100%;
	object-fit: contain;
	margin-bottom: 15px;
}

.product-card h3 {
	color: #555;
	font-size: 0.9rem;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 0;
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Responsividade customizada para 5 colunas */
@media (min-width: 1200px) {
	.col-5-custom {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

/* Ajustes para tablets */
@media (min-width: 768px) and (max-width: 1199px) {
	.col-5-custom {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
}

/* Ajustes para mobile */
@media (max-width: 767px) {
	.col-5-custom {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.product-card h2 {
		font-size: 1.3rem;
	}

	.product-card h3 {
		font-size: 1.3rem;
	}


}

/* Para telas muito pequenas */
@media (max-width: 479px) {
	.col-5-custom {
		flex: 0 0 100%;
		max-width: 100%;
	}
}


.map-section {
	width: 100%;
	height: 600px;
	position: relative;
	overflow: hidden;
}

.map-container {
	width: 100%;
	height: 100%;
	position: relative;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
	filter: grayscale(20%);
	transition: filter 0.3s ease;
}

.map-container:hover iframe {
	filter: grayscale(0%);
}

.map-overlay {
	position: absolute;
	top: 20px;
	left: 20px;
	background: rgba(255, 255, 255, 0.95);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	max-width: 300px;
	z-index: 10;
}

.map-overlay h5 {
	color: #2c3e50;
	margin-bottom: 10px;
	font-weight: 600;
}

.map-overlay p {
	color: #555;
	margin-bottom: 5px;
	font-size: 0.9rem;
}

.map-overlay .address-icon {
	color: #e74c3c;
	margin-right: 8px;
}

@media (max-width: 768px) {
	.map-section {
		height: 450px;
	}

	.map-overlay {
		position: static;
		margin: 0;
		max-width: 100%;
		margin-top: -60px;
		margin-left: 15px;
		margin-right: 15px;
		z-index: 100;
	}
}




.texto_footer2 {
	text-align: left;
}


.back_black {
	background: #000;
	color: #FFF !important;
	padding: 20px;
	border-radius: 10px;
}


@media (max-width: 768px) {
	.texto_footer2 {
		text-align: center;
	}
}







.esconde_maior {
	display: block;
}

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

.esconde_menor {
	display: none;
}

@media (max-width: 768px) {
	.esconde_menor {
		display: block;
	}
}




@media (max-width: 768px) {
	body {
		overflow-x: hidden;
	}
}