/* fonts */
@font-face {
    font-family: 'introlight_alt';
    src: url('fonts/UniviaPro-Light.woff2') format('woff2'),
         url('fonts/UniviaPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'introregular_alt';
    src: url('fonts/UniviaPro-Regular.woff2') format('woff2'),
         url('fonts/UniviaPro-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'introbold_alt';
    src: url('fonts/UniviaPro-Bold.woff2') format('woff2'),
         url('fonts/UniviaPro-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'introblack_alt';
    src: url('fonts/UniviaPro-Black.woff2') format('woff2'),
         url('fonts/UniviaPro-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* header */
.social-header .social-icons li {
	display: inline-block; /* em vez de block */
        margin-right: 5px;
}
.social-header .social-icons li a {
	color: #fff !important;
	font-size: 20px;
	width: 42px;
	height: 42px;
	line-height: 42px;
	background-color: #E8611B;
	transition: all 0.2s ease;
}

.social-header .social-icons .btn-outline {
	color: #E8611B;
	font-family: 'introbold_alt';
	font-size: 12px;
	border: 2px solid #E8611B;
	transition: all 0.2s ease;
}

.social-header .social-icons .btn-outline:hover {
	color: #fff;
	background: #E8611B;
}

.social-icons li:hover.social-icons-instagram a,
.social-icons li:hover.social-icons-facebook a {
	background-color: #fff;
        color: #E8611B!important;
        border: 2px solid #E8611B;
}

#header .header-nav.header-nav-line nav > ul > li > a {
	font-size: 14px;
}

@media (min-width: 1200px) {
	#header .header-nav-main nav > ul > li {
		padding: 0 10px;
	}

	#header .header-nav-main nav > ul > li:nth-of-type(2) {
		position: relative;
	}
}

#header .header-btn-collapse-nav {
	background: #E8611B;
	border-radius: 0;
}

@media (min-width: 992px) {
	#header .header-nav.header-nav-links:not(.header-nav-light-text) nav > ul > li > a, 
	#header .header-nav.header-nav-line:not(.header-nav-light-text) nav > ul > li > a {
		color: #13182c;
		font-family: 'introregular_alt';
		font-size: 15px;
		letter-spacing: .4px;
	}

	#header .header-nav.header-nav-line nav > ul:not(:hover) li > a.active {
		color: #E8611B;
	}

	#header .header-nav-main nav > ul > li > a {
		text-decoration: none;
	}
}

@media (max-width: 991px) {
	#header .header-nav-main:not(.header-nav-main-mobile-dark) nav > ul > li > a.active {
		background: #13182c;
	}

	.header-nav-main {
		display: none; 
	}
}

@media (min-width: 992px) {
	#header .header-nav-main nav > ul > li.dropdown .dropdown-menu {
		border-top-color: #6db3d7;
	}
}

.menu-mobile {
	list-style: none;
}

.menu-mobile li{
    
}
.menu-mobile li a {
    font-size: 17px;
    color: #E8611B;
    transition: all 0.2s ease;
    display: block;
    padding: 5px 20px;
}

.menu-mobile li a:active,
.menu-mobile li a:hover {
	color: #E8611B;
	text-decoration: none;
        background-color: #F5F5F5;
}

.mobile-menu-sidepanel {
	margin-top: 20px;
}

.menu-mobile li:nth-of-type(6) button {
	color: #E8611B;
	font-family: 'introbold_alt';
	font-size: 12px;
	border: 2px solid #E8611B;
	transition: all 0.2s ease;
}

.menu-mobile li:nth-of-type(6) button:hover {
	color: #fff;
	background: #E8611B;
}

.mobile-menu-sidepanel li a {
	bottom: 25px;
	width: 42px;
	height: 42px;
	line-height: 40px;
	border: 1px solid;
}

/* ===== MENU LATERAL RESPONSIVO PARA IFRAME ===== */
.menu-lateral {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: #2c3e50;
    color: #ecf0f1;
    z-index: 1050;
    transition: left .3s ease;
    box-shadow: 2px 0 15px rgba(0,0,0,.3);
}

