/* Default
** ----------------------------------------------- */
:root {
	--primary-color: #e96a24;
	--secondary-color: #000;
}

/* Default
** ----------------------------------------------- */
body {
	color: #333;
	background: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	margin: 0;
	padding: 0;
	line-height: 1.3;
}

a:hover,
a:focus {
	color: #444;
	text-decoration: none;
	outline: 0;
}

a:hover,
a:focus {
	color: #005580;
	text-decoration: underline;
}

/* Topo / Header
** ----------------------------------------------- */
:root {
	--site-header-height: 92px;
	--site-header-row-height: 92px;
	--header-bg: #fff;
	--header-text: #1f2933;
	--header-border: rgba(15, 23, 42, 0.08);
	--header-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
	--header-shadow-scrolled: 0 14px 35px rgba(15, 23, 42, 0.12);
	--header-radius: 16px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--site-header-height) + 20px);
}

body.overflow {
	overflow: hidden;
}

body.header-fixed-active {
	padding-top: var(--site-header-height);
}

.site-header {
	position: relative;
	top: auto;
	left: auto;
	width: 100%;
	background: #000;
	border-bottom: 1px solid var(--header-border);
	box-shadow: var(--header-shadow);
	z-index: 99;
	transition:
		box-shadow 0.25s ease,
		background-color 0.25s ease,
		backdrop-filter 0.25s ease,
		transform 0.25s ease;
}

.site-header.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--header-shadow-scrolled);
	backdrop-filter: blur(12px);
	animation: headerFixedShow 0.28s ease forwards;
}

.site-header.is-scrolled {
	background: rgba(0, 0, 0, 0.4);
	box-shadow: var(--header-shadow-scrolled);
	backdrop-filter: blur(12px);
}

@keyframes headerFixedShow {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.site-header__grid {
	display: grid;
	grid-template-columns: 250px 1fr auto;
	align-items: center;
	gap: 24px;
	min-height: var(--site-header-row-height);
}

.site-header__brand {
	width: 250px;
	padding: 16px 0;
}

.site-header__brand a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-header__brand img {
	display: block;
	width: 100%;
	max-width: 200px;
	height: auto;
	object-fit: contain;
}

.site-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.site-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 10px 18px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 999px;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background-color 0.25s ease,
		border-color 0.25s ease;
}

.site-header__cta:hover,
.site-header__cta:focus {
	color: #fff;
	text-decoration: none;
	background: var(--secondary-color);
	border-color: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.site-header__menu-button {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: #fff;
	font-size: 18px;
	background: var(--primary-color);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transition:
		transform 0.25s ease,
		background-color 0.25s ease;
}

.site-header__menu-button:hover,
.site-header__menu-button:focus {
	background: var(--secondary-color);
	transform: translateY(-2px);
}

/* SUBHEADER */
.sub-header {
	padding-block: 10px;
	background-color: black;
}

.sub-header p {
	color: var(--primary-color);
	font-size: 11px;
}

.sub-header a {
	color: white;
	font-weight: 700;
	font-size: 13px;
}

.sub-header a:hover {
	color: #e96016;
}

.sub-header a,
.sub-header p {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
}

/* SUBHEADER FINAL */

/* Menu Desktop
** ----------------------------------------------- */
.site-nav {
	display: flex;
	justify-content: center;
	min-width: 0;
}

.site-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 4px;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__item {
	position: relative;
	list-style: none;
}

.site-nav__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 34px 12px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.25s ease;
}

.site-nav__link::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 25px;
	height: 2px;
	background: var(--primary-color);
	border-radius: 999px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.25s ease;
}

.site-nav__item:hover>.site-nav__link,
.site-nav__item:focus-within>.site-nav__link,
.site-nav__link.menu-ativo {
	color: var(--primary-color);
	text-decoration: none;
}

.site-nav__item:hover>.site-nav__link::after,
.site-nav__item:focus-within>.site-nav__link::after,
.site-nav__link.menu-ativo::after {
	transform: scaleX(1);
}

.site-nav__submenu-button {
	display: none;
}

.site-nav__submenu {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 20;
	display: block;
	width: 300px;
	max-height: 430px;
	margin: 0;
	padding: 10px;
	list-style: none;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: var(--header-radius);
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
	overflow-x: hidden;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, 12px);
	transition:
		opacity 0.22s ease,
		visibility 0.22s ease,
		transform 0.22s ease;
}

.site-nav__submenu--wide {
	width: 330px;
	max-width: calc(100vw - 32px);
}

.site-nav__item:hover>.site-nav__submenu,
.site-nav__item:focus-within>.site-nav__submenu,
.site-nav__item.is-open>.site-nav__submenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.site-nav__submenu li {
	display: block;
	width: 100%;
	list-style: none;
}

.site-nav__submenu li+li {
	margin-top: 4px;
}

.site-nav__submenu a {
	display: block;
	width: 100%;
	padding: 11px 12px;
	color: #334155;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	text-decoration: none;
	border-radius: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		transform 0.2s ease;
}

.site-nav__submenu a:hover,
.site-nav__submenu a:focus {
	color: #fff;
	background: var(--primary-color);
	text-decoration: none;
	transform: translateX(3px);
}

.site-nav__submenu::-webkit-scrollbar,
.menu-lateral-conteudo::-webkit-scrollbar,
.menu-lateral .site-nav__submenu::-webkit-scrollbar {
	width: 7px;
}

.site-nav__submenu::-webkit-scrollbar-thumb,
.menu-lateral-conteudo::-webkit-scrollbar-thumb,
.menu-lateral .site-nav__submenu::-webkit-scrollbar-thumb {
	background: rgba(15, 23, 42, 0.18);
	border-radius: 999px;
}

/* Menu Mobile Lateral
** ----------------------------------------------- */
.menu-lateral {
	position: fixed;
	inset: 0;
	z-index: 999;
	visibility: hidden;
	pointer-events: none;
}

.menu-lateral.menu-lateral-visivel {
	visibility: visible;
	pointer-events: auto;
}

.menu-lateral-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.78);
	opacity: 0;
	backdrop-filter: blur(8px);
	transition: opacity 0.25s ease;
}

.menu-lateral.menu-lateral-visivel .menu-lateral-overlay {
	opacity: 1;
}

.menu-lateral-conteudo {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(420px, 92vw);
	background:
		radial-gradient(circle at 100% 0, rgba(233, 106, 36, 0.16), transparent 32%),
		linear-gradient(180deg, #101216 0%, #080a0d 100%);
	border-left: 1px solid rgba(233, 106, 36, 0.28);
	box-shadow: -28px 0 80px rgba(0, 0, 0, 0.58);
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-lateral.menu-lateral-visivel .menu-lateral-conteudo {
	transform: translateX(0);
}

.menu-lateral__head {
	position: sticky;
	top: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 22px 18px;
	background: rgba(11, 13, 17, 0.9);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
}

.menu-lateral__brand {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 5px;
}

.menu-lateral__brand>span {
	color: rgba(255, 255, 255, 0.48);
	font-size: 9px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.menu-lateral__logo {
	display: inline-flex;
	align-items: center;
	max-width: 174px;
	text-decoration: none;
}

.menu-lateral__logo img {
	display: block;
	width: 100%;
	max-width: 174px;
	height: auto;
	object-fit: contain;
}

.menu-lateral__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	color: var(--primary-color);
	background: rgba(233, 106, 36, 0.1);
	border: 1px solid rgba(233, 106, 36, 0.38);
	border-radius: 14px;
	cursor: pointer;
	transition:
		background-color 0.25s ease,
		transform 0.25s ease;
}

.menu-lateral__close:hover,
.menu-lateral__close:focus {
	color: #fff;
	background: var(--primary-color);
	transform: rotate(90deg);
}

.menu-lateral__body {
	display: flex;
	min-height: calc(100% - 96px);
	flex-direction: column;
	padding: 22px;
}

.menu-lateral__eyebrow {
	margin: 0 0 10px;
	color: var(--primary-color);
	font-size: 10px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.menu-lateral__nav {
	padding: 0;
}

.menu-lateral .site-nav__list {
	display: block;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu-lateral .site-nav__item {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 0 7px;
	border: 0;
}

.menu-lateral .site-nav__link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	min-height: 52px;
	padding: 14px 58px 14px 18px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	white-space: normal;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.065);
	border-radius: 13px;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menu-lateral .site-nav__link::before {
	content: "";
	display: block;
	width: 4px;
	height: 18px;
	margin-right: 12px;
	background: rgba(233, 106, 36, 0.35);
	border-radius: 99px;
	transition: height 0.2s ease, background-color 0.2s ease;
}

.menu-lateral .site-nav__link::after {
	display: none;
}

.menu-lateral .site-nav__link>i {
	display: none;
}

.menu-lateral .site-nav__link:hover,
.menu-lateral .site-nav__link:focus,
.menu-lateral .site-nav__link.menu-ativo {
	color: #fff;
	background: linear-gradient(90deg, rgba(233, 106, 36, 0.18), rgba(233, 106, 36, 0.05));
	border-color: rgba(233, 106, 36, 0.42);
	text-decoration: none;
	transform: translateX(3px);
}

.menu-lateral .site-nav__link:hover::before,
.menu-lateral .site-nav__link:focus::before,
.menu-lateral .site-nav__link.menu-ativo::before {
	height: 24px;
	background: var(--primary-color);
}

.menu-lateral .site-nav__submenu-button {
	position: absolute;
	top: 6px;
	right: 7px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: #f48749;
	background: rgba(233, 106, 36, 0.1);
	border: 1px solid rgba(233, 106, 36, 0.18);
	border-radius: 11px;
	cursor: pointer;
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		transform 0.25s ease;
}

.menu-lateral .site-nav__submenu-button:hover,
.menu-lateral .site-nav__submenu-button:focus {
	color: #fff;
	background: rgba(233, 106, 36, 0.82);
}

.menu-lateral .site-nav__item.is-open>.site-nav__submenu-button {
	color: #fff;
	background: var(--primary-color);
	transform: rotate(180deg);
}

.menu-lateral .site-nav__submenu {
	position: static;
	display: block;
	width: 100%;
	max-width: 100%;
	max-height: 0;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: hidden;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
	transition:
		max-height 0.32s ease,
		padding 0.32s ease;
}

.menu-lateral .site-nav__item.is-open>.site-nav__submenu {
	max-height: min(360px, 42vh);
	padding: 7px 3px 10px 14px;
	overflow-x: hidden;
	overflow-y: auto;
}

.menu-lateral .site-nav__submenu li {
	display: block;
	width: 100%;
	border: 0;
}

.menu-lateral .site-nav__submenu li+li {
	margin-top: 6px;
}

.menu-lateral .site-nav__submenu a {
	display: block;
	width: 100%;
	padding: 11px 13px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	text-decoration: none;
	white-space: normal;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.055);
	border-radius: 9px;
	overflow: visible;
	text-overflow: initial;
	transform: none;
	transition:
		color 0.2s ease,
		background-color 0.2s ease;
}

.menu-lateral .site-nav__submenu a:hover,
.menu-lateral .site-nav__submenu a:focus {
	color: #fff;
	background: rgba(233, 106, 36, 0.18);
	border-color: rgba(233, 106, 36, 0.34);
	text-decoration: none;
	transform: none;
}

.menu-lateral__footer {
	margin-top: auto;
	padding-top: 22px;
}

.menu-lateral__cta {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	min-height: 70px;
	padding: 12px 14px;
	color: #fff;
	background: linear-gradient(135deg, #f4772f, #d95213);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 16px;
	box-shadow: 0 14px 30px rgba(233, 106, 36, 0.22);
	text-decoration: none;
	transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.menu-lateral__cta:hover,
.menu-lateral__cta:focus {
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
	filter: brightness(1.05);
	box-shadow: 0 18px 36px rgba(233, 106, 36, 0.3);
}

.menu-lateral__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	font-size: 22px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 12px;
}

.menu-lateral__cta-copy {
	display: flex;
	min-width: 0;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 2px;
}

.menu-lateral__cta-copy strong {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
}

.menu-lateral__cta-copy small {
	color: rgba(255, 255, 255, 0.78);
	font-size: 10px;
	line-height: 1.3;
}

.menu-lateral__cta-arrow {
	flex: 0 0 auto;
	font-size: 13px;
}

.menu-lateral__trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin: 13px 0 0;
	color: rgba(255, 255, 255, 0.42);
	font-size: 9px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
}

.menu-lateral__trust i {
	color: var(--primary-color);
}

/* WhatsApp Flutuante
** ----------------------------------------------- */
.whatsapp-fixed {
	position: fixed;
	right: 26px;
	bottom: 26px;
	z-index: 98;
}

.whatsapp-fixed__button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	color: #fff;
	font-size: 34px;
	text-decoration: none;
	background: #24cc63;
	border-radius: 999px;
	box-shadow: 0 14px 30px rgba(36, 204, 99, 0.34);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background-color 0.25s ease;
}

.whatsapp-fixed__button::before,
.whatsapp-fixed__button::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: rgba(36, 204, 99, 0.28);
	z-index: -1;
	animation: whatsappPulse 2s infinite;
}

.whatsapp-fixed__button::after {
	animation-delay: 1s;
}

.whatsapp-fixed__button:hover,
.whatsapp-fixed__button:focus {
	color: #fff;
	text-decoration: none;
	background: #1fb457;
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 18px 36px rgba(36, 204, 99, 0.42);
}

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

	70% {
		transform: scale(1.45);
		opacity: 0;
	}

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

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 1199px) {
	.site-header__grid {
		grid-template-columns: 220px 1fr auto;
		gap: 16px;
	}

	.site-header__brand,
	.site-header__brand img {
		max-width: 220px;
	}

	.site-nav__link {
		padding-left: 9px;
		padding-right: 9px;
		font-size: 13px;
	}
}

@media (max-width: 991px) {
	:root {
		--site-header-height: 78px;
		--site-header-row-height: 78px;
	}

	.site-header__grid {
		grid-template-columns: 1fr auto;
		min-height: var(--site-header-row-height);
	}

	.site-header__brand {
		width: auto;
		max-width: 200px;
		padding: 12px 0;
	}

	.site-header__brand img {
		max-width: 200px;
	}

	.site-nav {
		display: none;
	}

	.site-header__cta {
		display: none;
	}

	.site-header__menu-button {
		display: inline-flex;
	}
}

@media (max-width: 575px) {
	:root {
		--site-header-row-height: 74px;
	}

	.sub-header {
		padding-block: 7px;
	}

	.sub-header .d-flex {
		align-items: center;
		gap: 10px;
	}

	.sub-header .d-flex>div {
		min-width: 0;
	}

	.sub-header .d-flex>div:first-child {
		flex: 1 1 auto;
	}

	.sub-header .d-flex>div:last-child {
		flex: 0 0 auto;
	}

	.sub-header p {
		font-size: 9px;
		line-height: 1.25;
		letter-spacing: 0.65px;
	}

	.sub-header a {
		display: inline-flex;
		align-items: center;
		gap: 4px;
		font-size: 11px;
		line-height: 1.2;
		letter-spacing: 0.65px;
	}

	.site-header__brand {
		max-width: 145px;
		padding: 7px 0;
	}

	.site-header__brand img {
		max-width: 145px;
	}

	.menu-lateral-conteudo {
		width: min(380px, 94vw);
	}

	.menu-lateral__logo,
	.menu-lateral__logo img {
		max-width: 150px;
	}

	.menu-lateral__head {
		padding: 18px 16px 15px;
	}

	.menu-lateral__body {
		padding: 18px 16px;
	}

	.whatsapp-fixed {
		right: 18px;
		bottom: 18px;
	}

	.whatsapp-fixed__button {
		width: 58px;
		height: 58px;
		font-size: 30px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* Correção final - Submenu Mobile
** ----------------------------------------------- */
@media (max-width: 991px) {
	.menu-lateral .site-nav__item--dropdown {
		position: relative;
	}

	.menu-lateral .site-nav__item--dropdown>.site-nav__link {
		padding-right: 60px !important;
	}

	.menu-lateral .site-nav__item--dropdown>.site-nav__submenu {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		display: block !important;
		width: 100% !important;
		min-width: 100% !important;
		max-width: 100% !important;
		max-height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		background: transparent !important;
		border: 0 !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		overflow: hidden !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		transform: none !important;
		transition:
			max-height 0.32s ease,
			padding 0.32s ease !important;
	}

	.menu-lateral .site-nav__item--dropdown.is-open>.site-nav__submenu {
		max-height: min(360px, 42vh) !important;
		padding: 7px 3px 10px 14px !important;
		overflow-x: hidden !important;
		overflow-y: auto !important;
	}

	.menu-lateral .site-nav__submenu li {
		display: block !important;
		width: 100% !important;
		height: auto !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		list-style: none !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	.menu-lateral .site-nav__submenu li+li {
		margin-top: 7px !important;
	}

	.menu-lateral .site-nav__submenu a {
		position: relative !important;
		display: block !important;
		width: 100% !important;
		height: auto !important;
		min-height: initial !important;
		margin: 0 !important;
		padding: 12px 14px !important;
		color: rgba(255, 255, 255, 0.66) !important;
		font-size: 13px !important;
		font-weight: 500 !important;
		line-height: 1.35 !important;
		text-align: left !important;
		text-indent: 0 !important;
		text-decoration: none !important;
		white-space: normal !important;
		background: rgba(255, 255, 255, 0.04) !important;
		border: 1px solid rgba(255, 255, 255, 0.055) !important;
		border-radius: 9px !important;
		opacity: 1 !important;
		visibility: visible !important;
		overflow: visible !important;
		text-overflow: initial !important;
		transform: none !important;
	}

	.menu-lateral .site-nav__submenu a::before,
	.menu-lateral .site-nav__submenu a::after {
		display: none !important;
		content: none !important;
	}

	.menu-lateral .site-nav__submenu a:hover,
	.menu-lateral .site-nav__submenu a:focus {
		color: #fff !important;
		background: rgba(233, 106, 36, 0.18) !important;
		border-color: rgba(233, 106, 36, 0.34) !important;
		text-decoration: none !important;
		transform: none !important;
	}

	.menu-lateral .site-nav__submenu-button {
		position: absolute !important;
		top: 8px !important;
		right: 7px !important;
		z-index: 5 !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 42px !important;
		height: 42px !important;
		color: #f48749 !important;
		background: rgba(233, 106, 36, 0.1) !important;
		border: 1px solid rgba(233, 106, 36, 0.18) !important;
		border-radius: 11px !important;
	}

	.menu-lateral .site-nav__item.is-open>.site-nav__submenu-button {
		color: #fff !important;
		background: var(--primary-color) !important;
		transform: rotate(180deg) !important;
	}
}

/* Página de Produtos
** ----------------------------------------------- */
.pagina-produtos {
	position: relative;
	padding: 78px 0 88px;
	background: #fff;
	overflow: hidden;
}

.pagina-produtos::before {
	content: "";
	position: absolute;
	top: -180px;
	right: -180px;
	width: 380px;
	height: 380px;
	background: var(--primary-color);
	border-radius: 50%;
	opacity: 0.06;
	pointer-events: none;
}

.pagina-produtos::after {
	content: "";
	position: absolute;
	left: -140px;
	bottom: -190px;
	width: 340px;
	height: 340px;
	background: var(--secondary-color);
	border-radius: 50%;
	opacity: 0.04;
	pointer-events: none;
}

.pagina-produtos__intro {
	position: relative;
	z-index: 1;
	max-width: 830px;
	margin: 0 auto 44px;
	text-align: center;
}

.section-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 14px;
	color: var(--primary-color);
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section-tag::before,
.section-tag::after {
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	background: var(--primary-color);
	border-radius: 999px;
}

.pagina-produtos__intro h2 {
	margin: 0 0 16px;
	color: var(--secondary-color);
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

.pagina-produtos__intro p {
	max-width: 720px;
	margin: 0 auto;
	color: #5f6c7b;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
}

/* Grid
** ----------------------------------------------- */
.produtos-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.produto-card {
	position: relative;
	min-height: 100%;
}

.produto-card__link {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 360px;
	color: inherit;
	text-decoration: none;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 22px;
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
	overflow: hidden;
	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease,
		border-color 0.28s ease;
}

.produto-card__link::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 4px;
	background: var(--primary-color);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.28s ease;
}

.produto-card__link:hover,
.produto-card__link:focus {
	color: inherit;
	text-decoration: none;
	border-color: rgba(15, 23, 42, 0.13);
	box-shadow: 0 22px 46px rgba(15, 23, 42, 0.13);
	transform: translateY(-6px);
}

.produto-card__link:hover::before,
.produto-card__link:focus::before {
	transform: scaleX(1);
}

/* Imagem
** ----------------------------------------------- */
.produto-card__media {
	position: relative;
	display: block;
	width: 100%;
	height: 210px;
	margin: 0;
	background: #f8fafc;
	overflow: hidden;
}

.produto-card__media::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12));
	opacity: 0;
	transition: opacity 0.28s ease;
}

