/* Default
** ----------------------------------------------- */
:root {
	--primary-color: #005180;
	--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 !important;
	--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);
}

html.is-custom-scrolling {
	scroll-behavior: auto !important;
}

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: rgba(255, 255, 255, 0.96);
	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(255, 255, 255, 0.92);
	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-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 picture,
.menu-lateral__logo picture {
	display: contents;
}

.site-header__brand img {
	display: block;
	width: 100%;
	max-width: 140px;
	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);
}

/* 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: var(--header-text);
	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(15, 23, 42, 0.48);
	opacity: 0;
	backdrop-filter: blur(4px);
	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(390px, 88vw);
	background: #fff;
	box-shadow: -20px 0 50px rgba(15, 23, 42, 0.18);
	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: 16px;
	padding: 18px 20px;
	background: #fff;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

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

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

.menu-lateral__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	color: #fff;
	background: var(--primary-color);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transition:
		background-color 0.25s ease,
		transform 0.25s ease;
}

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

.menu-lateral__nav {
	padding: 14px 14px 24px;
}

.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%;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.menu-lateral .site-nav__link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	min-height: 50px;
	padding: 15px 56px 15px 4px;
	color: var(--header-text);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	white-space: normal;
}

.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: var(--primary-color);
	text-decoration: none;
}

.menu-lateral .site-nav__submenu-button {
	position: absolute;
	top: 8px;
	right: 0;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: var(--primary-color);
	background: #f5f5f5;
	border: 0;
	border-radius: 999px;
	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: var(--primary-color);
}

.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: 360px;
	padding: 0 0 14px 0;
	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 12px;
	color: #475569;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	text-decoration: none;
	white-space: normal;
	background: #f8fafc;
	border-radius: 10px;
	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: var(--primary-color);
	text-decoration: none;
	transform: none;
}

/* 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: 0.6fr 1fr auto;
		gap: 0;
	}

	.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__grid {
		grid-template-columns: 1fr auto;
		min-height: var(--site-header-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) {
	.site-header__brand img {
		max-width: 170px;
	}

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

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

	.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: 360px !important;
		padding: 0 0 14px 0 !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: #475569 !important;
		font-size: 14px !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: #f8fafc !important;
		border: 1px solid rgba(15, 23, 42, 0.05) !important;
		border-radius: 10px !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: var(--primary-color) !important;
		border-color: var(--primary-color) !important;
		text-decoration: none !important;
		transform: none !important;
	}

	.menu-lateral .site-nav__submenu-button {
		position: absolute !important;
		top: 8px !important;
		right: 0 !important;
		z-index: 5 !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 42px !important;
		height: 42px !important;
		color: var(--primary-color) !important;
		background: #f5f5f5 !important;
		border: 0 !important;
		border-radius: 999px !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;
}

/* Botboox (pop-up de formulários)
** ----------------------------------------------- */
.bootbox-body h3 {
	font-size: 20px;
	text-align: center;
	color: #28a745;
}

button.btn.btn-primary.bootbox-accept:hover,
button.btn.btn-primary.bootbox-accept:active,
button.btn.btn-primary.bootbox-accept:focus {
	background: #28a745;
	transition: 0.3s all;
}

/* 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: bold;
	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: cover;
	background: #f8fafc;
	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(15px, 3vw, 10px);
	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
** ----------------------------------------------- */
.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: #15803d;
	color: #fff;
}

.bootbox .modal-dialog {
	width: auto;
	max-width: 460px;
	margin: 1.75rem auto;
	padding: 0 14px;
}

.bootbox .modal-content {
	border: 0;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 28px 80px rgba(2, 11, 20, 0.34);
}

.bootbox .modal-body {
	padding: 32px 28px 18px;
}

.bootbox-body h3 {
	margin: 0;
	color: #15803d;
	font-size: 1.3rem;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
}

.bootbox .modal-footer {
	padding: 0 28px 28px;
	border-top: 0;
}

.bootbox .modal-footer .btn {
	min-height: 48px;
	border-radius: 12px;
	font-weight: 800;
}

.bootbox .modal-footer .btn-success,
.bootbox .modal-footer .btn-success:hover,
.bootbox .modal-footer .btn-success:focus {
	border-color: #15803d;
	background: #15803d;
	color: #fff;
}

@media (max-width: 575.98px) {
	.bootbox .modal-dialog {
		margin: 0.75rem auto;
	}

	.bootbox .modal-body {
		padding: 26px 20px 16px;
	}

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

.back-to-top {
	position: fixed;
	right: 22px;
	bottom: 104px;
	z-index: 98;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(14px) scale(0.92);
	background: linear-gradient(145deg, #0ca5ee 0%, #005180 100%);
	color: #fff;
	box-shadow: 0 16px 36px rgba(0, 81, 128, 0.34);
	transition:
		opacity 0.28s ease,
		visibility 0.28s ease,
		transform 0.28s ease,
		box-shadow 0.28s ease,
		background-color 0.28s ease;
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
	color: #fff;
	outline: 3px solid rgba(25, 167, 247, 0.3);
	outline-offset: 3px;
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 20px 44px rgba(0, 81, 128, 0.46);
}

.back-to-top__icon {
	width: 11px;
	height: 11px;
	display: block;
	border: solid currentColor;
	border-width: 0 3px 3px 0;
	transform: rotate(-135deg) translate(-1px, -1px);
}

@media (max-width: 640px) {
	.back-to-top {
		right: 14px;
		bottom: 172px;
		width: 44px;
		height: 44px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.back-to-top {
		transition: none;
	}
}

/* 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(32px, 4vw, 54px);
	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
** ----------------------------------------------- */
.contato-page {
	position: relative;
	padding: 78px 0 88px;
	background: #fff;
	overflow: hidden;
}

.contato-page::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;
}

.contato-page::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;
}

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

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

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

.contato-page__row {
	position: relative;
	z-index: 1;
	align-items: stretch;
}

/* Formulário de contato escopado
** ----------------------------------------------- */
.contato-form-scope {
	height: 100%;
}

.contato-form-card {
	position: relative;
	height: 100%;
	padding: 34px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
	overflow: hidden;
}

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

.contato-form-card__head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 26px;
}

.contato-form-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	color: #fff;
	font-size: 20px;
	background: var(--primary-color);
	border-radius: 18px;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.contato-form-card__subtitle {
	margin: 0 0 4px;
	color: var(--primary-color);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.contato-form-card__title {
	margin: 0;
	color: var(--secondary-color);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.contato-form-scope .form-group {
	margin-bottom: 14px;
}

.contato-form-scope .form-control {
	width: 100%;
	min-height: 50px;
	padding: 13px 15px;
	color: #263241;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 12px;
	box-shadow: none;
	outline: none;
	transition:
		border-color 0.25s ease,
		background-color 0.25s ease,
		box-shadow 0.25s ease;
}

.contato-form-scope textarea.form-control {
	min-height: 132px;
	resize: vertical;
}

.contato-form-scope .form-control::placeholder {
	color: #7b8794;
	opacity: 1;
}

.contato-form-scope .form-control:focus {
	color: #263241;
	background: #fff;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}

.contato-form-scope select.form-control {
	cursor: pointer;
}

.contato-form-scope .btn-envia {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 52px;
	margin-top: 4px;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 12px;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
	transition:
		background-color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.contato-form-scope .btn-envia:hover,
.contato-form-scope .btn-envia:focus {
	color: #fff;
	background: var(--secondary-color);
	border-color: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.contato-form-scope .invalid-feedback {
	margin-top: 6px;
	font-size: 13px;
	font-weight: 600;
}

.contato-form-scope .form-control.is-invalid {
	border-color: #dc3545;
}

.contato-form-scope .form-control.is-valid {
	border-color: #28a745;
}

/* Informações de contato
** ----------------------------------------------- */
.contato-info {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 18px;
}

.contato-info__card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	min-height: 128px;
	padding: 22px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 20px;
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.contato-info__card:hover {
	border-color: rgba(15, 23, 42, 0.12);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.11);
	transform: translateY(-3px);
}

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

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

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

.contato-info__label {
	margin: 0 0 7px;
	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.55;
	word-break: break-word;
}

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

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

/* Mapa
** ----------------------------------------------- */
.contato-map {
	position: relative;
	width: 100%;
	min-height: 310px;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
	overflow: hidden;
}

.contato-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 310px;
	border: 0;
}

/* 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: 991px) {
	.contato-page {
		padding: 62px 0 72px;
	}

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

	.contato-form-card {
		height: auto;
		margin-bottom: 24px;
	}

	.contato-info {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

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

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

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

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

	.contato-form-card {
		padding: 24px 20px;
		border-radius: 18px;
	}

	.contato-form-card__head {
		align-items: flex-start;
		margin-bottom: 22px;
	}

	.contato-form-card__icon {
		width: 50px;
		height: 50px;
		border-radius: 16px;
	}

	.contato-form-card__title {
		font-size: 22px;
	}

	.contato-info {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.contato-info__card {
		min-height: initial;
		padding: 20px;
		border-radius: 18px;
	}

	.contato-map {
		min-height: 280px;
		border-radius: 18px;
	}

	.contato-map iframe {
		min-height: 280px;
	}
}

/* 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: 150px;
	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: 78px 0 88px;
	background: #fff;
	overflow: hidden;
}

.mapa-site-page::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;
}

.mapa-site-page::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;
}

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

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

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

.mapa-site__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.mapa-site__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;
	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease,
		border-color 0.28s ease;
}

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

.mapa-site__card:hover {
	border-color: rgba(15, 23, 42, 0.12);
	box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
	transform: translateY(-5px);
}

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

.mapa-site__card ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

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

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

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

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

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

/* Compatibilidade com classe antiga
** ----------------------------------------------- */
.mapa-site > .container > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

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

	.mapa-site__card--wide {
		grid-column: span 2;
	}
}

@media (max-width: 991px) {
	.mapa-site-page {
		padding: 62px 0 72px;
	}

	.mapa-site__intro {
		margin-bottom: 34px;
	}
}

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

	.mapa-site__intro {
		text-align: left;
		margin-bottom: 28px;
	}

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

	.mapa-site__intro p {
		font-size: 15px;
		line-height: 1.65;
	}

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

	.mapa-site__card,
	.mapa-site__card--wide {
		grid-column: auto;
		padding: 24px 20px;
		border-radius: 18px;
	}

	.mapa-site__card h3 {
		font-size: 22px;
	}

	.mapa-site__card--wide ul {
		grid-template-columns: 1fr;
	}

	.mapa-site__card a {
		font-size: 14px;
	}
}

/* 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 */

/* ================================
   GV AUTOMEC - HERO / BANNER
================================ */

:root {
	--hero-accent-color: #009bea;
	--hero-dark-color: #020811;
	--hero-card-bg: rgba(3, 14, 25, 0.72);
	--hero-border-color: rgba(255, 255, 255, 0.12);
	--hero-text-color: rgba(255, 255, 255, 0.72);
	--hero-white-color: #fff;
}

.gv-hero {
	position: relative;
	min-height: 84vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: var(--secondary-color);
	color: var(--hero-white-color);
	isolation: isolate;
}

.gv-hero__media {
	position: absolute;
	inset: 0;
	z-index: -3;
	overflow: hidden;
}

.gv-hero__media picture {
	display: block;
	width: 100%;
	height: 100%;
}

.gv-hero__media img {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	object-fit: cover;
	object-position: center center;
}

.gv-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(circle at 30% 28%, rgba(0, 155, 234, 0.16), transparent 32%),
		linear-gradient(90deg, rgba(0, 5, 12, 0.5) 0%, rgba(0, 8, 17, 0.55) 31%, rgba(0, 8, 17, 0.72) 58%, rgba(0, 8, 17, 0.38) 100%),
		linear-gradient(180deg, rgba(0, 8, 17, 0.58) 0%, rgba(0, 8, 17, 0.57) 100%);
}