.menu-lateral.ativo { 
    left: 0; 
}

/* CabeÃ§alho */
.menu-lateral-header {
    padding: 14px;
    background: #F5F5F5;
    border-bottom: 1px solid #F5F5F5;
    text-align: center;
}

.menu-lateral-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #E8611B;
}

/* Lista de links */
.menu-lateral-nav {  
    overflow-x: hidden;
    background-color: #fff;
    height: 100vh;
}

/* BotÃ£o que abre/fecha o menu - adaptado para iframe */
.menu-toggle {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 2000 !important;
    background: rgb(43, 61, 79, 0.01);
    box-shadow: none !important;
    color: #fff;
    border: none;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover {
    transform: scale(1.5) !important;

}

.menu-toggle.ativo{transform: scale(1.5) !important;}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,.5);
    display: none;
    z-index: 999;
}

/* Scrollbar custom */
.menu-lateral::-webkit-scrollbar {
    width: 6px;
}

.menu-lateral::-webkit-scrollbar-track {
    background: #34495e;
}

.menu-lateral::-webkit-scrollbar-thumb {
    background: #4a5f7a;
    border-radius: 3px;
}

.menu-lateral::-webkit-scrollbar-thumb:hover {
    background: #5a6f8a;
}

/* Responsivo para iframe */
@media(max-width: 768px) {
    .menu-lateral {
        width: 280px;
        left: -280px;
    }

    .menu-lateral-item {
        padding: 18px 20px;
        font-size: 16px;
    }

    .menu-lateral-header h2 {
        font-size: 16px;
    }
}

/* AnimaÃ§Ã£o de entrada */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.menu-lateral.ativo {
    animation: slideIn 0.3s ease-out;
}
.menu-overlay.ativo {
    display: block;
}



#header .header-nav.header-nav-line nav > ul > li.dropdown:hover > .dropdown-menu {
	background: #6db3d7;
	padding: 15px 15px;
}

@media (min-width: 992px) {
	#header .header-nav-main nav > ul > li.dropdown .dropdown-menu li a {
		color: #fff;
		font-family: 'introregular_alt';
		font-size: 14px;
		text-transform: uppercase;
		border-bottom: 1px solid #84c0dd;
		letter-spacing: .5px;
	}

	#header .header-nav-main nav > ul > li.dropdown .dropdown-menu li:hover > a {
		background-color: #84c0dd;
	}
}

.sobre-home .sobre-titulo {
	color: #E8611B;
	font-family: 'introblack_alt';
	font-size: 72px;
	word-spacing: 3px;
}

.sobre-home .sobre-subtitulo {
	color: #E8611B;
	font-family: 'introregular_alt';
	font-weight: bold;
}

.sobre-home .sobre-texto {
	color: #060606;
	font-family: 'introlight_alt';
	font-size: 16px;
	font-weight: bold;
}

.sobre-home .sobre-link {
	position: relative;
	color: #000;
	font-family: 'introregular_alt';
	font-size: 20px;
	font-weight: bold;
	transition: all 0.2s ease;
}

.sobre-home .sobre-link::after {
	content: '';
	position: absolute;
	top: 45%;
	right: -140%;
	width: 145px;
	height: 3px;
	background-color: #000;
}

.sobre-home .sobre-link.hover,
.sobre-home .sobre-link:hover {
	color: #E8611B;
	text-decoration: none;
}

/* home empresas */

.home-empresas .owl-carousel .owl-item {
	display: flex;
	justify-content: center;
	align-items: center;
}

.home-empresas-bg1 {
	background-color: #1f1f1f;
}

.home-empresas-bg2 {
	background-color: #E8611B;
}

.home-empresas .home-empresas-titulo {
	font-family: 'introbold_alt';
	font-size: 55px;
	text-align: center;
	color: #fff;
}

.home-empresas .home-empresas-titulo span {
	font-family: 'Univia Pro Black';
}