.produto-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	transition:
		transform 0.35s ease,
		filter 0.35s ease;
}

.produto-card__link:hover .produto-card__media::before,
.produto-card__link:focus .produto-card__media::before {
	opacity: 1;
}

.produto-card__link:hover .produto-card__media img,
.produto-card__link:focus .produto-card__media img {
	filter: saturate(1.05);
	transform: scale(1.07);
}

/* Conteúdo do Card
** ----------------------------------------------- */
.produto-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px;
}

.produto-card__body h3 {
	margin: 0 0 12px;
	color: var(--secondary-color);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.28;
	letter-spacing: -0.02em;
	transition: color 0.25s ease;
}

.produto-card__body p {
	margin: 0 0 22px;
	color: #64748b;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
}

.produto-card__action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	transition:
		color 0.25s ease,
		gap 0.25s ease;
}

.produto-card__action i {
	font-size: 12px;
}

.produto-card__link:hover .produto-card__body h3,
.produto-card__link:focus .produto-card__body h3 {
	color: var(--primary-color);
}

.produto-card__link:hover .produto-card__action,
.produto-card__link:focus .produto-card__action {
	gap: 12px;
	color: var(--secondary-color);
}

/* Estado vazio
** ----------------------------------------------- */
.produtos-empty {
	position: relative;
	z-index: 1;
	max-width: 620px;
	margin: 0 auto;
	padding: 28px;
	text-align: center;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
}

.produtos-empty p {
	margin: 0;
	color: #64748b;
	font-size: 15px;
	line-height: 1.6;
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 1199px) {
	.produtos-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.pagina-produtos {
		padding: 62px 0 72px;
	}

	.pagina-produtos__intro {
		margin-bottom: 34px;
	}

	.produtos-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.produto-card__link {
		min-height: 340px;
	}

	.produto-card__media {
		height: 190px;
	}
}

@media (max-width: 575px) {
	.pagina-produtos {
		padding: 48px 0 58px;
	}

	.pagina-produtos__intro {
		text-align: left;
		margin-bottom: 28px;
	}

	.section-tag {
		justify-content: flex-start;
		font-size: 12px;
	}

	.section-tag::after {
		display: none;
	}

	.pagina-produtos__intro h2 {
		font-size: clamp(28px, 9vw, 36px);
	}

	.pagina-produtos__intro p {
		font-size: 15px;
		line-height: 1.65;
	}

	.produtos-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.produto-card__link {
		min-height: initial;
		border-radius: 18px;
	}

	.produto-card__media {
		height: 210px;
	}

	.produto-card__body {
		padding: 22px;
	}

	.produto-card__body h3 {
		font-size: 19px;
	}
}

/* Breadcrumb
** ----------------------------------------------- */
div#breadcrumb {
	color: #fff;
	font-weight: normal;
	padding-top: 5px;
}

div#breadcrumb i {
	color: var(--secondary-color);
	font-size: 10px;
}

div#breadcrumb>a:hover,
.bread>a:hover {
	text-decoration: none;
	color: var(--secondary-color);
	transition: 0.3s all;
}

.breadcrumb i {
	padding: 0 5px;
}

.breadcrumb a {
	color: #fff;
}

.breadcrumb a:hover {
	text-decoration: none;
	color: #fff;
}

span.breadcrumb-separador {
	color: #fff;
}

.bread {
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

/* Feedback dos formulários
** ----------------------------------------------- */
.evl-feedback-modal {
	padding: 14px !important;
}

.evl-feedback-modal .modal-dialog {
	width: 100%;
	max-width: 470px;
	margin: 1.75rem auto;
}

.evl-feedback-modal .modal-content {
	color: #fff;
	background:
		radial-gradient(circle at 50% 0, rgba(233, 106, 36, 0.17), transparent 42%),
		linear-gradient(160deg, #14171c 0%, #090b0e 100%);
	border: 1px solid rgba(233, 106, 36, 0.32);
	border-radius: 22px;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.62);
	overflow: hidden;
}

.evl-feedback-modal .modal-body {
	padding: 36px 34px 20px;
}

.evl-feedback-modal .bootbox-body {
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
	line-height: 1.65;
	text-align: center;
}

.evl-feedback {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.evl-feedback__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	margin-bottom: 20px;
	color: #fff;
	font-size: 25px;
	background: linear-gradient(135deg, #f47b35, #d85214);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 20px;
	box-shadow: 0 14px 30px rgba(233, 106, 36, 0.25);
}

.evl-feedback--success .evl-feedback__icon {
	background: linear-gradient(135deg, #2fb96c, #16864a);
	box-shadow: 0 14px 30px rgba(47, 185, 108, 0.2);
}

.evl-feedback__title,
.bootbox-body .evl-feedback__title {
	margin: 0 0 9px;
	color: #fff;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
}

.evl-feedback__message {
	width: 100%;
	color: rgba(255, 255, 255, 0.62);
	overflow-wrap: anywhere;
}

.evl-feedback__message h3 {
	display: none;
}

.evl-feedback__message p:last-child,
.evl-feedback__message>*:last-child {
	margin-bottom: 0;
}

.evl-feedback-modal .modal-footer {
	display: block;
	padding: 0 34px 34px;
	background: transparent;
	border: 0;
	text-align: center;
}

.evl-feedback-modal .evl-feedback__button,
.evl-feedback-modal .evl-feedback__button:hover,
.evl-feedback-modal .evl-feedback__button:focus,
.evl-feedback-modal .evl-feedback__button:active {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	margin: 0;
	padding: 12px 20px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.02em;
	background: linear-gradient(135deg, #f4772f, #d95213);
	border: 0;
	border-radius: 13px;
	box-shadow: 0 12px 26px rgba(233, 106, 36, 0.22);
	text-decoration: none;
}

.evl-feedback-modal .evl-feedback__button:hover,
.evl-feedback-modal .evl-feedback__button:focus {
	filter: brightness(1.08);
	transform: translateY(-1px);
}

.modal-backdrop.show {
	opacity: 0.82;
}

@media (max-width: 420px) {
	.evl-feedback-modal {
		padding: 10px !important;
	}

	.evl-feedback-modal .modal-dialog {
		margin: 0.75rem auto;
	}

	.evl-feedback-modal .modal-body {
		padding: 28px 20px 16px;
	}

	.evl-feedback-modal .modal-footer {
		padding: 0 20px 22px;
	}

	.evl-feedback__icon {
		width: 58px;
		height: 58px;
		margin-bottom: 16px;
		font-size: 22px;
		border-radius: 17px;
	}

	.evl-feedback__title,
	.bootbox-body .evl-feedback__title {
		font-size: 19px;
	}
}

/* Página de Informações
** ----------------------------------------------- */
.pagina-informacoes {
	position: relative;
	padding: 78px 0 88px;
	background: #fff;
	overflow: hidden;
}

.pagina-informacoes::before {
	content: "";
	position: absolute;
	top: -180px;
	right: -180px;
	width: 380px;
	height: 380px;
	background: var(--primary-color);
	border-radius: 50%;
	opacity: 0.06;
	pointer-events: none;
}

.pagina-informacoes::after {
	content: "";
	position: absolute;
	left: -140px;
	bottom: -190px;
	width: 340px;
	height: 340px;
	background: var(--secondary-color);
	border-radius: 50%;
	opacity: 0.04;
	pointer-events: none;
}

.pagina-informacoes__intro {
	position: relative;
	z-index: 1;
	max-width: 830px;
	margin: 0 auto 44px;
	text-align: center;
}

.section-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 14px;
	color: var(--primary-color);
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section-tag::before,
.section-tag::after {
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	background: var(--primary-color);
	border-radius: 999px;
}

.pagina-informacoes__intro h2 {
	margin: 0 0 16px;
	color: var(--secondary-color);
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

.pagina-informacoes__intro p {
	max-width: 720px;
	margin: 0 auto;
	color: #5f6c7b;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
}

/* Grid
** ----------------------------------------------- */
.informacoes-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.informacao-card {
	position: relative;
	min-height: 100%;
}

.informacao-card__link {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 380px;
	color: inherit;
	text-decoration: none;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 22px;
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
	overflow: hidden;
	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease,
		border-color 0.28s ease;
}

.informacao-card__link::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 4px;
	background: var(--primary-color);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.28s ease;
}

.informacao-card__link:hover,
.informacao-card__link:focus {
	color: inherit;
	text-decoration: none;
	border-color: rgba(15, 23, 42, 0.13);
	box-shadow: 0 22px 46px rgba(15, 23, 42, 0.13);
	transform: translateY(-6px);
}

.informacao-card__link:hover::before,
.informacao-card__link:focus::before {
	transform: scaleX(1);
}

/* Imagem
** ----------------------------------------------- */
.informacao-card__media {
	position: relative;
	display: block;
	width: 100%;
	height: 210px;
	margin: 0;
	background: #f8fafc;
	overflow: hidden;
}

.informacao-card__media::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.14));
	opacity: 0;
	transition: opacity 0.28s ease;
}

.informacao-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	transition:
		transform 0.35s ease,
		filter 0.35s ease;
}

.informacao-card__link:hover .informacao-card__media::before,
.informacao-card__link:focus .informacao-card__media::before {
	opacity: 1;
}

.informacao-card__link:hover .informacao-card__media img,
.informacao-card__link:focus .informacao-card__media img {
	filter: saturate(1.05);
	transform: scale(1.07);
}

/* Conteúdo
** ----------------------------------------------- */
.informacao-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px;
}

.informacao-card__label {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 12px;
	padding: 7px 11px;
	color: var(--primary-color);
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: rgba(0, 0, 0, 0.035);
	border-radius: 999px;
}

.informacao-card__body h3 {
	margin: 0 0 12px;
	color: var(--secondary-color);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.28;
	letter-spacing: -0.02em;
	transition: color 0.25s ease;
}

.informacao-card__body p {
	margin: 0 0 22px;
	color: #64748b;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
}

.informacao-card__action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	transition:
		color 0.25s ease,
		gap 0.25s ease;
}

.informacao-card__action i {
	font-size: 12px;
}

.informacao-card__link:hover .informacao-card__body h3,
.informacao-card__link:focus .informacao-card__body h3 {
	color: var(--primary-color);
}

.informacao-card__link:hover .informacao-card__action,
.informacao-card__link:focus .informacao-card__action {
	gap: 12px;
	color: var(--secondary-color);
}

/* Página SEO / Palavra-chave
** ----------------------------------------------- */
.seo-hero,
.formulario-seo {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	min-height: auto;
	padding: 96px 0 82px;
	color: #fff;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.82)), var(--secondary-color);
	overflow: hidden;
}

.seo-hero::before,
.formulario-seo::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 28%),
		radial-gradient(circle at 84% 22%, var(--primary-color), transparent 28%);
	opacity: 0.42;
	filter: none;
}

.seo-hero::after,
.formulario-seo::after {
	content: "";
	position: absolute;
	right: -130px;
	bottom: -170px;
	z-index: -1;
	width: 420px;
	height: 420px;
	border: 72px solid var(--primary-color);
	border-radius: 50%;
	opacity: 0.18;
	pointer-events: none;
}

.seo-hero__content {
	max-width: 650px;
}

.seo-hero__tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.86;
}

.seo-hero__tag::before {
	content: "";
	display: block;
	width: 34px;
	height: 3px;
	background: var(--primary-color);
	border-radius: 999px;
}

.formulario-seo h1,
.seo-hero h1 {
	position: relative;
	margin: 0 0 22px;
	color: #fff;
	font-size: clamp(30px, 5vw, 35px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.045em;
}

.formulario-seo h1::before,
.seo-hero h1::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 86px;
	height: 5px;
	background: var(--primary-color);
	border-radius: 999px;
}

.seo-hero__content p {
	max-width: 560px;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 16px;
	line-height: 1.75;
}

.seo-hero__form {
	position: relative;
	z-index: 1;
	max-width: 560px;
	margin-left: auto;
	padding: 28px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 24px;
	box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(12px);
}

.seo-hero__form .form-control,
.seo-hero__form .select-form,
.seo-hero__form select,
.seo-hero__form textarea {
	min-height: 46px;
	border-radius: 10px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	box-shadow: none;
}

.seo-hero__form textarea {
	min-height: 118px;
}

.seo-hero__form .btn-envia,
.seo-hero__form button[type="submit"],
.seo-hero__form input[type="submit"] {
	min-height: 48px;
	color: #fff;
	font-weight: 700;
	background: var(--primary-color);
	border-color: var(--primary-color);
	border-radius: 10px;
	transition:
		background-color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}

.seo-hero__form .btn-envia:hover,
.seo-hero__form button[type="submit"]:hover,
.seo-hero__form input[type="submit"]:hover {
	background: var(--secondary-color);
	border-color: var(--secondary-color);
	transform: translateY(-2px);
}

.scroll-to-content {
	position: absolute;
	left: 50%;
	bottom: 28px;
	z-index: 2;
	transform: translateX(-50%);
}

.scroll-to-content a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	transition:
		color 0.25s ease,
		background-color 0.25s ease;
}

.scroll-to-content i {
	color: inherit;
	font-size: 28px;
	animation: arrowDown 2s infinite;
}

.scroll-to-content a:hover,
.scroll-to-content a:focus {
	color: var(--primary-color);
	text-decoration: none;
	background: rgba(255, 255, 255, 0.08);
}

/* Conteúdo SEO
** ----------------------------------------------- */
.conteudo-seo {
	position: relative;
	padding: 58px 0 72px;
	background: #fff;
	overflow-x: hidden;
}

.seo-content-layout {
	position: relative;
	display: flow-root;
}

.texto-seo {
	color: #263241;
}

.texto-seo p {
	margin: 0 0 18px;
	color: #334155;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.78;
	text-align: left;
}

.texto-seo h2,
.texto-seo h3 {
	position: relative;
	margin: 36px 0 18px;
	color: var(--secondary-color);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.texto-seo h2 {
	font-size: clamp(26px, 3vw, 36px);
}

.texto-seo h3 {
	font-size: clamp(22px, 2.4vw, 28px);
}

.texto-seo h2::before,
.texto-seo h3::before {
	content: "";
	display: block;
	width: 54px;
	height: 4px;
	margin-bottom: 12px;
	background: var(--primary-color);
	border-radius: 999px;
}

.texto-seo ul,
.texto-seo ol {
	margin: 0 0 22px 22px;
	padding: 0;
}

.texto-seo ul li,
.texto-seo ol li {
	margin-bottom: 8px;
	color: #334155;
	font-size: 16px;
	line-height: 1.7;
}

.imagens-seo {
	float: right;
	width: min(420px, 42%);
	margin: 6px 0 24px 32px;
}

.imagens-seo a {
	display: block;
	text-decoration: none;
}

.imagens-seo img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 300px;
	object-fit: contain;
	background: #000;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 22px;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

/* BreadCrumb SEO
** ----------------------------------------------- */
.breadcrump-seo {
	margin-bottom: 28px;
}

.breadcrump-seo #breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 12px 16px;
	width: fit-content;
	max-width: 100%;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 999px;
	text-shadow: none;
}

.breadcrump-seo #breadcrumb a {
	color: var(--secondary-color);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.breadcrump-seo #breadcrumb a:hover,
.breadcrump-seo #breadcrumb a:focus {
	color: var(--primary-color);
	text-decoration: none;
}

.breadcrump-seo #breadcrumb i {
	color: var(--primary-color);
	font-size: 13px;
}

.breadcrump-seo #breadcrumb span.page-active {
	color: var(--primary-color);
	font-size: 13px;
	font-weight: 700;
}

/* Múltiplas imagens SEO
** ----------------------------------------------- */
.multipla-imagens-seo {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin: 26px 0;
}

.multipla-imagens-seo img {
	display: block;
	width: 100%;
	height: 160px;
	object-fit: cover;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
}

/* Faixa Informações
** ----------------------------------------------- */
.faixa-informacoes {
	position: relative;
	isolation: isolate;
	margin: 42px 0;
	padding: 34px 0;
	background: var(--primary-color);
	border-radius: 22px;
	overflow: hidden;
}

.faixa-informacoes::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	width: auto;
	height: auto;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.08)), var(--primary-color);
}

.faixa-informacoes h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(26px, 3.2vw, 38px);
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	letter-spacing: -0.035em;
}

.faixa-informacoes .btn-whatsapp {
	text-align: center;
}

.faixa-informacoes .btn-whatsapp a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 50px;
	padding: 14px 34px;
	color: var(--secondary-color);
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		transform 0.25s ease;
}

.faixa-informacoes .btn-whatsapp a:hover,
.faixa-informacoes .btn-whatsapp a:focus {
	color: #fff;
	text-decoration: none;
	background: var(--secondary-color);
	transform: translateY(-2px);
}

/* Mais visitados
** ----------------------------------------------- */
section.mais-visitados {
	position: relative;
	margin: 54px 0;
	padding: 38px 54px 46px;
	text-align: center;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	overflow: hidden;
}

section.mais-visitados::before {
	content: "";
	position: absolute;
	top: -110px;
	right: -110px;
	width: 240px;
	height: 240px;
	background: var(--primary-color);
	border-radius: 50%;
	opacity: 0.06;
}

section.mais-visitados h2,
section.mais-visitados h3 {
	position: relative;
	margin: 0 0 28px;
	color: var(--secondary-color);
	font-size: clamp(20px, 3vw, 15px);
	font-weight: 600;
	line-height: 1.18;
	letter-spacing: -0.035em;
}

section.mais-visitados h2::after,
section.mais-visitados h3::after {
	content: "";
	display: block;
	width: 54px;
	height: 4px;
	margin: 12px auto 0;
	background: var(--primary-color);
	border-radius: 999px;
}

section.mais-visitados .swiper {
	padding: 8px 4px 10px;
}

section.mais-visitados .swiper-button-next,
section.mais-visitados .swiper-button-prev {
	width: 44px;
	height: 44px;
	color: var(--secondary-color);
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	transition:
		color 0.25s ease,
		background-color 0.25s ease;
}

section.mais-visitados .swiper-button-next:hover,
section.mais-visitados .swiper-button-prev:hover {
	color: #fff;
	background: var(--primary-color);
}

section.mais-visitados .swiper-button-next::after,
section.mais-visitados .swiper-button-prev::after {
	font-size: 18px;
	font-weight: 800;
}

.box-mais-visitado {
	width: 100%;
	max-width: 220px;
	margin: 0 auto;
	text-align: center;
}

.box-mais-visitado a {
	display: block;
	color: inherit;
	text-decoration: none;
}

.box-mais-visitado img {
	display: block;
	width: 100%;
	height: 150px;
	object-fit: cover;
	margin: 0 auto 14px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease;
}

.box-mais-visitado h3,
.box-mais-visitado h6 {
	margin: 0;
	color: var(--primary-color);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.3;
	transition: color 0.25s ease;
}

.box-mais-visitado a:hover,
.box-mais-visitado a:focus {
	text-decoration: none;
}

.box-mais-visitado a:hover img,
.box-mais-visitado a:focus img {
	transform: translateY(-4px);
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.13);
}

.box-mais-visitado a:hover h3,
.box-mais-visitado a:hover h6,
.box-mais-visitado a:focus h3,
.box-mais-visitado a:focus h6 {
	color: var(--secondary-color);
}