.gv-hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: -1;
	height: 150px;
	background: linear-gradient(180deg, transparent 0%, #06101a 100%);
	pointer-events: none;
}

.gv-hero__content {
	width: 100%;
	max-width: 760px;
	padding: 160px 0 120px;
}

.gv-hero__tag {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	margin-bottom: 22px;
	padding: 9px 18px;
	border: 1px solid rgba(0, 155, 234, 0.6);
	border-radius: 999px;
	background: rgba(0, 155, 234, 0.08);
	color: #4cc6ff;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	box-shadow: 0 0 32px rgba(0, 155, 234, 0.16);
}

.gv-hero__title {
	max-width: 760px;
	margin: 0;
	color: var(--hero-white-color);
	font-size: clamp(2.45rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.06em;
}

.gv-hero__title strong {
	display: block;
	color: var(--hero-accent-color);
	font-weight: 800;
}

.gv-hero__text {
	max-width: 640px;
	margin: 28px 0 0;
	color: var(--hero-text-color);
	font-size: 1.08rem;
	font-weight: 400;
	line-height: 1.75;
}

.gv-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 34px;
}

.btn-site {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 56px;
	padding: 0 26px;
	border-radius: 12px;
	border: 1px solid transparent;
	overflow: hidden;
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transform: translateZ(0);
	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease,
		border-color 0.28s ease,
		background-color 0.28s ease,
		color 0.28s ease;
}

.btn-site:hover,
.btn-site:focus {
	text-decoration: none;
	transform: translateY(-3px);
}

.btn-site:focus-visible {
	outline: 3px solid rgba(0, 155, 234, 0.42);
	outline-offset: 4px;
}

.btn-site i {
	position: relative;
	z-index: 2;
	font-size: 1.05rem;
}

.btn-site span {
	position: relative;
	z-index: 2;
}

.btn-site--primary {
	background: linear-gradient(135deg, var(--hero-accent-color) 0%, var(--primary-color) 100%);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 14px 34px rgba(0, 155, 234, 0.28);
	animation: btnPulse 2.8s ease-in-out infinite;
}

.btn-site--primary::before {
	content: "";
	position: absolute;
	top: -40%;
	left: -75%;
	z-index: 1;
	width: 46%;
	height: 180%;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.18) 45%,
		rgba(255, 255, 255, 0.55) 50%,
		rgba(255, 255, 255, 0.18) 55%,
		transparent 100%
	);
	transform: rotate(24deg);
	animation: btnShine 3.6s ease-in-out infinite;
}

.btn-site--primary:hover,
.btn-site--primary:focus {
	color: #fff;
	box-shadow: 0 18px 46px rgba(0, 155, 234, 0.38);
}

.btn-site--outline {
	background: rgba(255, 255, 255, 0.035);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn-site--outline::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 155, 234, 0.18), transparent 54%);
	opacity: 0;
	transition: opacity 0.28s ease;
}

.btn-site--outline:hover,
.btn-site--outline:focus {
	color: #fff;
	border-color: rgba(0, 155, 234, 0.46);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.btn-site--outline:hover::before,
.btn-site--outline:focus::before {
	opacity: 1;
}

.gv-hero__highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 690px;
	margin-top: 46px;
}

.gv-hero__highlight {
	min-height: 74px;
	display: flex;
	align-items: center;
	gap: 13px;
	margin: 0;
	padding: 18px;
	border: 1px solid var(--hero-border-color);
	border-radius: 15px;
	background: var(--hero-card-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
	transition:
		transform 0.28s ease,
		border-color 0.28s ease,
		background-color 0.28s ease;
}

.gv-hero__highlight:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 155, 234, 0.44);
	background: rgba(3, 18, 32, 0.88);
}

.gv-hero__highlight i {
	flex: 0 0 auto;
	color: var(--hero-accent-color);
	font-size: 1.05rem;
}

.gv-hero__highlight h2 {
	margin: 0;
	color: #fff;
	font-size: 0.91rem;
	font-weight: 700;
	line-height: 1.25;
}

/* ================================
   ANIMAÇÕES GLOBAIS DE SEÇÃO
================================ */

.section-reveal .section-reveal-item,
.section-reveal-title {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.75s ease,
		transform 0.75s ease;
	will-change: opacity, transform;
}

.section-reveal.is-visible .section-reveal-item,
.section-reveal-title.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.section-reveal.is-visible .section-reveal-item:nth-child(1) {
	transition-delay: 0.05s;
}

.section-reveal.is-visible .section-reveal-item:nth-child(2) {
	transition-delay: 0.12s;
}

.section-reveal.is-visible .section-reveal-item:nth-child(3) {
	transition-delay: 0.19s;
}

.section-reveal.is-visible .section-reveal-item:nth-child(4) {
	transition-delay: 0.26s;
}

.section-reveal.is-visible .section-reveal-item:nth-child(5) {
	transition-delay: 0.33s;
}

/*
 * O conteúdo inicial já está no viewport. Mantê-lo visível desde o primeiro
 * frame evita que a animação de entrada adie a pintura do título principal.
 * As animações das demais seções continuam inalteradas.
 */
.gv-hero.section-reveal .section-reveal-item {
	opacity: 1;
	transform: none;
	transition: none;
	will-change: auto;
}

@keyframes btnShine {
	0% {
		left: -75%;
		opacity: 0;
	}

	18% {
		opacity: 1;
	}

	42% {
		left: 128%;
		opacity: 0;
	}

	100% {
		left: 128%;
		opacity: 0;
	}
}

@keyframes btnPulse {
	0% {
		box-shadow: 0 14px 34px rgba(0, 155, 234, 0.26);
	}

	50% {
		box-shadow:
			0 14px 34px rgba(0, 155, 234, 0.42),
			0 0 0 8px rgba(0, 155, 234, 0.06);
	}

	100% {
		box-shadow: 0 14px 34px rgba(0, 155, 234, 0.26);
	}
}

/* ================================
   RESPONSIVO
================================ */

@media (max-width: 1199.98px) {
	.gv-hero__content {
		max-width: 700px;
		padding: 145px 0 110px;
	}

	.gv-hero__title {
		max-width: 700px;
	}
}

@media (max-width: 991.98px) {
	.gv-hero {
		min-height: auto;
	}

	.gv-hero__media img {
		min-height: 780px;
		object-position: center center;
	}

	.gv-hero__overlay {
		background:
			radial-gradient(circle at 28% 24%, rgba(0, 155, 234, 0.14), transparent 34%),
			linear-gradient(90deg, rgba(0, 5, 12, 0.96) 0%, rgba(0, 8, 17, 0.88) 58%, rgba(0, 8, 17, 0.92) 100%),
			linear-gradient(180deg, rgba(0, 8, 17, 0.58) 0%, rgba(0, 8, 17, 0.98) 100%);
	}

	.gv-hero__content {
		max-width: 680px;
		padding: 135px 0 96px;
	}

	.gv-hero__title {
		letter-spacing: -0.045em;
	}

	.gv-hero__highlights {
		grid-template-columns: 1fr;
		max-width: 520px;
	}

	.gv-hero__highlight {
		min-height: 66px;
	}
}

@media (max-width: 767.98px) {
	.gv-hero__media img {
		min-height: 760px;
		object-position: 62% center;
	}

	.gv-hero__overlay {
		background:
			linear-gradient(90deg, rgba(0, 5, 12, 0.98) 0%, rgba(0, 8, 17, 0.9) 100%),
			linear-gradient(180deg, rgba(0, 8, 17, 0.62) 0%, rgba(0, 8, 17, 0.98) 100%);
	}

	.gv-hero__content {
		padding: 122px 0 78px;
	}

	.gv-hero__tag {
		padding: 8px 14px;
		font-size: 0.68rem;
		letter-spacing: 0.1em;
	}

	.gv-hero__title {
		font-size: clamp(2.2rem, 13vw, 2.5rem);
		line-height: 0.98;
	}

	.gv-hero__text {
		margin-top: 22px;
		font-size: 1rem;
		line-height: 1.68;
	}

	.gv-hero__actions {
		align-items: stretch;
		gap: 12px;
		margin-top: 30px;
	}

	.btn-site {
		width: 100%;
		min-height: 54px;
		padding: 0 20px;
	}

	.gv-hero__highlights {
		margin-top: 32px;
	}
}

@media (max-width: 575.98px) {
	.gv-hero__content {
		padding: 112px 0 68px;
	}

	.gv-hero__title {
		letter-spacing: -0.035em;
	}

	.gv-hero__text {
		max-width: 100%;
	}

	.gv-hero__highlight {
		padding: 16px;
		border-radius: 13px;
	}

	.gv-hero__title {
		font-size: clamp(1.8rem, 13vw, 1.9rem);
		line-height: 0.98;
	}
}

@media (max-width: 540.98px) {
	.gv-hero__content {
		padding: 15px 0 68px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.btn-site,
	.btn-site--primary,
	.btn-site--primary::before,
	.section-reveal .section-reveal-item,
	.section-reveal-title {
		animation: none;
		transition: none;
	}

	.section-reveal .section-reveal-item,
	.section-reveal-title {
		opacity: 1;
		transform: none;
	}
}

/* ==========================================
   SEÇÃO DE SERVIÇOS - GV AUTOMEC
========================================== */

.gv-services {
	position: relative;
	padding: 110px 0 110px;
	overflow: hidden;
	background: linear-gradient(180deg, #04111c 0%, #020b14 55%, #03101a 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	isolation: isolate;
}

.gv-services__bg-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
	z-index: -1;
}

.gv-services__bg-shape--one {
	top: 80px;
	left: -100px;
	width: 260px;
	height: 260px;
	background: rgba(0, 81, 128, 0.18);
}

.gv-services__bg-shape--two {
	right: -120px;
	bottom: 80px;
	width: 320px;
	height: 320px;
	background: rgba(0, 155, 234, 0.12);
}

.gv-services__header {
	max-width: 760px;
	margin: 0 auto 48px;
	text-align: center;
}

.gv-section-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	padding: 8px 16px;
	border: 1px solid rgba(0, 155, 234, 0.45);
	border-radius: 999px;
	background: rgba(0, 155, 234, 0.08);
	color: #33b8ff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1.2;
	box-shadow: 0 0 28px rgba(0, 155, 234, 0.12);
}