.home-empresas .empresa-item,
.home-empresas .marcas-item {
    position: relative;
    text-align: center;
    padding: 0; /* não precisa padding quando usa background */
    background-color: #fff;
    border-radius: 100% !important; /* mantém como círculo */
    cursor: pointer;
    height: 230px;
    width: 230px;
    display: flex;
    justify-content: center;
    align-items: center;

    /* --- Ajuste da imagem de fundo --- */
    background-size: contain;      /* imagem inteira aparece */
    background-position: center;   /* centralizada */
    background-repeat: no-repeat;  /* não repetir */
    
    transition: all 0.35s ease; /* suavidade */
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* 🔥 Efeito hover elegante */
.home-empresas .empresa-item:hover,
.home-empresas .marcas-item:hover {
    transform: scale(1.06); /* zoom suave */
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); /* sombra mais forte */
    filter: brightness(1.15); /* aumenta brilho da imagem */
}

/* ✨ Efeito de brilho circular ao redor */
.home-empresas .empresa-item:hover::after,
.home-empresas .marcas-item:hover::after {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-radius: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 12px rgba(255,255,255,0.2);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.home-empresas .empresa-item img,
.home-empresas .marcas-item img {
	transition: all 0.2s ease;
}

.home-empresas .empresa-item:hover img,
.home-empresas .marcas-item:hover img {
	-webkit-filter: grayscale(100%); 
	filter: grayscale(100%);
}




/* pagina sobre */
.pagina-sobre {
	background-color: #000;
}

.pagina-sobre h1 {
	color: #fff;
	font-family: 'introblack_alt';
	letter-spacing: .5px;
	font-size: 26px;
}

.img-thumbnail img {
	border-radius: 0px !important;
}

.home-empresas-bg1 .owl-carousel .owl-nav button[class*="owl-"]:hover,
.home-empresas-bg1 .owl-carousel .owl-nav button[class*="owl-"]:hover,
.home-empresas-bg1 .owl-carousel .owl-nav button[class*="owl-"].hover,
.home-empresas-bg1 .owl-carousel .owl-nav button[class*="owl-"]:active, 
.home-empresas-bg1 .owl-carousel .owl-nav button[class*="owl-"].active,
.home-empresas-bg1 .owl-carousel .owl-nav button[class*="owl-"],
.lightbox .owl-carousel .owl-nav button[class*="owl-"]:hover,
.lightbox .owl-carousel .owl-nav button[class*="owl-"]:hover,
.lightbox .owl-carousel .owl-nav button[class*="owl-"].hover,
.lightbox .owl-carousel .owl-nav button[class*="owl-"]:active, 
.lightbox .owl-carousel .owl-nav button[class*="owl-"].active,
.lightbox .owl-carousel .owl-nav button[class*="owl-"] {
	background-color: #122b3e;
	border-color: #122b3e #122b3e #122b3e;
	color: #fff;
}

.home-empresas-bg2 .owl-carousel .owl-nav button[class*="owl-"]:hover,
.home-empresas-bg2 .owl-carousel .owl-nav button[class*="owl-"].hover,
.home-empresas-bg2 .owl-carousel .owl-nav button[class*="owl-"]:active, 
.home-empresas-bg2 .owl-carousel .owl-nav button[class*="owl-"].active,
.home-empresas-bg2 .owl-carousel .owl-nav button[class*="owl-"] {
	background-color: #13182c;
	border-color: #13182c #13182c #13182c;
	color: #fff;
}

.home-empresas .home-empresas-saiba-mais {
	font-size: 20px;
	color: #fff;
	border-bottom: 3px solid #fff;
	transition: all 0.2s ease;
}

.home-empresas .home-empresas-saiba-mais:hover {
	color: #E8611B;
	background: #fff;
	text-decoration: none;
        padding: 10px 25px;
}

/* fornecedores */
.fornecedores .fornecedor {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 100%;
	height: 200px;
	padding: 35px;
	border: 1px solid #c8c8c8;
}

.page-header {
	background: #fff;
}

.page-header .titulo-fornecedor {
	color: #000;
	font-family: 'introblack_alt';
}

.page-header .breadcrumb li {
	font-family: 'introlight_alt';
	font-weight: bold;
	font-size: 12px;
	color: #010101;
}

.page-header .breadcrumb a {
	font-family: 'introlight_alt';
	font-weight: bold;
	color: #010101;
	font-size: 12px;
}

/* formulario */
.contato-endereco p {
	margin-bottom: 0;
	color: #000000;
	font-size: 18px;
	font-weight: bold;
}

.contato-endereco p:nth-of-type(1) {
	font-family: 'introbold_alt';
	font-weight: bold;
}

.contato-endereco p {
	font-family: 'introbold_alt';
	font-size: 16px;
	font-weight: normal;
}

.contato-info p {
	margin-bottom: 0;
	color: #000000;
	font-weight: bold;
}

.contato-info p:nth-of-type(1) span {
	font-size: 16px;
	font-family: 'introthin_alt';
	font-weight: normal;
}

.contato-info p:nth-of-type(1) {
	font-family: 'introbold_alt';
	font-size: 26px;
}

.contato-info p {
	font-family: 'introbold_alt';
	font-size: 20px;
	font-weight: normal;
}

.contato-social .social-icons li {
	margin-right: 20px;
}

.contato-social .social-icons li a {
	width: 44px;
	height: 44px;
	line-height: 43px;
	color: #E8611B !important;
	font-size: 22px;
	background-color: transparent !important;
	border: 1px solid transparent;
}

.contato-social .social-icons li a:hover {
	color: #fff !important;
	background: #E8611B !important;
	border: 1px solid #E8611B;
}

.formulario .form-control{
	height: 50px;
	color: #242628;
	font-family: 'introregular_alt';
	background-color: #f8f8f8;
	border: 1px solid #c9c9c9;
	border-radius: 0;
}

.formulario textarea.form-control {
	height: 150px;
	font-family: 'introregular_alt';
}

.formulario input[type=file] {
	position: relative;
	cursor: pointer;
}

.formulario input[type=file]::after {
	content: 'ANEXAR ARQUIVO';
	position: absolute;
	top: 0;
	right: 0;
	height: inherit;
	line-height: 50px;
	padding: 0 25px;
	color: #fff;
	background-color: #E8611B;
}

html .btn-primary,
html .btn-primary:active,
html .btn-primary.active {
	background-color: #E8611B !important;
	background-image: none !important;
	border-color: #E8611B #E8611B #E8611B !important;
}

.formulario p {
	font-family: 'introregular_alt';
	font-size: 14px;
	color: #242626;
}

/* novidades */
.novidades-select {
	background-color: #122b3e;
}

.novidade {
	border: 1px solid #f0f0f0;
	margin-bottom: 30px;
}

.novidade .novidade-info {
	padding: 30px 40px;
}

.novidade .novidade-info > h3 {
	font-family: 'introblack_alt';
	font-weight: bold;
	font-size: 18px;
	color: #333;
	letter-spacing: .5px;
}

.novidade .novidade-info .data {
	font-family: 'introregular_alt';
	font-weight: bold;
	font-size: 15px;
}

.novidade .novidade-info .texto {
	font-family: 'introlight_alt';
	font-weight: bold;
	font-size: 14px;
	text-align: justify;
}

.novidade .novidade-info a {
	position: relative;
	color: #E8611B;
	font-weight: bold;
	font-size: 17px;
}

.novidade .novidade-info a {
	color: #E8611B;
	transition: all 0.2s ease;
}

.novidade .novidade-info a:hover {
	color: #122b3e;
	text-decoration: none;
}

.novidade .novidade-info a::after {
	content: '';
	position: absolute;
	top: 0;
	right: -180%;
	bottom: 0;
	width: 150px;
	height: 3px;
	background: #E8611B;
	margin: auto;
}

/* novidade */
.novidade-page .novidade-titulo {
	font-family: 'introbold_alt';
	font-size: 30px;
	color: #444;
}

.novidade-page .novidade-data {
	font-family: 'introbold_alt';
	font-size: 18px;
	color: #333;
}

.novidade-page .novidade-texto {
	font-family: 'introthin_alt';
	font-size: 15px;
	color: #444;
}

html .novidade-page .botao-voltar {
	color: #fff;
	font-weight: bold;
	background: #E8611B;
	border-color: #E8611B;
	transition: all 0.2s ease;
}

html .novidade-page .botao-voltar > .icons {
	font-weight: bold;
}

.btn-light:not(:disabled):not(.disabled):active,
html .novidade-page .botao-voltar:hover {
	color:#E8611B;
	background: transparent !important;
	border-color: #E8611B !important;
}

.novidade-redes-sociais a .fab {
	font-size: 24px;
	color: #000;,
	transition: all 0.2s ease;
}

.novidade-redes-sociais a .fab:hover {
	color: #E8611B;
}


/* mapa */
.map-select {
	background-color: #E8611B;
}

.map-select .form-control {
	height: 45px;
}

.map-container {
	position: relative;
}

.map-container .info-box {
	position: absolute;
	top: 15%;
	right: 10%;
	background-color: #fff;
	border-radius: 7px;
	-webkit-box-shadow: 0px 0px 12px .5px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 12px .5px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 12px .5px rgba(0,0,0,0.75);
}

.info-content {
	position: relative;
	padding: 25px 65px 25px 25px;
}

.info-content::after {
	content: '';
	position: absolute;
	top: -15px;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 15px solid #fff;
}

.map-container .info-content > .title,
.map-container .info-content > .phone,
.map-container .info-content > .social,
.map-container .info-content > .address {
	margin-bottom: 0;
}

.map-container .info-content > .title {
	margin-bottom: 10px;
	font-family: 'introbold_alt';
	font-size: 14px;
	color: #E8611B;
}

.map-container .info-content > .phone,
.map-container .info-content > .address {
	font-size: 14px;
	color: #000;
}

.map-container .social .social-icons:not(.social-icons-clean):not(.social-icons-dark):not(.social-icons-dark-2) li a {
	color: #fff !important;
	background-color: #E8611B;
	width: 34px;
	height: 34px;
	line-height: 34px;
}

/* footer */
html .scroll-to-top {
	color: #000;
}

#footer {
	margin-top: 0;
	background: #000;
	border-top: 4px solid #000;
}

