.root {
	box-sizing: border-box
}

:root {
	--bg: #111;
	--panel: #1e1e1e;
	--accent: #ff5b1f;
	--accent-alt: #ff5b1f;
	--muted: #999;
	--card: #161616
}

* {
	box-sizing: border-box
}
.elementor-heading-title {
	padding-top: 0;
    font-family: "Roboto", Sans-serif;
    font-size: 42px;
    font-weight: 600;
	line-height: 1.2;
    color: #B8B8B8;
}

body {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	margin: 0;
	background: radial-gradient(circle at 20% 15%, #181818 0%, #0f0f0f 60%, #0a0a0a 100%);
	color: #eee
}

/* Subtle animated top gradient bar */
body:after {
	content:"";
	position:fixed;left:0;top:0;right:0;height:4px;z-index:2000;
	background: var(--accent-grad);
	background-size:200% 100%;
	animation: barMove 6s linear infinite;
	pointer-events:none;
}
@keyframes barMove { to { background-position: -200% 0; } }

/* Centered navbar tweaks */
.navbar-centered .navbar-nav {
	text-align: center;
}

.navbar-centered .navbar-nav .nav-link {
	text-transform: uppercase;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.navbar-centered .navbar-brand img {
	display: block;
	margin: 0 auto;
}

@media (max-width: 991.98px) {
	.navbar-centered .navbar-nav {
		align-items: stretch;
	}

	.navbar-centered .navbar-nav .nav-item {
		width: 100%;
	}

	.navbar-centered .navbar-nav .nav-link {
		width: 100%;
		justify-content: center;
	}

	/* Hide search form in mobile menu */
	.navbar-renax form[role="search"] {
		display: none !important;
	}

	/* Modern Mobile Menu Styles */
	.navbar-renax .navbar-collapse {
		background-color: rgba(0, 0, 0, 0.95);
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		z-index: 1040; /* Below the toggler */
		height: 100vh;
		padding: 2rem;
		transform: translateY(-100%);
		transition: transform 0.35s ease-in-out, visibility 0.35s ease-in-out;
    	visibility: hidden;
	}

	.navbar-renax .navbar-collapse.show {
		transform: translateY(0);
		visibility: visible;
	}

	.navbar-renax .navbar-nav {
		text-align: center;
	}

	.navbar-renax .nav-link {
		color: #fff !important;
		font-size: 1.5rem;
		font-weight: 500;
		padding: 0.75rem 0;
	}

	.navbar-renax .navbar-toggler {
		z-index: 1050; /* Above the menu */
		border: none;
	}

	.navbar-renax .navbar-toggler:focus {
		box-shadow: none;
	}
	
	.navbar-renax .navbar-toggler-icon {
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	}

	/* When menu is open, change toggler to an 'X' */
	.navbar-renax .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e");
	}

	.navbar-renax .navbar-brand {
		z-index: 1050;
	}
}
/* estilo inicial */
header {
  position: fixed;
  top: 0;
  width: 100%;
  transition: background-color 0.3s, box-shadow 0.3s;
  background-color: transparent;
  z-index: 1000;
}

/* quando a página rolar além de certa altura */
header.scrolled {
  background-color: #ffffff;  /* ou cor sólida */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


header {
	background: #222;
}

header h1 {
	margin: 0;
	font-size: 18px;
	color: var(--accent)
}

header nav a {
	color: var(--accent);
	margin-left: 14px;
	text-decoration: none;
	font-size: 14px
}

/* Shell Bar (SAP-like) */
.shellbar {
	display: none
}

.shellbar .sb-left,
.shellbar .sb-center,
.shellbar .sb-right {
	display: flex;
	align-items: center;
	gap: 12px
}

.shellbar .sb-left {
	min-width: 220px
}

.sb-btn {
	background: transparent;
	border: 0;
	color: #ddd;
	font-size: 20px;
	cursor: pointer
}

.sb-logo img {
	width: 28px;
	height: 28px;
	border-radius: 4px;
	display: block
}

.sb-brand {
	color: #ddd;
	font-weight: 600
}

.sb-app-title {
	color: #eee;
	font-weight: 600
}

.sb-search input {
	background: #2a2a2a;
	border: 1px solid #333;
	border-radius: 16px;
	padding: 6px 10px;
	color: #ddd
}

/* legacy sb-link hidden (Bootstrap nav in use) */
.sb-link {
	display: none
}

.btn-accent {
	background: var(--accent);
	color: #fff;
	border: none;
}

.btn-accent:hover {
	background: #ff6d39;
	color: #fff;
}

.avatar-circle {
	width: 26px;
	height: 26px;
	background: #444;
	color: #fff;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.sb-link.strong {
	color: #fff;
	border: 1px solid #3a3a3a
}
	/* === DESKTOP (≥992px) === */
@media (min-width: 992px) {
  .user-menu {
    position: relative; /* importante para o dropdown se posicionar em relação ao avatar */
  }
  .user-menu .dropdown-menu {
    position: absolute; /* fica colado no avatar */
    right: 0;
    left: auto;
    top: 100%; /* logo abaixo do botão */
    margin-top: 0.5rem;
    min-width: 200px;
  }
}

/* === MOBILE (<992px) === */
@media (max-width: 991.98px) {
  .user-menu .dropdown-menu {
    position: relative; /* mantém dentro do fluxo do colapso */
    right: auto;
    left: 0;
    width: 100%;        /* ocupa largura total */
    margin-top: 0.25rem;
    border-radius: 0;   /* opcional */
  }
}


.sb-user {
	position: relative;
	display: flex;
	align-items: center
}

.sb-user .avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #444;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px
}

.sb-user:hover .dropdown {
	display: block
}

.dropdown {
	display: none;
	position: absolute;
	right: 0;
	top: 36px;
	background: #222;
	border: 1px solid #333;
	border-radius: 8px;
	min-width: 160px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5)
}