/* Regiões
** ----------------------------------------------- */
.regioes-bloco {
	margin: 54px 0 0;
}

.regioes-bloco h2 {
	margin: 0 0 18px;
	color: var(--secondary-color);
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.03em;
}

nav.regioes {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 44px;
}

nav.regioes a,
nav.regioes button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 12px 16px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 12px;
	cursor: pointer;
	transition:
		background-color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}

nav.regioes a:hover,
nav.regioes a:focus,
nav.regioes button:hover,
nav.regioes button:focus {
	color: #fff;
	text-decoration: none;
	background: var(--secondary-color);
	border-color: var(--secondary-color);
	transform: translateY(-2px);
}

nav.regioes a.active,
nav.regioes button.active {
	background: var(--secondary-color);
	border-color: var(--secondary-color);
}

.regioes-modal {
	border: 0;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.regioes-modal .modal-header {
	align-items: center;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.regioes-modal .modal-title {
	margin: 0;
	color: var(--secondary-color);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.25;
}

.regioes-modal .close {
	color: var(--secondary-color);
	opacity: 1;
	transition:
		color 0.25s ease,
		opacity 0.25s ease;
}

.regioes-modal .close:hover,
.regioes-modal .close:focus {
	color: var(--primary-color);
	opacity: 1;
}

.regioes-modal__grid {
	row-gap: 12px;
}

.regioes-modal__lista {
	margin: 0;
	padding: 0;
	list-style: none;
}

.regioes-modal__lista li {
	position: relative;
	margin: 0 0 10px;
	padding-left: 18px;
	color: #334155;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
}

.regioes-modal__lista li::before {
	content: "";
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 7px;
	height: 7px;
	background: var(--primary-color);
	border-radius: 50%;
	transform: translateY(-50%);
}

@media (max-width: 991px) {
	nav.regioes {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.regioes-bloco {
		margin-top: 42px;
	}

	nav.regioes {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		margin-bottom: 34px;
	}

	nav.regioes a,
	nav.regioes button {
		min-height: 46px;
		font-size: 14px;
		border-radius: 10px;
	}

	.regioes-modal .modal-title {
		font-size: 20px;
	}
}

/* Direitos autorais
** ----------------------------------------------- */
.texto-direitos-autorais,
.direitos-autorais {
	margin: 38px 0 0;
	color: #475569;
	font-size: 13px;
	line-height: 1.6;
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 991px) {

	.seo-hero,
	.formulario-seo {
		padding: 72px 0 72px;
	}

	.seo-hero__content {
		margin-bottom: 34px;
	}

	.seo-hero__form {
		max-width: 100%;
		margin-left: 0;
		padding: 22px;
	}

	.scroll-to-content {
		display: none;
	}

	.conteudo-seo {
		padding: 44px 0 58px;
	}

	.imagens-seo {
		float: none;
		width: 100%;
		margin: 0 0 28px;
	}

	.imagens-seo img {
		max-height: 360px;
	}

	.multipla-imagens-seo {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.faixa-informacoes {
		padding: 30px 22px;
	}

	.faixa-informacoes h2 {
		margin-bottom: 18px;
		text-align: center;
	}

	section.mais-visitados {
		padding: 34px 42px 42px;
	}

	nav.regioes {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {

	.seo-hero,
	.formulario-seo {
		padding: 56px 0 58px;
	}

	.formulario-seo h1,
	.seo-hero h1 {
		font-size: clamp(25px, 11vw, 35px);
	}

	.seo-hero__content p {
		font-size: 15px;
	}

	.seo-hero__form {
		padding: 18px;
		border-radius: 18px;
	}

	.breadcrump-seo #breadcrumb {
		width: 100%;
		border-radius: 14px;
	}

	.texto-seo p {
		font-size: 15px;
		line-height: 1.7;
	}

	.texto-seo h2 {
		font-size: 26px;
	}

	.texto-seo h3 {
		font-size: 22px;
	}

	.imagens-seo img {
		border-radius: 18px;
	}

	.multipla-imagens-seo {
		grid-template-columns: 1fr;
	}

	.multipla-imagens-seo img {
		height: 210px;
	}

	.faixa-informacoes {
		margin: 34px 0;
		border-radius: 18px;
	}

	.faixa-informacoes .btn-whatsapp a {
		width: 100%;
	}

	section.mais-visitados {
		margin: 42px 0;
		padding: 30px 18px 36px;
		border-radius: 18px;
	}

	section.mais-visitados .swiper-button-next,
	section.mais-visitados .swiper-button-prev {
		display: none;
	}

	.box-mais-visitado {
		max-width: 100%;
	}

	.box-mais-visitado img {
		height: 190px;
	}

	nav.regioes {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		margin-bottom: 34px;
	}

	nav.regioes a {
		min-height: 46px;
		font-size: 14px;
		border-radius: 10px;
	}
}

/* Estado vazio
** ----------------------------------------------- */
.informacoes-empty {
	position: relative;
	z-index: 1;
	max-width: 620px;
	margin: 0 auto;
	padding: 28px;
	text-align: center;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
}

.informacoes-empty p {
	margin: 0;
	color: #64748b;
	font-size: 15px;
	line-height: 1.6;
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 1199px) {
	.informacoes-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.pagina-informacoes {
		padding: 62px 0 72px;
	}

	.pagina-informacoes__intro {
		margin-bottom: 34px;
	}

	.informacoes-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.informacao-card__link {
		min-height: 360px;
	}

	.informacao-card__media {
		height: 190px;
	}
}

@media (max-width: 575px) {
	.pagina-informacoes {
		padding: 48px 0 58px;
	}

	.pagina-informacoes__intro {
		text-align: left;
		margin-bottom: 28px;
	}

	.section-tag {
		justify-content: flex-start;
		font-size: 12px;
	}

	.section-tag::after {
		display: none;
	}

	.pagina-informacoes__intro h2 {
		font-size: clamp(28px, 9vw, 36px);
	}

	.pagina-informacoes__intro p {
		font-size: 15px;
		line-height: 1.65;
	}

	.informacoes-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.informacao-card__link {
		min-height: initial;
		border-radius: 18px;
	}

	.informacao-card__media {
		height: 210px;
	}

	.informacao-card__body {
		padding: 22px;
	}

	.informacao-card__body h3 {
		font-size: 19px;
	}
}

/* Direitos autorais
** ----------------------------------------------- */
.texto-direitos-autorais {
	margin-top: 40px;
	font-size: 13px;
}

/* Recursos Adicionais
** ----------------------------------------------- */
header .container {
	max-width: 1300px;
}

footer .container {
	max-width: 1300px;
}

.swiper-button-next,
.swiper-button-prev {
	color: var(--primary-color);
}

.swiper-pagination-bullet {
	background: var(--primary-color);
}

.fixed-sidebar-link {
	/* display: flex;
	flex-direction: column; */
	text-align: center;
	padding: 16px 0;
	flex: 1;
}

.fixed-sidebar-link span {
	font-size: 13px;
}

.fixed-sidebar-link i {
	font-size: 15px;
}

.barra-footer {
	justify-content: unset !important;
	gap: 0;
}

.barra-footer a:nth-child(1) {
	background-color: var(--primary-color);
	color: #fff;
}

.barra-footer a:nth-child(2) {
	background-color: #24cc63;
	color: #fff;
}

/* Faixa Interna
** ----------------------------------------------- */
.faixa-page,
.faixa_page {
	position: relative;
	isolation: isolate;
	padding: 72px 0;
	color: #fff;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.72)), var(--secondary-color);
	overflow: hidden;
}

.faixa-page::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--primary-color) 45%, transparent), transparent 32%),
		radial-gradient(circle at 88% 10%, color-mix(in srgb, var(--primary-color) 28%, transparent), transparent 30%);
	opacity: 0.95;
}

.faixa-page::after {
	content: "";
	position: absolute;
	right: -120px;
	bottom: -160px;
	z-index: -1;
	width: 420px;
	height: 420px;
	border: 72px solid color-mix(in srgb, var(--primary-color) 35%, transparent);
	border-radius: 50%;
	opacity: 0.42;
}

.faixa-page__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-height: 120px;
}

.faixa-page__title {
	max-width: 720px;
}

.faixa-page__tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0.88;
}

.faixa-page__tag::before {
	content: "";
	display: block;
	width: 34px;
	height: 3px;
	background: var(--primary-color);
	border-radius: 999px;
}

.faixa-page h1,
.faixa_page h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(25px, 4vw, 40px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.faixa-page__breadcrumb {
	display: flex;
	justify-content: flex-end;
	min-width: 280px;
}

.faixa-page__breadcrumb ol,
.faixa-page__breadcrumb ul,
.faixa_page .breadcrumb {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 12px 16px;
	list-style: none;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	backdrop-filter: blur(10px);
}

.faixa-page__breadcrumb li,
.faixa_page .breadcrumb li,
.faixa_page .breadcrumb-item {
	display: inline-flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
}

.faixa-page__breadcrumb a,
.faixa_page .breadcrumb a {
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.faixa-page__breadcrumb a:hover,
.faixa-page__breadcrumb a:focus,
.faixa_page .breadcrumb a:hover,
.faixa_page .breadcrumb a:focus {
	color: var(--primary-color);
	text-decoration: none;
}

.faixa-page__breadcrumb .active,
.faixa_page .breadcrumb .active,
.faixa_page .breadcrumb-item.active {
	color: rgba(255, 255, 255, 0.68);
}

.faixa_page .breadcrumb-item+.breadcrumb-item::before {
	color: rgba(255, 255, 255, 0.55);
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 991px) {

	.faixa-page,
	.faixa_page {
		padding: 58px 0;
	}

	.faixa-page__content {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 22px;
		min-height: initial;
	}

	.faixa-page__breadcrumb {
		justify-content: flex-start;
		width: 100%;
		min-width: 0;
	}

	.faixa-page__breadcrumb ol,
	.faixa-page__breadcrumb ul,
	.faixa_page .breadcrumb {
		justify-content: flex-start;
		border-radius: 18px;
	}
}

@media (max-width: 575px) {

	.faixa-page,
	.faixa_page {
		padding: 46px 0;
	}

	.faixa-page::after {
		right: -180px;
		bottom: -200px;
		width: 360px;
		height: 360px;
		border-width: 58px;
	}

	.faixa-page__tag {
		font-size: 11px;
		margin-bottom: 10px;
	}

	.faixa-page__tag::before {
		width: 26px;
	}

	.faixa-page h1,
	.faixa_page h1 {
		font-size: clamp(28px, 10vw, 38px);
		line-height: 1.12;
	}

	.faixa-page__breadcrumb ol,
	.faixa-page__breadcrumb ul,
	.faixa_page .breadcrumb {
		width: 100%;
		padding: 11px 13px;
		border-radius: 14px;
	}

	.faixa-page__breadcrumb li,
	.faixa_page .breadcrumb li,
	.faixa_page .breadcrumb-item {
		font-size: 12px;
	}
}

/* Página de Contato (Padrão Home / EVL Contato)
** ----------------------------------------------- */
.contato-page {
	position: relative;
	padding: 70px 0 85px;
	background: #fff;
	overflow: hidden;
}

.contato-page__intro {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto 40px;
	text-align: center;
}

.contato-page__intro h2 {
	margin: 10px 0 16px;
	color: var(--secondary-color);
	font-size: clamp(28px, 4vw, 35px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.contato-page__intro h2 span {
	color: var(--primary-color);
}

.contato-page__intro p {
	max-width: 700px;
	margin: 0 auto;
	color: #5f6c7b;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
}

/* Formulário de Contato (Home Style)
** ----------------------------------------------- */
.evl-contato__form-card {
	position: relative;
	height: 100%;
	padding: 36px 32px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.evl-contato__form-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.evl-contato__form-head span:first-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: #fff;
	font-size: 18px;
	background: var(--primary-color);
	border-radius: 12px;
}

.evl-contato__form-head p {
	margin: 0 0 2px;
	color: var(--primary-color);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.evl-contato__form-head strong {
	color: var(--secondary-color);
	font-size: 20px;
	font-weight: 800;
}

.evl-contato__form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.evl-contato__field-full {
	grid-column: 1 / -1;
}

.evl-contato__form-scope .form-control {
	width: 100%;
	min-height: 48px;
	padding: 12px 16px;
	color: #263241;
	font-size: 14px;
	font-weight: 500;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 10px;
	outline: none;
	transition: all 0.25s ease;
}

.evl-contato__form-scope textarea.form-control {
	min-height: 120px;
	resize: vertical;
}

.evl-contato__form-scope .form-control:focus {
	background: #fff;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.evl-contato__form-scope .btn-envia {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 50px;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	background: var(--primary-color);
	border: none;
	border-radius: 10px;
	transition: all 0.25s ease;
}

.evl-contato__form-scope .btn-envia:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Informações de Contato na Lateral
** ----------------------------------------------- */
.contato-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	height: 100%;
}

.contato-info__card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
	transition: all 0.25s ease;
}

.contato-info__card:hover {
	border-color: rgba(15, 23, 42, 0.14);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
	transform: translateY(-2px);
}

.contato-info__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	color: #fff;
	font-size: 15px;
	background: var(--primary-color);
	border-radius: 10px;
}

.contato-info__icon--whatsapp {
	background: #24cc63;
}

.contato-info__content {
	min-width: 0;
}

.contato-info__label {
	margin: 0 0 4px;
	color: var(--secondary-color);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
}

.contato-info__content p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
}

.contato-info__content a {
	color: #64748b;
	text-decoration: none;
	transition: color 0.2s ease;
}

.contato-info__content a:hover {
	color: var(--primary-color);
}

/* Utilitário Acessível
** ----------------------------------------------- */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 767px) {
	.evl-contato__form-grid {
		grid-template-columns: 1fr;
	}

	.evl-contato__form-card {
		padding: 24px 20px;
	}

	.contato-page__intro {
		text-align: left;
	}
}

/* Footer
** ----------------------------------------------- */
.footer {
	position: relative;
	color: #fff;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.9)), var(--secondary-color);
	padding: 70px 0 0;
	overflow: hidden;
}

.footer::before {
	content: "";
	position: absolute;
	top: -180px;
	right: -180px;
	width: 380px;
	height: 380px;
	background: var(--primary-color);
	border-radius: 50%;
	opacity: 0.12;
	pointer-events: none;
}

.footer::after {
	content: "";
	position: absolute;
	left: -140px;
	bottom: -180px;
	width: 340px;
	height: 340px;
	border: 60px solid var(--primary-color);
	border-radius: 50%;
	opacity: 0.08;
	pointer-events: none;
}

.footer .container {
	position: relative;
	z-index: 1;
}

.footer__top {
	padding-bottom: 42px;
}

.footer__brand {
	margin-bottom: 18px;
}

.footer__brand a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.footer__brand img {
	display: block;
	width: 100%;
	max-width: 220px;
	height: auto;
	object-fit: contain;
}

.footer__description {
	max-width: 440px;
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.75;
}

.footer__social {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: var(--secondary-color);
	font-size: 17px;
	text-decoration: none;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}

.footer__social a:hover,
.footer__social a:focus {
	color: #fff;
	text-decoration: none;
	background: var(--primary-color);
	border-color: var(--primary-color);
	transform: translateY(-3px);
}

.footer__nav,
.footer__contact {
	margin-top: 6px;
}

.footer__nav h2,
.footer__contact h2 {
	position: relative;
	margin: 0 0 22px;
	padding-left: 14px;
	color: #fff;
	font-size: 19px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.015em;
}

.footer__nav h2::before,
.footer__contact h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 4px;
	height: 22px;
	background: var(--primary-color);
	border-radius: 999px;
}

.footer__nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer__nav li {
	margin: 0 0 10px;
}

.footer__nav a,
.footer__contact a {
	color: rgba(255, 255, 255, 0.76);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
	text-decoration: none;
	transition:
		color 0.25s ease,
		transform 0.25s ease;
}

.footer__nav a {
	display: inline-flex;
	align-items: center;
}

.footer__nav a::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 9px;
	background: var(--primary-color);
	border-radius: 50%;
	opacity: 0.8;
	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
}

.footer__nav a:hover,
.footer__nav a:focus,
.footer__contact a:hover,
.footer__contact a:focus {
	color: var(--primary-color);
	text-decoration: none;
}

.footer__nav a:hover::before,
.footer__nav a:focus::before {
	opacity: 1;
	transform: scale(1.25);
}

.footer__contact p {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 13px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
}

.footer__contact p>i,
.footer__contact a>i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	color: #fff;
	font-size: 13px;
	background: var(--primary-color);
	border-radius: 9px;
}

.footer__contact a {
	display: inline-flex;
	align-items: flex-start;
	gap: 10px;
	max-width: 100%;
}

.footer__contact span {
	min-width: 0;
	word-break: break-word;
}

/* Créditos
** ----------------------------------------------- */
.footer__credits {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 24px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__credits-text small {
	display: block;
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
}

.footer__credits-brand a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	opacity: 0.9;
	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
}

.footer__credits-brand a:hover,
.footer__credits-brand a:focus {
	opacity: 1;
	transform: translateY(-2px);
}

.footer__credits-brand img {
	display: block;
	width: auto;
	max-width: 110px;
	max-height: 42px;
	object-fit: contain;
}

.footer__badges {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
}

.footer__badge {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 78px;
	min-height: 46px;
	padding: 7px 10px;
	color: #fff;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	overflow: hidden;
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}

.footer__badge::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: var(--primary-color);
}

.footer__badge span {
	color: rgba(255, 255, 255, 0.78);
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
}

.footer__badge strong {
	margin-top: 4px;
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.02em;
}

.footer__badge:hover,
.footer__badge:focus {
	color: #fff;
	text-decoration: none;
	background: var(--primary-color);
	border-color: var(--primary-color);
	transform: translateY(-3px);
}

.footer__badge:hover::before,
.footer__badge:focus::before {
	background: #fff;
}

.footer__badge:hover span,
.footer__badge:focus span,
.footer__badge:hover strong,
.footer__badge:focus strong {
	color: #fff;
}

/* Compatibilidade com classes antigas
** ----------------------------------------------- */
.logo_footer img {
	display: block;
	width: 100%;
	max-width: 220px;
	height: auto;
	object-fit: contain;
}

.footer a:hover {
	text-decoration: none;
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 991px) {
	.footer {
		padding-top: 58px;
	}

	.footer__brand img {
		max-width: 200px;
	}

	.footer__description {
		margin-bottom: 26px;
	}

	.footer__nav,
	.footer__contact {
		margin-top: 28px;
	}

	.footer__credits {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer__badges {
		justify-content: flex-start;
	}

	.footer__credits-brand img {
		max-width: 100px;
	}
}

@media (max-width: 575px) {
	.footer {
		padding-top: 48px;
	}

	.footer__top {
		padding-bottom: 30px;
	}

	.footer__brand img {
		max-width: 180px;
	}

	.footer__description {
		font-size: 14px;
		line-height: 1.7;
	}

	.footer__social a {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.footer__nav h2,
	.footer__contact h2 {
		font-size: 18px;
		margin-bottom: 18px;
	}

	.footer__credits {
		padding: 22px 0 70px 0;
		gap: 16px;
	}

	.footer__badges {
		width: 100%;
	}

	.footer__badge {
		width: calc(50% - 5px);
	}
}

/* Mapa do Site
** ----------------------------------------------- */
.mapa-site-page {
	position: relative;
	padding: 70px 0 85px;
	background: #fff;
	overflow: hidden;
}

.mapa-site__intro {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto 40px;
	text-align: center;
}

.mapa-site__intro h2 {
	margin: 10px 0 16px;
	color: var(--secondary-color);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.mapa-site__intro h2 span {
	color: var(--primary-color);
}

.mapa-site__intro p {
	max-width: 700px;
	margin: 0 auto;
	color: #5f6c7b;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
}

/* Grid com 3 Colunas e Cards de Altura Idêntica
** ----------------------------------------------- */
.mapa-site__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
}

.mapa-site__card {
	display: flex;
	flex-direction: column;
	height: 460px;
	/* Altura fixa idêntica para todos os 3 cards */
	padding: 28px 24px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 20px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
	transition: all 0.25s ease;
}

.mapa-site__card:hover {
	border-color: rgba(15, 23, 42, 0.14);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
	transform: translateY(-3px);
}

/* Header do Card
** ----------------------------------------------- */
.mapa-site__card-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
	flex-shrink: 0;
}

.mapa-site__card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	color: #fff;
	font-size: 16px;
	background: var(--primary-color);
	border-radius: 12px;
}