#footer .social-title {
	font-family: 'introbold_alt';
	color: #FFF;
	text-transform: none;
	white-space: nowrap;
}

#footer .address {
	position: relative;
}

@media (min-width: 768px) {
	#footer .address::after {
		content: '';
		position: absolute;
		top: 0;
		right: -36px;
		height: 100%;
		border: 1px solid #f0f0f0;
	}
}

#footer .address p {
    color: #FFF !important;
    font-family: 'introregular_alt';
    font-size: 18px;
    float: left;
    overflow: hidden;
    display: block;
    width: 100%;
    text-align: left;
    margin-left: 50px;
}

#footer .nav-rodape p a {
    color: #FFF !important;
    font-family: 'introregular_alt';
    font-size: 18px;
    float: left;
    overflow: hidden;
    display: block;
    width: 100%;
    text-align: left;
    margin-left: 70px;
}

#footer .nav-rodape p a:hover {
	color: #E8611B !important;
}

#footer .social-icons li a {
	width: 44px;
	height: 44px;
	line-height: 43px;
	color: #fff !important;
	font-size: 18px;
	border: 1px solid #E8611B;
	background-color: #E8611B;
        transition: all 0.2s ease;
}

#footer .social-icons li a:hover {
	color: #E8611B !important;
	background: transparent;
	border: 1px solid #E8611B;
}

