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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
}


:root {
	--color-primary: #b2d03f;
	--color-secondary: #27288c;
	--color-3: #27288c;
	--color-texto: #27288c;
	--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;
	}

	body.mobile-menu-open .navbar {
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
	}
}

/* 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: 0;
	left: -300px;
	/* Começa fora da tela */
	width: 300px;
	height: 100vh;
	height: 100dvh;
	background: var(--color-primary);
	z-index: 1002;
	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: 1001;
	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 {
	align-items: center;
	padding: 30px 25px;
	border-bottom: 1px solid var(--color-primary);
	background: var(--color-primary);
	display: flex;
	gap: 16px;
	justify-content: space-between;
}

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

.side-menu-close {
	align-items: center;
	background: var(--color-secondary);
	border: 0;
	border-radius: 50%;
	color: #fff;
	display: flex;
	flex: 0 0 auto;
	font-size: 20px;
	height: 44px;
	justify-content: center;
	line-height: 1;
	width: 44px;
}

.side-menu-close:hover,
.side-menu-close:focus {
	background: #00134f;
	color: #fff;
	outline: none;
}

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

	.banner-layout1 .form-section-row > .banner-panel {
		padding: 42px 32px;
	}
}



/* 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: #eef2f7;
	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: #eef2f7;
	padding: 0;
	position: relative;
	padding: 120px 0;
}

section#empresa_fone {
	background-color: #eef2f7;
	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 {
	align-items: center;
	position: fixed;
	width: 70px;
	height: 70px;
	bottom: 30px;
	right: 20px;
	background-color: #b2d03f;
	color: #fff;
	display: flex;
	justify-content: center;
	border-radius: 50px;
	text-align: center;
	font-size: 40px;
	box-shadow: 1px 1px 2px #888;
	z-index: 99999;
	padding-top: 0;
	text-decoration: none;
}

.whatsapp-link i {
	color: #fff;
	line-height: 1;
}


.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: #eef2f7;
	-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: #eef2f7;
}


.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: #eef2f7;
	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: #eef2f7;
	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-secondary);
	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: linear-gradient(135deg, #202070 0%, #202070 46%, #27288c 100%);
	min-height: 170px;
}


@media (max-width: 800px) {
	.top {
		padding: 0;
		min-height: 490px;
		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: 9rem;
	padding-top: 9rem;
}


.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;
	}

}

@media (max-width: 767.98px) {
	.bg_1 {
		background-image:
			url(../images/bg-meio_peq.jpg),
			url(../images/bg-meio2.png);
	}
}

.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.2rem;
	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: #eef2f7;
	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: 120px;
	padding-bottom: 80px;
	min-height: auto;
}


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

.copy-row {
	row-gap: 12px;
}

.redsite-credit {
	align-items: center;
	color: #fff !important;
	display: inline-flex;
	font-size: 11px;
	font-weight: 700;
	gap: 8px;
	line-height: 1;
	margin-right: 110px;
	text-decoration: none;
	text-transform: uppercase;
}

.redsite-credit:hover {
	color: #fff !important;
	opacity: 0.9;
}

.redsite-logo-box {
	align-items: center;
	background: #f20b0b;
	border-radius: 14px;
	display: inline-flex;
	justify-content: center;
	padding: 4px 8px;
}

.redsite-logo-box img {
	display: block;
	height: 22px;
	width: auto;
}

.privacy-footer-link {
	color: #27288c !important;
	font-weight: 900;
	margin-left: 10px;
	text-decoration: underline;
}

.lgpd-cookie-notice {
	align-items: flex-end;
	background: rgba(7, 10, 36, 0.52);
	color: #fff;
	display: none;
	inset: 0;
	justify-content: center;
	padding: 0;
	position: fixed;
	width: 100%;
	z-index: 100000;
}

.lgpd-cookie-notice.show {
	display: flex;
}

.lgpd-cookie-panel {
	align-items: center;
	background: rgba(39, 40, 140, 0.96);
	border-top: 4px solid #b2d03f;
	box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.28);
	display: flex;
	gap: 26px;
	justify-content: center;
	min-height: 122px;
	padding: 26px 48px;
	width: 100%;
}

.lgpd-cookie-notice p {
	color: #fff !important;
	font-size: 16px;
	line-height: 1.45;
	margin: 0;
	max-width: 900px;
}

.lgpd-cookie-actions {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	gap: 12px;
}

.lgpd-cookie-actions a {
	color: #b2d03f;
	font-size: 14px;
	font-weight: 900;
	text-decoration: underline;
	white-space: nowrap;
}

.lgpd-accept {
	background: #b2d03f;
	border: 0;
	border-radius: 6px;
	color: #27288c;
	font-size: 14px;
	font-weight: 900;
	padding: 11px 20px;
}

.lgpd-check {
	color: #27288c;
	font-size: 13px;
	line-height: 1.35;
	text-align: left;
}

.lgpd-check a {
	color: #27288c;
	font-weight: 900;
	text-decoration: underline;
}

.privacy-page {
	background: #f5f7fb;
}

.privacy-hero {
	background: linear-gradient(135deg, #27288c 0%, #15165f 100%);
	color: #fff;
	padding: 70px 0;
	text-align: center;
}

.privacy-hero .acopmac-kicker,
.privacy-hero h1,
.privacy-hero p,
.privacy-hero small {
	color: #fff !important;
}

.privacy-hero p {
	font-size: 20px;
	margin: 18px auto 0;
	max-width: 760px;
}

.privacy-hero small {
	display: block;
	margin-top: 14px;
	opacity: 0.78;
}

.privacy-content {
	padding: 60px 0;
}

.privacy-card {
	background: #fff;
	border-left: 8px solid #b2d03f;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(39, 40, 140, 0.12);
	margin: 0 auto;
	max-width: 980px;
	padding: 46px;
}

.privacy-card h2 {
	color: #27288c;
	font-family: "lato", sans-serif;
	font-size: 24px;
	font-weight: 900;
	margin: 28px 0 10px;
}

.privacy-card h2:first-child {
	margin-top: 0;
}

.privacy-card p {
	color: #20242d;
	font-size: 18px;
	line-height: 1.6;
	margin: 0;
}

.privacy-card a {
	color: #27288c;
	font-weight: 900;
}



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

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

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

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

.footer-main {
	row-gap: 42px;
}

.footer-col {
	padding-left: 42px;
	padding-right: 42px;
}

.footer-main .footer-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.footer-logo {
	max-width: 250px;
}

.footer-text {
	font-size: 18px !important;
	line-height: 1.55;
}

.footer-email {
	font-weight: normal;
}

.footer-email span {
	font-size: 17px;
}

.footer-phone {
	font-size: 23px;
	font-weight: 900;
	line-height: 1.45;
	margin-top: 0;
	padding: 18px 24px;
}

.footer-phone b {
	font-size: 23px;
}

.footer-phone .texto_fone,
.footer-whatsapp {
	font-size: 23px;
}

.footer-phone .texto_fone,
.footer-whatsapp {
	color: #fff !important;
}

.footer-phone i,
.footer-email i {
	color: #b2d03f;
}

.footer-contact-panel {
	background: #b2d03f;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 24px 34px;
}

.footer-contact-label {
	color: #27288c !important;
	font-size: 20px;
	line-height: 1.2;
	margin-bottom: 12px;
	text-align: left;
}

.footer-contact-number,
.footer-contact-zap {
	align-items: center;
	color: #fff !important;
	display: flex;
	font-size: 23px;
	font-weight: 900;
	gap: 12px;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
}

.footer-contact-number i,
.footer-contact-zap i {
	color: #27288c;
	font-size: 34px;
	line-height: 1;
}

.footer-contact-zap i {
	font-size: 44px;
}

.footer-contact-mail {
	color: #27288c !important;
	display: block;
	font-size: 20px !important;
	font-weight: 900;
	margin-top: 20px;
	text-decoration: none;
	text-align: center;
}

.footer-contact-mail:hover,
.footer-contact-zap:hover {
	color: #27288c !important;
}

.footer-divider {
	background: rgba(255, 255, 255, 0.9);
	height: 1px;
	margin: 58px 34px 30px;
}

.footer-social-row {
	display: flex;
	gap: 30px;
	justify-content: center;
}

.footer-social-row a {
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-social-row a i {
	font-size: 34px;
	line-height: 1;
}

.footer-social-row a:hover {
	color: #b2d03f;
}

.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: 70px 0 50px;
	}

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

	.footer-section .row,
	.texto_footer2 {
		text-align: center;
	}

	.footer-col {
		padding-left: 24px;
		padding-right: 24px;
	}

	.footer-divider {
		margin: 34px 24px 24px;
	}

	.footer-contact-panel {
		align-items: center;
		gap: 24px;
		text-align: center;
	}

	.footer-contact-number,
	.footer-contact-zap {
		justify-content: center;
	}

	.footer-contact-mail {
		padding-left: 0;
	}

	.footer-social-row a i {
		font-size: 30px;
	}

	.redsite-credit {
		margin-right: 0;
	}

	.lgpd-cookie-panel {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
		min-height: 150px;
		padding: 24px 22px;
	}

	.lgpd-cookie-actions {
		justify-content: space-between;
		width: 100%;
	}

	.privacy-card {
		padding: 32px 22px;
	}

	.privacy-card p {
		font-size: 16px;
	}
}


/* 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 {
	background: var(--color-secondary);
	border-radius: 42px 0 42px 0;
	color: #fff !important;
	display: inline-block;
	font-family: "lato", sans-serif;
	font-size: 52px;
	font-style: italic;
	font-weight: normal;
	margin-top: -30%;
	padding: 12px 42px 16px;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.35);
}


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

.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);
}

.hero_carrossel .hero-caption-top-left {
	bottom: auto;
	left: 7%;
	padding: 0;
	right: auto;
	text-align: left;
	top: 70px;
	width: min(620px, 72vw);
}

.hero_carrossel .hero-caption-top-left h1 {
	color: #fff !important;
	font-size: 48px !important;
	line-height: 1.12;
	margin: 0 !important;
	text-align: left;
}

.hero_carrossel .hero-caption-third {
	bottom: auto;
	left: 50%;
	padding: 0;
	right: auto;
	text-align: center;
	top: 34%;
	transform: translate(-50%, -50%);
	width: min(980px, 86vw);
}

.hero_carrossel .hero-caption-third h3 {
	color: #fff !important;
	font-family: "Lato", sans-serif;
	font-size: 46px;
	font-style: italic;
	font-weight: 900;
	line-height: 1.14;
	margin: 0;
	text-align: center;
	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;
	}

	.hero_carrossel .hero-caption-top-left {
		left: 24px;
		top: 34px;
		width: calc(100% - 48px);
	}

	.hero_carrossel .hero-caption-top-left h1 {
		font-size: 32px !important;
		text-align: left;
	}

	.hero_carrossel .hero-caption-third {
		left: 50%;
		top: 34%;
		width: calc(100% - 32px);
	}

	.hero_carrossel .hero-caption-third h3 {
		font-size: 28px;
	}
}




.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;
}

.hero_carrossel .hero-slide-link {
	cursor: pointer;
	display: block;
	height: 100%;
	text-decoration: none;
}

.hero_carrossel .hero-slide-link picture {
	display: block;
	height: 100%;
}

/* 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 */
	pointer-events: none;
	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 */
	}
}

