/* =========================================================
   PIT STOP CENTER CAR — Premium Stylesheet
   Cores: Vermelho #D80000 · Branco #FFFFFF · Preto #1A1A1A
   ========================================================= */

:root {
  --red: #D80000;
  --red-dark: #a80000;
  --red-light: #ff2b2b;
  --black: #1A1A1A;
  --ink: #161616;
  --white: #FFFFFF;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f3;
  --gray-200: #e2e5ea;
  --gray-400: #9aa0aa;
  --gray-600: #5a616c;
  --gray-700: #3a3f48;
  --wpp: #25D366;
  --wpp-dark: #1ebe5a;

  --shadow-sm: 0 2px 8px rgba(16, 18, 22, .06);
  --shadow-md: 0 12px 30px rgba(16, 18, 22, .10);
  --shadow-lg: 0 28px 60px rgba(16, 18, 22, .16);
  --shadow-red: 0 16px 40px rgba(216, 0, 0, .30);

  --radius: 16px;
  --radius-lg: 22px;
  --container: 1200px;

  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-accent {
  background: linear-gradient(110deg,
    var(--red) 0%, var(--red) 38%,
    #ff7b7b 48%, #ffd0d0 50%, #ff7b7b 52%,
    var(--red) 62%, var(--red) 100%);
  background-size: 250% 100%;
  background-position: 150% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { background-position: 150% 0; }
  60%  { background-position: -50% 0; }
  100% { background-position: -50% 0; }
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--red);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; white-space: nowrap; position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 22px 50px rgba(216,0,0,.4); }
.btn--whatsapp { background: var(--wpp); color: #fff; box-shadow: 0 16px 40px rgba(37,211,102,.35); }
.btn--whatsapp:hover { background: var(--wpp-dark); transform: translateY(-3px); box-shadow: 0 22px 50px rgba(37,211,102,.45); }
.btn--outline { background: transparent; color: var(--ink); border-color: currentColor; }
.btn--outline:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--xl { padding: 22px 48px; font-size: 1.25rem; }
.ico-wpp { width: 1.15em; height: 1.15em; fill: currentColor; flex-shrink: 0; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 16px 0 auto 0; z-index: 100;
  background: transparent;
  transition: inset .3s var(--ease);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  padding: 0 16px 0 26px;
  transition: box-shadow .3s, transform .3s var(--ease);
}
.header.is-scrolled { inset: 10px 0 auto 0; }
.header.is-scrolled .header__inner { box-shadow: var(--shadow-lg); }
.header__logo { height: 104px; width: auto; transition: transform .3s var(--ease); position: relative; z-index: 2; }
.header__brand:hover .header__logo { transform: scale(1.05); }
.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--gray-700);
  padding: 10px 14px; border-radius: 10px; position: relative; transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__link:hover { color: var(--red); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta { margin-left: 10px; padding: 11px 20px; font-size: .92rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: .3s var(--ease); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 130px 0 90px; overflow: hidden; color: #fff;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2; overflow: hidden;
  background:
    radial-gradient(1100px 700px at 85% 15%, rgba(216,0,0,.30), transparent 60%),
    radial-gradient(800px 500px at 5% 100%, rgba(216,0,0,.14), transparent 55%),
    linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #1c1c1c 100%);
}
/* Foto da fachada mesclada ao fundo */
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background: url('../assets/banner.png') center 42% / cover no-repeat;
  opacity: .34;
  mix-blend-mode: luminosity;
  transform: scale(1.06);
  animation: heroZoom 24s ease-in-out infinite alternate;
  -webkit-mask-image: radial-gradient(130% 120% at 50% 42%, #000 22%, rgba(0,0,0,.4) 58%, transparent 88%);
  mask-image: radial-gradient(130% 120% at 50% 42%, #000 22%, rgba(0,0,0,.4) 58%, transparent 88%);
}
/* Camada de legibilidade + tom da marca por cima da foto */
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(8,8,8,.62) 0%, rgba(8,8,8,.30) 30%, transparent 56%),
    radial-gradient(130% 130% at 50% 50%, transparent 45%, rgba(6,6,6,.78) 100%),
    linear-gradient(180deg, rgba(8,8,8,.4) 0%, transparent 30%, rgba(8,8,8,.85) 100%);
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.14) translateY(-1.5%); }
}
.hero__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 56px;
}
.hero__content { max-width: 820px; display: flex; flex-direction: column; align-items: center; }

