/* ==========================================================================
   Osmarzinho Veículos — Tema v2 · "Showroom Dark"
   Conceito ousado/premium: fundo escuro, tipografia grande, acentos em vermelho
   vivo + dourado, micro-interações e brilho (glow).
   ========================================================================== */

:root {
	--bg: #0a0b0e;
	--bg-2: #0e1015;
	--surface: #14171d;
	--surface-2: #1a1e26;
	--line: rgba(255, 255, 255, .09);
	--line-2: rgba(255, 255, 255, .16);

	--text: #f3f4f6;
	--muted: #9aa1ad;
	--muted-2: #6b7280;

	--red: #ff2d43;
	--red-2: #e11414;
	--red-glow: rgba(255, 45, 67, .45);
	--gold: #d8b56b;

	--radius: 16px;
	--radius-sm: 12px;
	--radius-lg: 26px;

	--container: 1280px;
	--display: 'Sora', system-ui, sans-serif;
	--body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--ease: cubic-bezier(.4, 0, .2, 1);
	--ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: #fff; }
h1, h2, h3, h4, h5 { font-family: var(--display); margin: 0 0 .5em; line-height: 1.05; font-weight: 800; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 1000; background: var(--red); color: #fff; padding: 10px 16px; }
.skip-link:focus { left: 0; }
.icon { width: 20px; height: 20px; flex: none; vertical-align: middle; }
.hide-mobile { display: none; }
@media (min-width: 900px) { .hide-mobile { display: inline-flex; } }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .18em; color: var(--gold); margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .6; }
.accent { color: var(--red); }
.text-gradient { background: linear-gradient(100deg, #fff 30%, #9aa1ad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* --------------------------------------------------------------- Botões */
.btn {
	position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	padding: 14px 26px; border: 0; border-radius: 999px; font-family: var(--display);
	font-size: 14.5px; font-weight: 700; letter-spacing: .01em; line-height: 1; cursor: pointer;
	transition: all .25s var(--ease); white-space: nowrap; overflow: hidden;
}
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 6px 24px var(--red-glow); }
.btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 34px var(--red-glow); }
.btn--gold { background: linear-gradient(135deg, #e6c987, var(--gold)); color: #1a1408; }
.btn--gold:hover { color: #1a1408; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(216,181,107,.35); }
.btn--ghost { background: transparent; color: #fff; border: 1.5px solid var(--line-2); }
.btn--ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.05); }
.btn--whats { background: #25d366; color: #052e16; }
.btn--whats:hover { color: #052e16; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,211,102,.4); }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 32px; font-size: 15.5px; }

/* --------------------------------------------------------- Topbar / Nav */
.site-header { position: sticky; top: 0; z-index: 100; }
.topbar { background: #000; color: var(--muted); font-size: 12.5px; border-bottom: 1px solid var(--line); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; flex-wrap: wrap; }
.topbar__list { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__list li { display: inline-flex; align-items: center; gap: 7px; }
.topbar__list a { color: var(--muted); }
.topbar__list a:hover { color: #fff; }
.topbar .icon { width: 14px; height: 14px; color: var(--red); }

.navbar { background: rgba(10,11,14,.72); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); border-bottom: 1px solid var(--line); transition: background .3s; }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 80px; gap: 18px; }
.navbar__brand img, .navbar .custom-logo { max-height: 50px; width: auto; }
.navbar__nav { display: flex; align-items: center; gap: 30px; }
.navbar__nav .menu { display: flex; align-items: center; gap: 30px; }
.navbar__nav .menu a { color: var(--text); font-family: var(--display); font-weight: 600; font-size: 14.5px; position: relative; padding: 8px 0; }
.navbar__nav .menu a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--red); box-shadow: 0 0 10px var(--red); transition: width .3s var(--ease); }
.navbar__nav .menu a:hover::after, .navbar__nav .menu .current-menu-item > a::after { width: 100%; }
.navbar__cta { margin-left: 4px; }
.navbar__toggle { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; cursor: pointer; color: #fff; }
.navbar__toggle .icon { width: 26px; height: 26px; }
.navbar__toggle .icon-close { display: none; }
.navbar__toggle[aria-expanded="true"] .icon-open { display: none; }
.navbar__toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 991px) {
	.navbar__nav { position: fixed; inset: 120px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--bg-2); padding: 12px 24px 28px; border-bottom: 1px solid var(--line); transform: translateY(-140%); transition: transform .35s var(--ease-out); max-height: calc(100vh - 120px); overflow: auto; }
	.navbar__nav.is-open { transform: translateY(0); }
	.navbar__nav .menu { flex-direction: column; align-items: stretch; gap: 0; }
	.navbar__nav .menu li { border-bottom: 1px solid var(--line); }
	.navbar__nav .menu a { display: block; padding: 16px 4px; }
	.navbar__nav .menu a::after { display: none; }
	.navbar__cta { margin-top: 20px; }
}
@media (min-width: 992px) { .navbar__toggle { display: none; } }

/* ------------------------------------------------------------------ Hero */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease); }
.hero__bg-slide.is-active { opacity: 1; }
.hero__bg-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background:
	radial-gradient(120% 90% at 80% 10%, rgba(255,45,67,.22), transparent 55%),
	linear-gradient(180deg, rgba(10,11,14,.55) 0%, rgba(10,11,14,.85) 60%, var(--bg) 100%); }