.mapa-site__card h3 {
	margin: 0;
	color: var(--secondary-color);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

/* Corpo com Rolagem Interna
** ----------------------------------------------- */
.mapa-site__card-body {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	padding-right: 6px;
}

/* Scrollbar Customizada Discreta */
.mapa-site__card-body::-webkit-scrollbar {
	width: 5px;
}

.mapa-site__card-body::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 10px;
}

.mapa-site__card-body::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 10px;
}

.mapa-site__card-body::-webkit-scrollbar-thumb:hover {
	background: var(--primary-color);
}

/* Lista de Links
** ----------------------------------------------- */
.mapa-site__list {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mapa-site__list li {
	margin: 0;
}

.mapa-site__list a {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 8px 10px;
	color: #334155;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.mapa-site__list a i {
	flex-shrink: 0;
	color: var(--primary-color);
	font-size: 12px;
	transition: transform 0.2s ease;
}

.mapa-site__list a span {
	white-space: normal;
	word-break: break-word;
}

.mapa-site__list a:hover {
	color: var(--primary-color);
	background: #f8fafc;
	padding-left: 14px;
	text-decoration: none;
}

.mapa-site__list a:hover i {
	transform: translateX(3px);
}

/* Responsividade
** ----------------------------------------------- */
@media (max-width: 991px) {
	.mapa-site__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.mapa-site__card {
		height: 420px;
	}
}

@media (max-width: 767px) {
	.mapa-site__grid {
		grid-template-columns: 1fr;
	}

	.mapa-site__card {
		height: 380px;
		padding: 24px 20px;
	}

	.mapa-site__intro {
		text-align: left;
	}
}

/* Página 404
** ----------------------------------------------- */
.erro-404 {
	position: relative;
	padding: 78px 0 88px;
	background: #fff;
	overflow: hidden;
}

.erro-404::before {
	content: "";
	position: absolute;
	top: -180px;
	right: -180px;
	width: 380px;
	height: 380px;
	background: var(--primary-color);
	border-radius: 50%;
	opacity: 0.06;
	pointer-events: none;
}

.erro-404::after {
	content: "";
	position: absolute;
	left: -140px;
	bottom: -190px;
	width: 340px;
	height: 340px;
	background: var(--secondary-color);
	border-radius: 50%;
	opacity: 0.04;
	pointer-events: none;
}

.erro-404__box {
	position: relative;
	z-index: 1;
	max-width: 960px;
	margin: 0 auto 58px;
	padding: 46px;
	text-align: center;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 28px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
	overflow: hidden;
}

.erro-404__box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: var(--primary-color);
}

.erro-404__code {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	color: var(--primary-color);
	font-size: clamp(64px, 10vw, 128px);
	font-weight: 900;
	line-height: 0.9;
	letter-spacing: -0.08em;
}

.erro-404__content h2 {
	max-width: 720px;
	margin: 0 auto 16px;
	color: var(--secondary-color);
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

.erro-404__content p {
	max-width: 680px;
	margin: 0 auto;
	color: #5f6c7b;
	font-size: 16px;
	line-height: 1.75;
}

.erro-404__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.erro-404__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 50px;
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	border-radius: 999px;
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.erro-404__btn--primary {
	color: #fff;
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.erro-404__btn--outline {
	color: var(--secondary-color);
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.12);
}

.erro-404__btn:hover,
.erro-404__btn:focus {
	color: #fff;
	text-decoration: none;
	background: var(--secondary-color);
	border-color: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.erro-404__redirect {
	margin-top: 22px !important;
	color: #64748b !important;
	font-size: 14px !important;
}

.erro-404__redirect strong {
	color: var(--primary-color);
	font-weight: 900;
}

/* Mapa 404
** ----------------------------------------------- */
.erro-404__mapa {
	position: relative;
	z-index: 1;
}

.erro-404__intro {
	max-width: 780px;
	margin: 0 auto 34px;
	text-align: center;
}

.erro-404__intro h2 {
	margin: 0 0 14px;
	color: var(--secondary-color);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

.erro-404__intro p {
	max-width: 620px;
	margin: 0 auto;
	color: #5f6c7b;
	font-size: 16px;
	line-height: 1.7;
}

.erro-404__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
	gap: 24px;
}

.erro-404__card {
	position: relative;
	padding: 30px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
	overflow: hidden;
}

.erro-404__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--primary-color);
}