/*
* *********************************************************************
*/

.marcas-item {
	background-color: #fff;
	border-radius: 50% !important;
	padding: 25px;
}

.formulario label.error {
	display: none !important;
}

/*
* Magnific Popup
*/

.dialog-termo .mfp-close {
	right: 40px;
	top: 38px;
}

.dialog.dialog-lg {
	max-width: 900px;
	max-height: 450px;
	overflow-x: hidden;
	overflow-y: scroll;
	padding: 40px;
}

/*
* Swal
*/

.swal2-container {
	padding: 0px !important;
}

.swal2-popup {
	border-radius: 0px !important;
	padding: 30px 50px 50px 50px !important;
	width: 100% !important;
}

.swal2-actions {
	max-width: 425px;
}

div#swal2-content {
	font-size: 20px;
	line-height: 20px;
	color: #454A60;
	font-family: Univia Pro Regular;
}

.swal2-styled.swal2-confirm,
.swal2-styled.swal2-cancel {
	border: 0 !important;
	border-radius: 0 !important;
	background: initial !important;
	background-color: #E8611B !important;
	border-color: #E8611B #E8611B #E8611B !important;
	color: #FFF !important;
	border: 1px solid #E8611B !important;
	font-family: 'Univia Pro Regular';
}
.swal2-styled.swal2-confirm:hover,
.swal2-styled.swal2-cancel:hover {
	border: 1px solid #E8611B !important;
	background: #0000 !important;
	color: #E8611B !important;
}