.dropdown-item {
	display: block;
	color: #ddd;
	text-decoration: none;
	padding: 8px 12px;
	font-size: 14px
}

.dropdown-item:hover {
	background: #2a2a2a
}

.dropdown-item.disabled {
	opacity: .6;
	pointer-events: none
}

@media(max-width:860px) {
	.sb-center {
		display: none
	}

	.sb-link {
		display: none
	}

	.sb-search {
		display: none
	}
}

.hero {
	position: relative;
	height: 360px;
	overflow: hidden;
	background: #000
}

/* Fullscreen hero variant */
.hero-full {
	height: 60vh;
	min-height: 500px;
	margin-top: 0;
	margin-bottom: 0;
}

/* Parallax contact banner (updated layout to match reference) */
.parallax-contact {
	position: relative;
	min-height: 40vh;
	display:flex;
	align-items:center;
	justify-content:center;
	overflow:hidden;
	background: #000;
}
.parallax-contact .bg-layer { position:absolute; inset:0; z-index:0; background-position:center; background-size:cover; background-repeat:no-repeat; background-attachment:fixed; }
.parallax-contact .bg-layer img { display:none; }
.parallax-contact .bg-gradient { position:absolute;     filter: brightness(0.0); inset:0; background:linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.6) 55%, rgba(0,0,0,.86) 100%); z-index:1; }
.parallax-contact .parallax-content { position:relative; z-index:2; width:100%; max-width:1100px; text-align:center; padding: 0vh 20px; display:flex; flex-direction:column; align-items:center; }
.parallax-contact .parallax-deco { width:3px; height:42px; background:var(--accent); margin-bottom:18px; border-radius:2px; }
.parallax-contact .overline { font-size:.675rem; letter-spacing:.35em; font-weight:700; margin:0 0 14px; color:var(--accent); }
.parallax-contact .parallax-title { font-size:2.6rem; font-weight:800; margin:0 0 12px; color:#fff; text-transform:uppercase; letter-spacing:1px; }
.parallax-contact .parallax-sub { color:#e6e6e6; font-size:.95rem; letter-spacing:.06em; font-weight:600; margin:0 0 22px; max-width:820px; }
.parallax-contact .parallax-actions { display:flex; gap:18px; align-items:center; justify-content:center; margin-top:6px; }
.btn-wa { display:inline-flex; align-items:center; gap:12px; background:var(--accent); color:#111; padding:14px 28px; border-radius:40px; font-weight:800; text-decoration:none; box-shadow:0 12px 36px rgba(255,91,31,0.12); }
.btn-wa svg { width:18px; height:18px; color:#111; }
.btn-outline { display:inline-flex; align-items:center; gap:12px; padding:12px 26px; border-radius:40px; background:transparent; color:#fff; border:1px solid rgba(255,255,255,0.55); text-decoration:none; font-weight:700; }
.btn-outline:hover { background: rgba(255,255,255,0.06); }

@media(max-width:900px){
	.parallax-contact{min-height:60vh;}
	.parallax-contact .parallax-title{font-size:1.6rem;}
	.parallax-contact .parallax-sub{font-size:.92rem}
	.parallax-contact .parallax-actions { flex-direction:column; }
}

.hero-full .hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(1.75);
}

.hero-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.85) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
}

.hero-content .lead {
	color: #ddd;
}

.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.6
}

.hero-overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center
}

.hero-overlay h1 {
	color: var(--accent);
	font-size: 40px;
	letter-spacing: 4px
}

.stock-filters {
	position: relative;
	margin-top: 48px;
	padding: 60px 20px;
	background: linear-gradient(180deg, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0.85) 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.filter-btn {
	display: inline-block;
	padding: 12px 32px;
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	border-radius: 40px;
	color: #e8e8e8;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	background: transparent;
	transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
	border-color: #B8B8B8;
	color: #B8B8B8;
	background: rgba(184, 184, 184, 0.08);
	box-shadow: 0 6px 20px rgba(184, 184, 184, 0.15);
}

.stock {
	position: relative;
	padding: 0 20px 48px;
	background: linear-gradient(180deg, rgba(7, 7, 7, 0.82) 0%, rgba(7, 7, 7, 0.7) 42%, rgba(7, 7, 7, 0.9) 100%);
}

.stock-banner-content {
	position: relative;
	z-index: 1;
	padding: 110px 0 70px;
}

.stock-banner-image {
	display: block;
	width: 100%;
	max-width: 860px;
	height: auto;
	margin: -100px auto;
	border-radius: 6px;
}

.container {
	max-width: 1100px;
	margin: 0 auto
}

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 22px
}