.erro-404__card h3 {
	margin: 0 0 22px;
	color: var(--secondary-color);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.erro-404__card ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.erro-404__card--wide ul {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.erro-404__card a {
	display: flex;
	align-items: center;
	gap: 9px;
	width: 100%;
	padding: 11px 12px;
	color: #475569;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	text-decoration: none;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.05);
	border-radius: 12px;
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}

.erro-404__card a i {
	color: var(--primary-color);
	font-size: 13px;
	transition:
		color 0.25s ease,
		transform 0.25s ease;
}

.erro-404__card a:hover,
.erro-404__card a:focus {
	color: #fff;
	text-decoration: none;
	background: var(--primary-color);
	border-color: var(--primary-color);
	transform: translateX(4px);
}

.erro-404__card a:hover i,
.erro-404__card a:focus i {
	color: #fff;
	transform: translateX(2px);
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 991px) {
	.erro-404 {
		padding: 62px 0 72px;
	}

	.erro-404__box {
		padding: 38px 28px;
		margin-bottom: 46px;
	}

	.erro-404__grid {
		grid-template-columns: 1fr;
	}

	.erro-404__card--wide ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.erro-404 {
		padding: 48px 0 58px;
	}

	.erro-404__box {
		padding: 32px 20px;
		border-radius: 20px;
	}

	.erro-404__content h2 {
		font-size: clamp(26px, 9vw, 36px);
	}

	.erro-404__content p,
	.erro-404__intro p {
		font-size: 15px;
		line-height: 1.65;
	}

	.erro-404__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.erro-404__btn {
		width: 100%;
	}

	.erro-404__intro {
		text-align: left;
		margin-bottom: 28px;
	}

	.erro-404__intro h2 {
		font-size: clamp(28px, 9vw, 36px);
	}

	.erro-404__card {
		padding: 24px 20px;
		border-radius: 18px;
	}

	.erro-404__card h3 {
		font-size: 22px;
	}

	.erro-404__card--wide ul {
		grid-template-columns: 1fr;
	}

	.erro-404__card a {
		font-size: 14px;
	}
}

/* Segurança global contra rolagem horizontal
** ----------------------------------------------- */
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

/* Política de Privacidade
** ----------------------------------------------- */
.politica-page {
	position: relative;
	padding: 78px 0 88px;
	background: #fff;
	overflow-x: clip;
	overflow-y: visible;
}

.politica-page::before {
	content: "";
	position: absolute;
	top: -160px;
	right: 0;
	width: 320px;
	height: 320px;
	background: var(--primary-color);
	border-radius: 50%;
	opacity: 0.06;
	pointer-events: none;
	transform: translateX(45%);
}

.politica-page::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -160px;
	width: 300px;
	height: 300px;
	background: var(--secondary-color);
	border-radius: 50%;
	opacity: 0.04;
	pointer-events: none;
	transform: translateX(-45%);
}

.politica-page__intro {
	position: relative;
	z-index: 1;
	max-width: 830px;
	margin: 0 auto 44px;
	text-align: center;
}

.politica-page__intro h2 {
	margin: 0 0 16px;
	color: var(--secondary-color);
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

.politica-page__intro p {
	max-width: 720px;
	margin: 0 auto;
	color: #5f6c7b;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
}

.politica-page__layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

/* Sidebar / Sumário
** ----------------------------------------------- */
.politica-page__summary {
	position: sticky;
	top: calc(var(--site-header-height) + 24px);
	max-height: calc(100vh - var(--site-header-height) - 48px);
	padding: 24px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 22px;
	box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
	overflow-y: auto;
}

.politica-page__summary::-webkit-scrollbar {
	width: 7px;
}

.politica-page__summary::-webkit-scrollbar-thumb {
	background: rgba(15, 23, 42, 0.18);
	border-radius: 999px;
}

.politica-page__summary-title {
	margin: 0 0 16px;
	color: var(--secondary-color);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.2;
}

.politica-page__summary ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.politica-page__summary a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 11px;
	color: #475569;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	text-decoration: none;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.05);
	border-radius: 11px;
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}

.politica-page__summary a::before {
	content: "";
	flex: 0 0 auto;
	width: 7px;
	height: 7px;
	background: var(--primary-color);
	border-radius: 50%;
	transition: background-color 0.25s ease;
}

.politica-page__summary a:hover,
.politica-page__summary a:focus,
.politica-page__summary a.is-active {
	color: #fff;
	text-decoration: none;
	background: var(--primary-color);
	border-color: var(--primary-color);
	transform: translateX(3px);
}

.politica-page__summary a:hover::before,
.politica-page__summary a:focus::before,
.politica-page__summary a.is-active::before {
	background: #fff;
}

/* Conteúdo
** ----------------------------------------------- */
.politica-page__content {
	position: relative;
	z-index: 1;
	min-width: 0;
	padding: 38px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.politica-page__content section {
	scroll-margin-top: calc(var(--site-header-height) + 28px);
}

.politica-page__content h2[id] {
	scroll-margin-top: calc(var(--site-header-height) + 28px);
}

.politica-page__content section+section {
	margin-top: 38px;
	padding-top: 34px;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.politica-page__content h2 {
	position: relative;
	margin: 0 0 18px;
	color: var(--secondary-color);
	font-size: clamp(25px, 3vw, 34px);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.03em;
}

.politica-page__content h2::before {
	content: "";
	display: block;
	width: 54px;
	height: 4px;
	margin-bottom: 12px;
	background: var(--primary-color);
	border-radius: 999px;
}

.politica-page__content h3 {
	margin: 28px 0 14px;
	color: var(--secondary-color);
	font-size: clamp(21px, 2.4vw, 26px);
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.politica-page__content p {
	margin: 0 0 18px;
	color: #334155;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.78;
}

.politica-page__content p:last-child {
	margin-bottom: 0;
}

.politica-page__content a {
	color: var(--primary-color);
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid currentColor;
	transition: color 0.25s ease;
}

.politica-page__content a:hover,
.politica-page__content a:focus {
	color: var(--secondary-color);
	text-decoration: none;
}

.politica-page__content ul {
	display: grid;
	gap: 12px;
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
}

.politica-page__content li {
	position: relative;
	padding-left: 24px;
	color: #334155;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.72;
}

.politica-page__content li::before {
	content: "";
	position: absolute;
	top: 0.8em;
	left: 0;
	width: 9px;
	height: 9px;
	background: var(--primary-color);
	border-radius: 50%;
	transform: translateY(-50%);
}

.politica-page__content li strong {
	color: var(--secondary-color);
	font-weight: 800;
}

.politica-page__date {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px !important;
	padding: 12px 16px;
	color: #475569 !important;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 999px;
}

.politica-page__date strong {
	color: var(--primary-color);
	font-weight: 900;
}

/* Correção da faixa interna para evitar estouro horizontal
** ----------------------------------------------- */
.faixa-page,
.faixa_page {
	overflow: hidden;
	max-width: 100%;
}

.faixa-page::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -160px;
	z-index: -1;
	width: 420px;
	height: 420px;
	border: 72px solid var(--primary-color);
	border-radius: 50%;
	opacity: 0.42;
	transform: translateX(45%);
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 1199px) {
	.politica-page__layout {
		grid-template-columns: 260px minmax(0, 1fr);
		gap: 22px;
	}

	.politica-page__summary {
		padding: 22px;
	}

	.politica-page__content {
		padding: 32px;
	}
}

@media (max-width: 991px) {
	.politica-page {
		padding: 62px 0 72px;
		overflow: hidden;
	}

	.politica-page__intro {
		margin-bottom: 34px;
	}

	.politica-page__layout {
		grid-template-columns: 1fr;
	}

	.politica-page__summary {
		position: relative;
		top: auto;
		max-height: none;
		overflow: visible;
	}

	.politica-page__summary ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.politica-page__content section,
	.politica-page__content h2[id] {
		scroll-margin-top: calc(var(--site-header-height) + 20px);
	}

	.politica-page::before {
		right: 0;
		width: 260px;
		height: 260px;
		transform: translateX(50%);
	}

	.politica-page::after {
		left: 0;
		width: 240px;
		height: 240px;
		transform: translateX(-50%);
	}
}

@media (max-width: 575px) {
	.politica-page {
		padding: 48px 0 58px;
	}

	.politica-page__intro {
		text-align: left;
		margin-bottom: 28px;
	}

	.politica-page__intro h2 {
		font-size: clamp(28px, 9vw, 36px);
	}

	.politica-page__intro p {
		font-size: 15px;
		line-height: 1.65;
	}

	.politica-page__summary,
	.politica-page__content {
		padding: 22px 20px;
		border-radius: 18px;
	}

	.politica-page__summary ul {
		grid-template-columns: 1fr;
	}

	.politica-page__summary a {
		font-size: 13px;
	}

	.politica-page__content section+section {
		margin-top: 32px;
		padding-top: 28px;
	}

	.politica-page__content h2 {
		font-size: 26px;
	}

	.politica-page__content h3 {
		font-size: 22px;
	}

	.politica-page__content p,
	.politica-page__content li {
		font-size: 15px;
		line-height: 1.7;
	}

	.politica-page__date {
		display: flex;
		width: 100%;
		border-radius: 14px;
	}

	.faixa-page::after {
		right: 0;
		bottom: -170px;
		width: 340px;
		height: 340px;
		border-width: 58px;
		transform: translateX(55%);
	}
}

/*Página inicial - Home */

/* Banner Home - EVL Para Raio
** ----------------------------------------------- */

.evl-home-banner {
	--evl-banner-header: var(--site-header-height, 112px);
	--evl-mx: 70%;
	--evl-my: 56%;

	position: relative;
	display: flex;
	align-items: center;
	min-height: calc(100vh - var(--evl-banner-header));
	padding: 118px 0 148px;
	overflow: hidden;
	isolation: isolate;
	color: #fff;
	background: var(--secondary-color);
}

.evl-home-banner__bg {
	position: absolute;
	inset: 0;
	z-index: -5;
	background-image: var(--evl-banner-bg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	transform: scale(1.04);
	animation: evlBannerBgIn 1600ms ease forwards;
}

.evl-home-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: -4;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 41%, rgba(0, 0, 0, 0.38) 72%, rgba(0, 0, 0, 0.58) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.evl-home-banner__fx {
	position: absolute;
	inset: 0;
	z-index: -3;
	background:
		radial-gradient(circle at var(--evl-mx) var(--evl-my), rgba(233, 106, 36, 0.22), transparent 26%),
		radial-gradient(circle at 18% 48%, rgba(233, 106, 36, 0.2), transparent 28%);
	opacity: 0.95;
	pointer-events: none;
	transition: background 0.2s ease;
}

.evl-home-banner__container {
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 22px;
}

.evl-home-banner__content {
	width: 100%;
	max-width: 760px;
	opacity: 0;
	transform: translateY(24px);
	animation: evlBannerContentIn 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards 0.12s;
}

.evl-home-banner__tag {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	max-width: 100%;
	margin-bottom: 22px;
	padding: 8px 14px;
	overflow: hidden;
	border: 1px solid rgba(233, 106, 36, 0.7);
	border-radius: 7px;
	background: rgba(233, 106, 36, 0.1);
	color: var(--primary-color);
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 0 26px rgba(233, 106, 36, 0.12);
}

.evl-home-banner__tag::after {
	content: "";
	position: absolute;
	top: 0;
	left: -70%;
	width: 48%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
	transform: skewX(-18deg);
	animation: evlBannerShine 4.2s ease-in-out infinite;
}

.evl-home-banner h1 {
	max-width: 760px;
	margin: 0;
	color: #fff;
	font-size: clamp(2.45rem, 3.5vw, 4.15rem);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.04em;
	text-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.evl-home-banner h1 span {
	color: var(--primary-color);
}

.evl-home-banner p {
	max-width: 640px;
	margin: 23px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(0.98rem, 1.08vw, 1.12rem);
	font-weight: 400;
	line-height: 1.72;
}

.evl-home-banner__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 32px;
}

.evl-home-banner__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 23px;
	overflow: hidden;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transform: translateZ(0);
	transition:
		transform 0.24s ease,
		color 0.24s ease,
		background 0.24s ease,
		border-color 0.24s ease,
		box-shadow 0.24s ease;
}

.evl-home-banner__btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -85%;
	width: 54%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
	transform: skewX(-18deg);
	transition: left 0.68s ease;
}

.evl-home-banner__btn:hover::before,
.evl-home-banner__btn:focus-visible::before {
	left: 130%;
}

.evl-home-banner__btn:hover,
.evl-home-banner__btn:focus {
	text-decoration: none;
}

.evl-home-banner__btn:hover {
	transform: translateY(-3px);
}

.evl-home-banner__btn:focus-visible {
	outline: 3px solid rgba(233, 106, 36, 0.34);
	outline-offset: 4px;
}

.evl-home-banner__btn--primary {
	color: var(--secondary-color);
	background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a3a 100%);
	border-color: rgba(233, 106, 36, 0.76);
	box-shadow:
		0 15px 34px rgba(233, 106, 36, 0.32),
		inset 0 1px 0 rgba(255, 255, 255, 0.24);
	animation: evlPulseOrange 2.8s ease-in-out infinite;
}

.evl-home-banner__btn--primary:hover,
.evl-home-banner__btn--primary:focus {
	color: var(--secondary-color);
	box-shadow:
		0 20px 46px rgba(233, 106, 36, 0.46),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.evl-home-banner__btn--dark {
	color: #fff;
	background: rgba(0, 0, 0, 0.58);
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow:
		0 15px 34px rgba(0, 0, 0, 0.34),
		inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.evl-home-banner__btn--dark:hover,
.evl-home-banner__btn--dark:focus {
	color: #fff;
	border-color: rgba(233, 106, 36, 0.62);
	background: rgba(233, 106, 36, 0.14);
	box-shadow: 0 18px 42px rgba(233, 106, 36, 0.22);
}

.evl-home-banner__btn--whatsapp {
	color: #062713;
	background: linear-gradient(135deg, #25d366 0%, #43e178 100%);
	border-color: rgba(37, 211, 102, 0.68);
	box-shadow:
		0 15px 34px rgba(37, 211, 102, 0.26),
		inset 0 1px 0 rgba(255, 255, 255, 0.22);
	animation: evlPulseGreen 2.8s ease-in-out infinite;
}

.evl-home-banner__btn--whatsapp:hover,
.evl-home-banner__btn--whatsapp:focus {
	color: #062713;
	box-shadow:
		0 20px 46px rgba(37, 211, 102, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.evl-home-banner__features-wrap {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	background: linear-gradient(180deg, rgba(6, 13, 18, 0.9) 0%, rgba(6, 13, 18, 0.98) 100%);
	backdrop-filter: blur(10px);
}

.evl-home-banner__features {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.evl-home-banner__features li {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 58px;
	padding: 10px 12px;
	border-radius: 10px;
	color: #fff;
	transition:
		background 0.24s ease,
		transform 0.24s ease;
}

.evl-home-banner__features li:hover {
	background: rgba(255, 255, 255, 0.045);
	transform: translateY(-2px);
}

.evl-home-banner__features span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	color: var(--primary-color);
	background: rgba(233, 106, 36, 0.15);
	box-shadow: inset 0 0 0 1px rgba(233, 106, 36, 0.18);
}

.evl-home-banner__features strong {
	display: block;
	color: #fff;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.25;
}

/* Animações
** ----------------------------------------------- */

@keyframes evlBannerBgIn {
	from {
		transform: scale(1.07);
	}

	to {
		transform: scale(1.02);
	}
}

@keyframes evlBannerContentIn {
	from {
		opacity: 0;
		transform: translateY(24px);
		filter: blur(7px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

@keyframes evlBannerShine {
	0% {
		left: -70%;
	}

	42%,
	100% {
		left: 130%;
	}
}

@keyframes evlPulseOrange {

	0%,
	100% {
		box-shadow:
			0 15px 34px rgba(233, 106, 36, 0.32),
			inset 0 1px 0 rgba(255, 255, 255, 0.24);
	}

	50% {
		box-shadow:
			0 18px 44px rgba(233, 106, 36, 0.48),
			0 0 0 5px rgba(233, 106, 36, 0.08),
			inset 0 1px 0 rgba(255, 255, 255, 0.3);
	}
}

@keyframes evlPulseGreen {

	0%,
	100% {
		box-shadow:
			0 15px 34px rgba(37, 211, 102, 0.26),
			inset 0 1px 0 rgba(255, 255, 255, 0.22);
	}

	50% {
		box-shadow:
			0 18px 44px rgba(37, 211, 102, 0.4),
			0 0 0 5px rgba(37, 211, 102, 0.08),
			inset 0 1px 0 rgba(255, 255, 255, 0.3);
	}
}

/* Responsivo
** ----------------------------------------------- */

@media (max-width: 1399.98px) {
	.evl-home-banner__container {
		max-width: 1140px;
	}

	.evl-home-banner__content {
		max-width: 700px;
	}

	.evl-home-banner h1 {
		max-width: 700px;
		font-size: clamp(2.28rem, 3.25vw, 3.65rem);
	}
}

@media (max-width: 1199.98px) {
	.evl-home-banner {
		display: block;
		min-height: auto;
		padding: 96px 0 0;
	}

	.evl-home-banner__container {
		max-width: 960px;
		padding: 0 22px;
	}

	.evl-home-banner__content {
		max-width: 680px;
		padding-bottom: 58px;
	}

	.evl-home-banner h1 {
		max-width: 680px;
		font-size: clamp(2.15rem, 4.15vw, 3.25rem);
		line-height: 1.08;
		letter-spacing: -0.038em;
	}

	.evl-home-banner p {
		max-width: 620px;
		font-size: 1rem;
		line-height: 1.68;
	}

	.evl-home-banner__features-wrap {
		position: static;
		right: auto;
		bottom: auto;
		left: auto;
		width: 100%;
		margin: 0;
		padding: 18px 0;
		transform: none;
	}

	.evl-home-banner__features {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
	}

	.evl-home-banner__features li {
		min-width: 0;
	}
}

@media (max-width: 991.98px) {
	.evl-home-banner {
		padding: 84px 0 0;
	}

	.evl-home-banner__bg {
		background-position: 58% center;
		transform: none;
		animation: none;
	}

	.evl-home-banner__overlay {
		background:
			linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.86) 58%, rgba(0, 0, 0, 0.7) 100%),
			linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.88) 100%);
	}

	.evl-home-banner__container {
		max-width: 720px;
		padding: 0 22px;
	}

	.evl-home-banner__content {
		max-width: 100%;
		padding-bottom: 52px;
	}

	.evl-home-banner h1 {
		max-width: 100%;
		font-size: clamp(2.05rem, 5.65vw, 3.05rem);
		line-height: 1.09;
		letter-spacing: -0.035em;
	}

	.evl-home-banner p {
		max-width: 100%;
		margin-top: 20px;
		font-size: 0.98rem;
		line-height: 1.66;
	}

	.evl-home-banner__actions {
		margin-top: 28px;
	}

	.evl-home-banner__features-wrap {
		position: static;
		width: 100%;
		padding: 16px 0;
	}

	.evl-home-banner__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.evl-home-banner__features li {
		min-height: 56px;
		padding: 10px;
	}
}

@media (max-width: 767.98px) {
	.evl-home-banner {
		padding: 72px 0 0;
	}

	.evl-home-banner__bg {
		background-position: center center;
	}

	.evl-home-banner__overlay {
		background:
			linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.97) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.78) 100%);
	}

	.evl-home-banner__fx {
		background:
			radial-gradient(circle at 25% 22%, rgba(233, 106, 36, 0.2), transparent 32%),
			radial-gradient(circle at 85% 70%, rgba(233, 106, 36, 0.14), transparent 30%);
	}

	.evl-home-banner__container {
		max-width: 540px;
		padding: 0 18px;
	}

	.evl-home-banner__content {
		padding-bottom: 48px;
	}

	.evl-home-banner__tag {
		margin-bottom: 18px;
		padding: 8px 11px;
		font-size: 0.64rem;
		line-height: 1.35;
		letter-spacing: 0.055em;
	}

	.evl-home-banner h1 {
		font-size: clamp(1.95rem, 9.3vw, 2.75rem);
		line-height: 1.09;
		letter-spacing: -0.032em;
	}

	.evl-home-banner p {
		margin-top: 18px;
		font-size: 0.94rem;
		line-height: 1.64;
	}

	.evl-home-banner__actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 11px;
		margin-top: 26px;
	}

	.evl-home-banner__btn {
		width: 100%;
		min-height: 50px;
		padding: 0 18px;
		font-size: 0.86rem;
		white-space: normal;
		text-align: center;
	}

	.evl-home-banner__features-wrap {
		padding: 14px 0;
	}

	.evl-home-banner__features {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.evl-home-banner__features li {
		display: flex;
		width: 100%;
		min-height: 52px;
		padding: 9px 0;
	}

	.evl-home-banner__features span {
		flex: 0 0 38px;
		width: 38px;
		height: 38px;
	}

	.evl-home-banner__features strong {
		font-size: 0.86rem;
	}
}

@media (max-width: 575.98px) {
	.evl-home-banner {
		padding: 62px 0 0;
	}

	.evl-home-banner__container {
		padding: 0 16px;
	}

	.evl-home-banner__content {
		padding-bottom: 44px;
	}

	.evl-home-banner__tag {
		margin-bottom: 15px;
		padding: 7px 10px;
		font-size: 0.6rem;
		letter-spacing: 0.045em;
	}

	.evl-home-banner h1 {
		font-size: clamp(1.74rem, 10.2vw, 2.42rem);
		line-height: 1.1;
		letter-spacing: -0.028em;
	}

	.evl-home-banner p {
		margin-top: 16px;
		font-size: 0.91rem;
		line-height: 1.6;
	}

	.evl-home-banner__actions {
		margin-top: 24px;
	}

	.evl-home-banner__btn {
		min-height: 49px;
		padding: 0 16px;
		font-size: 0.84rem;
	}

	.evl-home-banner__features-wrap {
		padding: 12px 0;
	}

	.evl-home-banner__features li {
		gap: 10px;
	}
}

@media (max-width: 420px) {
	.evl-home-banner {
		padding: 54px 0 0;
	}

	.evl-home-banner__container {
		padding: 0 14px;
	}

	.evl-home-banner__content {
		padding-bottom: 40px;
	}

	.evl-home-banner__tag {
		align-items: flex-start;
		gap: 7px;
		padding: 7px 9px;
		font-size: 0.56rem;
		line-height: 1.35;
	}

	.evl-home-banner h1 {
		font-size: clamp(1.58rem, 10.7vw, 2.08rem);
		line-height: 1.12;
		letter-spacing: -0.024em;
	}

	.evl-home-banner p {
		font-size: 0.88rem;
		line-height: 1.56;
	}

	.evl-home-banner__btn {
		min-height: 47px;
		padding: 0 14px;
		font-size: 0.81rem;
	}

	.evl-home-banner__features strong {
		font-size: 0.84rem;
	}
}

@media (max-width: 360px) {
	.evl-home-banner {
		padding: 48px 0 0;
	}

	.evl-home-banner__container {
		padding: 0 12px;
	}

	.evl-home-banner__content {
		padding-bottom: 36px;
	}

	.evl-home-banner h1 {
		font-size: clamp(1.46rem, 10.6vw, 1.86rem);
		line-height: 1.14;
		letter-spacing: -0.02em;
	}

	.evl-home-banner p {
		font-size: 0.85rem;
		line-height: 1.54;
	}

	.evl-home-banner__actions {
		gap: 9px;
		margin-top: 21px;
	}

	.evl-home-banner__btn {
		min-height: 46px;
		padding: 0 12px;
		font-size: 0.78rem;
		gap: 8px;
	}

	.evl-home-banner__features li {
		min-height: 50px;
	}

	.evl-home-banner__features span {
		flex: 0 0 36px;
		width: 36px;
		height: 36px;
	}

	.evl-home-banner__features strong {
		font-size: 0.81rem;
	}
}

@media (max-width: 320px) {
	.evl-home-banner {
		padding: 44px 0 0;
	}

	.evl-home-banner__tag {
		font-size: 0.52rem;
		padding: 6px 8px;
	}

	.evl-home-banner h1 {
		font-size: 1.4rem;
		line-height: 1.15;
	}

	.evl-home-banner p {
		font-size: 0.82rem;
		line-height: 1.52;
	}

	.evl-home-banner__btn {
		min-height: 44px;
		font-size: 0.75rem;
	}
}

@media (max-width: 300px) {
	.evl-home-banner {
		padding: 40px 0 0;
	}

	.evl-home-banner__container {
		padding: 0 10px;
	}

	.evl-home-banner__content {
		padding-bottom: 32px;
	}

	.evl-home-banner__tag {
		font-size: 0.5rem;
		line-height: 1.3;
	}

	.evl-home-banner h1 {
		font-size: 1.32rem;
		line-height: 1.16;
		letter-spacing: -0.016em;
	}

	.evl-home-banner p {
		font-size: 0.8rem;
	}

	.evl-home-banner__btn {
		min-height: 42px;
		padding: 0 10px;
		font-size: 0.72rem;
	}

	.evl-home-banner__features span {
		flex: 0 0 34px;
		width: 34px;
		height: 34px;
	}

	.evl-home-banner__features strong {
		font-size: 0.78rem;
	}
}

@media (prefers-reduced-motion: reduce) {

	.evl-home-banner__bg,
	.evl-home-banner__content,
	.evl-home-banner__tag::after,
	.evl-home-banner__btn,
	.evl-home-banner__btn::before {
		animation: none;
		transition: none;
	}

	.evl-home-banner__content {
		opacity: 1;
		transform: none;
		filter: none;
	}

	.evl-home-banner__bg {
		transform: none;
	}
}

/* Sobre EVL
** ----------------------------------------------- */
.evl-sobre {
	position: relative;
	padding: 96px 0;
	color: #fff;
	background: #081017;
	overflow: hidden;
}

.evl-sobre::before {
	content: "";
	position: absolute;
	top: -180px;
	left: -160px;
	width: 360px;
	height: 360px;
	background: var(--primary-color);
	border-radius: 50%;
	opacity: 0.08;
	pointer-events: none;
}

.evl-sobre::after {
	content: "";
	position: absolute;
	right: -210px;
	bottom: -210px;
	width: 420px;
	height: 420px;
	border: 70px solid var(--primary-color);
	border-radius: 50%;
	opacity: 0.08;
	pointer-events: none;
}

.evl-sobre .container {
	position: relative;
	z-index: 1;
}

.evl-sobre__media {
	position: relative;
	width: 100%;
	max-width: 620px;
	margin: 0 auto;
	padding-bottom: 28px;
}

.evl-sobre__media img {
	display: block;
	width: 100%;
	height: 620px;
	object-fit: cover;
	object-position: center;
	border-radius: 18px;
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.evl-sobre__counter {
	position: absolute;
	right: -26px;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 230px;
	min-height: 116px;
	padding: 22px 24px;
	color: #050505;
	background: var(--primary-color);
	border-radius: 18px;
	box-shadow: 0 22px 46px rgba(255, 111, 31, 0.26);
}

.evl-sobre__counter-number {
	display: inline-flex;
	align-items: baseline;
	justify-content: flex-start;
	gap: 0;
	margin: 0 0 7px;
	color: #050505;
	font-size: 34px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.045em;
	white-space: nowrap;
}

.evl-sobre__counter-number .js-counter {
	display: inline;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}

.evl-sobre__counter-text {
	display: block;
	max-width: 170px;
	color: #050505;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.evl-sobre__content {
	max-width: 650px;
	margin-left: auto;
}

.evl-sobre__tag {
	display: inline-flex;
	align-items: center;
	margin-bottom: 18px;
	color: var(--primary-color);
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.evl-sobre__tag::before {
	content: "";
	display: inline-block;
	width: 34px;
	height: 2px;
	margin-right: 10px;
	background: var(--primary-color);
	border-radius: 999px;
}

.evl-sobre h2 {
	margin: 0 0 22px;
	color: #fff;
	font-size: clamp(36px, 4.5vw, 58px);
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: -0.055em;
}

.evl-sobre h2 span {
	display: block;
	color: var(--primary-color);
}

.evl-sobre p {
	max-width: 640px;
	margin: 0 0 20px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.82;
}

.evl-sobre__benefits {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px 54px;
	margin: 34px 0 34px;
}

.evl-sobre__benefits ul {
	display: grid;
	gap: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.evl-sobre__benefits li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
}

.evl-sobre__benefits i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	color: var(--primary-color);
	font-size: 15px;
}

.evl-sobre__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 52px;
	padding: 15px 28px;
	color: #050505;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 999px;
	box-shadow: 0 18px 38px rgba(255, 111, 31, 0.22);
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.evl-sobre__btn:hover,
.evl-sobre__btn:focus {
	color: #fff;
	text-decoration: none;
	background: var(--secondary-color);
	border-color: var(--secondary-color);
	transform: translateY(-3px);
	box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 1199px) {
	.evl-sobre__media img {
		height: 560px;
	}

	.evl-sobre h2 {
		font-size: clamp(34px, 4.3vw, 50px);
	}
}

@media (max-width: 991px) {
	.evl-sobre {
		padding: 72px 0;
	}

	.evl-sobre__media {
		max-width: 620px;
		margin-bottom: 44px;
	}

	.evl-sobre__media img {
		height: 520px;
	}

	.evl-sobre__counter {
		right: 22px;
	}

	.evl-sobre__content {
		max-width: 100%;
		margin-left: 0;
	}

	.evl-sobre p {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.evl-sobre__media {
		padding-bottom: 0;
	}

	.evl-sobre__media img {
		height: 440px;
	}

	.evl-sobre__counter {
		position: relative;
		right: auto;
		bottom: auto;
		width: 100%;
		min-height: auto;
		margin-top: -18px;
		border-radius: 16px;
	}

	.evl-sobre__counter-text {
		max-width: 100%;
	}

	.evl-sobre__benefits {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}

@media (max-width: 575px) {
	.evl-sobre {
		padding: 58px 0;
	}

	.evl-sobre__media {
		margin-bottom: 36px;
	}

	.evl-sobre__media img {
		height: 340px;
		border-radius: 16px;
	}

	.evl-sobre__counter {
		padding: 20px;
	}

	.evl-sobre__counter-number {
		font-size: 32px;
	}

	.evl-sobre__tag {
		font-size: 12px;
	}

	.evl-sobre h2 {
		font-size: clamp(32px, 11vw, 42px);
		line-height: 1.05;
	}

	.evl-sobre p {
		font-size: 15px;
		line-height: 1.7;
	}

	.evl-sobre__btn {
		width: 100%;
		padding: 15px 20px;
	}
}

/* Serviços EVL
** ----------------------------------------------- */
.evl-servicos {
	position: relative;
	padding: 96px 0;
	background: #fff;
	overflow: hidden;
}

.evl-servicos::before {
	content: "";
	position: absolute;
	top: -180px;
	right: -160px;
	width: 360px;
	height: 360px;
	background: var(--primary-color);
	border-radius: 50%;
	opacity: 0.06;
	pointer-events: none;
}

.evl-servicos::after {
	content: "";
	position: absolute;
	left: -190px;
	bottom: -210px;
	width: 420px;
	height: 420px;
	border: 70px solid var(--primary-color);
	border-radius: 50%;
	opacity: 0.055;
	pointer-events: none;
}

.evl-servicos .container {
	position: relative;
	z-index: 1;
}

.evl-servicos__head {
	max-width: 860px;
	margin: 0 auto 48px;
	text-align: center;
}

.evl-servicos__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 16px;
	color: var(--primary-color);
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.evl-servicos__tag::before,
.evl-servicos__tag::after {
	content: "";
	display: block;
	width: 34px;
	height: 2px;
	background: var(--primary-color);
	border-radius: 999px;
}

.evl-servicos__head h2 {
	margin: 0;
	color: var(--secondary-color);
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.055em;
}

.evl-servicos__head h2 span {
	color: var(--primary-color);
}

.evl-servicos__head p {
	max-width: 720px;
	margin: 20px auto 0;
	color: #5f6c7b;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
}

.evl-servicos__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.evl-servico-card {
	position: relative;
	min-width: 0;
	height: 100%;
}

.evl-servico-card__link {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
	color: inherit;
	text-decoration: none;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease,
		border-color 0.28s ease;
}

.evl-servico-card__link::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 5px;
	background: var(--primary-color);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.28s ease;
}

.evl-servico-card__link:hover,
.evl-servico-card__link:focus {
	color: inherit;
	text-decoration: none;
	border-color: rgba(15, 23, 42, 0.13);
	box-shadow: 0 26px 56px rgba(15, 23, 42, 0.14);
	transform: translateY(-7px);
}

.evl-servico-card__link:hover::before,
.evl-servico-card__link:focus::before {
	transform: scaleX(1);
}

.evl-servico-card__media {
	position: relative;
	display: block;
	width: 100%;
	height: 360px;
	margin: 0;
	background: #f8fafc;
	overflow: hidden;
}

.evl-servico-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.28) 100%);
	opacity: 0;
	transition: opacity 0.28s ease;
	pointer-events: none;
}

.evl-servico-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.01);
	transition:
		transform 0.4s ease,
		filter 0.4s ease;
}

.evl-servico-card__link:hover .evl-servico-card__media::after,
.evl-servico-card__link:focus .evl-servico-card__media::after {
	opacity: 1;
}

.evl-servico-card__link:hover .evl-servico-card__media img,
.evl-servico-card__link:focus .evl-servico-card__media img {
	filter: saturate(1.08) contrast(1.03);
	transform: scale(1.07);
}

.evl-servico-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 26px;
}

.evl-servico-card__label {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 14px;
	padding: 7px 11px;
	color: var(--primary-color);
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	background: rgba(233, 106, 36, 0.1);
	border: 1px solid rgba(233, 106, 36, 0.16);
	border-radius: 999px;
}

.evl-servico-card__body h3 {
	margin: 0 0 13px;
	color: var(--secondary-color);
	font-size: 23px;
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: -0.035em;
	transition: color 0.25s ease;
}

.evl-servico-card__body p {
	margin: 0 0 24px;
	color: #64748b;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
}

.evl-servico-card__action {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: auto;
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	transition:
		gap 0.25s ease,
		color 0.25s ease;
}

.evl-servico-card__action i {
	font-size: 13px;
}

.evl-servico-card__link:hover .evl-servico-card__body h3,
.evl-servico-card__link:focus .evl-servico-card__body h3 {
	color: var(--primary-color);
}

.evl-servico-card__link:hover .evl-servico-card__action,
.evl-servico-card__link:focus .evl-servico-card__action {
	gap: 13px;
	color: var(--secondary-color);
}

.evl-servicos__cta {
	display: flex;
	justify-content: center;
	margin-top: 42px;
}

.evl-servicos__cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 54px;
	padding: 16px 30px;
	color: var(--secondary-color);
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a3a 100%);
	border: 1px solid rgba(233, 106, 36, 0.72);
	border-radius: 999px;
	box-shadow: 0 18px 38px rgba(233, 106, 36, 0.24);
	transition:
		color 0.25s ease,
		background 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.evl-servicos__cta a:hover,