@media (max-width: 767.98px) {
	.hero_carrossel .carousel,
	.hero_carrossel .carousel-inner,
	.hero_carrossel .carousel-item,
	.hero_carrossel .hero-slide-link,
	.hero_carrossel .carousel-item picture {
		height: auto;
		min-height: 0;
	}

	.hero_carrossel .carousel-item img {
		display: block;
		height: auto;
		object-fit: contain;
		width: 100%;
	}
}





.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(178, 208, 63, 0.72);
	/* 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: #eef2f7;
}

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

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

.produto-anchor-target {
	scroll-margin-top: 120px;
}

.produto-anchor-target:target .product-card {
	animation: produto-anchor-pulse 1.6s ease;
	box-shadow: 0 0 0 4px rgba(178, 208, 63, 0.75), 0 12px 32px rgba(39, 40, 140, 0.22);
}

@keyframes produto-anchor-pulse {
	0% {
		transform: translateY(0) scale(1);
	}
	35% {
		transform: translateY(-6px) scale(1.015);
	}
	100% {
		transform: translateY(0) scale(1);
	}
}

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

.product-title-series {
	color: var(--color-primary);
	display: inline-block;
	font-size: 0.95rem;
	margin-top: 4px;
}

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

.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;
	}
}



.top .row {
	align-items: stretch !important;
	min-height: 170px;
}

.top-brand-col {
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}

.top-contact-col {
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}

.top-brand-content {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 15px;
	width: 100%;
}

.top-brand-content .logo_topo {
	max-height: 112px;
	max-width: 300px;
}

.top-brand-content .slogan {
	color: #fff !important;
	font-size: 28px;
	line-height: 1.2;
	margin: 0;
	max-width: 430px;
	text-align: left !important;
}

.top-contact-content {
	color: #fff;
	padding: 0 15px;
	text-align: center;
	width: 100%;
}

.top-contact-item {
	min-width: 0;
	padding: 15px 0;
}

.top-contact-item:first-child {
	padding-left: 0;
}

.top-contact-box-wrap {
	display: contents;
}

.top-contact-label {
	color: #b2d03f;
	font-size: 19px;
	line-height: 1.2;
	margin-bottom: 5px;
}

.top-contact-line,
.top-contact-email {
	color: #fff !important;
	display: flex;
	align-items: center;
	font-size: 20px;
	line-height: 1.25;
	margin: 2px 0;
	text-decoration: none;
}

.top-contact-line i {
	color: #b2d03f;
	flex: 0 0 auto;
	font-size: 28px;
	line-height: 1;
	margin-right: 10px;
}

.top-contact-content .top-contact-line i,
.top-contact-content a.top-contact-line i {
	color: #b2d03f !important;
}

.top-contact-email {
	display: block;
	font-size: 15px;
	font-weight: 700;
	overflow-wrap: anywhere;
}

.top-contact-line:hover,
.top-contact-email:hover {
	color: #b2d03f !important;
}

.top-social-links {
	display: flex;
	gap: 26px;
	justify-content: flex-start;
}

.top-social-links a {
	align-items: center;
	color: #fff;
	display: flex;
	height: auto;
	justify-content: center;
	text-decoration: none;
	transition: all 0.2s ease;
	width: auto;
}

.top-social-links a i {
	color: #fff;
	font-size: 28px;
	line-height: 1;
}

.top-social-links a:hover {
	color: #b2d03f;
}

.top-social-links a:hover i {
	color: #b2d03f;
}

.bg_footer {
	background: #27288c !important;
}

.logo_topo {
	max-height: 120px;
	object-fit: contain;
}

.acopmac-logo-section {
	max-height: 280px;
	max-width: 470px;
	object-fit: contain;
	width: 100%;
}

.acopmac-destaque h2,
.acopmac-destaque h3,
.acopmac-destaque p {
	color: #fff !important;
	text-shadow:
		0 3px 8px rgba(0, 0, 0, 0.95),
		0 8px 22px rgba(0, 0, 0, 0.85),
		2px 2px 2px rgba(0, 0, 0, 0.9);
}

.acopmac-destaque {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 330px;
}

.acopmac-copy {
	font-size: 22px;
	line-height: 1.45;
	margin-top: 20px;
	text-align: center;
}

.product-desc {
	font-size: 15px;
	line-height: 1.45;
	text-align: center;
	color: #333;
	margin: 0;
}

/* ---- Parallax empresa ---- */
.acopmac-parallax-empresa {
	width: 100%;
	height: 520px;
	background-attachment: fixed;
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

/* ✏️ Transparência do degradê: 0.0 = invisível, 1.0 = opaco */
.acopmac-parallax-empresa {
	--overlay-azul:  0.35;   /* transparência do azul  */
	--overlay-verde: 0.25;   /* transparência do verde */
}

.acopmac-parallax-empresa::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(39, 40, 140, var(--overlay-azul))  0%,
		rgba(178, 208, 63, var(--overlay-verde)) 100%
	);
	z-index: 1;
}