.gv-services__title {
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(2rem, 3.4vw, 3.25rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.04em;
}

.gv-services__title strong {
	color: #19a7f7;
	font-weight: 800;
}

.gv-services__description {
	margin: 0 auto;
	max-width: 680px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.02rem;
	line-height: 1.8;
}

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

.gv-service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(10, 21, 34, 0.96) 0%, rgba(7, 16, 26, 0.98) 100%);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}

.gv-service-card:hover {
	transform: translateY(-8px);
	border-color: rgba(0, 155, 234, 0.34);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.gv-service-card__image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #08111b;
}

.gv-service-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.28) 100%);
	pointer-events: none;
}

.gv-service-card__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition:
		transform 0.45s ease,
		filter 0.45s ease;
}

.gv-service-card:hover .gv-service-card__image img {
	transform: scale(1.06);
	filter: saturate(1.05);
}

.gv-service-card__icon {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: linear-gradient(135deg, #18b0ff 0%, var(--primary-color) 100%);
	color: #fff;
	font-size: 1rem;
	box-shadow: 0 14px 26px rgba(0, 155, 234, 0.22);
}

.gv-service-card__content {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 24px 22px 22px;
}

.gv-service-card__content h3 {
	margin: 0 0 14px;
	color: #fff;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.28;
}

.gv-service-card__content p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.96rem;
	line-height: 1.75;
	flex-grow: 1;
}

.gv-service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
	color: #1eb4ff;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	transition:
		color 0.25s ease,
		transform 0.25s ease;
}

.gv-service-card__link:hover,
.gv-service-card__link:focus {
	color: #5fcbff;
	text-decoration: none;
	transform: translateX(4px);
}

.gv-service-card__link i {
	font-size: 0.82rem;
}

/* ==========================================
   RESPONSIVO
========================================== */

@media (max-width: 1199.98px) {
	.gv-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991.98px) {
	.gv-services {
		padding: 90px 0;
	}

	.gv-services__header {
		margin-bottom: 40px;
	}

	.gv-service-card__content {
		padding: 22px 20px 20px;
	}

	.gv-service-card__content h3 {
		font-size: 1.22rem;
	}
}

@media (max-width: 767.98px) {
	.gv-services {
		padding: 75px 0;
	}

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

	.gv-services__title {
		font-size: clamp(1.8rem, 8vw, 2.4rem);
	}

	.gv-services__description {
		font-size: 0.98rem;
		line-height: 1.7;
	}

	.gv-service-card__content h3 {
		font-size: 1.15rem;
	}

	.gv-service-card__content p {
		font-size: 0.93rem;
	}
}

@media (max-width: 575.98px) {
	.gv-services__header {
		margin-bottom: 34px;
	}

	.gv-service-card {
		border-radius: 16px;
	}

	.gv-service-card__content {
		padding: 20px 18px 18px;
	}
}

/* ==========================================
   GV AUTOMEC - SOBRE
========================================== */

.gv-about {
	position: relative;
	padding: 120px 0;
	overflow: hidden;
	background: radial-gradient(circle at 38% 20%, rgba(0, 81, 128, 0.26), transparent 34%), linear-gradient(180deg, #04111c 0%, #020b14 58%, #03101a 100%);
	color: #fff;
	isolation: isolate;
}

.gv-about::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: -1;
	height: 120px;
	background: linear-gradient(180deg, transparent 0%, rgba(2, 11, 20, 0.92) 100%);
	pointer-events: none;
}

.gv-about__shape {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(90px);
}

.gv-about__shape--one {
	top: 70px;
	left: 8%;
	width: 300px;
	height: 300px;
	background: rgba(0, 81, 128, 0.18);
}

.gv-about__shape--two {
	right: 8%;
	bottom: 90px;
	width: 340px;
	height: 340px;
	background: rgba(0, 155, 234, 0.12);
}

.gv-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 536px);
	align-items: center;
	gap: 78px;
}

.gv-about__content {
	max-width: 690px;
}

.gv-section-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	padding: 8px 17px;
	border: 1px solid rgba(0, 155, 234, 0.52);
	border-radius: 999px;
	background: rgba(0, 155, 234, 0.08);
	color: #38bdff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
	box-shadow: 0 0 30px rgba(0, 155, 234, 0.12);
}

.gv-about__title {
	max-width: 680px;
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 3.55vw, 3.35rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.045em;
}

.gv-about__title strong {
	display: inline;
	color: #19a7f7;
	font-weight: 800;
}

.gv-about__text {
	max-width: 665px;
	margin: 26px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.05rem;
	font-weight: 400;
	line-height: 1.78;
}

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

.gv-about__benefits ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gv-about__benefits li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.35;
}

.gv-about__benefits i {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(25, 167, 247, 0.85);
	border-radius: 50%;
	color: #19a7f7;
	font-size: 0.58rem;
	box-shadow: 0 0 18px rgba(25, 167, 247, 0.16);
}

.gv-about__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 38px;
}

.gv-about__media {
	position: relative;
}

.gv-about__figure {
	position: relative;
	width: 100%;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 22px;
	background: #050b12;
	box-shadow:
		0 32px 90px rgba(0, 0, 0, 0.36),
		0 0 80px rgba(0, 81, 128, 0.13);
}

.gv-about__figure::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.2) 100%), radial-gradient(circle at 70% 20%, rgba(0, 155, 234, 0.1), transparent 36%);
	pointer-events: none;
}

.gv-about__figure img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.01);
	transition:
		transform 0.55s ease,
		filter 0.55s ease;
}

.gv-about__figure:hover img {
	transform: scale(1.055);
	filter: saturate(1.08) contrast(1.04);
}

/* ==========================================
   BOTÃO GLOBAL COM BRILHO E PULSAÇÃO
   Não duplique se esse bloco já existir no CSS.
========================================== */

.btn-site {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 56px;
	padding: 0 28px;
	border: 1px solid transparent;
	border-radius: 12px;
	overflow: hidden;
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transform: translateZ(0);
	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease,
		border-color 0.28s ease,
		background-color 0.28s ease,
		color 0.28s ease;
}

.btn-site:hover,
.btn-site:focus {
	text-decoration: none;
	transform: translateY(-3px);
}

.btn-site:focus-visible {
	outline: 3px solid rgba(0, 155, 234, 0.42);
	outline-offset: 4px;
}

.btn-site i,
.btn-site span {
	position: relative;
	z-index: 2;
}

.btn-site i {
	font-size: 1.05rem;
}

.btn-site--primary {
	background: linear-gradient(135deg, #19a7f7 0%, var(--primary-color) 100%);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 14px 34px rgba(0, 155, 234, 0.28);
	animation: btnPulse 2.8s ease-in-out infinite;
}

.btn-site--primary::before {
	content: "";
	position: absolute;
	top: -45%;
	left: -80%;
	z-index: 1;
	width: 48%;
	height: 190%;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.16) 44%,
		rgba(255, 255, 255, 0.56) 50%,
		rgba(255, 255, 255, 0.16) 56%,
		transparent 100%
	);
	transform: rotate(24deg);
	animation: btnShine 3.6s ease-in-out infinite;
}

.btn-site--primary:hover,
.btn-site--primary:focus {
	color: #fff;
	box-shadow: 0 18px 46px rgba(0, 155, 234, 0.38);
}

@keyframes btnShine {
	0% {
		left: -80%;
		opacity: 0;
	}

	18% {
		opacity: 1;
	}

	42% {
		left: 130%;
		opacity: 0;
	}

	100% {
		left: 130%;
		opacity: 0;
	}
}

@keyframes btnPulse {
	0% {
		box-shadow: 0 14px 34px rgba(0, 155, 234, 0.26);
	}

	50% {
		box-shadow:
			0 14px 34px rgba(0, 155, 234, 0.42),
			0 0 0 8px rgba(0, 155, 234, 0.06);
	}

	100% {
		box-shadow: 0 14px 34px rgba(0, 155, 234, 0.26);
	}
}

/* ==========================================
   ANIMAÇÃO DE ENTRADA
========================================== */

.section-reveal .section-reveal-item {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.75s ease,
		transform 0.75s ease;
	will-change: opacity, transform;
}

.section-reveal.is-visible .section-reveal-item {
	opacity: 1;
	transform: translateY(0);
}

.section-reveal.is-visible .section-reveal-item:nth-child(1) {
	transition-delay: 0.08s;
}

.section-reveal.is-visible .section-reveal-item:nth-child(2) {
	transition-delay: 0.18s;
}

/* ==========================================
   RESPONSIVO
========================================== */

@media (max-width: 1199.98px) {
	.gv-about__grid {
		grid-template-columns: minmax(0, 1fr) minmax(380px, 480px);
		gap: 54px;
	}
}

@media (max-width: 991.98px) {
	.gv-about {
		padding: 95px 0;
	}

	.gv-about__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.gv-about__content {
		max-width: 100%;
	}

	.gv-about__media {
		max-width: 620px;
		width: 100%;
	}

	.gv-about__figure img {
		aspect-ratio: 16 / 11;
	}
}

@media (max-width: 767.98px) {
	.gv-about {
		padding: 78px 0;
	}

	.gv-section-tag {
		margin-bottom: 18px;
		padding: 8px 14px;
		font-size: 0.68rem;
		letter-spacing: 0.1em;
	}

	.gv-about__title {
		font-size: clamp(1.85rem, 8vw, 2.55rem);
		letter-spacing: -0.035em;
	}

	.gv-about__text {
		margin-top: 22px;
		font-size: 0.98rem;
		line-height: 1.72;
	}

	.gv-about__benefits {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-top: 30px;
	}

	.gv-about__benefits ul {
		gap: 14px;
	}

	.gv-about__actions {
		margin-top: 30px;
	}

	.gv-about__actions .btn-site {
		width: 100%;
	}

	.gv-about__figure {
		border-radius: 18px;
	}
}