.swal2-styled.swal2-confirm i,
.swal2-styled.swal2-cancel i {
	color: #FFF !important;
	margin-left: 6px;
}

.swal2-styled.swal2-confirm:hover i,
.swal2-styled.swal2-cancel:hover i {
	color: #454A5F !important;
}

.swal2-container.swal2-backdrop-show {
	background: rgba(0, 0, 0, 0.72);
	z-index: 99999;
}

.swal2-icon.swal2-error {
	border-color: #E8611B;
	color: #E8611B;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
	background-color: #E8611B;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
	background-color: #E8611B;
}

.swal2-title {
	display: none !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
	border: .25em solid #E8611B;
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
	background-color: #E8611B;
}

.swal2-styled:focus {
	outline: 0;
	box-shadow: none;
}

.swal2-icon {
	width: 3em;
	height: 3em;
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
	top: 1.9em;
	left: .475em;
	width: 1.2em;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
	top: 1.6em;
	right: 2em;
	width: 1.9375em;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

div#swal2-content i {
	font-size: 52px;
	margin: 15px;
	color: #E8611B;
}

/*
* Maps
*/

#map {
	min-height: 450px;
}

#firstHeading {
	color: #E8611B;
	font-family: 'Univia Pro Regular';
	font-size: 18px;
	margin-bottom: 5px;
	line-height: 18px;
	text-transform: uppercase;
}

#secondHeading {
	color: #13182c;
	font-family: 'Univia Pro Regular';
	font-size: 14px;
	margin-bottom: 5px;
	line-height: 18px;
}

#bodyContent p {
	font-family: 'Univia Pro Regular';
	line-height: 22px;
	margin-bottom: 0;
}

button.gm-ui-hover-effect {
	top: 0 !important;
	right: 0 !important;
}