.acopmac-parallax-empresa::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		-45deg,
		rgba(39, 40, 140, 0.12) 0px,
		rgba(39, 40, 140, 0.12) 1px,
		transparent 1px,
		transparent 6px
	);
	z-index: 2;
}

@media (max-width: 768px) {
	.acopmac-parallax-empresa {
		height: 320px;
		background-attachment: scroll;
	}
}
/* ---- fim parallax empresa ---- */

/* ---- Faixa marquee de produtos ---- */
.marquee-faixa {
	width: 100%;
	overflow: hidden;
	padding: 18px 0;
	touch-action: pan-y;
	user-select: none;
	cursor: grab;
}

.marquee-track {
	display: flex;
	width: max-content;
	animation: marquee-scroll 20s linear infinite;
}

.marquee-faixa.is-marquee-ready .marquee-track {
	animation: none;
	will-change: transform;
}

.marquee-faixa.is-dragging {
	cursor: grabbing;
}

.marquee-faixa:hover .marquee-track {
	animation-play-state: paused;
}

.marquee-item {
	border-radius: 10px;
	flex-shrink: 0;
	width: var(--marquee-size, 160px);
	height: var(--marquee-size, 160px);
	margin: 0 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.marquee-item:hover,
.marquee-item:focus-visible {
	transform: translateY(-3px);
}

.marquee-item:focus-visible {
	outline: 3px solid var(--color-primary);
	outline-offset: 3px;
}

.marquee-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	pointer-events: none;
	user-select: none;
	-webkit-user-drag: none;
}