.evl-servicos__cta a:focus {
	color: #fff;
	text-decoration: none;
	background: var(--secondary-color);
	border-color: var(--secondary-color);
	transform: translateY(-3px);
	box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 1199.98px) {
	.evl-servicos {
		padding: 82px 0;
	}

	.evl-servicos__grid {
		gap: 20px;
	}

	.evl-servico-card__media {
		height: 230px;
	}

	.evl-servico-card__body {
		padding: 23px;
	}

	.evl-servico-card__body h3 {
		font-size: 21px;
	}
}

@media (max-width: 991.98px) {
	.evl-servicos {
		padding: 72px 0;
	}

	.evl-servicos__head {
		margin-bottom: 38px;
	}

	.evl-servicos__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.evl-servico-card:last-child {
		grid-column: span 2;
	}

	.evl-servico-card:last-child .evl-servico-card__link {
		display: grid;
		grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	}

	.evl-servico-card:last-child .evl-servico-card__media {
		height: 100%;
		min-height: 260px;
	}

	.evl-servicos__head h2 {
		font-size: clamp(31px, 5.8vw, 44px);
	}
}

@media (max-width: 767.98px) {
	.evl-servicos {
		padding: 62px 0;
	}

	.evl-servicos__head {
		text-align: left;
		margin-bottom: 32px;
	}

	.evl-servicos__tag {
		justify-content: flex-start;
		font-size: 12px;
		letter-spacing: 0.1em;
	}

	.evl-servicos__tag::after {
		display: none;
	}

	.evl-servicos__head h2 {
		font-size: clamp(30px, 8.8vw, 40px);
		line-height: 1.08;
	}

	.evl-servicos__head p {
		margin-top: 17px;
		font-size: 15px;
		line-height: 1.65;
	}

	.evl-servicos__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.evl-servico-card:last-child {
		grid-column: auto;
	}

	.evl-servico-card:last-child .evl-servico-card__link {
		display: flex;
	}

	.evl-servico-card:last-child .evl-servico-card__media {
		height: 230px;
		min-height: 0;
	}

	.evl-servico-card__link {
		border-radius: 20px;
	}

	.evl-servico-card__media {
		height: 230px;
	}

	.evl-servico-card__body {
		padding: 22px;
	}

	.evl-servico-card__body h3 {
		font-size: 21px;
	}

	.evl-servico-card__body p {
		font-size: 14.5px;
		line-height: 1.65;
	}

	.evl-servicos__cta {
		margin-top: 34px;
	}

	.evl-servicos__cta a {
		width: 100%;
		min-height: 52px;
		padding: 15px 22px;
	}
}

@media (max-width: 575.98px) {
	.evl-servicos {
		padding: 54px 0;
	}

	.evl-servicos__head {
		margin-bottom: 28px;
	}

	.evl-servicos__tag {
		font-size: 11px;
	}

	.evl-servicos__tag::before {
		width: 28px;
	}

	.evl-servicos__head h2 {
		font-size: clamp(28px, 9.5vw, 36px);
	}

	.evl-servico-card__media,
	.evl-servico-card:last-child .evl-servico-card__media {
		height: 210px;
	}

	.evl-servico-card__body {
		padding: 20px;
	}

	.evl-servico-card__body h3 {
		font-size: 20px;
	}

	.evl-servico-card__body p {
		font-size: 14px;
	}

	.evl-servico-card__label {
		font-size: 10px;
	}
}

@media (max-width: 420px) {
	.evl-servicos {
		padding: 48px 0;
	}

	.evl-servicos__head h2 {
		font-size: clamp(26px, 9.6vw, 32px);
	}

	.evl-servico-card__media,
	.evl-servico-card:last-child .evl-servico-card__media {
		height: 190px;
	}

	.evl-servico-card__body {
		padding: 18px;
	}

	.evl-servico-card__body h3 {
		font-size: 19px;
		line-height: 1.22;
	}

	.evl-servicos__cta a {
		font-size: 14px;
	}
}

@media (max-width: 360px) {
	.evl-servicos {
		padding: 44px 0;
	}

	.evl-servicos__head h2 {
		font-size: 25px;
	}

	.evl-servicos__head p {
		font-size: 14px;
	}

	.evl-servico-card__media,
	.evl-servico-card:last-child .evl-servico-card__media {
		height: 176px;
	}

	.evl-servico-card__body {
		padding: 16px;
	}

	.evl-servico-card__body h3 {
		font-size: 18px;
	}

	.evl-servico-card__body p {
		font-size: 13.5px;
		line-height: 1.6;
	}

	.evl-servicos__cta a {
		min-height: 48px;
		padding: 14px 18px;
		font-size: 13.5px;
	}
}

@media (max-width: 300px) {
	.evl-servicos {
		padding: 40px 0;
	}

	.evl-servicos__head h2 {
		font-size: 23px;
	}

	.evl-servicos__tag {
		font-size: 10px;
	}

	.evl-servico-card__media,
	.evl-servico-card:last-child .evl-servico-card__media {
		height: 160px;
	}

	.evl-servico-card__body {
		padding: 14px;
	}

	.evl-servico-card__body h3 {
		font-size: 17px;
	}

	.evl-servico-card__body p {
		font-size: 13px;
	}

	.evl-servicos__cta a {
		min-height: 46px;
		padding: 13px 14px;
		font-size: 13px;
	}
}

/* Clientes EVL
** ----------------------------------------------- */

.evl-clientes {
	position: relative;
	padding: 90px 0;
	overflow: hidden;
	background: #081017;
	color: #fff;
}

.evl-clientes::before {
	content: "";
	position: absolute;
	top: -170px;
	right: -170px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: var(--primary-color);
	opacity: 0.08;
	pointer-events: none;
}

.evl-clientes::after {
	content: "";
	position: absolute;
	left: -210px;
	bottom: -230px;
	width: 430px;
	height: 430px;
	border: 70px solid var(--primary-color);
	border-radius: 50%;
	opacity: 0.06;
	pointer-events: none;
}

.evl-clientes .container {
	position: relative;
	z-index: 2;
}

.evl-clientes__head {
	max-width: 820px;
	margin: 0 auto 48px;
	text-align: center;
}

.evl-clientes__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 16px;
	color: var(--primary-color);
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.evl-clientes__tag::before,
.evl-clientes__tag::after {
	content: "";
	display: block;
	width: 34px;
	height: 2px;
	border-radius: 999px;
	background: var(--primary-color);
}

.evl-clientes__head h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.055em;
}

.evl-clientes__head h2 span {
	color: var(--primary-color);
}

.evl-clientes__head p {
	max-width: 720px;
	margin: 20px auto 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
}

/* Letreiro eletrônico infinito
** ----------------------------------------------- */

.evl-clientes__marquee {
	--evl-clientes-gap: 22px;
	--evl-clientes-speed: 38s;

	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	overflow-x: hidden;
	contain: paint;
	mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.evl-clientes__track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: evlClientesTicker var(--evl-clientes-speed) linear infinite;
	will-change: transform;
}

.evl-clientes__marquee:hover .evl-clientes__track {
	animation-play-state: paused;
}

.evl-clientes__group {
	display: flex;
	align-items: center;
	gap: var(--evl-clientes-gap);
	flex: 0 0 auto;
	padding-right: var(--evl-clientes-gap);
}

.evl-clientes__item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 210px;
	height: 112px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.evl-clientes__item:hover {
	transform: translateY(-4px);
	border-color: rgba(233, 106, 36, 0.34);
	box-shadow: 0 24px 52px rgba(233, 106, 36, 0.16);
}