@media (max-width: 575.98px) {
	.gv-about {
		padding: 68px 0;
	}

	.gv-about__grid {
		gap: 38px;
	}

	.gv-about__title strong {
		display: block;
	}

	.gv-about__benefits li {
		font-size: 0.92rem;
	}

	.btn-site {
		min-height: 54px;
		padding: 0 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.btn-site,
	.btn-site--primary,
	.btn-site--primary::before,
	.section-reveal .section-reveal-item,
	.gv-about__figure img {
		animation: none;
		transition: none;
	}

	.section-reveal .section-reveal-item {
		opacity: 1;
		transform: none;
	}
}

/* ==========================================
   GV AUTOMEC - DIFERENCIAIS
========================================== */

.gv-differentials {
	position: relative;
	padding: 110px 0 120px;
	overflow: hidden;
	background: radial-gradient(circle at 38% 10%, rgba(0, 81, 128, 0.24), transparent 34%), linear-gradient(180deg, #04111c 0%, #020b14 58%, #03101a 100%);
	color: #fff;
	isolation: isolate;
}

.gv-differentials::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: -1;
	height: 120px;
	background: linear-gradient(180deg, transparent 0%, rgba(2, 11, 20, 0.94) 100%);
	pointer-events: none;
}

.gv-differentials__shape {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
}

.gv-differentials__shape--one {
	top: 80px;
	left: 12%;
	width: 280px;
	height: 280px;
	background: rgba(0, 81, 128, 0.2);
}

.gv-differentials__shape--two {
	right: 8%;
	bottom: 90px;
	width: 340px;
	height: 340px;
	background: rgba(0, 155, 234, 0.1);
}

.gv-differentials__header {
	max-width: 850px;
	margin: 0 0 48px;
}

.gv-section-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	padding: 8px 17px;
	border: 1px solid rgba(0, 155, 234, 0.52);
	border-radius: 999px;
	background: rgba(0, 155, 234, 0.08);
	color: #38bdff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
	box-shadow: 0 0 30px rgba(0, 155, 234, 0.12);
}

.gv-differentials__title {
	max-width: 900px;
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 3.55vw, 3.25rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.045em;
}

.gv-differentials__title strong {
	color: #19a7f7;
	font-weight: 800;
}

.gv-differentials__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.gv-differential-card {
	position: relative;
	min-height: 178px;
	padding: 30px 28px 28px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(11, 24, 38, 0.96) 0%, rgba(7, 17, 28, 0.98) 100%);
	box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
	transition:
		transform 0.32s ease,
		border-color 0.32s ease,
		box-shadow 0.32s ease,
		background-color 0.32s ease;
}

.gv-differential-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 18% 8%, rgba(25, 167, 247, 0.16), transparent 30%), linear-gradient(135deg, rgba(0, 155, 234, 0.1), transparent 46%);
	opacity: 0;
	transition: opacity 0.32s ease;
	pointer-events: none;
}

.gv-differential-card:hover {
	transform: translateY(-7px);
	border-color: rgba(25, 167, 247, 0.36);
	box-shadow: 0 30px 75px rgba(0, 0, 0, 0.34);
}

.gv-differential-card:hover::before {
	opacity: 1;
}

.gv-differential-card__icon {
	position: relative;
	z-index: 2;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	color: #19a7f7;
	font-size: 1.45rem;
	line-height: 1;
}

.gv-differential-card__icon::after {
	content: "";
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: rgba(25, 167, 247, 0.08);
	box-shadow: 0 0 26px rgba(25, 167, 247, 0.14);
	z-index: -1;
	transform: scale(0.82);
	opacity: 0;
	transition:
		opacity 0.32s ease,
		transform 0.32s ease;
}

.gv-differential-card:hover .gv-differential-card__icon::after {
	opacity: 1;
	transform: scale(1);
}

.gv-differential-card h3 {
	position: relative;
	z-index: 2;
	margin: 0 0 12px;
	color: #fff;
	font-size: 1.18rem;
	font-weight: 800;
	line-height: 1.32;
	letter-spacing: -0.02em;
}

.gv-differential-card p {
	position: relative;
	z-index: 2;
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.97rem;
	font-weight: 400;
	line-height: 1.68;
}

/* ==========================================
   ANIMAÇÃO DE ENTRADA
   Não duplique se já existir no projeto.
========================================== */

.section-reveal .section-reveal-item {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.75s ease,
		transform 0.75s ease;
	will-change: opacity, transform;
}

.section-reveal.is-visible .section-reveal-item {
	opacity: 1;
	transform: translateY(0);
}

.section-reveal.is-visible .section-reveal-item:nth-child(1) {
	transition-delay: 0.06s;
}

.section-reveal.is-visible .section-reveal-item:nth-child(2) {
	transition-delay: 0.12s;
}

.section-reveal.is-visible .section-reveal-item:nth-child(3) {
	transition-delay: 0.18s;
}

.section-reveal.is-visible .section-reveal-item:nth-child(4) {
	transition-delay: 0.24s;
}

.section-reveal.is-visible .section-reveal-item:nth-child(5) {
	transition-delay: 0.3s;
}

.section-reveal.is-visible .section-reveal-item:nth-child(6) {
	transition-delay: 0.36s;
}

.section-reveal.is-visible .section-reveal-item:nth-child(7) {
	transition-delay: 0.42s;
}

/* ==========================================
   RESPONSIVO
========================================== */

@media (max-width: 1199.98px) {
	.gv-differentials__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991.98px) {
	.gv-differentials {
		padding: 95px 0;
	}

	.gv-differentials__header {
		margin-bottom: 42px;
	}

	.gv-differential-card {
		min-height: 170px;
		padding: 28px 24px 26px;
	}
}

@media (max-width: 767.98px) {
	.gv-differentials {
		padding: 78px 0;
	}

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

	.gv-section-tag {
		margin-bottom: 16px;
		padding: 8px 14px;
		font-size: 0.68rem;
		letter-spacing: 0.1em;
	}

	.gv-differentials__title {
		font-size: clamp(1.85rem, 8vw, 2.55rem);
		letter-spacing: -0.035em;
	}

	.gv-differential-card {
		min-height: initial;
		padding: 26px 22px 24px;
		border-radius: 16px;
	}

	.gv-differential-card__icon {
		margin-bottom: 18px;
	}

	.gv-differential-card h3 {
		font-size: 1.12rem;
	}

	.gv-differential-card p {
		font-size: 0.94rem;
		line-height: 1.65;
	}
}

@media (max-width: 575.98px) {
	.gv-differentials {
		padding: 68px 0;
	}

	.gv-differentials__header {
		margin-bottom: 34px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.section-reveal .section-reveal-item,
	.gv-differential-card,
	.gv-differential-card::before,
	.gv-differential-card__icon::after {
		animation: none;
		transition: none;
	}

	.section-reveal .section-reveal-item {
		opacity: 1;
		transform: none;
	}
}

/* ==========================================
   GV AUTOMEC - PROCESSO
========================================== */

.gv-process {
	position: relative;
	padding: 110px 0 120px;
	overflow: hidden;
	background: radial-gradient(circle at 42% 6%, rgba(0, 81, 128, 0.24), transparent 34%), linear-gradient(180deg, #04111c 0%, #020b14 58%, #03101a 100%);
	color: #fff;
	isolation: isolate;
}

.gv-process::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: -1;
	height: 120px;
	background: linear-gradient(180deg, transparent 0%, rgba(2, 11, 20, 0.95) 100%);
	pointer-events: none;
}

.gv-process__shape {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
}

.gv-process__shape--one {
	top: 80px;
	left: 10%;
	width: 300px;
	height: 300px;
	background: rgba(0, 81, 128, 0.2);
}

.gv-process__shape--two {
	right: 8%;
	bottom: 80px;
	width: 360px;
	height: 360px;
	background: rgba(0, 155, 234, 0.1);
}

.gv-process__header {
	max-width: 780px;
	margin-bottom: 48px;
}

.gv-section-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	padding: 8px 17px;
	border: 1px solid rgba(0, 155, 234, 0.52);
	border-radius: 999px;
	background: rgba(0, 155, 234, 0.08);
	color: #38bdff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
	box-shadow: 0 0 30px rgba(0, 155, 234, 0.12);
}

.gv-process__title {
	max-width: 900px;
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 3.55vw, 3.25rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.045em;
}

.gv-process__title strong {
	color: #19a7f7;
	font-weight: 800;
}

.gv-process__description {
	max-width: 720px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.03rem;
	line-height: 1.78;
}

.gv-process__list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gv-process__list::before {
	content: "";
	position: absolute;
	top: 56px;
	left: 8%;
	right: 8%;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(25, 167, 247, 0.28) 18%, rgba(25, 167, 247, 0.28) 82%, transparent 100%);
	z-index: 0;
	pointer-events: none;
}

.gv-process-card {
	position: relative;
	z-index: 1;
	min-height: 270px;
	display: flex;
	flex-direction: column;
	padding: 30px 26px 28px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(11, 24, 38, 0.96) 0%, rgba(7, 17, 28, 0.98) 100%);
	box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
	transition:
		transform 0.32s ease,
		border-color 0.32s ease,
		box-shadow 0.32s ease;
}

.gv-process-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 16% 10%, rgba(25, 167, 247, 0.16), transparent 30%), linear-gradient(135deg, rgba(0, 155, 234, 0.1), transparent 46%);
	opacity: 0;
	transition: opacity 0.32s ease;
	pointer-events: none;
}

.gv-process-card:hover {
	transform: translateY(-8px);
	border-color: rgba(25, 167, 247, 0.38);
	box-shadow: 0 32px 78px rgba(0, 0, 0, 0.34);
}

.gv-process-card:hover::before {
	opacity: 1;
}

.gv-process-card__number {
	position: relative;
	z-index: 2;
	display: block;
	margin-bottom: 24px;
	color: #19a7f7;
	font-size: clamp(2.7rem, 4vw, 3.5rem);
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: -0.06em;
	text-shadow: 0 0 30px rgba(25, 167, 247, 0.18);
}

.gv-process-card__icon {
	position: absolute;
	top: 30px;
	right: 26px;
	z-index: 2;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(25, 167, 247, 0.28);
	border-radius: 14px;
	background: rgba(25, 167, 247, 0.08);
	color: #19a7f7;
	font-size: 1rem;
	box-shadow: 0 0 24px rgba(25, 167, 247, 0.1);
}

.gv-process-card h3 {
	position: relative;
	z-index: 2;
	margin: 0 0 12px;
	color: #fff;
	font-size: 1.17rem;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.gv-process-card p {
	position: relative;
	z-index: 2;
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.95rem;
	line-height: 1.68;
}

.gv-process__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 34px;
	padding: 26px 28px;
	border: 1px solid rgba(25, 167, 247, 0.18);
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(0, 81, 128, 0.22), rgba(7, 17, 28, 0.96));
	box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.gv-process__cta-text {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.gv-process__cta-text strong {
	color: #fff;
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.35;
}

.gv-process__cta-text span {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.98rem;
	line-height: 1.55;
}

/* ==========================================
   BOTÃO GLOBAL - NÃO DUPLIQUE SE JÁ EXISTIR
========================================== */

.btn-site {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 56px;
	padding: 0 28px;
	border: 1px solid transparent;
	border-radius: 12px;
	overflow: hidden;
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transform: translateZ(0);
	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease,
		border-color 0.28s ease,
		background-color 0.28s ease,
		color 0.28s ease;
}

.btn-site:hover,
.btn-site:focus {
	text-decoration: none;
	transform: translateY(-3px);
}

.btn-site:focus-visible {
	outline: 3px solid rgba(0, 155, 234, 0.42);
	outline-offset: 4px;
}

.btn-site i,
.btn-site span {
	position: relative;
	z-index: 2;
}

.btn-site--primary {
	background: linear-gradient(135deg, #19a7f7 0%, var(--primary-color) 100%);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 14px 34px rgba(0, 155, 234, 0.28);
	animation: btnPulse 2.8s ease-in-out infinite;
}

.btn-site--primary::before {
	content: "";
	position: absolute;
	top: -45%;
	left: -80%;
	z-index: 1;
	width: 48%;
	height: 190%;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.16) 44%,
		rgba(255, 255, 255, 0.56) 50%,
		rgba(255, 255, 255, 0.16) 56%,
		transparent 100%
	);
	transform: rotate(24deg);
	animation: btnShine 3.6s ease-in-out infinite;
}