.hero__inner { position: relative; z-index: 2; padding: clamp(70px, 13vw, 150px) 0 clamp(56px, 8vw, 90px); }
.hero__content { max-width: 760px; }
.hero h1 { font-size: clamp(40px, 7.4vw, 92px); font-weight: 800; letter-spacing: -.035em; line-height: .98; margin-bottom: 22px; }
.hero h1 .accent { display: inline-block; position: relative; }
.hero p.lead { font-size: clamp(16px, 2vw, 20px); color: var(--muted); max-width: 540px; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__dots { position: absolute; z-index: 3; right: 24px; bottom: 28px; display: flex; gap: 8px; }
.hero__dots button { width: 9px; height: 9px; border-radius: 999px; border: 0; background: rgba(255,255,255,.35); cursor: pointer; padding: 0; transition: all .3s; }
.hero__dots button.is-active { background: var(--red); width: 26px; box-shadow: 0 0 12px var(--red); }

/* Barra de estatísticas / busca sobre o hero */
.hero__search { position: relative; z-index: 3; margin-top: 40px; background: rgba(20,23,29,.7); backdrop-filter: blur(14px); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; display: grid; grid-template-columns: 1fr auto; gap: 10px; max-width: 620px; }
.hero__search input { width: 100%; padding: 15px 18px; border: 0; background: transparent; color: #fff; font-family: var(--body); font-size: 15px; }
.hero__search input::placeholder { color: var(--muted-2); }
.hero__search input:focus { outline: none; }
@media (max-width: 560px) { .hero__search { grid-template-columns: 1fr; } }

.stats { display: flex; gap: 44px; flex-wrap: wrap; margin-top: 46px; }
.stat__num { font-family: var(--display); font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: #fff; line-height: 1; }
.stat__num .accent { color: var(--red); }
.stat__label { color: var(--muted); font-size: 13px; margin-top: 6px; }

/* --------------------------------------------------------- Marquee marcas */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 20px 0; }
.marquee__track { display: flex; gap: 60px; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee span { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--muted-2); letter-spacing: .04em; text-transform: uppercase; flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------- Seções */
.section { padding: clamp(56px, 9vw, 110px) 0; position: relative; }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 46px; flex-wrap: wrap; }
.section__title { font-size: clamp(30px, 5vw, 56px); font-weight: 800; letter-spacing: -.03em; }
.section__subtitle { color: var(--muted); margin-top: 10px; max-width: 520px; }

/* ----------------------------------------------------- Grid + Card carro */
.cars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }

.car-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease-out), border-color .3s, box-shadow .4s; display: flex; flex-direction: column; }
.car-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, var(--red), transparent 40%); opacity: 0; transition: opacity .35s; -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.car-card:hover { transform: translateY(-8px); border-color: transparent; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.car-card:hover::before { opacity: 1; }
.car-card__link { color: inherit; display: flex; flex-direction: column; height: 100%; }
.car-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: #000; }
.car-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.car-card:hover .car-card__media img { transform: scale(1.08); }
.car-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,11,14,.85)); }