.evl-clientes__item img {
	display: block;
	width: 100%;
	max-width: 160px;
	height: 62px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.78;
	transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.evl-clientes__item:hover img {
	filter: grayscale(0);
	opacity: 1;
	transform: scale(1.04);
}

@keyframes evlClientesTicker {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

/* Responsivo
** ----------------------------------------------- */

@media (max-width: 991.98px) {
	.evl-clientes {
		padding: 72px 0;
	}

	.evl-clientes__head {
		margin-bottom: 38px;
	}

	.evl-clientes__marquee {
		--evl-clientes-gap: 18px;
		--evl-clientes-speed: 34s;
	}

	.evl-clientes__item {
		width: 185px;
		height: 100px;
		padding: 20px;
	}

	.evl-clientes__item img {
		max-width: 140px;
		height: 56px;
	}
}

@media (max-width: 767.98px) {
	.evl-clientes {
		padding: 62px 0;
	}

	.evl-clientes__head {
		margin-bottom: 32px;
		text-align: left;
	}

	.evl-clientes__tag {
		justify-content: flex-start;
		font-size: 12px;
		letter-spacing: 0.1em;
	}

	.evl-clientes__tag::after {
		display: none;
	}

	.evl-clientes__head h2 {
		font-size: clamp(30px, 8.8vw, 40px);
		line-height: 1.08;
	}

	.evl-clientes__head p {
		margin-top: 17px;
		font-size: 15px;
		line-height: 1.65;
	}

	.evl-clientes__marquee {
		--evl-clientes-gap: 14px;
		--evl-clientes-speed: 30s;
		mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
		-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
	}

	.evl-clientes__item {
		width: 165px;
		height: 92px;
		padding: 18px;
		border-radius: 16px;
	}

	.evl-clientes__item img {
		max-width: 126px;
		height: 50px;
	}
}

@media (max-width: 575.98px) {
	.evl-clientes {
		padding: 54px 0;
	}

	.evl-clientes__head h2 {
		font-size: clamp(28px, 9.5vw, 36px);
	}

	.evl-clientes__tag {
		font-size: 11px;
	}

	.evl-clientes__tag::before {
		width: 28px;
	}

	.evl-clientes__item {
		width: 150px;
		height: 86px;
		padding: 16px;
	}

	.evl-clientes__item img {
		max-width: 112px;
		height: 46px;
	}
}

@media (max-width: 420px) {
	.evl-clientes {
		padding: 48px 0;
	}

	.evl-clientes__head h2 {
		font-size: clamp(26px, 9.6vw, 32px);
	}

	.evl-clientes__marquee {
		--evl-clientes-gap: 12px;
		--evl-clientes-speed: 28s;
	}

	.evl-clientes__item {
		width: 136px;
		height: 80px;
		padding: 14px;
		border-radius: 14px;
	}

	.evl-clientes__item img {
		max-width: 102px;
		height: 42px;
	}
}

@media (max-width: 360px) {
	.evl-clientes {
		padding: 44px 0;
	}

	.evl-clientes__head h2 {
		font-size: 25px;
	}

	.evl-clientes__head p {
		font-size: 14px;
	}

	.evl-clientes__item {
		width: 124px;
		height: 76px;
		padding: 13px;
	}

	.evl-clientes__item img {
		max-width: 94px;
		height: 38px;
	}
}

@media (max-width: 300px) {
	.evl-clientes {
		padding: 40px 0;
	}

	.evl-clientes__head h2 {
		font-size: 23px;
	}

	.evl-clientes__tag {
		font-size: 10px;
	}

	.evl-clientes__item {
		width: 112px;
		height: 72px;
		padding: 12px;
	}

	.evl-clientes__item img {
		max-width: 86px;
		height: 36px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.evl-clientes__track {
		animation: evlClientesTicker 55s linear infinite;
	}

	.evl-clientes__marquee:hover .evl-clientes__track {
		animation-play-state: running;
	}
}

/* Contato EVL
** ----------------------------------------------- */
.evl-contato {
	position: relative;
	padding: 92px 0;
	background: #f6f7f9;
	color: var(--secondary-color);
	overflow: hidden;
}

.evl-contato::before {
	content: "";
	position: absolute;
	top: -170px;
	right: -160px;
	width: 360px;
	height: 360px;
	background: var(--primary-color);
	border-radius: 50%;
	opacity: 0.08;
	pointer-events: none;
}

.evl-contato::after {
	content: "";
	position: absolute;
	left: -210px;
	bottom: -230px;
	width: 430px;
	height: 430px;
	border: 70px solid var(--primary-color);
	border-radius: 50%;
	opacity: 0.055;
	pointer-events: none;
}

.evl-contato .container {
	position: relative;
	z-index: 1;
}

.evl-contato__info {
	max-width: 520px;
}

.evl-contato__tag {
	display: inline-flex;
	align-items: center;
	margin-bottom: 16px;
	color: var(--primary-color);
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.evl-contato__tag::before {
	content: "";
	display: inline-block;
	width: 34px;
	height: 2px;
	margin-right: 10px;
	background: var(--primary-color);
	border-radius: 999px;
}

.evl-contato h2 {
	margin: 0;
	color: var(--secondary-color);
	font-size: clamp(32px, 3.4vw, 48px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.045em;
}

.evl-contato h2 span {
	display: block;
	color: var(--primary-color);
}

.evl-contato__info>p {
	max-width: 500px;
	margin: 20px 0 0;
	color: #475569;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.72;
}

/* Telefones
** ----------------------------------------------- */
.evl-contato__telefones {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 32px;
}

.evl-contato__telefones a {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	width: 100%;
	padding: 16px;
	color: var(--secondary-color);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
	text-decoration: none;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
	transition:
		color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.evl-contato__telefones a:hover,
.evl-contato__telefones a:focus {
	color: var(--primary-color);
	text-decoration: none;
	border-color: rgba(233, 106, 36, 0.24);
	box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
	transform: translateY(-3px);
}

.evl-contato__telefone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	color: var(--primary-color);
	font-size: 17px;
	background: rgba(233, 106, 36, 0.12);
	border: 1px solid rgba(233, 106, 36, 0.18);
	border-radius: 999px;
}

.evl-contato__telefone-icon--whatsapp {
	color: #062713;
	background: #25d366;
	border-color: #25d366;
}

.evl-contato__telefone-text {
	display: block;
	min-width: 0;
	color: inherit;
	word-break: break-word;
}

.evl-contato__telefone-text strong {
	display: block;
	margin-bottom: 3px;
	color: inherit;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.evl-contato__email {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	max-width: 100%;
	margin-top: 20px;
	color: var(--secondary-color);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.4;
	text-decoration: none;
	transition:
		color 0.25s ease,
		transform 0.25s ease;
}

.evl-contato__email i {
	color: var(--primary-color);
	font-size: 18px;
}

.evl-contato__email:hover,
.evl-contato__email:focus {
	color: var(--primary-color);
	text-decoration: none;
	transform: translateX(4px);
}

.evl-contato__localizacao p {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
}

.evl-contato__localizacao {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	width: 100%;
	padding: 16px;
	color: var(--secondary-color);
	font-size: 14px;
	line-height: 1.35;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
	transition:
		color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.evl-contato__localizacao-text {
	display: block;
	min-width: 0;
	color: inherit;
	word-break: break-word;
}

.evl-contato__localizacao-text strong {
	display: block;
	margin-bottom: 3px;
	color: inherit;
	font-weight: 900;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}


/* Card do Formulário
** ----------------------------------------------- */
.evl-contato__form-card {
	position: relative;
	padding: 34px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 26px;
	box-shadow: 0 24px 58px rgba(15, 23, 42, 0.1);
	overflow: hidden;
}

.evl-contato__form-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--primary-color), #ff8a3a);
}

.evl-contato__form-head {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 24px;
}

.evl-contato__form-head>span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	color: var(--secondary-color);
	font-size: 19px;
	background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a3a 100%);
	border-radius: 16px;
	box-shadow: 0 14px 30px rgba(233, 106, 36, 0.22);
}

.evl-contato__form-head p {
	margin: 0 0 3px;
	color: var(--primary-color);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.evl-contato__form-head strong {
	display: block;
	color: var(--secondary-color);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

/* Formulário escopado
** ----------------------------------------------- */
.evl-contato__form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.evl-contato__form-scope .form-group {
	min-width: 0;
	margin-bottom: 0;
}

.evl-contato__field-full {
	grid-column: 1 / -1;
}

.evl-contato__form-scope .form-control {
	display: block;
	width: 100%;
	min-height: 52px;
	padding: 13px 15px;
	color: var(--secondary-color);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 14px;
	box-shadow: none;
	outline: none;
	transition:
		background-color 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.evl-contato__form-scope .form-control::placeholder {
	color: #8b97a8;
	opacity: 1;
}

.evl-contato__form-scope .form-control:focus {
	color: var(--secondary-color);
	background: #fff;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(233, 106, 36, 0.12);
}

.evl-contato__form-scope select.form-control {
	cursor: pointer;
	appearance: auto;
}

.evl-contato__form-scope textarea.form-control {
	min-height: 132px;
	resize: vertical;
}

.evl-contato__form-scope .btn-envia {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	min-height: 54px;
	padding: 16px 28px;
	color: var(--secondary-color);
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a3a 100%);
	border: 1px solid rgba(233, 106, 36, 0.72);
	border-radius: 999px;
	box-shadow: 0 18px 38px rgba(233, 106, 36, 0.22);
	cursor: pointer;
	transition:
		color 0.25s ease,
		background 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.evl-contato__form-scope .btn-envia:hover,
.evl-contato__form-scope .btn-envia:focus {
	color: #fff;
	background: var(--secondary-color);
	border-color: var(--secondary-color);
	transform: translateY(-3px);
	box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

/* Validação
** ----------------------------------------------- */
.evl-contato .invalid-feedback {
	margin-top: 6px;
	color: #dc3545;
	font-size: 12px;
	font-weight: 700;
}

.evl-contato .form-control.is-invalid {
	border-color: #dc3545;
}

.evl-contato .form-control.is-valid {
	border-color: #28a745;
}

/* Responsivo
** ----------------------------------------------- */
@media (max-width: 1199.98px) {
	.evl-contato {
		padding: 82px 0;
	}

	.evl-contato h2 {
		font-size: clamp(30px, 3.6vw, 44px);
	}

	.evl-contato__form-card {
		padding: 30px;
	}
}

@media (max-width: 991.98px) {
	.evl-contato {
		padding: 72px 0;
	}

	.evl-contato__info {
		max-width: 100%;
		margin-bottom: 42px;
	}

	.evl-contato__telefones {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 12px;
	}

	.evl-contato__telefones a {
		align-items: flex-start;
		flex-direction: column;
		padding: 16px;
	}
}

@media (max-width: 767.98px) {
	.evl-contato {
		padding: 62px 0;
	}

	.evl-contato h2 {
		font-size: clamp(28px, 8vw, 38px);
		line-height: 1.08;
	}

	.evl-contato__info>p {
		margin-top: 18px;
		font-size: 15px;
		line-height: 1.65;
	}

	.evl-contato__telefones {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 28px;
	}

	.evl-contato__telefones a {
		flex-direction: row;
		align-items: center;
	}

	.evl-contato__form-card {
		padding: 24px;
		border-radius: 22px;
	}

	.evl-contato__form-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.evl-contato__field-full {
		grid-column: auto;
	}
}

@media (max-width: 575.98px) {
	.evl-contato {
		padding: 54px 0;
	}

	.evl-contato__tag {
		font-size: 11px;
	}

	.evl-contato__tag::before {
		width: 28px;
	}

	.evl-contato h2 {
		font-size: clamp(27px, 8.8vw, 34px);
	}

	.evl-contato__telefones {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.evl-contato__telefones a {
		padding: 15px;
	}

	.evl-contato__telefone-icon {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.evl-contato__form-card {
		padding: 22px 18px;
		border-radius: 20px;
	}

	.evl-contato__form-head {
		align-items: flex-start;
		margin-bottom: 22px;
	}

	.evl-contato__form-head>span {
		width: 48px;
		height: 48px;
		border-radius: 15px;
	}

	.evl-contato__form-head strong {
		font-size: 20px;
	}

	.evl-contato__form-scope .form-control {
		min-height: 48px;
		padding: 12px 14px;
		font-size: 14px;
		border-radius: 12px;
	}

	.evl-contato__form-scope .btn-envia {
		min-height: 52px;
		padding: 15px 20px;
	}
}

@media (max-width: 420px) {
	.evl-contato {
		padding: 48px 0;
	}

	.evl-contato h2 {
		font-size: clamp(26px, 9.6vw, 32px);
	}

	.evl-contato__telefones a {
		padding: 14px;
		font-size: 13.5px;
	}

	.evl-contato__email {
		font-size: 13.5px;
	}

	.evl-contato__form-card {
		padding: 20px 16px;
	}
}

@media (max-width: 360px) {
	.evl-contato {
		padding: 44px 0;
	}

	.evl-contato h2 {
		font-size: 25px;
	}

	.evl-contato__info>p {
		font-size: 14px;
	}

	.evl-contato__form-card {
		padding: 18px 14px;
	}

	.evl-contato__form-head strong {
		font-size: 18px;
	}

	.evl-contato__form-scope .form-control {
		font-size: 13.5px;
	}

	.evl-contato__form-scope .btn-envia {
		min-height: 48px;
		font-size: 13.5px;
	}
}

@media (max-width: 300px) {
	.evl-contato {
		padding: 40px 0;
	}

	.evl-contato h2 {
		font-size: 23px;
	}

	.evl-contato__tag {
		font-size: 10px;
	}

	.evl-contato__telefones a {
		font-size: 13px;
	}

	.evl-contato__telefone-icon {
		width: 36px;
		height: 36px;
		font-size: 15px;
	}

	.evl-contato__form-scope .form-control {
		min-height: 46px;
		padding: 11px 12px;
		font-size: 13px;
	}

	.evl-contato__form-scope .btn-envia {
		min-height: 46px;
		padding: 13px 14px;
		font-size: 13px;
	}
}

/* =========================================
   EMPRESA - EVL PARA RAIO
========================================= */

.empresa-evl {
	position: relative;
	overflow: hidden;
	background: #f5f6f8;
}

.empresa-evl__about {
	position: relative;
	padding: 72px 0 46px;
}

.empresa-evl__about::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 38%;
	height: 100%;
	background: radial-gradient(circle at top left, rgba(233, 106, 36, 0.1), transparent 58%);
	pointer-events: none;
}

.empresa-evl__media {
	position: relative;
	padding-right: 18px;
}

.empresa-evl__image-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	background: #ddd;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.empresa-evl__image-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 24px;
	pointer-events: none;
}

.empresa-evl__image {
	display: block;
	width: 100%;
	min-height: 460px;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.empresa-evl__media:hover .empresa-evl__image {
	transform: scale(1.04);
}

.empresa-evl__floating-card {
	position: absolute;
	right: 0;
	bottom: 28px;
	max-width: 320px;
	padding: 18px 20px;
	border: 1px solid rgba(233, 106, 36, 0.24);
	border-radius: 18px;
	background: rgba(0, 0, 0, 0.88);
	color: #fff;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(8px);
}

.empresa-evl__floating-card span {
	display: block;
	margin-bottom: 6px;
	color: var(--primary-color);
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.empresa-evl__floating-card strong {
	display: block;
	color: #fff;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.5;
}

.empresa-evl__content {
	position: relative;
	padding-left: 0;
}

.empresa-evl__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	padding: 8px 14px;
	border: 1px solid rgba(233, 106, 36, 0.25);
	border-radius: 999px;
	background: rgba(233, 106, 36, 0.08);
	color: var(--primary-color);
	font-size: 0.74rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.empresa-evl__content h2 {
	max-width: 620px;
	margin: 0 0 18px;
	color: #111;
	font-size: clamp(1.85rem, 2.45vw, 2.55rem);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.025em;
}

.empresa-evl__section-head h2 {
	max-width: 760px;
	margin: 0 auto 16px;
	color: #fff;
	font-size: clamp(1.8rem, 2.35vw, 2.45rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.empresa-evl__cta-box h2 {
	max-width: 720px;
	margin: 0 0 16px;
	color: #fff;
	font-size: clamp(1.75rem, 2.25vw, 2.35rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.empresa-evl__content p,
.empresa-evl__section-head p,
.empresa-evl__cta-box p {
	margin: 0 0 16px;
	color: #555c66;
	font-size: 0.98rem;
	font-weight: 400;
	line-height: 1.78;
}

.empresa-evl__content p strong {
	color: #171717;
	font-weight: 700;
}

.empresa-evl__highlights {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 26px 0 30px;
}

.empresa-evl__highlight {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 76px;
	padding: 16px 18px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 16px;
	background: #fff;
	color: #111;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease;
}

.empresa-evl__highlight:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.empresa-evl__highlight i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border-radius: 12px;
	background: rgba(233, 106, 36, 0.12);
	color: var(--primary-color);
	font-size: 1rem;
	line-height: 1;
}

.empresa-evl__highlight span {
	display: block;
	color: #111;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.35;
}

.empresa-evl__actions,
.empresa-evl__cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.empresa-evl__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 24px;
	overflow: hidden;
	border: 1px solid transparent;
	border-radius: 9px;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition:
		transform 0.28s ease,
		color 0.28s ease,
		background 0.28s ease,
		border-color 0.28s ease,
		box-shadow 0.28s ease;
}

.empresa-evl__btn:hover,
.empresa-evl__btn:focus {
	text-decoration: none;
}

.empresa-evl__btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -85%;
	width: 55%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
	transform: skewX(-18deg);
	transition: left 0.65s ease;
}

.empresa-evl__btn:hover::before,
.empresa-evl__btn:focus::before {
	left: 130%;
}

.empresa-evl__btn--primary {
	background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a3e 100%);
	color: var(--secondary-color);
	box-shadow: 0 16px 36px rgba(233, 106, 36, 0.25);
}

.empresa-evl__btn--primary:hover,
.empresa-evl__btn--primary:focus {
	transform: translateY(-3px);
	color: var(--secondary-color);
	box-shadow: 0 22px 44px rgba(233, 106, 36, 0.32);
}

.empresa-evl__btn--outline {
	border-color: rgba(0, 0, 0, 0.1);
	background: #fff;
	color: #111;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.empresa-evl__btn--outline:hover,
.empresa-evl__btn--outline:focus {
	transform: translateY(-3px);
	border-color: rgba(233, 106, 36, 0.35);
	color: #111;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.empresa-evl__btn--dark {
	background: #111;
	color: #fff;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.empresa-evl__btn--dark:hover,
.empresa-evl__btn--dark:focus {
	transform: translateY(-3px);
	background: #1b1b1b;
	color: #fff;
}

.empresa-evl__numbers {
	margin-top: 30px;
}

.empresa-evl__number-card {
	height: 100%;
	padding: 20px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease;
}

.empresa-evl__number-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.empresa-evl__number-card strong {
	display: block;
	margin-bottom: 8px;
	color: #111;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
}

.empresa-evl__number-card span {
	display: block;
	color: #5d646e;
	font-size: 0.95rem;
	line-height: 1.68;
}

/* =========================================
   EQUIPE
========================================= */

.empresa-evl__team {
	position: relative;
	padding: 76px 0 72px;
	overflow: hidden;
	background: linear-gradient(180deg, #0d0d0f 0%, #131316 100%);
}

.empresa-evl__team::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -100px;
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(233, 106, 36, 0.16), transparent 68%);
	pointer-events: none;
}

.empresa-evl__section-head {
	max-width: 820px;
	margin: 0 auto 42px;
	text-align: center;
}

.empresa-evl__section-head p {
	max-width: 700px;
	margin-right: auto;
	margin-left: auto;
	color: rgba(255, 255, 255, 0.74);
}

.empresa-evl__team-card {
	position: relative;
	height: 100%;
	min-height: 370px;
	overflow: hidden;
	border-radius: 20px;
	background: #222;
	box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
	transition:
		transform 0.42s ease,
		box-shadow 0.42s ease;
}

.empresa-evl__team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 65px rgba(0, 0, 0, 0.3);
}

.empresa-evl__team-image,
.empresa-evl__team-image img {
	width: 100%;
	height: 100%;
}

.empresa-evl__team-image img {
	display: block;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.empresa-evl__team-card:hover .empresa-evl__team-image img {
	transform: scale(1.06);
}

.empresa-evl__team-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.24) 45%, rgba(0, 0, 0, 0.88) 100%);
}

.empresa-evl__team-content {
	position: absolute;
	right: 22px;
	bottom: 20px;
	left: 22px;
	z-index: 2;
}

.empresa-evl__team-content h3 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1.22;
}

.empresa-evl__team-content p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.92rem;
	line-height: 1.62;
}

/* =========================================
   CTA FINAL
========================================= */

.empresa-evl__cta {
	padding: 0 0 76px;
	background: #f5f6f8;
}

.empresa-evl__cta-box {
	position: relative;
	max-width: 1120px;
	margin: 0 auto;
	padding: 46px 48px;
	overflow: hidden;
	border-radius: 24px;
	background: linear-gradient(135deg, #0f0f11 0%, #1a1a1f 52%, #121212 100%);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.empresa-evl__cta-box::before {
	content: "";
	position: absolute;
	top: -70px;
	right: -90px;
	width: 260px;
	height: 260px;
	background: radial-gradient(circle, rgba(233, 106, 36, 0.22), transparent 70%);
	pointer-events: none;
}

.empresa-evl__cta-box p {
	max-width: 680px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.78);
}

.empresa-evl__cta-actions {
	justify-content: flex-end;
}

/* =========================================
   REVEAL
========================================= */

.js-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition:
		opacity 0.72s ease,
		transform 0.72s ease;
}

.js-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 1199.98px) {
	.empresa-evl__about {
		padding: 66px 0 42px;
	}

	.empresa-evl__image {
		min-height: 420px;
	}

	.empresa-evl__content h2,
	.empresa-evl__section-head h2,
	.empresa-evl__cta-box h2 {
		font-size: clamp(1.7rem, 2.6vw, 2.2rem);
	}

	.empresa-evl__team-card {
		min-height: 350px;
	}
}

@media (max-width: 991.98px) {
	.empresa-evl__about {
		padding: 60px 0 36px;
	}

	.empresa-evl__team {
		padding: 66px 0 60px;
	}

	.empresa-evl__cta {
		padding-bottom: 64px;
	}

	.empresa-evl__media {
		padding-right: 0;
	}

	.empresa-evl__image {
		min-height: 380px;
	}

	.empresa-evl__content {
		margin-top: 26px;
	}

	.empresa-evl__content h2 {
		max-width: 100%;
	}

	.empresa-evl__floating-card {
		right: 18px;
		bottom: 18px;
		max-width: 290px;
	}

	.empresa-evl__cta-box {
		padding: 38px 34px;
	}

	.empresa-evl__cta-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 767.98px) {
	.empresa-evl__about {
		padding: 48px 0 30px;
	}

	.empresa-evl__team {
		padding: 56px 0 52px;
	}

	.empresa-evl__cta {
		padding-bottom: 52px;
	}

	.empresa-evl__image {
		min-height: 300px;
	}

	.empresa-evl__floating-card {
		position: relative;
		right: auto;
		bottom: auto;
		max-width: 100%;
		margin-top: 16px;
		padding: 16px;
	}

	.empresa-evl__content h2,
	.empresa-evl__section-head h2,
	.empresa-evl__cta-box h2 {
		font-size: 1.55rem;
		line-height: 1.24;
		letter-spacing: -0.018em;
	}

	.empresa-evl__content p,
	.empresa-evl__section-head p,
	.empresa-evl__cta-box p {
		font-size: 0.94rem;
		line-height: 1.72;
	}

	.empresa-evl__highlights {
		grid-template-columns: 1fr;
		margin: 22px 0 26px;
	}

	.empresa-evl__highlight {
		min-height: auto;
		padding: 14px 16px;
	}

	.empresa-evl__actions,
	.empresa-evl__cta-actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.empresa-evl__btn {
		width: 100%;
		min-height: 50px;
	}

	.empresa-evl__team-card {
		min-height: 320px;
	}

	.empresa-evl__team-content {
		right: 18px;
		bottom: 18px;
		left: 18px;
	}

	.empresa-evl__team-content h3 {
		font-size: 1.12rem;
	}

	.empresa-evl__team-content p {
		font-size: 0.88rem;
	}

	.empresa-evl__cta-box {
		padding: 30px 22px;
		border-radius: 20px;
	}
}

@media (max-width: 575.98px) {
	.empresa-evl__about {
		padding-top: 42px;
	}

	.empresa-evl__eyebrow {
		font-size: 0.68rem;
		letter-spacing: 0.06em;
	}

	.empresa-evl__content h2,
	.empresa-evl__section-head h2,
	.empresa-evl__cta-box h2 {
		font-size: 1.42rem;
	}

	.empresa-evl__image {
		min-height: 260px;
	}

	.empresa-evl__number-card {
		padding: 18px;
		border-radius: 16px;
	}

	.empresa-evl__team-card {
		min-height: 300px;
	}
}

@media (prefers-reduced-motion: reduce) {

	.empresa-evl__image,
	.empresa-evl__highlight,
	.empresa-evl__number-card,
	.empresa-evl__team-card,
	.empresa-evl__team-image img,
	.empresa-evl__btn,
	.empresa-evl__btn::before,
	.js-reveal {
		transition: none;
	}

	.js-reveal {
		opacity: 1;
		transform: none;
	}
}

.empresa-evl__cta {
	padding: 30px 0;
}

/* =========================================
   SERVIÇOS - EVL PARA RAIO
========================================= */

.servicos-evl {
	position: relative;
	padding: 76px 0 82px;
	overflow: hidden;
	background:
		radial-gradient(circle at top left, rgba(233, 106, 36, 0.08), transparent 34%),
		linear-gradient(180deg, #f5f6f8 0%, #ffffff 100%);
}

.servicos-evl::before {
	content: "";
	position: absolute;
	top: 90px;
	right: -160px;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(233, 106, 36, 0.12), transparent 70%);
	pointer-events: none;
}

.servicos-evl__head {
	position: relative;
	z-index: 2;
	max-width: 820px;
	margin: 0 auto 44px;
	text-align: center;
}

.servicos-evl__tag {
	display: inline-flex;
	align-items: center;
	margin-bottom: 16px;
	padding: 8px 15px;
	border: 1px solid rgba(233, 106, 36, 0.25);
	border-radius: 999px;
	background: rgba(233, 106, 36, 0.08);
	color: var(--primary-color);
	font-size: 0.74rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.servicos-evl__head h2 {
	max-width: 760px;
	margin: 0 auto 16px;
	color: #111;
	font-size: clamp(1.9rem, 2.65vw, 2.75rem);
	font-weight: 800;
	line-height: 1.16;
	letter-spacing: -0.028em;
}

.servicos-evl__head p {
	max-width: 720px;
	margin: 0 auto;
	color: #5b626c;
	font-size: 0.98rem;
	line-height: 1.8;
}

.servicos-evl__card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.07);
	transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.servicos-evl__card:hover {
	transform: translateY(-8px);
	border-color: rgba(233, 106, 36, 0.26);
	box-shadow: 0 24px 58px rgba(0, 0, 0, 0.11);
}

.servicos-evl__image-link {
	position: relative;
	display: block;
	height: 245px;
	overflow: hidden;
	background: #111;
}

.servicos-evl__image-link::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.38) 100%),
		radial-gradient(circle at 78% 22%, rgba(233, 106, 36, 0.22), transparent 34%);
	pointer-events: none;
}

.servicos-evl__image {
	display: block;
	width: 100%;
	height: 245px;
	object-fit: cover;
	transition: transform 0.75s ease;
}

.servicos-evl__card:hover .servicos-evl__image {
	transform: scale(1.06);
}

.servicos-evl__content {
	position: relative;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 28px 26px 26px;
}

.servicos-evl__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 18px;
	border-radius: 13px;
	background: rgba(233, 106, 36, 0.12);
	color: var(--primary-color);
	box-shadow: inset 0 0 0 1px rgba(233, 106, 36, 0.12);
}

.servicos-evl__icon i {
	font-size: 1.05rem;
	line-height: 1;
}

.servicos-evl__content h3 {
	margin: 0 0 12px;
	color: #111;
	font-size: 1.24rem;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.018em;
}

.servicos-evl__content h3 a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

.servicos-evl__content h3 a:hover,
.servicos-evl__content h3 a:focus {
	color: var(--primary-color);
	text-decoration: none;
}

.servicos-evl__content p {
	margin: 0 0 24px;
	color: #5d646e;
	font-size: 0.94rem;
	line-height: 1.72;
}

.servicos-evl__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: fit-content;
	min-height: 48px;
	margin-top: auto;
	padding: 0 22px;
	overflow: hidden;
	border: 1px solid rgba(233, 106, 36, 0.45);
	border-radius: 9px;
	background: rgba(233, 106, 36, 0.08);
	color: var(--primary-color);
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.servicos-evl__btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -85%;
	width: 55%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
	transform: skewX(-18deg);
	transition: left 0.62s ease;
}

.servicos-evl__btn:hover::before,
.servicos-evl__btn:focus::before {
	left: 130%;
}

.servicos-evl__btn:hover,
.servicos-evl__btn:focus {
	transform: translateY(-2px);
	background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a3e 100%);
	color: var(--secondary-color);
	text-decoration: none;
	box-shadow: 0 15px 34px rgba(233, 106, 36, 0.25);
}

.js-servicos-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.72s ease, transform 0.72s ease;
}

.js-servicos-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1199.98px) {
	.servicos-evl {
		padding: 68px 0 74px;
	}

	.servicos-evl__image-link,
	.servicos-evl__image {
		height: 225px;
	}

	.servicos-evl__content {
		padding: 25px 23px 24px;
	}
}

@media (max-width: 991.98px) {
	.servicos-evl {
		padding: 60px 0 66px;
	}

	.servicos-evl__head {
		margin-bottom: 36px;
	}

	.servicos-evl__head h2 {
		font-size: clamp(1.75rem, 4vw, 2.25rem);
	}

	.servicos-evl__image-link,
	.servicos-evl__image {
		height: 235px;
	}
}

@media (max-width: 767.98px) {
	.servicos-evl {
		padding: 48px 0 54px;
	}

	.servicos-evl__head {
		margin-bottom: 30px;
		text-align: left;
	}

	.servicos-evl__tag {
		font-size: 0.68rem;
		letter-spacing: 0.06em;
	}

	.servicos-evl__head h2 {
		margin-right: 0;
		margin-left: 0;
		font-size: 1.55rem;
		line-height: 1.22;
	}

	.servicos-evl__head p {
		margin-right: 0;
		margin-left: 0;
		font-size: 0.94rem;
		line-height: 1.72;
	}

	.servicos-evl__card {
		border-radius: 18px;
	}

	.servicos-evl__image-link,
	.servicos-evl__image {
		height: 220px;
	}

	.servicos-evl__content {
		padding: 23px 20px 22px;
	}

	.servicos-evl__content h3 {
		font-size: 1.12rem;
	}

	.servicos-evl__content p {
		font-size: 0.92rem;
	}

	.servicos-evl__btn {
		width: 100%;
	}
}