.btn-site--primary:hover,
.btn-site--primary:focus {
	color: #fff;
	box-shadow: 0 18px 46px rgba(0, 155, 234, 0.38);
}

@keyframes btnShine {
	0% {
		left: -80%;
		opacity: 0;
	}

	18% {
		opacity: 1;
	}

	42% {
		left: 130%;
		opacity: 0;
	}

	100% {
		left: 130%;
		opacity: 0;
	}
}

@keyframes btnPulse {
	0% {
		box-shadow: 0 14px 34px rgba(0, 155, 234, 0.26);
	}

	50% {
		box-shadow:
			0 14px 34px rgba(0, 155, 234, 0.42),
			0 0 0 8px rgba(0, 155, 234, 0.06);
	}

	100% {
		box-shadow: 0 14px 34px rgba(0, 155, 234, 0.26);
	}
}

/* ==========================================
   RESPONSIVO
========================================== */

@media (max-width: 1199.98px) {
	.gv-process__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gv-process__list::before {
		display: none;
	}

	.gv-process-card {
		min-height: 240px;
	}
}

@media (max-width: 991.98px) {
	.gv-process {
		padding: 95px 0;
	}

	.gv-process__header {
		margin-bottom: 42px;
	}

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

@media (max-width: 767.98px) {
	.gv-process {
		padding: 78px 0;
	}

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

	.gv-section-tag {
		margin-bottom: 16px;
		padding: 8px 14px;
		font-size: 0.68rem;
		letter-spacing: 0.1em;
	}

	.gv-process__title {
		font-size: clamp(1.85rem, 8vw, 2.55rem);
		letter-spacing: -0.035em;
	}

	.gv-process__description {
		font-size: 0.98rem;
		line-height: 1.7;
	}

	.gv-process-card {
		min-height: initial;
		padding: 26px 22px 24px;
		border-radius: 16px;
	}

	.gv-process-card__number {
		margin-bottom: 22px;
	}

	.gv-process-card h3 {
		font-size: 1.12rem;
	}

	.gv-process-card p {
		font-size: 0.94rem;
		line-height: 1.65;
	}

	.gv-process__cta {
		margin-top: 28px;
		padding: 24px 22px;
		border-radius: 16px;
	}

	.gv-process__cta .btn-site {
		width: 100%;
	}
}

@media (max-width: 575.98px) {
	.gv-process {
		padding: 68px 0;
	}

	.gv-process__header {
		margin-bottom: 34px;
	}

	.gv-process-card__icon {
		top: 24px;
		right: 22px;
	}

	.gv-process__cta-text strong {
		font-size: 1.05rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.btn-site,
	.btn-site--primary,
	.btn-site--primary::before,
	.gv-process-card,
	.gv-process-card::before {
		animation: none;
		transition: none;
	}
}

/* ==========================================
   GV AUTOMEC - GALERIA / SERVIÇOS EXECUTADOS
========================================== */

.gv-gallery {
	position: relative;
	padding: 110px 0 120px;
	overflow: hidden;
	background: radial-gradient(circle at 40% 8%, rgba(0, 81, 128, 0.24), transparent 34%), linear-gradient(180deg, #04111c 0%, #020b14 58%, #03101a 100%);
	color: #fff;
	isolation: isolate;
}

.gv-gallery::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: -1;
	height: 120px;
	background: linear-gradient(180deg, transparent 0%, rgba(2, 11, 20, 0.95) 100%);
	pointer-events: none;
}

.gv-gallery__shape {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
}

.gv-gallery__shape--one {
	top: 70px;
	left: 10%;
	width: 300px;
	height: 300px;
	background: rgba(0, 81, 128, 0.2);
}

.gv-gallery__shape--two {
	right: 8%;
	bottom: 80px;
	width: 360px;
	height: 360px;
	background: rgba(0, 155, 234, 0.1);
}

.gv-gallery__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 46px;
}

.gv-gallery__heading {
	max-width: 720px;
}

.gv-section-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	padding: 8px 17px;
	border: 1px solid rgba(0, 155, 234, 0.52);
	border-radius: 999px;
	background: rgba(0, 155, 234, 0.08);
	color: #38bdff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
	box-shadow: 0 0 30px rgba(0, 155, 234, 0.12);
}

.gv-gallery__title {
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 3.55vw, 3.25rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.045em;
}

.gv-gallery__title strong {
	color: #19a7f7;
	font-weight: 800;
}

.gv-gallery__description {
	max-width: 690px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.03rem;
	line-height: 1.75;
}

.gv-gallery__action {
	flex: 0 0 auto;
	padding-bottom: 4px;
}

.gv-gallery__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.gv-gallery-card {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 18px;
	overflow: hidden;
	background: #07111c;
	cursor: pointer;
	box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
	transition:
		transform 0.34s ease,
		border-color 0.34s ease,
		box-shadow 0.34s ease;
}

.gv-gallery-card:hover,
.gv-gallery-card:focus {
	transform: translateY(-8px);
	border-color: rgba(25, 167, 247, 0.42);
	box-shadow: 0 32px 78px rgba(0, 0, 0, 0.36);
	outline: none;
}

.gv-gallery-card:focus-visible {
	outline: 3px solid rgba(25, 167, 247, 0.45);
	outline-offset: 4px;
}

.gv-gallery-card img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center;
	transform: scale(1.01);
	transition:
		transform 0.48s ease,
		filter 0.48s ease;
}

.gv-gallery-card:hover img,
.gv-gallery-card:focus img {
	transform: scale(1.075);
	filter: saturate(1.08) contrast(1.05);
}

.gv-gallery-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background:
		radial-gradient(circle at center, rgba(25, 167, 247, 0.22), transparent 44%), linear-gradient(180deg, rgba(2, 11, 20, 0.12), rgba(2, 11, 20, 0.72));
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
}

.gv-gallery-card:hover .gv-gallery-card__overlay,
.gv-gallery-card:focus .gv-gallery-card__overlay {
	opacity: 1;
	visibility: visible;
}

.gv-gallery-card__overlay i {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, #19a7f7 0%, var(--primary-color) 100%);
	color: #fff;
	font-size: 1rem;
	box-shadow: 0 16px 34px rgba(0, 155, 234, 0.32);
}

.gv-gallery-card__overlay strong {
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1.2;
}

/* ==========================================
   LIGHTBOX / GALERIA AMPLIADA
========================================== */

.gv-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 92px;
	background: radial-gradient(circle at center, rgba(0, 81, 128, 0.2), transparent 42%), rgba(1, 7, 13, 0.94);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.gv-lightbox[hidden] {
	display: none;
}

.gv-lightbox__figure {
	position: relative;
	width: min(1100px, 100%);
	margin: 0;
	text-align: center;
}

.gv-lightbox__image {
	display: block;
	width: 100%;
	max-height: 78vh;
	object-fit: contain;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background: #020b14;
	box-shadow: 0 40px 110px rgba(0, 0, 0, 0.58);
}

.gv-lightbox__caption {
	margin-top: 16px;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.45;
}

.gv-lightbox__counter {
	display: inline-flex;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.88rem;
	font-weight: 600;
}

.gv-lightbox__close,
.gv-lightbox__nav {
	position: absolute;
	z-index: 2;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	background: rgba(7, 17, 28, 0.92);
	color: #fff;
	cursor: pointer;
	transition:
		transform 0.24s ease,
		border-color 0.24s ease,
		background-color 0.24s ease,
		color 0.24s ease;
}

.gv-lightbox__close:hover,
.gv-lightbox__close:focus,
.gv-lightbox__nav:hover,
.gv-lightbox__nav:focus {
	transform: translateY(-2px);
	border-color: rgba(25, 167, 247, 0.54);
	background: rgba(0, 81, 128, 0.96);
	color: #fff;
	outline: none;
}

.gv-lightbox__close:focus-visible,
.gv-lightbox__nav:focus-visible {
	outline: 3px solid rgba(25, 167, 247, 0.45);
	outline-offset: 4px;
}

.gv-lightbox__close {
	top: 24px;
	right: 24px;
}

.gv-lightbox__nav--prev {
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
}

.gv-lightbox__nav--next {
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
}

.gv-lightbox__nav--prev:hover,
.gv-lightbox__nav--prev:focus,
.gv-lightbox__nav--next:hover,
.gv-lightbox__nav--next:focus {
	transform: translateY(-50%) scale(1.04);
}

/* ==========================================
   RESPONSIVO
========================================== */

@media (max-width: 1199.98px) {
	.gv-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991.98px) {
	.gv-gallery {
		padding: 95px 0;
	}

	.gv-gallery__header {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 42px;
	}

	.gv-gallery__action {
		padding-bottom: 0;
	}

	.gv-lightbox {
		padding: 32px 76px;
	}
}

@media (max-width: 767.98px) {
	.gv-gallery {
		padding: 78px 0;
	}

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

	.gv-section-tag {
		margin-bottom: 16px;
		padding: 8px 14px;
		font-size: 0.68rem;
		letter-spacing: 0.1em;
	}

	.gv-gallery__title {
		font-size: clamp(1.85rem, 8vw, 2.55rem);
		letter-spacing: -0.035em;
	}

	.gv-gallery__description {
		font-size: 0.98rem;
		line-height: 1.7;
	}

	.gv-gallery__action,
	.gv-gallery__action .btn-site {
		width: 100%;
	}

	.gv-lightbox {
		padding: 72px 16px 32px;
	}

	.gv-lightbox__image {
		max-height: 66vh;
		border-radius: 14px;
	}

	.gv-lightbox__close {
		top: 18px;
		right: 18px;
	}

	.gv-lightbox__nav {
		width: 44px;
		height: 44px;
	}

	.gv-lightbox__nav--prev {
		left: 16px;
		top: auto;
		bottom: 22px;
		transform: none;
	}

	.gv-lightbox__nav--next {
		right: 16px;
		top: auto;
		bottom: 22px;
		transform: none;
	}

	.gv-lightbox__nav--prev:hover,
	.gv-lightbox__nav--prev:focus,
	.gv-lightbox__nav--next:hover,
	.gv-lightbox__nav--next:focus {
		transform: scale(1.04);
	}
}