select {
	padding: 0px 30px 0 30px !important;
	-webkit-padding-end: 35px !important;
	-webkit-padding-start: 10px !important;
	margin: 0 !important;
	-webkit-box-sizing: border-box !important;
	-moz-box-sizing: border-box !important;
	box-sizing: border-box !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	background-image: linear-gradient(45deg, #0000 50%, #122b3e  50%), linear-gradient(135deg, #122b3e  50%, #0000 50%), linear-gradient(to right, #122b3e  , #122b3e ) !important;
	background-position: calc(100% - 18px) calc(1em + 6px), calc(100% - 13px) calc(1em + 6px), calc(100% - 2.4em) 0.3em !important;
	background-size: 5px 5px, 5px 5px, 1px 2.6em !important;
	background-repeat: no-repeat !important;
}

.limit-chars {
	overflow: hidden;
	display: -webkit-box !important;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;;
}

.limit-chars-title {
	overflow: hidden;
	display: -webkit-box !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;;
}

/*
* Paginação
*/

.pagination {
	position: relative;
	z-index: 1;
	margin-bottom: 0 !important;
	justify-content: center !important;
	align-items: center !important;
}

.page-link {
	position: relative;
	display: block;
	padding: 0;
	line-height: 38px;
	background-color: #fff;
	border: 1px solid #dee2e6;
	width: 38px;
	font-family: 'introregular_alt';
	height: 38px;
}

.pagination > a, .pagination > a:hover, 
.pagination > a:focus, 
.pagination > li > a, 
.pagination > li > span, 
.pagination > li > a:hover, 
.pagination > li > span:hover, 
.pagination > li > a:focus, 
.pagination > li > span:focus {
	color: #E8611B;
}

.pagination > .active > a, 
.pagination > .active > span, 
.pagination > .active > a:hover, 
.pagination > .active > span:hover, 
.pagination > .active > a:focus, 
.pagination > .active > span:focus, 
.pagination .page-item.active .page-link {
	background-color: #E8611B !important;
	border-color: #E8611B;
}

select.form-control {
	height: 45px;
}


html .btn {
	font-family: 'introregular_alt';
}

a.btn.btn-primary.btn-purple {
	padding: 8px;
	line-height: 20px;
}

a.btn.btn-outline.line-height-2 {
	background-color: #F5F5F5 !important;
	color: #E8611B !important;
	font-family: 'introbold_alt' !important;
	font-size: 12px !important;
	border: 2px solid #E8611B !important;
	transition: all 0.2s ease !important;
	line-height: 1.2 !important;
	padding: 9px 12px;
	display: inline-block;
	font-weight: 400;
	text-align: center;
	border-radius: .25rem;
	vertical-align: middle;
	width: 88%;
	height: 47.4px;
        margin: 0 15px;
}

#header .header-nav.header-nav-line nav > ul > li.dropdown:hover > .dropdown-menu::after {
	content: '\25bc';
	position: absolute;
	transform: rotate(180deg);
	font-size: 14px;
	left: 0;
	right: 0;
	top: -18px;
	margin: auto;
	color: #6db3d7;
	text-align: center;
	font-size: 34px;
}

#header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu > a:after {
	font-family: 'Font Awesome 5 Pro';
	content: "" !important;
	font-weight: 900;
	position: absolute;
	top: 50%;
	font-size: 0.5rem;
	opacity: 0.7;
	right: 20px;
	transform: translateY(-50%);
	transition: all .2s ease-out;
}

/*
* Square image
*/

.img-square {
	width: 100%;
	height: 0px;
	padding: 50% 0;
	background-size: 100% 100%;
	background-clip: border-box;
	box-sizing: border-box;
	border-radius: 50%;
}

.novidades-content .novidade img.img-fluid {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 200px;
}

/*
* LGPD
*/

.container-btn-access-lgpd {
	border: 1px solid #C8C8C8;
}

.btn-access-lgpd:focus,
.btn-access-lgpd {
	background-color: #E8611B;
	color: #ffffff;
	border: 2px solid #E8611B;
	transition: all .3s;
}

.btn-access-lgpd:hover {
	background-color: transparent;
	color: #E8611B;
}

.lgpd-titulo {
	font-family: 'introbold_alt' !important;
}

.lgpd-subtitulo {
	font-family: 'introregular_alt' !important;
}

img.lazyload {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazyload:not([data-src]) {
    opacity: 1;
}

a {
  text-decoration: none;
  color: inherit; /* opcional: faz o link herdar a cor do texto */
}

a:hover,
a:focus {
  text-decoration: none; /* garante que também não apareça no hover/focus */
}

@media screen and (min-width: 992px) {
  #mainNav {
    padding: 0;
  }

  #mainNav > li > a {
    padding: 1em 0;
  }

  #mainNav > li {
    margin: 0 1em;
  }
}

#mainNav > li {
  position: relative;
  list-style: none;
}

#mainNav > li::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  background-color: #E8611B; /* Azul Bootstrap - pode trocar */
  width: 0%;
  height: 3px;
  transition: all 0.3s ease;
  border-radius: 3px;
}

#mainNav > li:hover::after,
#mainNav > li.active::after {
  width: 90%;
}

#mainNav > li > a {
  display: inline-block;
  text-decoration: none;
  color: #000; /* cor padrão do texto */
  transition: color 0.3s ease;
}

#mainNav > li > a:hover {
  color: #0d6efd;
}