@keyframes marquee-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
/* ---- fim faixa marquee ---- */

.btn-pdf {
	display: block;
	width: fit-content;
	margin: 14px auto 0;
	padding: 7px 18px;
	background-color: var(--color-secondary);
	color: #fff;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.btn-pdf:hover {
	background-color: #1a1b6e;
	color: #fff;
}

#catalogoModal {
	z-index: 1065;
}

.modal-backdrop {
	z-index: 1055;
}

.catalogo-modal {
	border: 0;
	border-radius: 8px;
	overflow: hidden;
}

.catalogo-modal .modal-header {
	background: var(--color-secondary);
	color: #fff;
}

.catalogo-modal .modal-title {
	font-family: "lato", sans-serif;
	font-weight: 900;
}

.catalogo-modal .btn-close {
	filter: invert(1);
	opacity: 1;
}

.catalogo-modal-text {
	color: #27288c !important;
	font-size: 16px;
	margin-bottom: 18px;
}

.catalogo-modal-feedback {
	font-size: 14px;
	font-weight: 700;
	min-height: 22px;
}

.catalogo-modal-feedback.success {
	color: #2f7d32;
}

.catalogo-modal-feedback.error {
	color: #b00020;
}

.product-card .product-img {
	aspect-ratio: 1 / 1;
	flex: 0 0 280px;
	height: 280px;
	max-height: 280px;
	object-fit: contain;
	transform: none;
}