@media (max-width: 575.98px) {
	.gv-gallery {
		padding: 68px 0;
	}

	.gv-gallery__header {
		margin-bottom: 34px;
	}

	.gv-gallery-card {
		border-radius: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gv-gallery-card,
	.gv-gallery-card img,
	.gv-gallery-card__overlay,
	.gv-lightbox__close,
	.gv-lightbox__nav {
		transition: none;
	}
}

/* ==========================================
   GV AUTOMEC - MARCAS / LETREIRO
========================================== */

.gv-ticker-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin-top: 18px;
	padding: 9px 14px;
	border: 1px solid rgba(56, 189, 255, 0.38);
	border-radius: 999px;
	background: rgba(0, 155, 234, 0.08);
	color: #8ddcff;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition:
		color 0.24s ease,
		border-color 0.24s ease,
		background-color 0.24s ease,
		transform 0.24s ease;
}

.gv-ticker-toggle:hover,
.gv-ticker-toggle:focus-visible {
	border-color: rgba(56, 189, 255, 0.72);
	background: rgba(0, 155, 234, 0.17);
	color: #fff;
	outline: 3px solid rgba(56, 189, 255, 0.18);
	outline-offset: 3px;
	transform: translateY(-2px);
}

.gv-ticker-toggle__icon {
	position: relative;
	width: 12px;
	height: 12px;
	display: inline-block;
	flex: 0 0 12px;
}

.gv-ticker-toggle__icon::before,
.gv-ticker-toggle__icon::after {
	content: "";
	position: absolute;
	top: 1px;
	bottom: 1px;
	width: 3px;
	border-radius: 1px;
	background: currentColor;
}

.gv-ticker-toggle__icon::before {
	left: 1px;
}

.gv-ticker-toggle__icon::after {
	right: 1px;
}

.gv-ticker-toggle[aria-pressed="true"] .gv-ticker-toggle__icon::before {
	top: 0;
	left: 2px;
	bottom: auto;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 9px solid currentColor;
	border-radius: 0;
	background: transparent;
}

.gv-ticker-toggle[aria-pressed="true"] .gv-ticker-toggle__icon::after {
	display: none;
}

.gv-brands {
	position: relative;
	padding: 100px 0 105px;
	overflow: hidden;
	background: radial-gradient(circle at 50% 0%, rgba(0, 81, 128, 0.24), transparent 34%), linear-gradient(180deg, #04111c 0%, #020b14 58%, #03101a 100%);
	color: #fff;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	isolation: isolate;
}

.gv-brands__shape {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
}

.gv-brands__shape--one {
	top: 40px;
	left: 12%;
	width: 300px;
	height: 300px;
	background: rgba(0, 81, 128, 0.2);
}

.gv-brands__shape--two {
	right: 10%;
	bottom: 45px;
	width: 360px;
	height: 360px;
	background: rgba(0, 155, 234, 0.1);
}

.gv-brands__header {
	max-width: 850px;
	margin: 0 auto 46px;
	text-align: center;
}

.gv-section-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	padding: 8px 17px;
	border: 1px solid rgba(0, 155, 234, 0.52);
	border-radius: 999px;
	background: rgba(0, 155, 234, 0.08);
	color: #38bdff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
	box-shadow: 0 0 30px rgba(0, 155, 234, 0.12);
}

.gv-brands__title {
	max-width: 900px;
	margin: 0 auto;
	color: #fff;
	font-size: clamp(2rem, 3.2vw, 3rem);
	font-weight: 800;
	line-height: 1.14;
	letter-spacing: -0.045em;
}

.gv-brands__title strong {
	color: #19a7f7;
	font-weight: 800;
}

.gv-brands__description {
	max-width: 720px;
	margin: 18px auto 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.02rem;
	line-height: 1.75;
}

.gv-brands__marquee {
	position: relative;
	width: 100%;
	overflow: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
	overscroll-behavior-inline: contain;
	padding: 4px 0;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.gv-brands__marquee::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}

.gv-brands__track {
	display: flex;
	width: max-content;
	gap: 18px;
	animation: gvBrandsMarquee 34s linear infinite;
	backface-visibility: hidden;
	will-change: transform;
}

.gv-brands__marquee:hover .gv-brands__track,
.gv-brands__marquee:focus .gv-brands__track,
.gv-brands__marquee.is-paused .gv-brands__track {
	animation-play-state: paused;
}

.gv-brands__list {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gv-brands__list li {
	flex: 0 0 auto;
}

.gv-brands__list span {
	position: relative;
	min-width: 210px;
	min-height: 76px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 20px 34px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 16px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(11, 24, 38, 0.88) 0%, rgba(7, 17, 28, 0.94) 100%);
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.08rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
	text-align: center;
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
	transition:
		color 0.28s ease,
		border-color 0.28s ease,
		background-color 0.28s ease,
		box-shadow 0.28s ease,
		transform 0.28s ease;
}

.gv-brands__list span::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 22% 12%, rgba(25, 167, 247, 0.18), transparent 34%), linear-gradient(135deg, rgba(0, 155, 234, 0.1), transparent 48%);
	opacity: 0;
	transition: opacity 0.28s ease;
	pointer-events: none;
}

.gv-brands__list span:hover {
	transform: translateY(-4px);
	color: #fff;
	border-color: rgba(25, 167, 247, 0.36);
	box-shadow: 0 26px 62px rgba(0, 0, 0, 0.3);
}

.gv-brands__list span:hover::before {
	opacity: 1;
}

@keyframes gvBrandsMarquee {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(calc(-50% - 9px), 0, 0);
	}
}

/* ==========================================
   RESPONSIVO
========================================== */

@media (max-width: 991.98px) {
	.gv-brands {
		padding: 90px 0;
	}

	.gv-brands__header {
		margin-bottom: 40px;
	}

	.gv-brands__track {
		animation-duration: 30s;
	}

	.gv-brands__list span {
		min-width: 190px;
		min-height: 70px;
		padding: 18px 28px;
		font-size: 1rem;
	}
}

@media (max-width: 767.98px) {
	.gv-brands {
		padding: 78px 0;
	}

	.gv-section-tag {
		margin-bottom: 16px;
		padding: 8px 14px;
		font-size: 0.68rem;
		letter-spacing: 0.1em;
	}

	.gv-brands__title {
		font-size: clamp(1.85rem, 8vw, 2.45rem);
		letter-spacing: -0.035em;
	}

	.gv-brands__description {
		font-size: 0.98rem;
		line-height: 1.7;
	}

	.gv-brands__marquee {
		-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
		mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
	}

	.gv-brands__track,
	.gv-brands__list {
		gap: 14px;
	}

	.gv-brands__list span {
		min-width: 168px;
		min-height: 66px;
		padding: 17px 24px;
		border-radius: 14px;
		font-size: 0.96rem;
	}

	@keyframes gvBrandsMarquee {
		0% {
			transform: translate3d(0, 0, 0);
		}

		100% {
			transform: translate3d(calc(-50% - 7px), 0, 0);
		}
	}
}

@media (max-width: 575.98px) {
	.gv-brands {
		padding: 68px 0;
	}

	.gv-brands__header {
		margin-bottom: 34px;
	}

	.gv-brands__track {
		animation-duration: 26s;
	}

	.gv-brands__list span {
		min-width: 150px;
		min-height: 62px;
		padding: 16px 20px;
		font-size: 0.92rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gv-brands__track {
		animation-duration: 34s !important;
		animation-iteration-count: infinite !important;
	}

	.gv-brands__list span {
		transition: none;
	}
}

/* ==========================================
   GV AUTOMEC - DEPOIMENTOS EM LETREIRO
========================================== */

.gv-testimonials-ticker {
	position: relative;
	padding: 110px 0 115px;
	overflow: hidden;
	background: radial-gradient(circle at 40% 0%, rgba(0, 81, 128, 0.24), transparent 35%), linear-gradient(180deg, #04111c 0%, #020b14 58%, #03101a 100%);
	color: #fff;
	isolation: isolate;
}

.gv-testimonials-ticker__shape {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
}

.gv-testimonials-ticker__shape--one {
	top: 60px;
	left: 10%;
	width: 300px;
	height: 300px;
	background: rgba(0, 81, 128, 0.2);
}

.gv-testimonials-ticker__shape--two {
	right: 8%;
	bottom: 70px;
	width: 360px;
	height: 360px;
	background: rgba(0, 155, 234, 0.1);
}

.gv-testimonials-ticker__header {
	max-width: 860px;
	margin: 0 0 46px;
}

.gv-section-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	padding: 8px 17px;
	border: 1px solid rgba(0, 155, 234, 0.52);
	border-radius: 999px;
	background: rgba(0, 155, 234, 0.08);
	color: #38bdff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
	box-shadow: 0 0 30px rgba(0, 155, 234, 0.12);
}

.gv-testimonials-ticker__title {
	max-width: 900px;
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 3.55vw, 3.25rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.045em;
}

.gv-testimonials-ticker__title strong {
	color: #19a7f7;
	font-weight: 800;
}

.gv-testimonials-ticker__description {
	max-width: 720px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.03rem;
	line-height: 1.75;
}

.gv-testimonials-ticker__viewport {
	position: relative;
	width: 100%;
	overflow: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
	overscroll-behavior-inline: contain;
	padding: 4px 0;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.gv-testimonials-ticker__viewport::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}

.gv-testimonials-ticker__track {
	display: flex;
	width: max-content;
	gap: 22px;
	animation: gvTestimonialsTicker 48s linear infinite;
	backface-visibility: hidden;
	will-change: transform;
}

.gv-testimonials-ticker__viewport:hover .gv-testimonials-ticker__track,
.gv-testimonials-ticker__viewport:focus-within .gv-testimonials-ticker__track,
.gv-testimonials-ticker__viewport.is-paused .gv-testimonials-ticker__track {
	animation-play-state: paused;
}

.gv-testimonials-ticker__list {
	display: flex;
	align-items: stretch;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gv-testimonials-ticker__list li {
	flex: 0 0 auto;
}

.gv-testimonial-ticker-card {
	position: relative;
	width: 380px;
	min-height: 232px;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 30px 28px 28px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(11, 24, 38, 0.96) 0%, rgba(7, 17, 28, 0.98) 100%);
	box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
	transition:
		transform 0.32s ease,
		border-color 0.32s ease,
		box-shadow 0.32s ease;
}

.gv-testimonial-ticker-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 18% 8%, rgba(25, 167, 247, 0.16), transparent 30%), linear-gradient(135deg, rgba(0, 155, 234, 0.1), transparent 46%);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.32s ease;
}

.gv-testimonial-ticker-card:hover {
	transform: translateY(-6px);
	border-color: rgba(25, 167, 247, 0.36);
	box-shadow: 0 30px 75px rgba(0, 0, 0, 0.34);
}

.gv-testimonial-ticker-card:hover::before {
	opacity: 1;
}

.gv-testimonial-ticker-card__stars {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 18px;
	color: #19a7f7;
	font-size: 0.95rem;
	line-height: 1;
}