.car-card__badge { position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 5px; background: var(--red); color: #fff; font-family: var(--display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 7px 12px; border-radius: 999px; box-shadow: 0 4px 16px var(--red-glow); }
.car-card__badge--sold { background: #000; border: 1px solid var(--line-2); box-shadow: none; }
.car-card__badge--gold { background: linear-gradient(135deg,#e6c987,var(--gold)); color: #1a1408; box-shadow: 0 4px 16px rgba(216,181,107,.4); }
.car-card__badge .icon { width: 13px; height: 13px; }

.car-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.car-card__title { font-size: 20px; margin: 0 0 3px; }
.car-card__model { color: var(--muted); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 16px; }
.car-card__specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.car-card__specs li { display: inline-flex; align-items: center; gap: 6px; background: var(--surface-2); border: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 600; padding: 6px 11px; border-radius: 999px; }
.car-card__specs .icon { width: 14px; height: 14px; color: var(--red); }
.car-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.car-card__price .value { font-family: var(--display); font-size: 23px; font-weight: 800; color: #fff; }
.car-card__price .consulta { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--gold); text-transform: uppercase; }
.car-card__go { width: 42px; height: 42px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; color: #fff; transition: all .3s; flex: none; }
.car-card:hover .car-card__go { background: var(--red); border-color: var(--red); box-shadow: 0 0 18px var(--red-glow); }

.section__cta { display: flex; justify-content: center; margin-top: 50px; }
.empty-state { text-align: center; padding: 70px 20px; color: var(--muted); }
.empty-state .icon { width: 52px; height: 52px; margin: 0 auto 14px; color: var(--muted-2); }
.empty-state h3 { color: #fff; }

/* ---------------------------------------------------------- Bento perks */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 860px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bento { grid-template-columns: 1fr; } }
.bento__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: border-color .3s, transform .3s; }
.bento__item:hover { border-color: var(--line-2); transform: translateY(-4px); }
.bento__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: radial-gradient(circle at 30% 20%, rgba(255,45,67,.25), transparent 70%); border: 1px solid var(--line); color: var(--red); margin-bottom: 18px; }
.bento__icon .icon { width: 26px; height: 26px; }
.bento__item strong { font-family: var(--display); display: block; font-size: 17px; margin-bottom: 6px; }
.bento__item span { color: var(--muted); font-size: 14px; }

/* -------------------------------------------------------- Page hero (interno) */
.page-hero { position: relative; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: clamp(46px,8vw,86px) 0 clamp(30px,5vw,44px); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 120% at 90% -10%, rgba(255,45,67,.16), transparent 55%); }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(30px, 5.4vw, 58px); }
.breadcrumb { color: var(--muted); font-size: 13.5px; margin-bottom: 14px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: #fff; }

/* ------------------------------------------------------ SRP (estoque) */
.srp { display: grid; grid-template-columns: 288px 1fr; gap: 34px; align-items: start; }
@media (max-width: 900px) { .srp { grid-template-columns: 1fr; } }

.filters { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: sticky; top: 108px; }
@media (max-width: 900px) { .filters { position: static; } .filters[data-collapsible] .filters__body { display: none; } .filters.is-open .filters__body { display: block; } }
.filters__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.filters__head h3 { font-size: 17px; margin: 0; display: inline-flex; align-items: center; gap: 9px; }
.filters__head .icon { color: var(--red); }
.filters__toggle { display: none; background: var(--surface-2); border: 1px solid var(--line); color: #fff; border-radius: 10px; padding: 8px 12px; cursor: pointer; font-family: var(--display); font-weight: 600; }
@media (max-width: 900px) { .filters__toggle { display: inline-flex; align-items: center; gap: 8px; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--display); font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em; }
.field select, .field input { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 11px; font-family: var(--body); font-size: 14.5px; background: var(--bg-2); color: var(--text); }
.field select:focus, .field input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow); }
.field select option { background: var(--surface); }

.srp__toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.results-count { color: var(--muted); font-family: var(--display); font-weight: 600; }
.results-count b { color: #fff; }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 50px; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: 11px; border: 1px solid var(--line); background: var(--surface); color: var(--text); font-family: var(--display); font-weight: 600; }
.pagination .page-numbers.current { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 0 16px var(--red-glow); }
.pagination a.page-numbers:hover { border-color: var(--line-2); color: #fff; }

/* --------------------------------------------------------- VDP (single) */
.vdp { padding: 34px 0 clamp(60px,9vw,110px); }
.vdp__grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 42px; align-items: start; }
@media (max-width: 960px) { .vdp__grid { grid-template-columns: 1fr; gap: 30px; } }

.gallery__main { position: relative; border-radius: var(--radius); overflow: hidden; background: #000; border: 1px solid var(--line); }
.gallery__main img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: none; }
.gallery__main img.is-active { display: block; }
.gallery__count { position: absolute; bottom: 14px; right: 14px; z-index: 4; background: rgba(0,0,0,.6); backdrop-filter: blur(6px); border: 1px solid var(--line); color: #fff; font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px; }
.gallery__sold { position: absolute; inset: 0; z-index: 5; display: grid; place-items: center; background: rgba(10,11,14,.6); backdrop-filter: blur(2px); }
.gallery__sold span { border: 3px solid #fff; color: #fff; font-family: var(--display); font-size: 28px; font-weight: 800; text-transform: uppercase; padding: 12px 34px; border-radius: 12px; transform: rotate(-7deg); }
.gallery__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--line); background: rgba(0,0,0,.5); backdrop-filter: blur(8px); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .25s; }
.gallery__arrow:hover { background: var(--red); border-color: var(--red); }
.gallery__arrow--prev { left: 14px; } .gallery__arrow--next { right: 14px; }
.gallery__arrow--prev .icon { transform: rotate(180deg); }
.gallery__thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 12px; }
.gallery__thumbs button { padding: 0; border: 2px solid transparent; border-radius: 10px; overflow: hidden; cursor: pointer; background: none; aspect-ratio: 16 / 11; }
.gallery__thumbs button.is-active { border-color: var(--red); box-shadow: 0 0 14px var(--red-glow); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.vdp__info { position: sticky; top: 108px; }
.vdp__brand { font-family: var(--display); color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 12.5px; }
.vdp__title { font-size: clamp(26px, 3.5vw, 40px); margin: 8px 0 16px; }
.vdp__price { font-family: var(--display); font-size: clamp(30px,4vw,42px); font-weight: 800; color: #fff; }
.vdp__price--consulta { color: var(--gold); font-size: 26px; }
.vdp__chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 26px 0; }
.chip { background: var(--surface); border: 1px solid var(--line); border-radius: 13px; padding: 14px 16px; display: flex; align-items: center; gap: 13px; }
.chip__icon { width: 42px; height: 42px; border-radius: 11px; background: radial-gradient(circle at 30% 20%, rgba(255,45,67,.22), transparent 70%); border: 1px solid var(--line); color: var(--red); display: grid; place-items: center; flex: none; }
.chip small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; display: block; }
.chip strong { font-family: var(--display); font-size: 15px; }
.vdp__actions { display: grid; gap: 12px; margin-top: 24px; }

.vdp__section { margin-top: 56px; }
.vdp__section h2 { font-size: 26px; margin-bottom: 22px; display: inline-flex; align-items: center; gap: 12px; }
.vdp__section h2::before { content: ""; width: 6px; height: 26px; border-radius: 3px; background: var(--red); box-shadow: 0 0 12px var(--red-glow); }
.vdp__desc { color: #c7cbd2; line-height: 1.9; max-width: 780px; }
.optionals { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 10px; }
.optionals li { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: 11px; padding: 12px 15px; font-weight: 500; font-size: 14.5px; }
.optionals .icon { width: 18px; height: 18px; color: #34d399; flex: none; }

.proposal { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.proposal h2 { font-size: 21px; }
.proposal h2::before { display: none; }
.proposal__addr { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.proposal__addr strong { color: #fff; display: block; margin-bottom: 3px; }

/* ------------------------------------------------------- Conteúdo/forms */
.content-section { padding: clamp(48px,8vw,96px) 0; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
@media (max-width: 820px) { .about__grid { grid-template-columns: 1fr; } }
.about__grid img { border-radius: var(--radius); border: 1px solid var(--line); width: 100%; object-fit: cover; }
.about__lead { font-size: 17px; line-height: 1.9; color: #c7cbd2; }

.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .contact__grid { grid-template-columns: 1fr; } }
.contact__info { display: grid; gap: 14px; margin-bottom: 26px; }
.contact__info li { display: flex; gap: 12px; align-items: flex-start; color: #c7cbd2; }
.contact__info .icon { color: var(--red); margin-top: 3px; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; min-height: 440px; border: 0; display: block; filter: invert(.9) hue-rotate(180deg); }

.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 input[type="number"], .wpcf7 input[type="date"], .wpcf7 textarea, .wpcf7 select {
	width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; font-family: var(--body); font-size: 15px; margin-bottom: 14px; background: var(--bg-2); color: var(--text);
}
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow); }
.wpcf7 label { font-weight: 500; font-size: 14px; display: block; margin-bottom: 5px; color: var(--muted); }
.wpcf7 input[type="submit"] { background: var(--red); color: #fff; border: 0; border-radius: 999px; padding: 15px 34px; font-family: var(--display); font-weight: 700; font-size: 15px; cursor: pointer; box-shadow: 0 6px 24px var(--red-glow); transition: transform .2s; }
.wpcf7 input[type="submit"]:hover { transform: translateY(-2px); }

.tabs { display: flex; gap: 8px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.tabs button { background: none; border: 0; padding: 14px 22px; font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tabs button.is-active { color: #fff; border-color: var(--red); }
.tab-panel { display: none; } .tab-panel.is-active { display: block; }

/* --------------------------------------------------------------- Rodapé */
.site-footer { background: #000; border-top: 1px solid var(--line); margin-top: 60px; }
.site-footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: 44px; padding: 64px 24px; }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer__brand img { max-height: 58px; width: auto; margin-bottom: 18px; }
.site-footer__desc { font-size: 14px; line-height: 1.7; color: var(--muted); max-width: 320px; }
.site-footer__social { display: flex; gap: 10px; margin-top: 18px; }
.site-footer__social a { width: 42px; height: 42px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); color: #fff; display: grid; place-items: center; transition: all .3s; }
.site-footer__social a:hover { background: var(--red); border-color: var(--red); box-shadow: 0 0 16px var(--red-glow); }
.site-footer h5 { font-family: var(--display); color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.site-footer__col ul li { margin-bottom: 11px; }
.site-footer__col a { color: var(--muted); font-size: 14.5px; }
.site-footer__col a:hover { color: #fff; }
.site-footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 13px; color: var(--muted); }
.site-footer__contact .icon { width: 17px; height: 17px; color: var(--red); margin-top: 2px; flex: none; }
.site-footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; font-size: 13px; color: var(--muted-2); text-align: center; }

/* ---------------------------------------------------------- WhatsApp float */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 200; width: 60px; height: 60px; border-radius: 999px; background: #25d366; color: #052e16; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.5); animation: wpulse 2.4s infinite; }
.whatsapp-float:hover { color: #052e16; transform: scale(1.06); }
.whatsapp-float .icon { width: 31px; height: 31px; }
@keyframes wpulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* --------------------------------------------------------------- Reveal */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* Quando o GSAP está ativo, ele controla a entrada: o CSS não esconde mais. */
.gsap-active [data-reveal] { opacity: 1; transform: none; transition: none; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
	[data-reveal] { opacity: 1; transform: none; }
	.hero__bg-slide { opacity: 1; }
}