@media (max-width: 575.98px) {
	.servicos-evl {
		padding: 42px 0 48px;
	}

	.servicos-evl__image-link,
	.servicos-evl__image {
		height: 205px;
	}

	.servicos-evl__icon {
		width: 42px;
		height: 42px;
		margin-bottom: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {

	.servicos-evl__card,
	.servicos-evl__image,
	.servicos-evl__btn,
	.servicos-evl__btn::before,
	.js-servicos-reveal {
		transition: none;
	}

	.js-servicos-reveal {
		opacity: 1;
		transform: none;
	}
}

/* =========================================
   SIDEBAR SERVIÇOS - EVL PARA RAIO
========================================= */

.evl-sidebar-servicos {
	position: sticky;
	top: 120px;
	display: block;
}

.evl-sidebar-servicos__box {
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.evl-sidebar-servicos__box+.evl-sidebar-servicos__box {
	margin-top: 22px;
}

.evl-sidebar-servicos__box--menu {
	padding: 26px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	background: #fff;
}

.evl-sidebar-servicos__box--cta {
	padding: 28px 26px;
	border: 1px solid rgba(233, 106, 36, 0.18);
	background:
		radial-gradient(circle at top right, rgba(233, 106, 36, 0.22), transparent 42%),
		linear-gradient(135deg, #0f0f11 0%, #1a1a1f 52%, #111 100%);
	color: #fff;
}

.evl-sidebar-servicos__tag {
	display: inline-flex;
	align-items: center;
	margin-bottom: 14px;
	padding: 7px 13px;
	border: 1px solid rgba(233, 106, 36, 0.28);
	border-radius: 999px;
	background: rgba(233, 106, 36, 0.08);
	color: var(--primary-color);
	font-size: 0.68rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.evl-sidebar-servicos h2 {
	margin: 0 0 20px;
	color: #111;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: -0.02em;
}

.evl-sidebar-servicos__box--cta h2 {
	margin-bottom: 14px;
	color: #fff;
	font-size: 1.42rem;
}

.evl-sidebar-servicos__box--cta p {
	margin: 0 0 22px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.94rem;
	line-height: 1.72;
}

.evl-sidebar-servicos__nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.evl-sidebar-servicos__nav li+li {
	margin-top: 9px;
}

.evl-sidebar-servicos__nav a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 58px;
	padding: 10px 12px;
	overflow: hidden;
	border: 1px solid transparent;
	border-radius: 14px;
	background: #f6f7f9;
	color: #171717;
	text-decoration: none;
	transition: background 0.26s ease, border-color 0.26s ease, transform 0.26s ease, box-shadow 0.26s ease, color 0.26s ease;
}

.evl-sidebar-servicos__nav a::before {
	content: "";
	position: absolute;
	top: 0;
	left: -90%;
	width: 55%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
	transform: skewX(-18deg);
	transition: left 0.62s ease;
}

.evl-sidebar-servicos__nav a:hover::before,
.evl-sidebar-servicos__nav a:focus::before,
.evl-sidebar-servicos__nav a.is-active::before {
	left: 130%;
}

.evl-sidebar-servicos__nav a:hover,
.evl-sidebar-servicos__nav a:focus {
	border-color: rgba(233, 106, 36, 0.22);
	background: rgba(233, 106, 36, 0.08);
	color: #111;
	text-decoration: none;
	transform: translateX(3px);
}

.evl-sidebar-servicos__nav a.is-active {
	border-color: rgba(233, 106, 36, 0.42);
	background: linear-gradient(135deg, rgba(233, 106, 36, 0.16) 0%, rgba(233, 106, 36, 0.08) 100%);
	color: #111;
	box-shadow: inset 4px 0 0 var(--primary-color), 0 12px 28px rgba(233, 106, 36, 0.12);
}

.evl-sidebar-servicos__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	border-radius: 11px;
	background: rgba(233, 106, 36, 0.12);
	color: var(--primary-color);
	font-size: 0.95rem;
}

.evl-sidebar-servicos__name {
	display: block;
	flex: 1;
	color: inherit;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.32;
}

.evl-sidebar-servicos__current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 8px;
	border-radius: 999px;
	background: var(--primary-color);
	color: var(--secondary-color);
	font-size: 0.62rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.evl-sidebar-servicos__actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 11px;
}

.evl-sidebar-servicos__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 50px;
	padding: 0 18px;
	overflow: hidden;
	border: 1px solid transparent;
	border-radius: 9px;
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform 0.26s ease, box-shadow 0.26s ease, background 0.26s ease, color 0.26s ease;
}

.evl-sidebar-servicos__btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -85%;
	width: 55%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.30), transparent);
	transform: skewX(-18deg);
	transition: left 0.62s ease;
}

.evl-sidebar-servicos__btn:hover::before,
.evl-sidebar-servicos__btn:focus::before {
	left: 130%;
}

.evl-sidebar-servicos__btn:hover,
.evl-sidebar-servicos__btn:focus {
	text-decoration: none;
	transform: translateY(-2px);
}

.evl-sidebar-servicos__btn--primary {
	background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a3e 100%);
	color: var(--secondary-color);
	box-shadow: 0 15px 34px rgba(233, 106, 36, 0.28);
}

.evl-sidebar-servicos__btn--primary:hover,
.evl-sidebar-servicos__btn--primary:focus {
	color: var(--secondary-color);
	box-shadow: 0 20px 42px rgba(233, 106, 36, 0.38);
}

.evl-sidebar-servicos__btn--whatsapp {
	border-color: rgba(37, 211, 102, 0.36);
	background: rgba(37, 211, 102, 0.10);
	color: #fff;
}

.evl-sidebar-servicos__btn--whatsapp:hover,
.evl-sidebar-servicos__btn--whatsapp:focus {
	background: #25d366;
	color: #062713;
	box-shadow: 0 18px 38px rgba(37, 211, 102, 0.28);
}

/* Responsivo */

@media (max-width: 991.98px) {
	.evl-sidebar-servicos {
		position: relative;
		top: auto;
		margin-top: 34px;
	}

	.evl-sidebar-servicos__box--menu,
	.evl-sidebar-servicos__box--cta {
		padding: 24px;
		border-radius: 20px;
	}

	.evl-sidebar-servicos__nav ul {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.evl-sidebar-servicos__nav li+li {
		margin-top: 0;
	}

	.evl-sidebar-servicos__nav a {
		height: 100%;
	}
}

@media (max-width: 767.98px) {
	.evl-sidebar-servicos {
		margin-top: 28px;
	}

	.evl-sidebar-servicos h2,
	.evl-sidebar-servicos__box--cta h2 {
		font-size: 1.22rem;
	}

	.evl-sidebar-servicos__nav ul {
		grid-template-columns: 1fr;
	}

	.evl-sidebar-servicos__nav a {
		min-height: 54px;
	}

	.evl-sidebar-servicos__box--menu,
	.evl-sidebar-servicos__box--cta {
		padding: 20px;
		border-radius: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {

	.evl-sidebar-servicos__nav a,
	.evl-sidebar-servicos__nav a::before,
	.evl-sidebar-servicos__btn,
	.evl-sidebar-servicos__btn::before {
		transition: none;
	}
}


.sidebar-titulos {
	color: #fff !important;
}


/* =========================================
   PÁGINA INTERNA DE SERVIÇO - EVL
========================================= */

.servico-detalhe {
	position: relative;
	padding: 76px 0 84px;
	overflow: hidden;
	background:
		radial-gradient(circle at top left, rgba(233, 106, 36, 0.08), transparent 34%),
		linear-gradient(180deg, #f5f6f8 0%, #ffffff 100%);
}

.servico-detalhe::before {
	content: "";
	position: absolute;
	top: 120px;
	right: -180px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(233, 106, 36, 0.12), transparent 70%);
	pointer-events: none;
}

.servico-detalhe__main {
	position: relative;
	z-index: 2;
}

.servico-detalhe__hero {
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 26px;
	background: #fff;
	box-shadow: 0 22px 58px rgba(0, 0, 0, 0.08);
}

.servico-detalhe__hero-image {
	position: relative;
	overflow: hidden;
	background: #111;
}

.servico-detalhe__hero-image::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.34) 100%),
		radial-gradient(circle at 82% 20%, rgba(233, 106, 36, 0.20), transparent 34%);
	pointer-events: none;
}

.servico-detalhe__hero-image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.servico-detalhe__hero-content {
	padding: 34px 36px 38px;
}

.servico-detalhe__tag,
.servico-detalhe__mini-title {
	display: inline-flex;
	align-items: center;
	margin-bottom: 15px;
	padding: 8px 14px;
	border: 1px solid rgba(233, 106, 36, 0.25);
	border-radius: 999px;
	background: rgba(233, 106, 36, 0.08);
	color: var(--primary-color);
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.servico-detalhe h2 {
	margin: 0 0 16px;
	color: #111;
	font-size: clamp(1.65rem, 2.35vw, 2.0rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.servico-detalhe h3 {
	margin: 0 0 10px;
	color: #111;
	font-size: 1.08rem;
	font-weight: 800;
	line-height: 1.28;
}

.servico-detalhe p {
	margin: 0 0 16px;
	color: #5d646e;
	font-size: 0.98rem;
	line-height: 1.78;
}

.servico-detalhe p strong {
	color: #171717;
	font-weight: 700;
}

.servico-detalhe__section {
	margin-top: 28px;
	padding: 34px 36px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}

.servico-detalhe__section--dark {
	position: relative;
	background:
		radial-gradient(circle at top right, rgba(233, 106, 36, 0.18), transparent 44%),
		linear-gradient(135deg, #0f0f11 0%, #1a1a1f 52%, #111 100%);
	color: #fff;
}

.servico-detalhe__section--dark h2,
.servico-detalhe__section--dark h3 {
	color: #fff;
}

.servico-detalhe__section--dark p {
	color: rgba(255, 255, 255, 0.76);
}

.servico-detalhe__check-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 26px;
}

.servico-detalhe__check {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-height: 78px;
	padding: 17px 18px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 16px;
	background: #f7f8fa;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.servico-detalhe__check:hover {
	transform: translateY(-4px);
	border-color: rgba(233, 106, 36, 0.24);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.servico-detalhe__check i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	border-radius: 10px;
	background: rgba(233, 106, 36, 0.12);
	color: var(--primary-color);
	font-size: 0.84rem;
	line-height: 1;
}

.servico-detalhe__check span {
	display: block;
	color: #333943;
	font-size: 0.94rem;
	font-weight: 600;
	line-height: 1.52;
}

.servico-detalhe__info-card {
	padding: 24px;
	border: 1px solid rgba(233, 106, 36, 0.24);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.06);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.servico-detalhe__info-card strong {
	display: block;
	margin-bottom: 10px;
	color: var(--primary-color);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.servico-detalhe__info-card span {
	display: block;
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.96rem;
	line-height: 1.72;
}

.servico-detalhe__steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 26px;
}

.servico-detalhe__step {
	position: relative;
	padding: 24px 22px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 18px;
	background: #f7f8fa;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.servico-detalhe__step:hover {
	transform: translateY(-5px);
	border-color: rgba(233, 106, 36, 0.24);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.servico-detalhe__step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 16px;
	border-radius: 12px;
	background: rgba(233, 106, 36, 0.12);
	color: var(--primary-color);
	font-size: 0.86rem;
	font-weight: 900;
	line-height: 1;
}

.servico-detalhe__step p {
	margin-bottom: 0;
	font-size: 0.93rem;
	line-height: 1.68;
}

.servico-detalhe__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 28px;
	padding: 36px;
	overflow: hidden;
	border-radius: 24px;
	background:
		radial-gradient(circle at top right, rgba(233, 106, 36, 0.22), transparent 42%),
		linear-gradient(135deg, #0f0f11 0%, #1a1a1f 52%, #111 100%);
	color: #fff;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.servico-detalhe__cta-content {
	max-width: 400px;
}

.servico-detalhe__cta h2 {
	color: #fff;
}

.servico-detalhe__cta p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.76);
}

.servico-detalhe__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 24px;
	overflow: hidden;
	border: 1px solid rgba(233, 106, 36, 0.64);
	border-radius: 9px;
	background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a3e 100%);
	color: var(--secondary-color);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 15px 34px rgba(233, 106, 36, 0.28);
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.servico-detalhe__btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -85%;
	width: 55%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.30), transparent);
	transform: skewX(-18deg);
	transition: left 0.62s ease;
}

.servico-detalhe__btn:hover::before,
.servico-detalhe__btn:focus::before {
	left: 130%;
}

.servico-detalhe__btn:hover,
.servico-detalhe__btn:focus {
	transform: translateY(-3px);
	color: var(--secondary-color);
	text-decoration: none;
	box-shadow: 0 20px 42px rgba(233, 106, 36, 0.38);
}

/* Reveal */

.js-servico-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.72s ease, transform 0.72s ease;
}

.js-servico-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsivo */

@media (max-width: 1199.98px) {
	.servico-detalhe {
		padding: 68px 0 76px;
	}

	.servico-detalhe__hero-image img {
		height: 380px;
	}

	.servico-detalhe__hero-content,
	.servico-detalhe__section,
	.servico-detalhe__cta {
		padding: 30px;
	}
}

@media (max-width: 991.98px) {
	.servico-detalhe {
		padding: 60px 0 66px;
	}

	.servico-detalhe__hero-image img {
		height: 350px;
	}

	.servico-detalhe__cta {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 767.98px) {
	.servico-detalhe {
		padding: 48px 0 54px;
	}

	.servico-detalhe__hero,
	.servico-detalhe__section,
	.servico-detalhe__cta {
		border-radius: 20px;
	}

	.servico-detalhe__hero-image img {
		height: 280px;
	}

	.servico-detalhe__hero-content,
	.servico-detalhe__section,
	.servico-detalhe__cta {
		padding: 24px 20px;
	}

	.servico-detalhe h2 {
		font-size: 1.48rem;
		line-height: 1.25;
	}

	.servico-detalhe p {
		font-size: 0.94rem;
		line-height: 1.72;
	}

	.servico-detalhe__check-grid,
	.servico-detalhe__steps {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.servico-detalhe__check {
		min-height: auto;
	}

	.servico-detalhe__btn {
		width: 100%;
	}
}

@media (max-width: 575.98px) {
	.servico-detalhe {
		padding: 42px 0 48px;
	}

	.servico-detalhe__hero-image img {
		height: 240px;
	}

	.servico-detalhe__tag,
	.servico-detalhe__mini-title {
		font-size: 0.66rem;
		letter-spacing: 0.06em;
	}

	.servico-detalhe h2 {
		font-size: 1.36rem;
	}
}

@media (prefers-reduced-motion: reduce) {

	.servico-detalhe__check,
	.servico-detalhe__step,
	.servico-detalhe__btn,
	.servico-detalhe__btn::before,
	.js-servico-reveal {
		transition: none;
	}

	.js-servico-reveal {
		opacity: 1;
		transform: none;
	}
}

/* =========================================
   GALERIA - EVL PARA RAIO
========================================= */

.galeria-evl {
	position: relative;
	padding: 76px 0 82px;
	overflow: hidden;
	background:
		radial-gradient(circle at top left, rgba(233, 106, 36, 0.08), transparent 34%),
		linear-gradient(180deg, #f5f6f8 0%, #ffffff 100%);
}

.galeria-evl::before {
	content: "";
	position: absolute;
	top: 90px;
	right: -160px;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(233, 106, 36, 0.12), transparent 70%);
	pointer-events: none;
}

.galeria-evl__head {
	position: relative;
	z-index: 2;
	max-width: 820px;
	margin: 0 auto 32px;
	text-align: center;
}

.galeria-evl__tag {
	display: inline-flex;
	align-items: center;
	margin-bottom: 16px;
	padding: 8px 15px;
	border: 1px solid rgba(233, 106, 36, 0.25);
	border-radius: 999px;
	background: rgba(233, 106, 36, 0.08);
	color: var(--primary-color);
	font-size: 0.74rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.galeria-evl__head h2 {
	max-width: 760px;
	margin: 0 auto 16px;
	color: #111;
	font-size: clamp(1.9rem, 2.65vw, 2.75rem);
	font-weight: 800;
	line-height: 1.16;
	letter-spacing: -0.028em;
}

.galeria-evl__head p {
	max-width: 720px;
	margin: 0 auto;
	color: #5b626c;
	font-size: 0.98rem;
	line-height: 1.8;
}

.galeria-evl__filters {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 11px;
	margin-bottom: 38px;
}

.galeria-evl__filter {
	min-height: 46px;
	padding: 0 22px;
	border: 1px solid rgba(233, 106, 36, 0.22);
	border-radius: 999px;
	background: #fff;
	color: #111;
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
	transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.galeria-evl__filter:hover,
.galeria-evl__filter:focus {
	transform: translateY(-2px);
	outline: none;
}

.galeria-evl__filter.is-active {
	background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a3e 100%);
	color: var(--secondary-color);
	box-shadow: 0 15px 34px rgba(233, 106, 36, 0.24);
}

.galeria-evl__grid {
	position: relative;
	z-index: 2;
}

.galeria-evl__item.is-hidden {
	display: none;
}

.galeria-evl__card {
	position: relative;
	height: 100%;
	overflow: hidden;
	border-radius: 18px;
	background: #111;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.10);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.galeria-evl__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 62px rgba(0, 0, 0, 0.16);
}

.galeria-evl__open {
	position: relative;
	display: block;
	width: 100%;
	height: 300px;
	padding: 0;
	overflow: hidden;
	border: 0;
	background: #111;
	cursor: pointer;
}

.galeria-evl__open img,
.galeria-evl__card video {
	display: block;
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.galeria-evl__open img {
	transition: transform 0.75s ease, filter 0.35s ease;
}

.galeria-evl__card:hover .galeria-evl__open img {
	transform: scale(1.06);
	filter: brightness(0.82);
}

.galeria-evl__card video {
	background: #111;
}

.galeria-evl__zoom {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--secondary-color);
	background: rgba(0, 0, 0, 0.20);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.galeria-evl__zoom i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--primary-color);
	box-shadow: 0 16px 36px rgba(233, 106, 36, 0.32);
}

.galeria-evl__card:hover .galeria-evl__zoom {
	opacity: 1;
}

/* Lightbox */

.galeria-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 28px;
}

.galeria-lightbox.is-open {
	display: flex;
}

.galeria-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.84);
	backdrop-filter: blur(8px);
}

.galeria-lightbox__dialog {
	position: relative;
	z-index: 2;
	width: min(1080px, 100%);
	max-height: calc(100vh - 56px);
	overflow: hidden;
	border: 1px solid rgba(233, 106, 36, 0.24);
	border-radius: 22px;
	background: #111;
	color: #fff;
	box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
}

.galeria-lightbox__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: var(--primary-color);
	color: var(--secondary-color);
	cursor: pointer;
	box-shadow: 0 12px 28px rgba(233, 106, 36, 0.28);
}

.galeria-lightbox__media {
	background: #000;
}

.galeria-lightbox__media img {
	display: block;
	width: 100%;
	max-height: 86vh;
	object-fit: contain;
	background: #000;
}

.galeria-lightbox-open {
	overflow: hidden;
}

/* Reveal */

.js-galeria-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.72s ease, transform 0.72s ease;
}

.js-galeria-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsivo */

@media (max-width: 1199.98px) {
	.galeria-evl {
		padding: 68px 0 74px;
	}

	.galeria-evl__open,
	.galeria-evl__open img,
	.galeria-evl__card video {
		height: 280px;
	}
}

@media (max-width: 991.98px) {
	.galeria-evl {
		padding: 60px 0 66px;
	}

	.galeria-evl__head h2 {
		font-size: clamp(1.75rem, 4vw, 2.25rem);
	}
}

@media (max-width: 767.98px) {
	.galeria-evl {
		padding: 48px 0 54px;
	}

	.galeria-evl__head {
		text-align: left;
	}

	.galeria-evl__tag {
		font-size: 0.68rem;
		letter-spacing: 0.06em;
	}

	.galeria-evl__head h2 {
		margin-right: 0;
		margin-left: 0;
		font-size: 1.55rem;
		line-height: 1.22;
	}

	.galeria-evl__head p {
		margin-right: 0;
		margin-left: 0;
		font-size: 0.94rem;
		line-height: 1.72;
	}

	.galeria-evl__filters {
		justify-content: flex-start;
		margin-bottom: 30px;
	}

	.galeria-evl__filter {
		min-height: 44px;
		padding: 0 18px;
		font-size: 0.84rem;
	}

	.galeria-evl__open,
	.galeria-evl__open img,
	.galeria-evl__card video {
		height: 250px;
	}

	.galeria-lightbox {
		padding: 16px;
	}

	.galeria-lightbox__dialog {
		border-radius: 18px;
	}
}

@media (max-width: 575.98px) {
	.galeria-evl {
		padding: 42px 0 48px;
	}

	.galeria-evl__open,
	.galeria-evl__open img,
	.galeria-evl__card video {
		height: 230px;
	}
}

@media (prefers-reduced-motion: reduce) {

	.galeria-evl__card,
	.galeria-evl__open img,
	.galeria-evl__filter,
	.galeria-evl__zoom,
	.js-galeria-reveal {
		transition: none;
	}

	.js-galeria-reveal {
		opacity: 1;
		transform: none;
	}
}


.imagens__item {
	width: 100%;
	height: 140px;
	display: block;
	margin-bottom: 10px;
}

.imagens__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid var(--primary-color);
	transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.imagens__item img:hover {
	transform: scale(1.04);
}