.gv-testimonial-ticker-card blockquote {
	position: relative;
	z-index: 2;
	flex: 1 1 auto;
	margin: 0;
	color: #fff;
	font-size: 0.98rem;
	font-weight: 700;
	font-style: italic;
	line-height: 1.62;
}

.gv-testimonial-ticker-card footer {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 3px;
	margin-top: 26px;
}

.gv-testimonial-ticker-card footer strong {
	color: #fff;
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.25;
}

.gv-testimonial-ticker-card footer span {
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.3;
}

@keyframes gvTestimonialsTicker {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(calc(-50% - 11px), 0, 0);
	}
}

/* ==========================================
   RESPONSIVO
========================================== */

@media (max-width: 1199.98px) {
	.gv-testimonial-ticker-card {
		width: 350px;
	}

	.gv-testimonials-ticker__track {
		animation-duration: 44s;
	}
}

@media (max-width: 991.98px) {
	.gv-testimonials-ticker {
		padding: 95px 0;
	}

	.gv-testimonials-ticker__header {
		margin-bottom: 40px;
	}

	.gv-testimonial-ticker-card {
		width: 330px;
		min-height: 226px;
		padding: 28px 24px 26px;
	}
}

@media (max-width: 767.98px) {
	.gv-testimonials-ticker {
		padding: 78px 0;
	}

	.gv-section-tag {
		margin-bottom: 16px;
		padding: 8px 14px;
		font-size: 0.68rem;
		letter-spacing: 0.1em;
	}

	.gv-testimonials-ticker__title {
		font-size: clamp(1.85rem, 8vw, 2.55rem);
		letter-spacing: -0.035em;
	}

	.gv-testimonials-ticker__description {
		font-size: 0.98rem;
		line-height: 1.7;
	}

	.gv-testimonials-ticker__viewport {
		-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
		mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
	}

	.gv-testimonials-ticker__track,
	.gv-testimonials-ticker__list {
		gap: 16px;
	}

	.gv-testimonial-ticker-card {
		width: 300px;
		min-height: 224px;
		padding: 26px 22px 24px;
		border-radius: 16px;
	}

	.gv-testimonial-ticker-card blockquote {
		font-size: 0.93rem;
		line-height: 1.6;
	}

	@keyframes gvTestimonialsTicker {
		0% {
			transform: translate3d(0, 0, 0);
		}

		100% {
			transform: translate3d(calc(-50% - 8px), 0, 0);
		}
	}
}

@media (max-width: 575.98px) {
	.gv-testimonials-ticker {
		padding: 68px 0;
	}

	.gv-testimonials-ticker__header {
		margin-bottom: 34px;
	}

	.gv-testimonials-ticker__track {
		animation-duration: 40s;
	}

	.gv-testimonial-ticker-card {
		width: 280px;
		min-height: 230px;
		padding: 24px 20px 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gv-testimonials-ticker__track {
		animation-duration: 48s !important;
		animation-iteration-count: infinite !important;
	}

	.gv-testimonial-ticker-card,
	.gv-testimonial-ticker-card::before {
		transition: none;
	}
}

/* ==========================================
   GV AUTOMEC - FAQ + CTA
========================================== */

.gv-faq-cta {
	position: relative;
	padding: 110px 0 120px;
	overflow: hidden;
	background: radial-gradient(circle at 38% 0%, rgba(0, 81, 128, 0.24), transparent 35%), linear-gradient(180deg, #04111c 0%, #020b14 58%, #03101a 100%);
	color: #fff;
	isolation: isolate;
}

.gv-faq-cta__shape {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
}

.gv-faq-cta__shape--one {
	top: 70px;
	left: 8%;
	width: 320px;
	height: 320px;
	background: rgba(0, 81, 128, 0.2);
}

.gv-faq-cta__shape--two {
	right: 7%;
	bottom: 80px;
	width: 380px;
	height: 380px;
	background: rgba(0, 155, 234, 0.11);
}

.gv-faq-cta__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
	gap: 48px;
	align-items: start;
}

.gv-faq-cta__content {
	min-width: 0;
}

.gv-section-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	padding: 8px 17px;
	border: 1px solid rgba(0, 155, 234, 0.52);
	border-radius: 999px;
	background: rgba(0, 155, 234, 0.08);
	color: #38bdff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
	box-shadow: 0 0 30px rgba(0, 155, 234, 0.12);
}

.gv-faq-cta__title {
	max-width: 760px;
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 3.55vw, 3.25rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.045em;
}

.gv-faq-cta__title strong {
	color: #19a7f7;
	font-weight: 800;
}

.gv-faq-cta__description {
	max-width: 720px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.03rem;
	line-height: 1.75;
}

.gv-faq-cta__accordion {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 36px;
}

.gv-faq-cta__item {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(11, 24, 38, 0.96) 0%, rgba(7, 17, 28, 0.98) 100%);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
	transition:
		border-color 0.28s ease,
		box-shadow 0.28s ease,
		transform 0.28s ease;
}

.gv-faq-cta__item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 12% 0%, rgba(25, 167, 247, 0.14), transparent 32%), linear-gradient(135deg, rgba(0, 155, 234, 0.08), transparent 48%);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.28s ease;
}

.gv-faq-cta__item:hover,
.gv-faq-cta__item.is-active {
	border-color: rgba(25, 167, 247, 0.32);
	box-shadow: 0 26px 64px rgba(0, 0, 0, 0.26);
}

.gv-faq-cta__item:hover::before,
.gv-faq-cta__item.is-active::before {
	opacity: 1;
}

.gv-faq-cta__question {
	position: relative;
	z-index: 2;
	margin: 0;
}

.gv-faq-cta__button {
	width: 100%;
	min-height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 24px;
	border: 0;
	background: transparent;
	color: #fff;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.35;
	text-align: left;
	cursor: pointer;
}

.gv-faq-cta__button i {
	flex: 0 0 auto;
	color: #19a7f7;
	font-size: 0.88rem;
	transition: transform 0.28s ease;
}

.gv-faq-cta__button[aria-expanded="true"] i {
	transform: rotate(180deg);
}

.gv-faq-cta__button:focus {
	outline: none;
}

.gv-faq-cta__button:focus-visible {
	outline: 3px solid rgba(25, 167, 247, 0.42);
	outline-offset: -5px;
	border-radius: 16px;
}

.gv-faq-cta__answer {
	position: relative;
	z-index: 2;
	padding: 0 24px 22px;
}

.gv-faq-cta__answer p {
	max-width: 760px;
	margin: 0;
	padding-top: 2px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.97rem;
	line-height: 1.75;
}

.gv-faq-cta__box {
	position: sticky;
	top: 110px;
	overflow: hidden;
	padding: 38px 34px 34px;
	border: 1px solid rgba(25, 167, 247, 0.18);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(11, 24, 38, 0.96) 0%, rgba(7, 17, 28, 0.98) 100%);
	box-shadow:
		0 32px 88px rgba(0, 0, 0, 0.34),
		0 0 80px rgba(0, 81, 128, 0.12);
}

.gv-faq-cta__box-glow {
	position: absolute;
	top: -120px;
	right: -120px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(0, 155, 234, 0.16);
	filter: blur(70px);
	pointer-events: none;
}

