* {
	box-sizing: border-box;
}

body {
	font-family: "Roboto", sans-serif;
	-webkit-font-smoothing: antialiased;
	color: #777;
	margin: 0;
	background-color: #fff;
	padding-top: 124px;
}

@media (max-width: 991px) {
	body {
		padding-top: 88px;
	}
}

a {
	transition: all 0.4s;
	color: #cc0000;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

::selection {
	color: #fff;
	background-color: #999;
}

.main-header {
	background-color: #fff;
	position: fixed;
	width: 100%;
	z-index: 9999;
	top: 0;
	left: 0;
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.wrap-logo {
	display: flex;
	align-items: center;
	position: relative;
}

.custom-logo-link {
	display: block;
}

img.custom-logo {
	height: 5.4rem;
	width: auto;
	padding: 1.2rem 0;
	max-width: calc(100% - 2rem);
	object-fit: contain;
}

.top-menu {
	text-align: right;
	padding: 1rem 0;
	margin: 0;
}

.top-menu a {
	margin-right: 1rem;
}

.top-menu a.fa {
	font-size: 2rem;
	color: #fb0104;
	margin-top: 0.5rem;
	position: relative;
	top: 0.5rem;
}

a[class^="btn-"] {
	font-family: "Roboto", sans-serif;
	color: #fff;
	padding: 0.7rem 2.2rem;
	background-color: #fb0104;
	border: none;
	border-radius: 0.5rem;
	display: inline-block;
	white-space: nowrap;
	transition: all 0.3s;
	font-weight: 600;
	font-size: 0.8rem;
	cursor: pointer;
}

a[class^="btn-"]:hover {
	opacity: 0.9;
	color: #fff;
}

.menu-barr {
	background-color: #ffffffdd;
	border-top: 1px solid #888;
	margin: 0;
}

.nav {
	justify-content: space-between;
	padding: 0;
	margin: 0;
	width: 100%;
	flex-wrap: nowrap;
}

.nav li,
.sub-menu li {
	list-style: none;
}

.nav .menu-item {
	position: relative;
}

.nav .menu-item > a {
	padding: 0.5rem;
	color: #323232;
	width: 100%;
	display: inline-block;
	font-size: 0.95rem;
	text-wrap: nowrap;
}

.nav .menu-item > a:hover {
	color: #c00;
}

ul.sub-menu {
	padding: 0;
	display: none;
	background: #fff;
	min-width: 290px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.menu-item:hover .sub-menu {
	display: flex;
	flex-flow: column;
}

.menu-item-has-children > a {
	display: inline-block;
	position: relative;
}

.menu-item-has-children > a::after {
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f0d7";
	display: inline-flex;
	margin-left: 0.5rem;
}

.sub-menu li a {
	display: block;
	width: 100%;
	padding: 1.05rem 1.35rem;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #c00;
	transition: background-color 0.25s ease, color 0.25s ease;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sub-menu li:last-child a {
	border-bottom: none;
}

.sub-menu li a:hover {
	background-color: #f6f6f6;
	color: #a80000;
}

.menu-toggle {
	position: absolute;
	top: 1.5rem;
	left: 1rem;
	width: 2rem;
	height: 2rem;
	cursor: pointer;
	display: none;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle div {
	content: "";
	background: linear-gradient(to right, #000, #000);
	width: 2rem;
	height: 2px;
	position: absolute;
	left: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-toggle::before {
	top: 0.25rem;
}

.menu-toggle::after {
	bottom: 0.25rem;
}

.menu-toggle div {
	top: 50%;
	transform: translateY(-50%);
}

.menu-toggle.active::before,
.menu-toggle.active::after {
	opacity: 0;
}

.menu-toggle.active div:nth-child(1) {
	transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active div:nth-child(2) {
	transform: translateY(-50%) rotate(-45deg);
}

@media (min-width: 992px) {
	ul.sub-menu {
		position: absolute;
		z-index: 2;
	}
}

@media (max-width: 1199px) {
	.nav .menu-item > a {
		padding: 0.5rem 0.4rem;
		font-size: 0.8rem;
	}
}

@media (max-width: 991px) {
	.wrap-logo {
		justify-content: center;
	}

	img.custom-logo {
		height: 4.6rem;
		padding: 0.8rem 0;
	}

	.top-menu {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.nav {
		flex-flow: column;
		flex-wrap: wrap;
	}

	.nav .menu-item > a {
		padding: 0.5rem 2rem;
		font-weight: 500;
		text-transform: uppercase;
		font-size: 0.9rem;
	}

	.sub-menu li a {
		display: block;
		width: 100%;
		padding: 1.05rem 3rem;
	}

	.nav li.menu-item {
		width: 100%;
	}

	.menu-barr {
		transition: all 0.4s ease-in;
		background-color: #ffffffee;
		backdrop-filter: blur(12px);
		position: absolute;
		top: 5rem;
		left: -100%;
		width: 18rem;
		min-height: calc(100vh - 5rem);
		height: 100vh;
		z-index: 900000;
		border-top: none;
		overflow-y: auto;
	}

	.menu-barr.show {
		left: 0;
	}

	ul.sub-menu {
		display: block;
		position: relative;
		background: transparent;
		box-shadow: none;
		min-width: unset;
	}

	ul.sub-menu li {
		display: none;
	}

	.active.menu-item > a {
		background-color: #eee;
	}

	.menu-item-has-children.active > a,
	.menu-item-has-children.active > a:hover {
		background-color: #ddd;
	}

	.menu-item-has-children.active > ul a {
		padding-left: 3rem;
	}

	.menu-item-has-children > a::after {
		position: absolute;
		right: 1rem;
		top: 0.7rem;
	}
}

.home {
	padding: 3rem 0;
}

.home-banner-section {
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: #f2f2f2;
}

.home-banner-section picture,
.home-banner-section img {
	display: block;
	width: 100%;
	height: auto;
}

.home-banner-section .carousel-control-prev,
.home-banner-section .carousel-control-next {
	width: 4.5rem;
}

.home-banner-section .carousel-control-prev-icon,
.home-banner-section .carousel-control-next-icon {
	background-color: rgba(0, 0, 0, 0.38);
	border-radius: 50%;
	padding: 1.2rem;
	background-size: 55% 55%;
}

.home-cars-section {
	background: #fff;
	padding: 3.4rem 0 2.8rem;
}

.slider-novos {
	position: relative;
	padding: 0 1.8rem;
}

.item-novos {
	position: relative;
	padding: 1rem;
	text-align: center;
	display: block;
}

.item-novos .cont {
	background-color: #e9e9e9;
	position: relative;
	display: block;
	padding: 1.8rem 1.2rem 1rem;
	border-radius: 1rem;
	overflow: hidden;
	min-height: 350px;
}

.item-novos .logo {
	width: calc(100% - 1rem);
	height: 5rem;
	object-fit: contain;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}

.item-novos .foto {
	width: calc(100% + 4rem);
	position: relative;
	left: -2rem;
	height: 16rem;
	object-fit: contain;
	margin-top: 0.5rem;
}

.home-car-card {
	background: #eef0f3;
	border-radius: 16px;
	padding: 1.2rem 1.2rem 1rem;
	min-height: 350px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	overflow: hidden;
}

.home-car-logo-wrap {
	height: 95px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.8rem;
	width: 100%;
}

.home-car-logo-wrap img {
	max-width: min(86%, 260px);
	max-height: 88px;
	height: auto;
	width: auto;
	object-fit: contain;
	display: block;
}

.home-car-image-wrap {
	margin-top: auto;
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 188px;
}

.home-car-image-wrap img {
	max-width: 110%;
	max-height: 204px;
	height: auto;
	width: auto;
	object-fit: contain;
	display: block;
}

.home-cars-section .slick-prev,
.home-cars-section .slick-next {
	width: 4.5rem;
	height: auto;
	z-index: 3;
}

.home-cars-section .slick-prev {
	left: -0.7rem;
}

.home-cars-section .slick-next {
	right: -0.7rem;
}

.home-cars-section .slick-prev::before,
.home-cars-section .slick-next::before {
	content: '';
}

.home-cars-section .carousel-control-prev-icon,
.home-cars-section .carousel-control-next-icon {
	background-color: rgba(0, 0, 0, 0.38);
	border-radius: 50%;
	padding: 1.2rem;
	background-size: 55% 55%;
}

.home-cars-indicators {
	position: static;
	margin: 1.5rem 0 0;
	gap: 0.65rem;
	justify-content: center;
	align-items: center;
	padding: 0;
	left: auto;
	right: auto;
	bottom: auto;
	transform: none;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-left: 0;
	margin-right: 0;
}

.home-cars-indicators [data-bs-target] {
	width: 7px;
	height: 7px;
	border: 0;
	border-radius: 50%;
	background: #cccccc;
	opacity: 1;
	margin: 0;
}

.home-cars-indicators .active {
	background: #2d2d2d;
}

.home-cars-section .slick-dots {
	position: static;
	margin-top: 1.2rem;
}

.home-cars-section .slick-dots li {
	margin: 0 4px;
	width: 10px;
	height: 10px;
}

.home-cars-section .slick-dots li button {
	width: 10px;
	height: 10px;
	padding: 0;
}

.home-cars-section .slick-dots li button:before {
	font-size: 10px;
	line-height: 10px;
	width: 10px;
	height: 10px;
	color: #cccccc;
	opacity: 1;
}

.home-cars-section .slick-dots li.slick-active button:before {
	color: #2d2d2d;
	opacity: 1;
}

@media (max-width: 1199px) {
	.item-novos {
		padding: 0.8rem;
	}

	.item-novos .cont {
		min-height: 320px;
		padding: 1.4rem 0.9rem 0.9rem;
	}

	.item-novos .foto {
		height: 14rem;
	}
}

@media (max-width: 991px) {
	.home-cars-section {
		padding: 2.2rem 0 2.1rem;
	}

	.home-cars-section .container {
		max-width: 96%;
	}

	.slider-novos {
		padding: 0;
	}

	.item-novos {
		padding: 0.6rem 0.3rem;
	}

	.item-novos .cont {
		min-height: 300px;
		padding: 1rem 0.75rem 0.85rem;
	}

	.item-novos .logo {
		height: 76px;
		margin-bottom: 0.7rem;
	}

	.item-novos .foto {
		height: 12.2rem;
		left: -1.5rem;
		width: calc(100% + 3rem);
	}

	.home-cars-section .slick-prev,
	.home-cars-section .slick-next {
		width: 4.5rem;
	}

	.home-cars-section .slick-prev {
		left: 0.4rem;
	}

	.home-cars-section .slick-next {
		right: 0.4rem;
	}
}

.home-highlight-title {
	padding: 1.8rem 0 1.4rem;
	background: #fff;
	text-align: center;
}

.home-highlight-title h2 {
	margin: 0;
	font-size: 2.35rem;
	font-weight: 700;
	color: #323232;
	line-height: 1.25;
}

.home-highlight-cards {
	padding: 0.4rem 0 2.2rem;
	background: #fff;
}

.home-highlight-card {
	display: block;
	overflow: hidden;
	border-radius: 16px;
	background: #f2f2f2;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-highlight-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.home-highlight-card img {
	display: block;
	width: 100%;
	height: auto;
}

.home-seminovos {
	background-color: #e9e9e9;
	padding: 3rem 0 2.5rem;
}

.home-seminovos h2.title {
	color: #fb0104;
	font-weight: 700;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 0 1.25rem;
	font-size: 1.85rem;
}

.home-seminovos h2.title:after {
	content: "";
	position: relative;
	background-color: #777777;
	display: block;
	width: 100%;
	height: 0.13rem;
	margin-left: 1rem;
	top: 0.1rem;
}

.home-seminovos .slider-seminovos {
	margin: 0 -0.5rem;
}

.home-seminovos .item-seminovos {
	overflow: hidden;
	margin-bottom: 0.5rem;
	padding: 0 0.5rem;
	height: auto;
}

.home-seminovos .item-seminovos .card {
	margin: 0;
	border-radius: 0.5rem;
	border: 0;
	overflow: hidden;
	height: 100%;
	background: #fff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.home-seminovos .item-seminovos .thumb {
	display: block;
	width: 100%;
	background: #f3f3f3;
}

.home-seminovos .item-seminovos .thumb img {
	display: block;
	width: 100%;
	object-fit: cover;
	aspect-ratio: 12 / 8;
	height: auto;
}

.home-seminovos .item-seminovos .cont {
	padding: 0.8rem 1rem 1.1rem;
}

.home-seminovos .item-seminovos h3 {
	margin: 0 0 0.25rem;
	font-size: 1.25rem;
	font-weight: 900;
	color: #444;
	line-height: 1.25;
}

.home-seminovos .item-seminovos p {
	margin-bottom: 0;
	font-size: 1rem;
	color: #777;
}

.home-seminovos .item-seminovos p small {
	display: inline-block;
	margin-top: 0.85rem;
	color: #fb0104;
	font-size: 0.85rem;
}

.home-seminovos .item-seminovos .price {
	margin: 0.15rem 0 0.85rem;
	color: #fb0104;
	font-size: 1.55rem;
	font-weight: 900;
	line-height: 1.2;
}

.home-seminovos .item-seminovos .price .red {
	color: #fb0104;
}

.home-seminovos .item-seminovos .btn-2 {
	display: inline-block;
	padding: 0.55rem 1.1rem;
	border-radius: 0.45rem;
	background: #c4c3c4;
	color: #fff !important;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none !important;
}

.home-seminovos .item-seminovos .btn-2:hover {
	opacity: 0.9;
	color: #fff !important;
}

.home-seminovos .slick-dots {
	bottom: -1.6rem;
	position: relative;
	margin: 0.75rem 0 0;
}

.home-seminovos .slick-dots li button:before {
	font-size: 10px;
	color: #999;
	opacity: 1;
}

.home-seminovos .slick-dots li.slick-active button:before {
	color: #fb0104;
}

.home-seminovos-cta {
	margin-top: 1.75rem;
	text-align: center;
}

.home-seminovos-cta .btn-all {
	display: inline-block;
	padding: 0.7rem 1.4rem;
	border-radius: 0.45rem;
	background: #fb0104;
	color: #fff !important;
	font-weight: 700;
	text-decoration: none !important;
	transition: opacity 0.2s ease;
}

.home-seminovos-cta .btn-all:hover {
	opacity: 0.9;
	color: #fff !important;
}

@media (max-width: 991px) {
	.home-seminovos {
		padding: 2rem 0 1.75rem;
	}

	.home-seminovos h2.title {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}

	.home-seminovos .item-seminovos h3 {
		font-size: 1.15rem;
	}

	.home-seminovos .item-seminovos .price {
		font-size: 1.35rem;
	}
}

.site-footer {
	margin-top: 3rem;
	background: #ffffff;
	color: #555555;
	text-align: left;
}

.site-footer .footer-inner {
	width: min(1140px, calc(100% - 2rem));
	margin: 0 auto;
}

.site-footer .footer-units-bar {
	background: #5a5a5a;
	padding: 18px 0;
}

.site-footer .footer-unit-tabs {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.site-footer .footer-unit-tab {
	appearance: none;
	-webkit-appearance: none;
	min-width: 240px;
	height: 48px;
	padding: 0 24px;
	border: 1px solid #ffffff;
	background: #ffffff;
	color: #222222;
	font-family: "Roboto", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-footer .footer-unit-tab:hover {
	border-color: #c8102e;
	color: #c8102e;
}

.site-footer .footer-unit-tab.is-active,
.site-footer .footer-unit-tab.is-active:hover {
	background: #c8102e;
	border-color: #c8102e;
	color: #ffffff;
}

.site-footer .footer-body {
	padding: 28px 0 36px;
	background: #ffffff;
}

.site-footer .footer-grid {
	display: grid;
	grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
	gap: 24px;
	align-items: stretch;
}

.site-footer .footer-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.site-footer .footer-card {
	background: #f2f2f2;
	padding: 22px 24px;
}

.site-footer .footer-unit-name {
	margin: 0 0 10px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.15;
	color: #222222;
}

.site-footer .footer-unit-address {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.5;
	color: #666666;
}

.site-footer .footer-btn-directions {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 200px;
	height: 48px;
	padding: 0 22px;
	background: #c8102e;
	color: #ffffff !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none !important;
	border: 0;
	transition: opacity 0.2s ease;
}

.site-footer .footer-btn-directions:hover {
	opacity: 0.9;
	color: #ffffff !important;
}

.site-footer .footer-card-label {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.2;
	color: #777777;
}

.site-footer .footer-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 20px;
}

.site-footer .footer-mini-label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #222222;
}

.site-footer .footer-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #444444 !important;
	font-size: 15px;
	text-decoration: none !important;
}

.site-footer .footer-contact-link:hover {
	color: #c8102e !important;
}

.site-footer .footer-split-item p {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
	color: #666666;
}

.site-footer .footer-map-wrap {
	min-height: 460px;
	background: #eeeeee;
	border: 1px solid #e6e6e6;
	overflow: hidden;
}

.site-footer .footer-map-frame {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 460px;
	border: 0;
}

.site-footer .footer-bottom {
	background: #ffffff;
	border-top: 1px solid #e5e5e5;
	padding: 18px 0;
}

.site-footer .footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-footer .footer-ibama {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 1 auto;
	min-width: 0;
}

.site-footer .footer-ibama img {
	display: block;
	width: 52px;
	height: auto;
	object-fit: contain;
	flex: 0 0 auto;
}

.site-footer .footer-ibama span {
	font-size: 14px;
	line-height: 1.35;
	color: #666666;
	white-space: nowrap;
}

.site-footer .footer-credits {
	margin: 0;
	text-align: right;
	font-size: 13px;
	line-height: 1.6;
	color: #888888;
	flex: 1 1 auto;
}

.site-footer .footer-credits a {
	color: #c8102e !important;
	font-weight: 600;
	text-decoration: none !important;
}

.site-footer .footer-credits a:hover {
	color: #a40d25 !important;
}

.site-footer .footer-sep {
	margin: 0 8px;
	color: #bbbbbb;
}

.popup {
	position: fixed;
	background-color: #000000ee;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10000;
}

.popup-campanhas .video-wrap {
	background: #fff;
	padding: 2.5rem;
	border-radius: 16px;
	max-height: 85vh;
	overflow-y: auto;
	color: #333;
	width: min(92vw, 860px);
}

.popup-campanhas .video-wrap h3 {
	color: #fb0104;
	font-weight: 800;
	margin: 0 0 1.5rem;
}

.popup-campanhas .modal-note {
	font-size: 0.8rem;
	color: #666;
	margin-top: 2rem;
}

.close-modal {
	float: right;
	font-size: 2rem;
	font-weight: bold;
	cursor: pointer;
	color: #fb0104;
	line-height: 0.5;
}

@media (max-width: 991px) {
	.home-highlight-title {
		padding: 1.45rem 0 1.2rem;
	}

	.home-highlight-title h2 {
		font-size: 1.7rem;
	}

	.home-highlight-cards {
		padding: 0.2rem 0 1.65rem;
	}

	.site-footer {
		margin-top: 2rem;
	}

	.site-footer .footer-inner {
		width: calc(100% - 1.5rem);
	}

	.site-footer .footer-units-bar {
		padding: 14px 0;
	}

	.site-footer .footer-unit-tab {
		min-width: 0;
		flex: 1 1 calc(50% - 5px);
		height: 44px;
		padding: 0 10px;
		font-size: 11px;
	}

	.site-footer .footer-body {
		padding: 18px 0 24px;
	}

	.site-footer .footer-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.site-footer .footer-card {
		padding: 18px 16px;
	}

	.site-footer .footer-unit-name {
		font-size: 22px;
	}

	.site-footer .footer-btn-directions {
		width: 100%;
		min-width: 0;
	}

	.site-footer .footer-split {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.site-footer .footer-map-wrap,
	.site-footer .footer-map-frame {
		min-height: 280px;
	}

	.site-footer .footer-bottom-inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 14px;
	}

	.site-footer .footer-ibama {
		justify-content: center;
		flex-wrap: wrap;
	}

	.site-footer .footer-ibama span {
		white-space: normal;
		font-size: 13px;
	}

	.site-footer .footer-sep {
		display: none;
	}

	.site-footer .footer-credits {
		font-size: 12px;
		text-align: center;
	}

	.site-footer .footer-credits span,
	.site-footer .footer-credits a {
		display: block;
	}

	.popup-campanhas .video-wrap {
		width: 95%;
		padding: 1.5rem;
	}
}