.card {
	background: var(--card);
	border-radius: 12px;
	overflow: hidden;

}

/* Product detail gallery */
.product-gallery { padding: 28px 18px; }
.product-gallery .gallery-title { font-size:1.1rem; font-weight:800; color:#fff; margin-bottom:14px; letter-spacing:1px; }
.product-gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.product-gallery-grid .thumb { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border-radius:18px; overflow:hidden; display:block; position:relative; height:160px; }
.product-gallery-grid .thumb img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s ease, box-shadow .25s ease; }
.product-gallery-grid .thumb:hover img { transform:scale(1.03); box-shadow:0 18px 40px rgba(0,0,0,0.45); }
.product-gallery-grid .thumb:after { content:''; position:absolute; right:10px; bottom:10px; width:56px; height:56px; background:linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.45)); border-radius:10px; opacity:0.98; display:block; }

/* Lightbox modal tweaks */
.gallery-modal { position:fixed; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,0.9); z-index:5000; padding:30px; }
.gallery-modal .gm-stage { max-width:1100px; max-height:80vh; display:flex; align-items:center; justify-content:center; }
.gallery-modal .gm-stage img { max-width:100%; max-height:100%; object-fit:contain; border-radius:8px; }
.gallery-modal .gm-close, .gallery-modal .gm-prev, .gallery-modal .gm-next { position:fixed; background:transparent; color:#fff; border:0; font-size:34px; cursor:pointer; padding:12px; }
.gallery-modal .gm-close { right:32px; top:28px; }
.gallery-modal .gm-prev { left:28px; top:50%; transform:translateY(-50%); }
.gallery-modal .gm-next { right:28px; top:50%; transform:translateY(-50%); }
.gallery-modal .gm-caption { position:fixed; bottom:28px; left:50%; transform:translateX(-50%); color:#ddd; font-size:14px; }

@media(max-width:900px){ .product-gallery-grid { grid-template-columns:repeat(2,1fr); } .product-gallery-grid .thumb { height:130px; } }
@media(max-width:560px){ .product-gallery-grid { grid-template-columns:repeat(1,1fr); } .product-gallery-grid .thumb { height:200px; } }

/* Info/description section styles */
.info-section { background: transparent; border-radius: 12px; }
.info-section .card-body { padding: 26px; }
.info-title { color: #fff; font-weight:800; letter-spacing:1px; margin-bottom:14px; }
.info-list { display:block; padding:0; margin:0 0 12px 0; }
.info-list .info-item { display:flex; align-items:flex-start; gap:14px; padding:12px 0; border-bottom:1px solid rgba(255,255,255,0.03); }
.info-list .info-item .tick { width:36px; height:36px; min-width:36px; background:rgba(255,255,255,0.03); border-radius:50%; display:inline-block; position:relative; }
.info-list .info-item .tick:after { content:'✓'; position:absolute; left:9px; top:4px; color:var(--accent); font-weight:800; font-size:14px; }
.info-list .info-item .info-text { color:#e6e6e6; font-size:0.95rem; }
.company-title { color:#fff; font-weight:700; margin-bottom:8px; }
.company-paragraph { color:#dcdcdc; line-height:1.6; font-size:0.95rem; }

@media(max-width:900px){ .info-list .info-item { padding:10px 0; } }

.card {
	position: relative;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
	transition: box-shadow .45s cubic-bezier(.16,.8,.45,1), transform .45s cubic-bezier(.16,.8,.45,1);
}

/* Gradient overlay & border glow */
.card:before, .card:after {
  content:"";position:absolute;inset:0;pointer-events:none;transition:.6s;
}
.card:before {background:linear-gradient(150deg, rgba(255,91,31,0) 35%, rgba(255,91,31,.35) 100%);opacity:0;}
.card:after {inset:-1px;border-radius:13px;box-shadow:0 0 0 0 rgba(255,91,31,.45);opacity:0;}
.card:hover:before {opacity:1;}
.card:hover:after {box-shadow:0 0 0 2px #ff5b1f8c,0 8px 32px -8px rgba(255,91,31,.55);opacity:1;}
.card:hover {transform:translateY(-4px);box-shadow:0 14px 32px -8px rgba(0,0,0,.75),0 8px 20px -6px rgba(255,91,31,.35);}

.card-img {
	position: relative;
	height: 180px;
	overflow: hidden
}

.card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1);
	transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
}

.card:hover .card-img img { transform: scale(1.08) rotate(.5deg); }

.card .price {
	position: absolute;
	left: 12px;
	top: 12px;
	background: rgba(0, 0, 0, 0.6);
	color: var(--accent);
	padding: 6px 10px;
	border-radius: 8px;
	font-weight: 700
}

.card-body {
	padding: 14px
}

.card-body h3 {
	margin: 0 0 8px 0;
	font-size: 16px
}

.card-body h3 a { color:#fff; text-decoration:none; background:linear-gradient(currentColor,currentColor) left bottom/0 2px no-repeat; transition:background-size .35s; }

/* Navbar scroll handling: when at top the navbar can be transparent (default);
   when scrolled the `.nav-scroll` class will apply a dark background. */

/* ==========================
	 Homepage product card styles
	 ========================== */
.product-card {
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	background: #0b0b0b;
}
.product-card .card-img {
	position: relative;
	height: 420px;
	background:#000;
}
.product-card .card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.product-card:hover .card-img img {
	transform: scale(1.08) rotate(.5deg);
}
.product-card .price {
	position: absolute;
	left: 18px;
	top: 18px;
	color: #ff5b1f;
	font-weight: 700;
	z-index: 6;
}
.product-card .card-action {
	position: absolute;
	right: 18px;
	top: 18px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #ff5b1f;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	z-index: 7;
	box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.product-card .card-action .arrow { font-size: 20px; transform: translateX(2px); }
.product-card .card-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 22px 20px;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.85) 100%);
	z-index: 6;
}
.product-card .card-title {
	margin: 0 0 6px 0;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: .6px;
}
.product-card .meta {
	color: #d6d6d6;
	font-size: 13px;
}
.product-card .meta .mileage { color: #ffb59a; margin-right: 8px; }
.product-card .meta .dot { margin: 0 6px; color: #666; }

@media (max-width: 991.98px) {
	.product-card .card-img { height: 300px; }
}

/* Filtros por tipo de veículo na listagem de produtos */
.product-type-filters {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.type-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 16px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.25);
	color: #f3f3f3;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	background: rgba(0,0,0,0.4);
	transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.type-chip:hover {
	background: rgba(255,255,255,0.08);
	transform: translateY(-1px);
}
.type-chip.active {
	background: var(--accent);
	border-color: var(--accent);
	color: #111;
}


/* Navbar scroll: dark background */
.navbar {
	transition: background-color .28s ease, box-shadow .28s ease, padding .28s ease;
}
.navbar.nav-scroll {
	background-color: rgba(12,12,12,0.92) !important;
	box-shadow: 0 6px 24px rgba(0,0,0,0.45) !important;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}
.navbar.nav-scroll .nav-link {
	color: #e8e8e8 !important;
}
.navbar.nav-scroll .navbar-brand img {
	opacity: 0.98;
}

.card-body h3 a:hover { background-size:100% 2px; }

.card-body p.meta {
	margin: 0;
	color: var(--muted);
	font-size: 13px
}

.card-action {
	position: absolute;
	right: 12px;
	bottom: 12px;
	background: rgba(255, 255, 255, 0.06);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	transition: background .35s, transform .35s;
}

.card-action:hover { background: var(--accent); transform: scale(1.08); }

/* Hero accent pulse */
.hero-full:after {content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at 65% 35%, rgba(255,91,31,.15), transparent 60%); mix-blend-mode:overlay; animation: heroPulse 6s ease-in-out infinite;}
@keyframes heroPulse {50% {opacity:.35; transform:scale(1.05);} }

/* Accent animated underline utility */
.underline-accent {background:linear-gradient(90deg,var(--accent),var(--accent-alt));background-size:200% 100%;height:3px;border-radius:2px;animation: barMove 5s linear infinite;}

@media(max-width:640px) {
	.elementor-heading-title {
		font-size: 30px;
	}

	.hero {
		height: 220px
	}

	.hero-full {
		height: 55vh;
		min-height: 360px;
	}

	.hero-overlay h1 {
		font-size: 28px
	}

	.stock-banner-content {
		padding: 80px 0 48px;
	}

	.stock-banner-image {
		max-width: 100%;
	}

	.stock-filters {
		padding: 40px 20px;
	}

	.filter-buttons {
		gap: 10px;
	}

	.filter-btn {
		padding: 10px 20px;
		font-size: 12px;
	}
}

/* Detail page light card variant to match site pattern (white cards with subtle border) */
.card-light {
	background: #fff !important;
	color: #222 !important;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 8px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.card-light .card-body { background: transparent; }
.price-badge {
	background: var(--accent, #ff5b1f);
	color: #fff;
	padding: 6px 12px;
	border-radius: 6px;
	font-weight: 700;
}
.text-accent { color: var(--accent, #ff5b1f) !important; }
.btn-accent { background: var(--accent, #ff5b1f); color: #fff; border-color: var(--accent, #ff5b1f); }
.btn-accent:hover { filter: brightness(.96); }

/* Product info panel (dark body, rounded orange top) */
.product-info-panel {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
	margin-left: 0;
}

/* Hero product banner */
.hero-product{
	background-size: cover;
	background-position: center;
	position: relative;
	min-height: 260px;
	display: flex;
	align-items: flex-end;
}
.hero-product .hero-overlay{
	position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.6) 60%);
}
.hero-product .hero-content{position:relative;z-index:2;padding:48px 0;color:#fff}
.hero-product .hero-title{font-size:2rem;font-weight:800;margin:0;color:#fff}
.hero-product .hero-brand{color:var(--accent, #ff5b1f);letter-spacing:2px;font-weight:700}

/* make info panel overlap hero */
.product-info-panel{margin-top:-70px}
@media(max-width:991.98px){
	.hero-product{min-height:200px}
	.product-info-panel{margin-top:0}
}
.product-info-panel .price-top {
	background: var(--accent, #ff5b1f);
	color: #111;
	padding: 22px 20px;
	border-bottom: 6px solid rgba(0,0,0,0.06);
	border-top-right-radius: 12px;
	border-top-left-radius: 12px;
}
.product-info-panel .price-top .price-text{
	font-size: 1.4rem;
	font-weight: 800;
}
.product-info-panel .price-top .price-sub{font-size:0.75rem;opacity:.85}
.product-info-panel .info-body{
	background:#1b1b1b;
	color:#ddd;
	padding:20px;
}
.product-info-panel .info-head h3{margin-bottom:6px;color:#fff}
.product-info-panel .spec-list li{display:flex;justify-content:space-between;padding:8px 0;border-bottom:1px dashed rgba(255,255,255,0.03)}
.product-info-panel .spec-key{color:#9aa0a6;font-weight:600}
.product-info-panel .spec-val{color:#fff}

.product-media { background:#111 }
.product-media img { display:block }

/* New card layout for index highlights */
.car-card {
	border-radius: 14px;
	overflow: hidden;
	background: #070707;
	position: relative;
	box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}
.car-card .card-link { display: block; color: inherit; text-decoration: none; }
.car-card .card-media { position: relative; height: 420px; background: #000; }
.car-card .card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.car-card .media-top { position: absolute; left: 12px; right: 12px; top: 12px; z-index: 4; display:flex; justify-content:space-between; align-items:flex-start; }
.car-card .price-bubble { background: rgba(10,10,10,0.7); color: var(--accent); padding: 8px 12px; border-radius: 12px 0 12px 12px; font-weight: 800; box-shadow: 0 6px 18px rgba(0,0,0,0.45); }
.car-card .price-bubble .price-val { color: #fff; margin-left:6px; color: #fff; }
.car-card .action-circle { background: var(--accent); width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; box-shadow: 0 8px 26px rgba(255,91,31,0.18); }
.car-card .media-gradient { position: absolute; left: 0; right: 0; bottom: 0; height: 44%; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.72) 100%); z-index:3; }
.car-card .card-footer { padding: 18px 18px 22px 18px; background: transparent; }
.car-card .card-title { margin: 0; color: #fff; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .6px; font-weight: 800; }
.car-card .card-meta { color: #cfcfcf; margin-top: 8px; display:flex; gap: 12px; font-size: 0.9rem; align-items:center; }

/* small badge showing product type */
.type-badge {
	display: inline-block;
	margin-top: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255,91,31,0.12);
	color: var(--accent);
	font-weight:800;
	font-size: 0.75rem;
	letter-spacing: .08em;
}

@media (max-width: 991.98px) {
	.car-card .card-media { height: 300px; }
	.car-card .price-bubble { padding: 6px 10px; }
	.car-card .action-circle { width:44px;height:44px }
}

/* Contact cards (Contact page) */
.contact-cards { width: 100%; padding: 48px 20px 28px;  margin-top: -155px; position: relative; z-index: 30; box-sizing: border-box; }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin: 0 auto 36px; justify-items: center; max-width: 1100px; }
.contact-card { background: #1b1b1b; border-radius: 18px; padding: 26px; min-height: 160px; position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.6); }
.contact-card .card-inner { position: relative; z-index: 2; }
.contact-card .card-icon { width: 44px; height: 44px; border-radius: 8px; display:flex; align-items:center; justify-content:center; background: rgba(255,255,255,0.03); color: var(--accent); font-size:20px; margin-bottom:14px; }
.contact-card .card-icon svg { width:20px; height:20px; display:block; color: var(--accent); filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6)); }
.contact-card .card-icon { box-shadow: 0 8px 22px rgba(0,0,0,0.5); }
.contact-card.active .card-icon svg { color: #111; filter: none; }

/* Hover: color swap + lift effect for contact cards */
.contact-card {
	transition: transform .22s cubic-bezier(.2,.9,.3,1), box-shadow .22s ease, background .18s ease, color .18s ease;
	will-change: transform;
}
.contact-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 22px 48px rgba(0,0,0,0.65);
	background: linear-gradient(180deg, rgba(255,91,31,0.03), #161616);
}
.contact-card:hover h5 { color: var(--accent); }
.contact-card:hover p.muted { color: #e9e9e9; }
.contact-card:hover .card-icon { background: rgba(255,91,31,0.06); }
.contact-card:hover .card-icon svg { color: var(--accent); filter: drop-shadow(0 10px 28px rgba(255,91,31,0.14)); }
.contact-card:focus-within, .contact-card:focus { outline: none; transform: translateY(-8px); }

/* Active card: on hover invert to black background and white text/icon */
.contact-card.active:hover {
  background: #0b0b0b !important;
  transform: translateY(-10px);
  box-shadow: 0 26px 56px rgba(0,0,0,0.7);
}
.contact-card h5 { margin: 0 0 8px 0; color: #fff; text-transform: uppercase; letter-spacing: .8px; font-weight:800; }
.contact-card p.muted { margin:0;color:#bfc4c6;font-size:0.95rem }
.contact-card::before { content:''; position:absolute; right:-10px; bottom:-10px; width:120px; height:120px; background: rgba(255,255,255,0.02); border-radius:22px; transform:rotate(-14deg); }
.contact-card.active { background: var(--accent); color:#111; }
.contact-card.active .card-icon { background: rgba(255,255,255,0.12); color:#111 }

.phone-columns { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1100px; margin: 0 auto 40px; }
.phone-col { display:flex; flex-direction:column; gap: 18px; align-items:flex-start; }
.wa-btn { display:inline-flex; align-items:center; gap:10px; background: #1f9b3a; color:#fff; padding: 12px 22px; border-radius: 28px; text-decoration:none; font-weight:700; box-shadow: 0 10px 30px rgba(0,0,0,0.45); transition: transform .16s ease, box-shadow .16s ease, filter .12s ease; }
.wa-btn svg { width:18px; height:18px; display:block; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45)); }
.wa-btn:hover { filter:brightness(.96); transform: translateY(-6px) scale(1.02); box-shadow: 0 18px 40px rgba(0,0,0,0.5); }
.wa-btn:focus { transform: translateY(-4px); outline: none; }

@media(max-width:1200px){ .cards-grid{grid-template-columns:repeat(2,1fr);} .phone-columns{grid-template-columns:repeat(2,1fr);} .contact-cards{margin-top:-100px;} }
@media(max-width:760px){ .cards-grid{grid-template-columns:1fr;} .phone-columns{grid-template-columns:1fr;} .contact-cards{padding:24px 12px; margin-top:-60px;} }

/* Contact form + map layout below cards */
.contact-form-map { display: grid; grid-template-columns: 1fr 480px; gap: 36px; align-items: start; max-width: 1100px; margin: 36px auto 80px; }
.contact-form-map .cf-left { padding: 6px 12px; }
.contact-form-map .section-title { color: #fff; text-align:center; margin-bottom:18px; font-weight:800; }
.simple-contact-form .row-form { display:flex; gap:18px; margin-bottom:16px; }
.simple-contact-form .row-form input, .simple-contact-form .row-form textarea { background:#0d0d0d; border:1px solid rgba(255,255,255,0.03); color:#ddd; padding:16px 18px; border-radius:28px; width:100%; box-shadow: inset 0 2px 6px rgba(0,0,0,0.6); }
.simple-contact-form textarea { border-radius:16px; min-height:140px; resize:vertical; }
.btn-send { padding: 12px 36px; border-radius: 32px; font-weight:700; }
.contact-form-map .cf-right { box-shadow: 0 12px 36px rgba(0,0,0,0.6); border-radius:12px; overflow:hidden; }

@media(max-width:1000px) {
	.contact-form-map { grid-template-columns: 1fr; margin: 24px auto 48px; gap: 18px; }
	.simple-contact-form .row-form { flex-direction: column; }
	.contact-form-map .cf-right { min-height: 360px; }
}



/* Navbar hover: highlight menu items in accent (orange) with smooth transition */
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
	color: var(--accent, #ff5b1f) !important;
	text-decoration: none;
	transform: translateY(-1px);
	transition: color .18s ease, transform .12s ease;
}

.navbar .nav-link::after { display: none; }

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
	color: var(--accent, #ff5b1f) !important;
	background: rgba(255,91,31,0.04);
}


/* Navbar: force uppercase and consistent spacing */
.navbar .nav-link,
.navbar .navbar-brand,
.navbar .btn,
.navbar .dropdown-item {
	text-transform: uppercase !important;
}

.navbar .nav-link {
	padding: 0.55rem 0.9rem !important;
	letter-spacing: 0.04em;
	font-weight: 600;
	color: #ececec;
}

/* Larger spacing between menu items on desktop */
@media (min-width: 992px) {
	.navbar-centered .container {
		flex-direction: row;
		align-items: center;
	}

	.navbar-centered .collapse {
		display: flex !important;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.navbar-centered .navbar-nav {
		gap: 1.6rem;
		align-items: center;
	}
}

/* Slightly reduced padding on mobile to keep items readable */
@media (max-width: 991.98px) {
	.navbar .nav-link {
		padding: 0.45rem 0.6rem !important;
		font-weight: 600;
	}
}

/* Translucent search input in navbar */
.navbar .form-control {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.06);
	color: #eee;
	border-radius: 12px;
	padding: 6px 10px;
	min-width: 180px;
	transition: background .18s ease, box-shadow .12s ease, color .12s ease;
	backdrop-filter: blur(6px);
}
.navbar .form-control::placeholder { color: rgba(255,255,255,0.55); }
.navbar .form-control:focus {
	background: rgba(255,255,255,0.07);
	box-shadow: 0 8px 20px rgba(0,0,0,0.45);
	color: #fff;
	outline: none;
}

@media (max-width: 640px) {
	.navbar .form-control { min-width: 120px; }
}

/* ==========================
	 Pagina Sobre - Best Sellers Carousel
	 ========================== */
.about-bestsellers {
	padding: 56px 0;
	background: transparent;
}

.about-bs-title {
	text-align: center;
	font-size: 2rem;
	font-weight: 900;
	color: #fff;
	letter-spacing: 0.06em;
	margin-bottom: 40px;
}

.about-bs-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.about-bs-track-outer {
	overflow: hidden;
	flex: 1;
}

.about-bs-track {
	display: flex;
	gap: 28px;
	transition: transform 0.4s cubic-bezier(.22,.61,.36,1);
	will-change: transform;
}

.about-bs-item {
	min-width: calc(25% - 21px);
	flex-shrink: 0;
	background: #101010;
	border-radius: 12px;
	padding: 0 0 20px 0;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.05);
	text-align: center;
	transition: transform .22s ease, box-shadow .22s ease;
}

.about-bs-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 36px rgba(0,0,0,0.55);
}

.about-bs-badge {
	position: absolute;
	top: 12px;
	left: 0;
	background: #c0392b;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	padding: 5px 12px;
	text-transform: uppercase;
}

.about-bs-img-link {
	display: block;
	width: 100%;
	height: 210px;
	overflow: hidden;
}

.about-bs-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px 12px 0 0;
	transition: transform .35s ease;
}

.about-bs-item:hover .about-bs-img { transform: scale(1.05); }

.about-bs-name {
	color: #e8e8e8;
	font-size: 0.9rem;
	padding: 14px 12px 4px;
	margin: 0;
	font-weight: 600;
}

.about-bs-price {
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	margin: 0 0 14px;
}

.about-bs-btn {
	display: inline-block;
	background: #111;
	color: #fff;
	border: 1.5px solid rgba(255,255,255,0.3);
	border-radius: 6px;
	padding: 10px 28px;
	font-weight: 700;
	font-size: 0.82rem;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	transition: background .18s ease, border-color .18s ease;
}

.about-bs-btn:hover {
	background: #fff;
	color: #111;
	border-color: #fff;
}

.about-bs-nav {
	background: transparent;
	border: 1.5px solid rgba(255,255,255,0.2);
	color: #fff;
	border-radius: 50%;
	width: 42px;
	height: 42px;
	font-size: 24px;
	cursor: pointer;
	flex-shrink: 0;
	transition: border-color .18s ease, background .18s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-bs-nav:hover {
	border-color: #fff;
	background: rgba(255,255,255,0.08);
}

@media (max-width: 1023px) {
	.about-bs-item { min-width: calc(50% - 14px); }
}

@media (max-width: 639px) {
	.about-bs-item { min-width: 100%; }
	.about-bs-title { font-size: 1.5rem; }
}

/* ==========================
	 Pagina Sobre - Sales CTA
	 ========================== */
.about-sales-cta {
	padding: 48px 20px;
}

.about-sales-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	background: linear-gradient(135deg, #1a1008 0%, #1e1e1e 60%, #111 100%);
	border: 1px solid rgba(255, 91, 31, 0.15);
	border-radius: 16px;
	padding: 36px 48px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.about-sales-overline {
	font-size: 0.7rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #ff5b1f;
	font-weight: 700;
	margin-bottom: 10px;
}

.about-sales-title {
	font-size: 1.8rem;
	font-weight: 800;
	color: #fff;
	margin: 0 0 12px;
	line-height: 1.25;
}

.about-sales-desc {
	color: #bbb;
	font-size: 0.95rem;
	margin: 0;
}

.about-sales-actions {
	display: flex;
	gap: 14px;
	align-items: center;
	flex-shrink: 0;
}

.about-sales-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 40px;
	font-weight: 800;
	font-size: 0.88rem;
	letter-spacing: 0.06em;
	text-decoration: none;
	transition: filter .18s ease, transform .18s ease, box-shadow .18s ease;
}

.about-sales-btn--wa {
	background: #25D366;
	color: #fff;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.22);
}

.about-sales-btn--wa:hover {
	filter: brightness(1.08);
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(37, 211, 102, 0.32);
	color: #fff;
}

.about-sales-btn--contato {
	background: #ff5b1f;
	color: #fff;
	box-shadow: 0 8px 24px rgba(255, 91, 31, 0.22);
	text-decoration: underline;
}

.about-sales-btn--contato:hover {
	filter: brightness(1.1);
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(255, 91, 31, 0.32);
	color: #fff;
}

@media (max-width: 768px) {
	.about-sales-card {
		flex-direction: column;
		text-align: center;
		padding: 28px 24px;
	}

	.about-sales-actions {
		flex-direction: column;
		width: 100%;
	}

	.about-sales-btn {
		justify-content: center;
		width: 100%;
	}
}

/* ==========================
   ========================== */

.about-hero {
	background-size: cover;
	background-position: center bottom;
}

.about-hero .hero-content {
	text-align: center;
}

.about-title span {
	color: var(--accent);
}

.about-kicker {
	font-size: 0.9rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #f3f3f3;
	margin-bottom: 10px;
}

.about-title {
	font-size: 2.4rem;
	line-height: 1.2;
	font-weight: 700;
	color: #fff;
	margin: 0 0 10px 0;
	text-transform: uppercase;
}

.about-subtitle {
	max-width: 560px;
	color: #d0d0d0;
	font-size: 0.98rem;
}

/* rótulos genéricos usados na página Sobre */
.section-subtitle {
	font-size: 0.75rem;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.32em;
	color: var(--accent);
	margin-bottom: 10px;
}

.section-subtitle.white {
	color: #fff;
}

.section-title {
	font-size: 1.7rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

.section-title.black {
	color: #111;
}

.section-title.white {
	color: #fff;
}

.about-main {
	padding-top: 32px;
}

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
	gap: 40px;
	align-items: center;
}

.about-text h2 {
	font-size: 1.6rem;
	color: #fff;
	margin-bottom: 12px;
}

.about-text p {
	color: #c7c7c7;
	font-size: 0.98rem;
	line-height: 1.6;
	margin-bottom: 10px;
}

.about-features {
	list-style: none;
	margin: 18px 0 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
}

.about-features li {
	position: relative;
	padding-left: 18px;
	font-size: 0.9rem;
	color: #ddd;
}

.about-features li::before {
	content: '●';
	position: absolute;
	left: 0;
	top: 0;
	font-size: 0.7rem;
	line-height: 1.6;
	color: var(--accent);
}

.about-image img {
	width: 100%;
	border-radius: 18px;
	object-fit: cover;
	display: block;
}

.about-video {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

.about-play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: rgba(0,0,0,0.6);
	border: 2px solid rgba(255,255,255,0.75);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.about-play-icon {
	font-size: 26px;
	margin-left: 3px;
}

.about-play:hover {
	background: var(--accent);
	box-shadow: 0 14px 30px rgba(0,0,0,0.8);
	transform: translate(-50%, -50%) scale(1.05);
}

.about-values {
	padding-top: 24px;
	padding-bottom: 24px;
}

.about-section-title {
	text-align: center;
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 26px;
}

.about-values-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.about-card {
	background: #0d0d0d;
	border-radius: 16px;
	padding: 20px 18px;
	box-shadow: 0 14px 38px rgba(0,0,0,0.7);
	border: 1px solid rgba(255,255,255,0.04);
}

.about-card h3 {
	font-size: 1.1rem;
	color: #fff;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.about-card p,
.about-card ul {
	font-size: 0.95rem;
	color: #c9c9c9;
	margin-bottom: 0;
}

.about-card ul {
	padding-left: 18px;
}

.about-card li {
	margin-bottom: 4px;
}

/* bloco de avaliações */
.about-testimonials {
	padding-top: 16px;
	padding-bottom: 32px;
}

.about-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 18px;
}

.about-testimonial {
	background: #0d0d0d;
	border-radius: 16px;
	padding: 18px 18px 16px;
	box-shadow: 0 14px 40px rgba(0,0,0,0.7);
	border: 1px solid rgba(255,255,255,0.04);
}

.about-testimonial-stars span {
	color: var(--accent);
	letter-spacing: 2px;
	font-size: 0.9rem;
}

.about-testimonial-text {
	margin: 10px 0 14px;
	font-size: 0.92rem;
	color: #d0d0d0;
}

.about-testimonial-footer {
	display: flex;
	align-items: center;
	gap: 10px;
}

.about-testimonial-avatar img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
}

.about-testimonial-footer h6 {
	margin: 0;
	font-size: 0.95rem;
	color: #fff;
}

.about-testimonial-footer span {
	font-size: 0.8rem;
	color: #b0b0b0;
}

/* linha vertical entre blocos */
.line-vr-section {
	position: relative;
	margin: -25px auto 0;
	border: 0;
	border-left: 1px solid var(--accent);
	width: 2px;
	height: 50px;
	opacity: 0.9;
	z-index: 10;
}

.about-cta {
	padding-top: 16px;
	padding-bottom: 40px;
}

.about-cta-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	background: radial-gradient(circle at 0 0, rgba(255,91,31,0.18), transparent 55%), #080808;
	border-radius: 22px;
	padding: 22px 26px;
	box-shadow: 0 22px 50px rgba(0,0,0,0.9);
	border: 1px solid rgba(255,255,255,0.03);
}

.about-cta-inner h2 {
	font-size: 1.35rem;
	color: #fff;
	margin: 0 0 6px 0;
}

.about-cta-inner p {
	margin: 0;
	font-size: 0.95rem;
	color: #d5d5d5;
	max-width: 520px;
}

.about-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

@media (max-width: 900px) {
	.about-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.about-values-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.about-cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.about-cta-actions {
		justify-content: flex-start;
	}
	.about-title {
		font-size: 1.9rem;
	}
}