.gv-faq-cta__box-icon {
	position: relative;
	z-index: 2;
	width: 62px;
	height: 62px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 26px;
	border-radius: 18px;
	background: linear-gradient(135deg, #19a7f7 0%, var(--primary-color) 100%);
	color: #fff;
	font-size: 1.35rem;
	box-shadow: 0 18px 42px rgba(0, 155, 234, 0.28);
}

.gv-faq-cta__box h2 {
	position: relative;
	z-index: 2;
	margin: 0;
	color: #fff;
	font-size: clamp(1.75rem, 2.5vw, 2.35rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.04em;
}

.gv-faq-cta__box p {
	position: relative;
	z-index: 2;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1rem;
	line-height: 1.72;
}

.gv-faq-cta__info {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 26px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.gv-faq-cta__info a {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.55;
	text-decoration: none;
	transition: color 0.24s ease;
}

.gv-faq-cta__info a:hover,
.gv-faq-cta__info a:focus {
	color: #fff;
	text-decoration: none;
}

.gv-faq-cta__info i {
	flex: 0 0 auto;
	margin-top: 4px;
	color: #19a7f7;
}

.gv-faq-cta__actions {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 28px;
}

.gv-faq-cta__action {
	position: relative;
	min-height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 14px;
	overflow: hidden;
	color: #fff;
	font-size: 0.96rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease,
		border-color 0.28s ease,
		background-color 0.28s ease;
}

.gv-faq-cta__action:hover,
.gv-faq-cta__action:focus {
	color: #fff;
	text-decoration: none;
	transform: translateY(-3px);
}

.gv-faq-cta__action:focus-visible {
	outline: 3px solid rgba(25, 167, 247, 0.42);
	outline-offset: 4px;
}

.gv-faq-cta__action i,
.gv-faq-cta__action span {
	position: relative;
	z-index: 2;
}

.gv-faq-cta__action--whatsapp {
	background: linear-gradient(135deg, #25d366 0%, #18a84f 100%);
	box-shadow: 0 16px 38px rgba(37, 211, 102, 0.24);
	animation: gvFaqButtonPulse 2.8s ease-in-out infinite;
}

.gv-faq-cta__action--whatsapp::before {
	content: "";
	position: absolute;
	top: -45%;
	left: -80%;
	z-index: 1;
	width: 48%;
	height: 190%;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.16) 44%,
		rgba(255, 255, 255, 0.54) 50%,
		rgba(255, 255, 255, 0.16) 56%,
		transparent 100%
	);
	transform: rotate(24deg);
	animation: gvFaqButtonShine 3.6s ease-in-out infinite;
}

.gv-faq-cta__action--phone {
	background: linear-gradient(135deg, #19a7f7 0%, var(--primary-color) 100%);
	box-shadow: 0 16px 38px rgba(0, 155, 234, 0.24);
}

.gv-faq-cta__action--outline {
	background: rgba(255, 255, 255, 0.035);
	border-color: rgba(255, 255, 255, 0.12);
}

.gv-faq-cta__action--outline:hover,
.gv-faq-cta__action--outline:focus {
	border-color: rgba(25, 167, 247, 0.42);
	background: rgba(0, 81, 128, 0.22);
}

@keyframes gvFaqButtonShine {
	0% {
		left: -80%;
		opacity: 0;
	}

	18% {
		opacity: 1;
	}

	42% {
		left: 130%;
		opacity: 0;
	}

	100% {
		left: 130%;
		opacity: 0;
	}
}

@keyframes gvFaqButtonPulse {
	0% {
		box-shadow: 0 16px 38px rgba(37, 211, 102, 0.22);
	}

	50% {
		box-shadow:
			0 16px 38px rgba(37, 211, 102, 0.36),
			0 0 0 8px rgba(37, 211, 102, 0.06);
	}

	100% {
		box-shadow: 0 16px 38px rgba(37, 211, 102, 0.22);
	}
}

/* ==========================================
   RESPONSIVO
========================================== */

@media (max-width: 1199.98px) {
	.gv-faq-cta__grid {
		grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
		gap: 34px;
	}

	.gv-faq-cta__box {
		padding: 34px 28px 30px;
	}
}

@media (max-width: 991.98px) {
	.gv-faq-cta {
		padding: 95px 0;
	}

	.gv-faq-cta__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.gv-faq-cta__box {
		position: relative;
		top: auto;
	}
}

@media (max-width: 767.98px) {
	.gv-faq-cta {
		padding: 78px 0;
	}

	.gv-section-tag {
		margin-bottom: 16px;
		padding: 8px 14px;
		font-size: 0.68rem;
		letter-spacing: 0.1em;
	}

	.gv-faq-cta__title {
		font-size: clamp(1.85rem, 8vw, 2.55rem);
		letter-spacing: -0.035em;
	}

	.gv-faq-cta__description {
		font-size: 0.98rem;
		line-height: 1.7;
	}

	.gv-faq-cta__accordion {
		margin-top: 30px;
		gap: 12px;
	}

	.gv-faq-cta__button {
		min-height: 64px;
		padding: 18px 20px;
		font-size: 0.94rem;
	}

	.gv-faq-cta__answer {
		padding: 0 20px 20px;
	}

	.gv-faq-cta__answer p {
		font-size: 0.93rem;
		line-height: 1.68;
	}

	.gv-faq-cta__box {
		padding: 30px 22px 24px;
		border-radius: 20px;
	}

	.gv-faq-cta__box-icon {
		width: 56px;
		height: 56px;
		margin-bottom: 22px;
		border-radius: 16px;
	}

	.gv-faq-cta__box h2 {
		font-size: clamp(1.55rem, 7vw, 2.15rem);
	}

	.gv-faq-cta__action {
		width: 100%;
	}
}

@media (max-width: 575.98px) {
	.gv-faq-cta {
		padding: 68px 0;
	}

	.gv-faq-cta__button {
		align-items: flex-start;
	}

	.gv-faq-cta__button i {
		margin-top: 3px;
	}

	.gv-faq-cta__box {
		border-radius: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gv-faq-cta__item,
	.gv-faq-cta__item::before,
	.gv-faq-cta__button i,
	.gv-faq-cta__action,
	.gv-faq-cta__action--whatsapp,
	.gv-faq-cta__action--whatsapp::before {
		animation: none;
		transition: none;
	}
}

/* ==========================================
   GV AUTOMEC - CONTATO / FORMULÁRIO HOME
========================================== */

.gv-contact {
	position: relative;
	padding: 110px 0 120px;
	overflow: hidden;
	background: radial-gradient(circle at 38% 0%, rgba(0, 81, 128, 0.24), transparent 35%), linear-gradient(180deg, #04111c 0%, #020b14 58%, #03101a 100%);
	color: #fff;
	isolation: isolate;
}

.gv-contact__shape {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
}

.gv-contact__shape--one {
	top: 70px;
	left: 7%;
	width: 320px;
	height: 320px;
	background: rgba(0, 81, 128, 0.2);
}

.gv-contact__shape--two {
	right: 8%;
	bottom: 80px;
	width: 380px;
	height: 380px;
	background: rgba(0, 155, 234, 0.11);
}

.gv-contact__grid {
	display: grid;
	grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
	gap: 72px;
	align-items: center;
}

.gv-contact__info {
	min-width: 0;
}

.gv-section-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	padding: 8px 17px;
	border: 1px solid rgba(0, 155, 234, 0.52);
	border-radius: 999px;
	background: rgba(0, 155, 234, 0.08);
	color: #38bdff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
	box-shadow: 0 0 30px rgba(0, 155, 234, 0.12);
}

.gv-contact__title {
	max-width: 560px;
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 3.55vw, 3.25rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.045em;
}

.gv-contact__title strong {
	color: #19a7f7;
	font-weight: 800;
}

.gv-contact__description {
	max-width: 500px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.03rem;
	line-height: 1.75;
}

.gv-contact__list {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 34px;
}

.gv-contact__item {
	display: flex;
	align-items: center;
	gap: 15px;
	color: #fff;
	text-decoration: none;
	transition:
		transform 0.28s ease,
		color 0.28s ease;
}

.gv-contact__item:hover,
.gv-contact__item:focus {
	color: #fff;
	text-decoration: none;
	transform: translateX(5px);
}

.gv-contact__item:focus-visible {
	outline: 3px solid rgba(25, 167, 247, 0.42);
	outline-offset: 5px;
	border-radius: 14px;
}

.gv-contact__icon {
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(25, 167, 247, 0.38);
	border-radius: 14px;
	background: rgba(25, 167, 247, 0.08);
	color: #19a7f7;
	font-size: 1rem;
	box-shadow: 0 14px 30px rgba(0, 155, 234, 0.1);
}

.gv-contact__text {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.gv-contact__text strong {
	color: #fff;
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.25;
	word-break: break-word;
}

.gv-contact__text small {
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.84rem;
	font-weight: 500;
	line-height: 1.3;
}

.gv-contact__form-wrapper {
	position: relative;
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(11, 24, 38, 0.96) 0%, rgba(7, 17, 28, 0.98) 100%);
	box-shadow:
		0 32px 88px rgba(0, 0, 0, 0.34),
		0 0 80px rgba(0, 81, 128, 0.12);
}

.gv-contact__form-wrapper::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(0, 155, 234, 0.15);
	filter: blur(70px);
	pointer-events: none;
}

/* ==========================================
   FORM HOME - ESCOPO EXCLUSIVO
========================================== */

.form-home {
	position: relative;
	z-index: 2;
	margin: 0;
}

.form-home__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.form-home .form-group {
	margin-bottom: 18px;
}

.form-home__group label {
	display: inline-flex;
	margin-bottom: 9px;
	color: #fff;
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.3;
}

.form-home .form-control {
	width: 100%;
	min-height: 54px;
	padding: 0 17px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	background-color: rgba(3, 12, 21, 0.72);
	color: #fff;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.4;
	box-shadow: none;
	outline: none;
	transition:
		border-color 0.28s ease,
		background-color 0.28s ease,
		box-shadow 0.28s ease;
}

.form-home .form-control::placeholder {
	color: rgba(255, 255, 255, 0.52);
}

.form-home .form-control:focus {
	border-color: rgba(25, 167, 247, 0.58);
	background-color: rgba(3, 12, 21, 0.92);
	box-shadow: 0 0 0 4px rgba(25, 167, 247, 0.1);
	color: #fff;
}

.form-home select.form-control {
	cursor: pointer;
	color: rgba(255, 255, 255, 0.82);
}

.form-home select.form-control option {
	background-color: #07111c;
	color: #fff;
}

.form-home textarea.form-control {
	min-height: 118px;
	padding-top: 15px;
	padding-bottom: 15px;
	resize: vertical;
}

.form-home__submit-group {
	margin-top: 4px;
	margin-bottom: 0 !important;
}

.form-home__submit {
	position: relative;
	min-height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 30px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	overflow: hidden;
	background: linear-gradient(135deg, #19a7f7 0%, var(--primary-color) 100%);
	color: #fff;
	font-family: inherit;
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 16px 38px rgba(0, 155, 234, 0.26);
	animation: formHomeButtonPulse 2.8s ease-in-out infinite;
	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease,
		border-color 0.28s ease;
}

.form-home__submit::before {
	content: "";
	position: absolute;
	top: -45%;
	left: -80%;
	z-index: 1;
	width: 48%;
	height: 190%;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.16) 44%,
		rgba(255, 255, 255, 0.56) 50%,
		rgba(255, 255, 255, 0.16) 56%,
		transparent 100%
	);
	transform: rotate(24deg);
	animation: formHomeButtonShine 3.6s ease-in-out infinite;
}

.form-home__submit span,
.form-home__submit i {
	position: relative;
	z-index: 2;
}

.form-home__submit:hover,
.form-home__submit:focus {
	transform: translateY(-3px);
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: 0 20px 48px rgba(0, 155, 234, 0.38);
	outline: none;
}

.form-home__submit:focus-visible {
	outline: 3px solid rgba(25, 167, 247, 0.42);
	outline-offset: 4px;
}

@keyframes formHomeButtonShine {
	0% {
		left: -80%;
		opacity: 0;
	}

	18% {
		opacity: 1;
	}

	42% {
		left: 130%;
		opacity: 0;
	}

	100% {
		left: 130%;
		opacity: 0;
	}
}

@keyframes formHomeButtonPulse {
	0% {
		box-shadow: 0 16px 38px rgba(0, 155, 234, 0.24);
	}

	50% {
		box-shadow:
			0 16px 38px rgba(0, 155, 234, 0.4),
			0 0 0 8px rgba(0, 155, 234, 0.06);
	}

	100% {
		box-shadow: 0 16px 38px rgba(0, 155, 234, 0.24);
	}
}

/* ==========================================
   RESPONSIVO
========================================== */

@media (max-width: 1199.98px) {
	.gv-contact__grid {
		grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
		gap: 46px;
	}

	.gv-contact__form-wrapper {
		padding: 30px;
	}
}

@media (max-width: 991.98px) {
	.gv-contact {
		padding: 95px 0;
	}

	.gv-contact__grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.gv-contact__info {
		max-width: 720px;
	}

	.gv-contact__description {
		max-width: 660px;
	}
}

@media (max-width: 767.98px) {
	.gv-contact {
		padding: 78px 0;
	}

	.gv-section-tag {
		margin-bottom: 16px;
		padding: 8px 14px;
		font-size: 0.68rem;
		letter-spacing: 0.1em;
	}

	.gv-contact__title {
		font-size: clamp(1.85rem, 8vw, 2.55rem);
		letter-spacing: -0.035em;
	}

	.gv-contact__description {
		font-size: 0.98rem;
		line-height: 1.7;
	}

	.gv-contact__list {
		margin-top: 30px;
	}

	.gv-contact__form-wrapper {
		padding: 26px 22px;
		border-radius: 20px;
	}

	.form-home__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.form-home .form-control {
		min-height: 52px;
		border-radius: 13px;
		font-size: 0.93rem;
	}

	.form-home__submit {
		width: 100%;
		min-height: 56px;
	}
}

@media (max-width: 575.98px) {
	.gv-contact {
		padding: 68px 0;
	}

	.gv-contact__item {
		align-items: flex-start;
	}

	.gv-contact__icon {
		width: 43px;
		height: 43px;
		border-radius: 13px;
	}

	.gv-contact__text strong {
		font-size: 0.92rem;
	}

	.gv-contact__form-wrapper {
		padding: 24px 18px;
		border-radius: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gv-contact__item,
	.form-home .form-control,
	.form-home__submit,
	.form-home__submit::before {
		animation: none;
		transition: none;
	}
}