.acopmac-fornecedores {
	background: #eef2f7;
	border-radius: 0;
	padding: 0;
	overflow: hidden;
}

.acopmac-fornecedores-text-wrap {
	align-items: center;
	display: flex;
	justify-content: flex-end;
	padding: 70px 54px 70px 16px;
}

.acopmac-fornecedores-text {
	max-width: 560px;
	text-align: center;
}

.acopmac-warehouse-image {
	height: 100%;
	min-height: 430px;
	overflow: hidden;
}

.acopmac-warehouse-image img {
	display: block;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
	width: 100%;
}

.acopmac-metric {
	background: #b2d03f;
	border-radius: 8px;
	padding: 24px;
	min-height: 130px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.acopmac-metric b {
	display: block;
	font-size: 24px;
	color: #27288c;
}

.acopmac-metric span {
	font-size: 18px;
	color: #27288c;
}

.acopmac-form-image img {
	display: block;
	max-height: 720px;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.banner-layout1 .row {
	align-items: center;
}

.banner-layout1 .form-section-row {
	--bs-gutter-x: 0;
}

.banner-layout1 .form-section-row > * {
	padding-left: 0;
	padding-right: 0;
}

.banner-layout1 .form-section-row > .banner-panel {
	background: transparent;
	box-shadow: none;
	padding: 42px 120px;
}

.banner-layout1 .banner-panel .mb-3 {
	margin-bottom: 0.75rem !important;
}

.banner-layout1 .banner-panel .mb-4 {
	margin-bottom: 1rem !important;
}

.banner-layout1 .banner-panel .form-label {
	font-size: 15px;
	margin-top: 0 !important;
}

.banner-layout1 .banner-panel .form-control {
	padding: 0.48rem 0.75rem;
}

.banner-layout1 .banner-panel textarea.form-control {
	min-height: 96px;
}

.banner-layout1 .banner-panel .btn-primary {
	padding: 20px 32px;
}

.banner-layout1 .col-lg-6:first-child {
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-layout1 .image-container,
.banner-layout1 .acopmac-form-image {
	width: 100%;
}

.acopmac-localizacao {
	background: transparent;
	margin-top: 0;
	padding: 80px 0;
	overflow: hidden;
}

.acopmac-bottom-bg {
	background: #eef2f7;
}

.acopmac-bottom-bg .banner-layout1,
.acopmac-bottom-bg .acopmac-localizacao {
	background: transparent;
}

.acopmac-location-content {
	background: #fff;
	border-left: 8px solid #b2d03f;
	border-radius: 8px;
	height: 100%;
	padding: 48px;
	box-shadow: 0 10px 30px rgba(39, 40, 140, 0.12);
	text-align: center;
}

.acopmac-kicker {
	color: #27288c;
	display: inline-block;
	font-family: "lato", sans-serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 900;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.acopmac-location-box {
	align-items: center;
	background: #27288c;
	border-radius: 8px;
	color: #fff;
	display: flex;
	gap: 18px;
	justify-content: center;
	margin: 28px 0;
	padding: 24px;
}

.acopmac-location-box i {
	color: #b2d03f;
	font-size: 42px;
}

.acopmac-location-box b,
.acopmac-location-box span {
	display: block;
}

.acopmac-location-box b {
	font-size: 24px;
	line-height: 1.2;
}

.acopmac-location-box span {
	font-size: 18px;
	line-height: 1.35;
}

.acopmac-location-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
}

.acopmac-location-actions .btn-primary {
	padding: 20px 28px;
}

.acopmac-email-link {
	color: #27288c;
	font-size: 20px;
	font-weight: 900;
	text-decoration: none;
}

.acopmac-email-link:hover {
	color: #000;
	text-decoration: underline;
}

.acopmac-map-frame {
	border-radius: 8px;
	height: 100%;
	min-height: 520px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(39, 40, 140, 0.12);
}

.acopmac-map-frame iframe {
	display: block;
	height: 100%;
	min-height: 520px;
	width: 100%;
}

@media (max-width: 768px) {
	.acopmac-fornecedores {
		padding: 0;
	}

	.acopmac-fornecedores-text-wrap {
		justify-content: center;
		padding: 42px 24px;
	}

	.acopmac-warehouse-image,
	.acopmac-warehouse-image img {
		min-height: 320px;
	}

	.acopmac-logo-section {
		max-height: 220px;
		max-width: 320px;
	}

	.industrias.bg_1 {
		padding-bottom: 5.5rem;
		padding-top: 4rem;
	}

	.industrias.bg_1 .row {
		align-items: flex-start !important;
	}

	.industrias.bg_1 .col-lg-5 {
		margin-bottom: 0.75rem !important;
	}

	.industrias.bg_1 .col-lg-7 {
		align-items: flex-start !important;
	}

	.industrias.bg_1 .acopmac-destaque {
		justify-content: flex-start;
		min-height: auto;
	}

	.acopmac-localizacao {
		padding: 50px 0;
	}

	.acopmac-location-content {
		padding: 32px 22px;
	}

	.acopmac-map-frame,
	.acopmac-map-frame iframe {
		min-height: 380px;
	}

	.top .row {
		min-height: auto;
	}

	.top-brand-content {
		flex-direction: column;
		gap: 16px;
		margin-left: 0;
		max-width: none;
		padding: 32px 12px 20px;
	}

	.top-brand-content .logo_topo {
		max-height: 160px;
		max-width: min(350px, 94vw);
	}

	.top-brand-content .slogan,
	.top-contact-content {
		text-align: center !important;
	}

	.top-brand-content .slogan {
		font-size: 24px;
	}

	.top-contact-content {
		margin-right: 0;
		max-width: none;
		padding: 28px 24px 34px;
	}

	.top-contact-box-wrap {
		align-items: center;
		display: flex;
		flex-direction: column;
		gap: 10px;
		width: 100%;
	}

	.top-contact-grid {
		align-items: center;
		gap: 24px;
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.top-contact-item {
		padding: 8px 0;
		width: 100%;
	}

	.top-contact-item:first-child {
		padding-left: 0;
	}

	.top-contact-line {
		justify-content: center;
		font-size: 24px;
	}

	.top-contact-email {
		text-align: center;
	}

	.top-social-links {
		justify-content: center;
	}
}

@media (max-width: 575.98px) {
	.acopmac-copy {
		display: none;
	}

	.industrias [data-aos],
	.banner-layout1 [data-aos] {
		opacity: 1 !important;
		transform: none !important;
	}

	.banner-layout1 .form-section-row > .banner-panel {
		border-radius: 0;
		padding: 34px 20px 42px;
	}

	.banner-panel:before {
		height: 130px;
		top: 42px;
		width: 6px;
	}

	.banner-layout1 .banner-panel h4 {
		font-size: 24px;
		line-height: 1.28;
		margin-bottom: 22px !important;
	}

	.banner-layout1 .banner-panel .form-control {
		min-height: 50px;
		width: 100%;
	}

	.banner-layout1 .banner-panel textarea.form-control {
		min-height: 140px;
	}

	.banner-layout1 .banner-panel .btn-primary {
		padding: 16px 20px;
	}
}