/* Hero visual (foto emoldurada) */
.hero__visual { position: relative; justify-self: center; width: 100%; max-width: 560px; }
.hero__frame {
  position: relative; border-radius: 24px; overflow: hidden;
  padding: 10px; background: linear-gradient(150deg, rgba(255,255,255,.14), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(216,0,0,.25);
  transform: translateY(0);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.hero__visual:hover .hero__frame { transform: translateY(-8px); box-shadow: 0 50px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(216,0,0,.4); }
.hero__frame img { width: 100%; height: auto; border-radius: 16px; display: block; aspect-ratio: 16 / 10; object-fit: cover; object-position: center 35%; }
.hero__frame-glow {
  position: absolute; inset: 0; border-radius: 24px; pointer-events: none;
  background: linear-gradient(160deg, rgba(255,255,255,.22) 0%, transparent 35%);
}
.hero__visual-badge {
  position: absolute; left: -18px; bottom: 28px; display: flex; align-items: center; gap: 12px;
  background: rgba(20,20,20,.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow-lg);
}
.hero__visual-badge-ico { font-size: 1.5rem; }
.hero__visual-badge strong { display: block; font-family: var(--font-head); font-size: 1rem; color: #fff; }
.hero__visual-badge small { color: rgba(255,255,255,.65); font-size: .8rem; }
.hero__visual-chip {
  position: absolute; right: -16px; top: -18px; display: flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff; border-radius: 16px; padding: 12px 18px;
  box-shadow: var(--shadow-red); animation: floatChip 4s ease-in-out infinite;
}
.hero__visual-chip strong { font-family: var(--font-head); font-weight: 900; font-size: 1.9rem; line-height: 1; }
.hero__visual-chip span { font-size: .76rem; font-weight: 600; line-height: 1.15; }
@keyframes floatChip { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero__badge {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  letter-spacing: .02em; padding: 8px 18px; border-radius: 999px; margin-bottom: 26px;
  background: rgba(216,0,0,.16); border: 1px solid rgba(216,0,0,.4); color: #ff8a8a;
}
.hero__title {
  font-size: clamp(2.3rem, 6vw, 4.4rem); font-weight: 900; color: #fff; margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero__subtitle { font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: rgba(255,255,255,.82); max-width: 640px; margin: 0 auto 38px; }
.hero__subtitle strong { color: #fff; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; justify-content: center; }
.hero__actions .btn--outline { color: #fff; }
.hero__actions .btn--outline:hover { background: #fff; color: var(--ink); }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 26px; font-size: .95rem; font-weight: 600;
  color: rgba(255,255,255,.78); justify-content: center;
}
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust span { color: #ffc400; letter-spacing: 2px; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.45); border-radius: 14px;
}
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: #fff; border-radius: 4px; transform: translateX(-50%); animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ---------- Stats / Credibilidade ---------- */
.stats { background: var(--ink); padding: 0; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg); overflow: hidden;
  margin: -70px auto 0; position: relative; z-index: 5; max-width: 1080px;
  box-shadow: var(--shadow-lg);
}
.stat { background: var(--ink); padding: 38px 22px; text-align: center; }
.stat__num {
  font-family: var(--font-head); font-weight: 900; font-size: clamp(2.2rem, 4vw, 3.2rem);
  background: linear-gradient(180deg, #fff, #ff5a5a); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat__num--text { background: linear-gradient(180deg,#fff,#ff5a5a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { color: rgba(255,255,255,.65); font-size: .92rem; margin-top: 10px; font-weight: 500; }

/* ---------- Sections base ---------- */
.section { padding: 96px 0; }
.section--dark { background: var(--ink); color: #fff; }
.section--soft { background: var(--gray-50); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section__eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 14px;
  padding: 6px 16px; background: rgba(216,0,0,.08); border-radius: 999px;
}
.section__eyebrow--light { color: #ff7a7a; background: rgba(255,255,255,.06); }
.section__title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.section__title--light { color: #fff; }
.section__lead { font-size: 1.1rem; color: var(--gray-600); }
.section__lead--light { color: rgba(255,255,255,.7); }

/* ---------- Services (clean / minimal) ---------- */
.services { background: #fbfbfc; }
.services__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.card {
  background: #fff; border: 1px solid transparent; border-radius: 24px;
  padding: 40px 32px; position: relative;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(16,18,22,.04);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(16,18,22,.09); }
.card__icon {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  color: var(--ink); margin-bottom: 26px; background: none; box-shadow: none; border-radius: 0;
  transition: color .35s var(--ease), transform .5s var(--ease);
}
.card__icon svg { width: 46px; height: 46px; }
.card:hover .card__icon { color: var(--red); transform: translateY(-3px); }
.card__title { font-size: 1.32rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; line-height: 1.2; letter-spacing: -.015em; }
.card__text { color: #70757e; font-size: 1rem; line-height: 1.62; margin-bottom: 22px; flex-grow: 1; }
.card__cta {
  font-family: var(--font-body); font-weight: 600; color: var(--red); font-size: .96rem;
  display: inline-flex; align-items: center; gap: 6px; margin-top: auto;
  transition: gap .25s var(--ease);
}
.card__cta:hover { gap: 12px; }
/* Card de chamada — escuro minimalista (foco) */
.card--cta {
  background: var(--ink); justify-content: center; align-items: flex-start; border: 0;
}
.card--cta:hover { transform: translateY(-6px); box-shadow: 0 24px 54px rgba(16,18,22,.18); }
.card--cta .card__text { color: rgba(255,255,255,.62); flex-grow: 0; }
.card--cta .card__title { color: #fff; font-size: 1.42rem; }
.card--cta .btn { margin-top: 10px; }

/* ---------- Marquee (faixa de texto) ---------- */
.marquee {
  position: relative; overflow: hidden; background: var(--ink);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.marquee__row { display: flex; overflow: hidden; white-space: nowrap; }
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__row--red {
  background: linear-gradient(180deg, var(--red-light) 0%, var(--red) 55%, var(--red-dark) 100%);
  color: #fff; box-shadow: 0 10px 30px rgba(216,0,0,.25); position: relative; z-index: 2;
}
.marquee__row--red .marquee__track { animation: mqLeft 38s linear infinite; }
.marquee__row--dark {
  background: #101010; color: rgba(255,255,255,.8);
  border-top: 1px solid rgba(255,255,255,.05);
}
.marquee__row--dark .marquee__track { animation: mqRight 46s linear infinite; }
.marquee__item {
  display: inline-flex; align-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .15em; padding: 16px 0;
}
.marquee__item .dot { width: 6px; height: 6px; border-radius: 50%; margin: 0 32px; }
.marquee__row--red .dot { background: #fff; opacity: .85; }
.marquee__row--dark .dot { background: var(--red); }
.marquee__row:hover .marquee__track { animation-play-state: paused; }
@keyframes mqLeft  { from { transform: translateX(0); }          to { transform: translateX(-33.333%); } }
@keyframes mqRight { from { transform: translateX(-33.333%); }   to { transform: translateX(0); } }

/* ---------- Marcas ---------- */
.brands { background: #fff; }
.brands__marquee {
  overflow: hidden; padding: 10px 0; margin-top: 6px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.brands__track { display: flex; width: max-content; align-items: center; animation: brandsScroll 34s linear infinite; }
.brands__track:hover { animation-play-state: paused; }
@keyframes brandsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brand {
  flex: 0 0 auto; margin-right: 24px; width: 172px; height: 104px;
  display: grid; place-items: center; background: #fff;
  border: 1px solid var(--gray-100); border-radius: 18px;
  box-shadow: 0 6px 18px rgba(16,18,22,.05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.brand:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(16,18,22,.12); border-color: rgba(216,0,0,.25); }
.brand img { max-width: 74%; max-height: 66%; object-fit: contain; }
.brands__note { text-align: center; margin-top: 30px; color: var(--gray-600); }
.brands__note a { color: var(--red); font-weight: 600; white-space: nowrap; }
.brands__note a:hover { text-decoration: underline; }

/* ---------- Diferenciais (fundo vermelho) ---------- */
.diff {
  background:
    radial-gradient(900px 600px at 82% 12%, rgba(0,0,0,.30), transparent 55%),
    linear-gradient(135deg, var(--red) 0%, var(--red-dark) 72%, #7e0000 100%);
}
.diff .section__eyebrow { color: #fff; background: rgba(0,0,0,.22); }
.diff .text-accent { background: none; -webkit-text-fill-color: #141414; color: #141414; animation: none; }
.diff .section__lead { color: rgba(255,255,255,.9); }
.diff .diff__item { border-top-color: rgba(255,255,255,.24); }
.diff .diff__item::before { background: #fff; }
.diff .diff__num { background-image: linear-gradient(180deg, #fff 0%, #ffd5d5 100%); -webkit-background-clip: text; background-clip: text; }
.diff .diff__body p { color: rgba(255,255,255,.84); }
/* carrinho preto + acabamentos para contrastar no vermelho */
.diff .road__body { fill: #141414; }
.diff .road__speed { stroke: rgba(255,255,255,.55); }
.diff .road__car svg { filter: drop-shadow(0 8px 12px rgba(0,0,0,.4)); }

.diff__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 56px; }
.diff__item {
  position: relative; display: flex; gap: 22px; align-items: flex-start;
  padding-top: 26px; border-top: 2px solid rgba(255,255,255,.10);
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.diff__item::before {
  content: ""; position: absolute; top: -2px; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transition: width .5s var(--ease);
}
.diff__item:hover { transform: translateY(-4px); }
.diff__item:hover::before { width: 60px; }
.diff__num {
  font-family: var(--font-head); font-weight: 900; font-size: 3rem; line-height: .9; flex-shrink: 0;
  background: linear-gradient(160deg, #fff 10%, #ff5a5a 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
  transition: transform .4s var(--ease);
}
.diff__item:hover .diff__num { transform: scale(1.08); }
.diff__body h3 { font-size: 1.18rem; color: #fff; margin-bottom: 8px; }
.diff__body p { color: rgba(255,255,255,.62); font-size: .96rem; }

/* Carro passando na pista */
.road { position: relative; height: 64px; margin-top: 60px; overflow: hidden; }
.road::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 12px; height: 3px; border-radius: 3px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.28) 0 26px, transparent 26px 48px);
  animation: roadMove 1.1s linear infinite;
}
.road::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 11px; height: 1px;
  background: rgba(255,255,255,.10);
}
.road__car {
  position: absolute; bottom: 6px; left: -180px; width: 132px;
  animation: drive 6.5s linear infinite;
  will-change: left;
}
.road__car svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 8px 12px rgba(216,0,0,.45)); }
.road__wheel { transform-box: fill-box; transform-origin: center; animation: spin .55s linear infinite; }
.road__speed { opacity: .8; animation: speedFade .4s ease-in-out infinite alternate; }
@keyframes drive {
  0%   { left: -180px; }
  100% { left: 100%; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes roadMove { to { background-position: -48px 0; } }
@keyframes speedFade { from { opacity: .25; } to { opacity: .85; } }

/* ---------- About ---------- */
.about__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.about__media { position: relative; }
.about__img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.about__media::before {
  content: ""; position: absolute; inset: -16px -16px auto auto; width: 70%; height: 70%; z-index: -1;
  border: 4px solid var(--red); border-radius: var(--radius-lg); opacity: .35;
}
.about__media-badge {
  position: absolute; left: -22px; bottom: -22px; background: var(--red); color: #fff;
  border-radius: 18px; padding: 18px 24px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-red);
}
.about__media-badge strong { font-family: var(--font-head); font-size: 2.6rem; font-weight: 900; line-height: 1; }
.about__media-badge span { font-size: .82rem; line-height: 1.2; font-weight: 600; }
.about__content p { color: var(--gray-600); margin-bottom: 16px; font-size: 1.05rem; }
.about__content p strong { color: var(--ink); }
.about__list { margin: 24px 0 30px; display: grid; gap: 12px; }
.about__list li { font-weight: 600; color: var(--gray-700); }

/* ---------- Reviews (carrossel Google) ---------- */
.reviews__google {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 20px;
  background: #fff; border: 1px solid var(--gray-100); border-radius: 999px;
  padding: 10px 22px 10px 16px; box-shadow: var(--shadow-sm);
}
.reviews__google .g-logo { width: 30px; height: 30px; flex-shrink: 0; }
.reviews__google-info { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.reviews__google-info strong { font-family: var(--font-head); font-size: 1.25rem; color: var(--ink); }
.reviews__google-info .reviews__stars { color: #fbbc05; letter-spacing: 2px; font-size: 1rem; }
.reviews__google-info small { color: var(--gray-600); font-size: .82rem; }

.reviews__marquee {
  overflow: hidden; padding: 8px 0 16px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.reviews__track { display: flex; width: max-content; animation: revScroll 55s linear infinite; }
.reviews__track:hover { animation-play-state: paused; }
@keyframes revScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review {
  flex: 0 0 340px; margin-right: 24px; align-self: stretch;
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm); position: relative;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review__g { position: absolute; top: 22px; right: 24px; }
.review__g svg { width: 22px; height: 22px; display: block; }
.review__stars { color: #fbbc05; letter-spacing: 3px; margin-bottom: 14px; font-size: 1.05rem; }
.review blockquote { font-size: .97rem; color: var(--gray-700); line-height: 1.6; margin-bottom: 22px; flex-grow: 1; }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--red), var(--red-light)); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.review figcaption strong { display: block; font-family: var(--font-head); font-size: .98rem; line-height: 1.2; }
.review figcaption small { color: var(--gray-400); font-size: .8rem; }

.reviews__nav {
  position: absolute; top: 44%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--gray-200);
  background: #fff; color: var(--ink); font-size: 1.7rem; line-height: 1; cursor: pointer;
  box-shadow: var(--shadow-md); display: grid; place-items: center;
  transition: background .25s, color .25s, transform .25s var(--ease), border-color .25s;
}
.reviews__nav:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-50%) scale(1.08); }
.reviews__nav--prev { left: -14px; }
.reviews__nav--next { right: -14px; }

.reviews__dots { display: flex; justify-content: center; gap: 8px; margin-top: 8px; }
.reviews__dot {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: var(--gray-300); transition: background .25s, transform .25s var(--ease);
}
.reviews__dot.is-active { background: var(--red); transform: scale(1.3); }

.reviews__cta { text-align: center; margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.reviews__cta p { color: var(--gray-600); }

/* ---------- Redes Sociais ---------- */
.social {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 600px at 18% 20%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(135deg, var(--red) 0%, var(--red-dark) 70%, #7e0000 100%);
}
.social__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 36px; }
.social__content { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 680px; }
.social__chips { justify-content: center; }
.social__actions { justify-content: center; }
.social__phone { position: relative; display: flex; justify-content: center; }
.social__phone::before {
  content: ""; position: absolute; width: 120%; height: 120%; top: -10%; left: -10%;
  background: radial-gradient(circle at 50% 50%, rgba(0,0,0,.35), transparent 62%);
  z-index: -1; pointer-events: none;
}
.social__content { max-width: 560px; }
/* "Instagram" em preto sobre o vermelho */
.social .text-accent {
  background: none; -webkit-text-fill-color: #141414; color: #141414; animation: none;
}
.social .section__eyebrow { color: #fff; background: rgba(0,0,0,.22); }
.social .section__lead { color: rgba(255,255,255,.92); }
.social .section__lead strong { color: #fff; }
.social__chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 34px; }
.social__chips li {
  background: rgba(0,0,0,.20); border: 1px solid rgba(255,255,255,.18);
  padding: 10px 18px; border-radius: 999px; font-size: .9rem; font-weight: 600; color: #fff;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  transition: transform .25s var(--ease), background .25s;
}
.social__chips li:hover { transform: translateY(-2px); background: rgba(0,0,0,.30); }
.social__actions { display: flex; flex-wrap: wrap; gap: 14px; }
/* Botão Instagram: branco com ícone gradiente */
.btn--instagram { background: #fff; color: #141414; box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.btn--instagram:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(0,0,0,.32); }
.btn--instagram svg { width: 1.25em; height: 1.25em; color: #d62976; }
/* WhatsApp aqui: preto com ícone branco (combina no vermelho) */
.social .btn--whatsapp { background: #141414; color: #fff; box-shadow: 0 16px 40px rgba(0,0,0,.28); }
.social .btn--whatsapp:hover { background: #000; transform: translateY(-3px); }

/* iPhone mockup */
.phone {
  position: relative; width: 300px; max-width: 80vw; aspect-ratio: 300 / 616;
  background: #0c0c0d; border-radius: 50px; padding: 11px;
  box-shadow: 0 50px 90px rgba(0,0,0,.55), inset 0 0 0 2px #2c2c2e;
}
.phone__island {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 25px; background: #000; border-radius: 13px; z-index: 4;
}
.phone__screen { position: relative; width: 100%; height: 100%; border-radius: 40px; overflow: hidden; background: #000; }
.phone__screen::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 46px; z-index: 2;
  background: linear-gradient(transparent, #000); pointer-events: none;
}

/* Instagram UI (modo escuro) */
.ig { height: 100%; display: flex; flex-direction: column; color: #fff; font-family: var(--font-body); font-size: 11px; line-height: 1.3; background: #000; }
.ig__status { display: flex; justify-content: space-between; align-items: center; padding: 9px 22px 4px; font-weight: 700; font-size: 11px; }
.ig__status-icons { display: flex; gap: 5px; align-items: center; }
.ig__top { display: flex; align-items: center; justify-content: space-between; padding: 6px 16px 10px; }
.ig__back { font-size: 20px; line-height: 1; }
.ig__user { font-weight: 700; font-size: 14px; }
.ig__menu { font-size: 16px; letter-spacing: 1px; }
.ig__head { display: flex; align-items: center; gap: 14px; padding: 12px 16px 6px; }
.ig__avatar { width: 60px; height: 60px; border-radius: 50%; background: #fff; display: grid; place-items: center; flex-shrink: 0; overflow: hidden; }
.ig__avatar img { width: 84%; height: 84%; object-fit: contain; }
.ig__stats { display: flex; flex: 1; justify-content: space-around; text-align: center; }
.ig__stats strong { display: block; font-size: 15px; font-weight: 700; }
.ig__stats span { font-size: 11px; color: #dbdbdb; }
.ig__bio { padding: 2px 16px 10px; }
.ig__bio > strong { font-size: 12px; font-weight: 700; display: block; }
.ig__cat { color: #b9b9b9; display: block; margin-bottom: 4px; }
.ig__bio p { font-size: 11px; color: #f0f0f0; margin-bottom: 3px; }
.ig__link { color: #7ab0ff; font-size: 11px; }
.ig__btns { display: flex; gap: 6px; padding: 4px 16px 12px; }
.ig__btn { flex: 1; text-align: center; background: #262626; border-radius: 8px; padding: 7px 0; font-weight: 600; font-size: 11px; }
.ig__btn--follow { background: #0095f6; }
.ig__tabs { display: flex; border-top: 1px solid rgba(255,255,255,.12); }
.ig__tab { flex: 1; display: grid; place-items: center; padding: 8px 0; color: #8e8e8e; }
.ig__tab.is-active { color: #fff; box-shadow: inset 0 -1.5px 0 #fff; }
.ig__tab svg { width: 20px; height: 20px; }
.ig__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.ig__post { aspect-ratio: 1; background-size: cover; background-position: center; }
.ig__post--logo { background: #fff; display: grid; place-items: center; }
.ig__post--logo img { width: 72%; }

/* ---------- Location ---------- */
.location__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: stretch; }
.location__info { display: flex; flex-direction: column; gap: 26px; }
.location__row { display: flex; gap: 16px; align-items: flex-start; }
.location__ico { font-size: 1.5rem; width: 52px; height: 52px; flex-shrink: 0; display: grid; place-items: center; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 14px; }
.location__row strong { font-family: var(--font-head); display: block; margin-bottom: 4px; }
.location__row p { color: var(--gray-600); }
.location__row a:hover { color: var(--red); }
.location__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.location__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 380px; border: 1px solid var(--gray-100); }
.location__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ---------- CTA Final ---------- */
.cta-final { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--red-dark), var(--red)); color: #fff; padding: 96px 0; text-align: center; }
.cta-final__checker {
  position: absolute; inset: 0; opacity: .10;
  background-image:
    linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%),
    linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%);
  background-size: 44px 44px; background-position: 0 0, 22px 22px;
}
.cta-final__inner { position: relative; z-index: 1; max-width: 800px; }
.cta-final__title { font-size: clamp(1.9rem, 4.5vw, 3.2rem); font-weight: 900; margin-bottom: 18px; }
.cta-final__title .text-accent {
  background: linear-gradient(110deg,
    #1A1A1A 0%, #1A1A1A 40%,
    #555 49%, #777 50%, #555 51%,
    #1A1A1A 60%, #1A1A1A 100%);
  background-size: 250% 100%;
  background-position: 150% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cta-final__text { font-size: 1.2rem; color: rgba(255,255,255,.9); margin-bottom: 38px; }
.cta-final .btn--whatsapp { box-shadow: 0 20px 50px rgba(0,0,0,.3); }

/* ---------- Footer ---------- */
.footer { background: #121212; color: rgba(255,255,255,.7); padding: 70px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer__logo { height: 56px; margin-bottom: 18px; }
.footer__brand p { font-size: .96rem; max-width: 320px; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.07); color: #fff; transition: .3s var(--ease); }
.footer__social a svg { width: 20px; height: 20px; }
.footer__social a:hover { background: var(--red); transform: translateY(-3px); }
.footer__col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 12px; font-size: .95rem; }
.footer__col a:hover { color: #fff; }
.footer__col li strong { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.footer__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer__bottom p { font-size: .85rem; color: rgba(255,255,255,.45); }

/* ---------- Floating WhatsApp ---------- */
.wpp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 62px; height: 62px; border-radius: 50%; background: var(--wpp); color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.5);
  transition: transform .3s var(--ease);
}
.wpp-float svg { width: 32px; height: 32px; }
.wpp-float:hover { transform: scale(1.1); }
.wpp-float__pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--wpp); z-index: -1; animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.9); opacity: 0; } }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 100px 16px auto 16px; flex-direction: column; align-items: stretch;
    background: #fff; padding: 14px 18px 20px; gap: 4px; box-shadow: var(--shadow-lg);
    border-radius: 22px; border: 1px solid var(--gray-100);
    opacity: 0; visibility: hidden; transform: translateY(-16px) scale(.98);
    transition: transform .35s var(--ease), opacity .3s, visibility .3s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .nav__link { padding: 14px 12px; border-bottom: 1px solid var(--gray-100); border-radius: 0; }
  .nav__link::after { display: none; }
  .nav__cta { margin: 12px 0 0; justify-content: center; }
  .nav__toggle { display: flex; }
  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 54px; }
  .hero__content { max-width: 640px; }
  .hero__frame { transform: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); margin-top: -50px; }
  .diff__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 56px; }
  .about__media { max-width: 520px; margin: 0 auto; }
  .review { flex-basis: 320px; }
  .social__inner { grid-template-columns: 1fr; gap: 48px; justify-items: center; text-align: center; }
  .social__content { max-width: 640px; }
  .social__chips { justify-content: center; }
  .social__actions { justify-content: center; }
  .location__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .header__inner { height: 64px; padding: 0 12px 0 18px; }
  .header__logo { height: 80px; }
  .nav { inset: 90px 12px auto 12px; }
  .section { padding: 70px 0; }
  .container { padding: 0 18px; }
  .services__grid { grid-template-columns: 1fr; }
  .diff__grid {
    display: flex; gap: 0; overflow-x: auto;
    scroll-snap-type: x mandatory; scroll-behavior: smooth;
    margin: 0 -18px; padding: 4px 18px 14px;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .diff__grid::-webkit-scrollbar { display: none; }
  .diff__item { flex: 0 0 80%; scroll-snap-align: start; margin-right: 22px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .btn--xl { padding: 18px 32px; font-size: 1.1rem; }
  .about__media-badge { left: 50%; transform: translateX(-50%); bottom: -26px; }
  .hero__visual { max-width: 100%; }
  .hero__visual-chip { right: 6px; top: -14px; padding: 10px 14px; }
  .hero__visual-chip strong { font-size: 1.5rem; }
  .hero__visual-badge { left: 6px; bottom: 14px; padding: 11px 14px; }
  .hero__frame { padding: 7px; }
  .road { height: 52px; margin-top: 44px; }
  .road__car { width: 104px; animation-duration: 5s; }
  .review { flex-basis: 82vw; max-width: 320px; }
}

/* ---------- Mobile: textos centralizados + layout leve ---------- */
@media (max-width: 768px) {
  /* Sobre */
  .about__content { text-align: center; }
  .about__content p { margin-left: auto; margin-right: auto; }
  .about__list { display: inline-grid; justify-items: center; text-align: center; }

  /* Localização */
  .location__info { text-align: center; }
  .location__row { flex-direction: column; align-items: center; gap: 8px; }
  .location__ico { margin: 0 auto; }
  .location__actions { justify-content: center; }

  /* Rodapé */
  .footer { padding-top: 52px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; text-align: center; }
  .footer__brand { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; }
  .footer__logo { height: 64px; }
  .footer__brand p { margin: 0 auto; max-width: 340px; }
  .footer__social { justify-content: center; }
  .footer__col h4 { margin-bottom: 14px; }
  .footer__col ul { gap: 10px; }
}

@media (max-width: 560px) {
  /* mais leve: respiro e CTAs confortáveis para o toque */
  .section { padding: 60px 0; }
  .section__head { margin-bottom: 36px; }
  .section__lead { font-size: 1rem; }
  /* banner mantém a altura cheia; só o texto diminui */
  .hero { min-height: 100svh; padding: 110px 0 80px; }
  .hero__badge { font-size: .72rem; padding: 7px 14px; margin-bottom: 18px; }
  .hero__title { font-size: 1.85rem; margin-bottom: 16px; }
  .hero__subtitle { font-size: .98rem; margin-bottom: 28px; }
  .hero__actions { gap: 12px; margin-bottom: 28px; }
  .hero__trust { gap: 10px 18px; font-size: .82rem; }
  .section__title { font-size: 1.6rem; }
  .social__actions, .location__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .social__actions .btn, .location__actions .btn, .about__content .btn { width: 100%; }
  .cta-final .btn--whatsapp { width: 100%; }
  .review { padding: 26px 22px; }
  .reviews__google { width: 100%; justify-content: center; }
  /* celular do Instagram em tamanho normal no mobile */
  .phone { width: 270px; max-width: 74vw; }
  .social__inner { gap: 30px; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }
