/* ============================================================
   CAMPOS PEÇAS E MÁQUINAS — Landing Page
   Industrial · Preto / Branco / Laranja
   ============================================================ */

:root {
  --bg:        #0d0d0f;   /* near-black canvas            */
  --bg-2:      #16161a;   /* dark cards                   */
  --bg-3:      #1e1e23;   /* raised cards / borders       */
  --light:     #f2f1ee;   /* light sections               */
  --light-2:   #e7e6e1;   /* light section alt            */
  --white:     #ffffff;
  --ink:       #121214;   /* text on light                */
  --ink-soft:  #4a4a4f;   /* muted text on light          */

  --orange:    #ff8728;   /* brand primary                */
  --orange-d:  #e06a20;   /* hover / pressed              */
  --orange-l:  #ff9b5a;   /* highlights                   */
  --amber:     #ffb547;   /* warm secondary               */

  --txt:       #ededf0;   /* text on dark                 */
  --txt-soft:  #a3a3ab;   /* muted text on dark           */
  --line:      rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.18);

  --green:     #38b15a;   /* checks / success             */
  --wa:        #25d366;   /* whatsapp                     */
  --wa-d:      #1ebe5a;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;

  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --shadow: 0 24px 60px -28px rgba(0,0,0,.7);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

/* ---------- Typography ---------- */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(12px, 1.4vw, 14px);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--orange);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

h2.section-title { font-size: clamp(30px, 5vw, 56px); }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--txt-soft); line-height: 1.55; }
.txt-orange { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 15px;
  padding: 17px 30px;
  border-radius: 999px;
  border: 0;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 20px; height: 20px; }

.btn-wa {
  background: var(--wa);
  color: #06351a;
  box-shadow: 0 14px 34px -12px rgba(37,211,102,.6);
}
.btn-wa:hover { background: var(--wa-d); transform: translateY(-2px); }

.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-d); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--txt);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-l); }

.btn-dark { background: #0d0d0f; color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }

.btn-lg { padding: 20px 38px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section.dark  { background: var(--bg); }
.section.dark2 { background: var(--bg-2); }
.section.light { background: var(--light); color: var(--ink); }
.section.light .lead { color: var(--ink-soft); }
.section.light .eyebrow { color: var(--orange-d); }
.section.orange { background: var(--orange); color: #1a1003; }
.section-head { max-width: 760px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 16px 0;
}
.header.scrolled {
  background: rgba(12,12,14,.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 18px 40px -30px #000;
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; gap: 28px; }
.nav { display: flex; gap: 30px; margin-left: auto; }
.nav a {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; font-size: 13.5px;
  color: var(--txt-soft); transition: color .15s;
}
.nav a:hover { color: #fff; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: #fff; white-space: nowrap;
}
.header-phone svg { width: 18px; height: 18px; color: var(--orange); }
.menu-toggle { display: none; background: none; border: 0; color: #fff; }

/* ---------- Logo ---------- */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 44px; height: 44px; flex: none; }
.logo-txt { display: flex; flex-direction: column; line-height: 1; }
.logo-txt b {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  letter-spacing: .02em; text-transform: uppercase; color: #fff;
}
.logo-txt span {
  font-family: var(--font-display); font-weight: 600; font-size: 9.5px;
  letter-spacing: .26em; text-transform: uppercase; color: var(--orange);
  margin-top: 3px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 160px 0 90px; overflow: hidden; min-height: 92vh; display: flex; align-items: center; padding-inline: clamp(30px, 6vw, 100px); }
.hero > .wrap { width: 100%; max-width: none; display: flex; justify-content: flex-start; padding-inline-start: clamp(220px, 30vw, 320px); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-bg image-slot { width: 100%; height: 100%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,10,.92) 0%, rgba(8,8,10,.78) 36%, rgba(10,9,8,.32) 68%, rgba(10,9,8,.45) 100%),
    linear-gradient(0deg, rgba(8,8,10,.72) 0%, rgba(8,8,10,.12) 38%, rgba(8,8,10,0) 60%);
}
.hero-bg.dim::after {
  background:
    linear-gradient(90deg, rgba(8,8,10,.95) 0%, rgba(8,8,10,.9) 32%, rgba(10,9,8,.62) 60%, rgba(10,9,8,.38) 82%, rgba(10,9,8,.45) 100%),
    linear-gradient(0deg, rgba(8,8,10,.72) 0%, rgba(8,8,10,.12) 46%, rgba(8,8,10,0) 66%);
}
.hero-inner { position: relative; z-index: 2; width: min(100%, 640px); max-width: 640px; margin-left: 0; margin-right: auto; }
.hero h1 {
  font-size: clamp(38px, 6.4vw, 80px);
  line-height: .98;
  margin: 22px 0 26px;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.hero .eyebrow { text-shadow: 0 2px 14px rgba(0,0,0,.85); }
.hero h1 .accent { color: var(--orange); }
.hero .lead { color: #e2e2e4; max-width: 600px; font-size: clamp(17px, 1.7vw, 21px); text-shadow: 0 2px 16px rgba(0,0,0,.7); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 34px 0 0; align-items: center; }
.hero-phone {
  display: inline-flex; flex-direction: column; line-height: 1.15;
  font-family: var(--font-body);
}
.hero-phone .n { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff; }
.hero-phone .s { font-size: 13px; color: var(--txt-soft); }

.hero-proofs {
  display: flex; flex-wrap: wrap; gap: 14px 30px; margin-top: 40px;
  padding-top: 30px; border-top: 1px solid var(--line);
}
.proof { display: flex; align-items: center; gap: 11px; }
.proof .ic { width: 22px; height: 22px; color: var(--orange); flex: none; }
.proof b { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 15px; display: block; line-height: 1.15; }
.proof span { font-size: 12.5px; color: var(--txt-soft); }
.stars-inline { color: var(--amber); letter-spacing: 1px; }

/* ============================================================
   STATS BAND (orange)
   ============================================================ */
.statband { background: var(--orange); color: #1a1003; }
.statband-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  align-items: stretch;
}
.statband .item {
  display: flex; align-items: center; gap: 16px;
  padding: 30px clamp(16px, 2.4vw, 34px);
  border-right: 1px solid rgba(0,0,0,.14);
}
.statband .item:last-child { border-right: 0; }
.statband .ic { width: 40px; height: 40px; flex: none; color: #1a1003; }
.statband b { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2.3vw, 27px); line-height: 1; display: block; }
.statband span { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: 12px; opacity: .85; }

/* ============================================================
   LOGOS / PROVA SOCIAL
   ============================================================ */
.logos-rail { display: flex; align-items: center; gap: 30px; }
.logos-track {
  display: flex; align-items: center; gap: clamp(28px, 6vw, 80px);
  overflow: hidden; flex: 1;
  mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logos-track .marquee { display: flex; align-items: center; gap: clamp(28px,6vw,80px); animation: scroll-x 32s linear infinite; }
.logos-track:hover .marquee { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.client-logo {
  width: 150px; height: 84px; flex: none;
  filter: grayscale(1); opacity: .7; transition: .25s;
}
.client-logo:hover { filter: none; opacity: 1; }
.logo-nav {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  border: 1.5px solid var(--line-strong); background: transparent; color: var(--ink);
  display: grid; place-items: center; transition: .15s;
}
.section.light .logo-nav { color: var(--ink); border-color: rgba(0,0,0,.16); }
.logo-nav:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ============================================================
   DOR (pain) cards
   ============================================================ */
.cost-line {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(20px, 2.6vw, 30px); color: #fff; line-height: 1.15;
  margin: 8px 0 0;
}
.cost-line em { color: var(--orange); font-style: normal; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.pain-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  border-radius: var(--r);
  padding: 34px 30px;
  position: relative;
}
.pain-card .num {
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  color: var(--orange); letter-spacing: .1em;
}
.pain-card h3 { font-size: 21px; margin: 14px 0 14px; line-height: 1.1; color: #fff; }
.pain-card p { color: var(--txt-soft); font-size: 15.5px; margin: 0; }
.pain-card .xmark {
  position: absolute; top: 28px; right: 28px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(240,90,20,.14); color: var(--orange);
  display: grid; place-items: center;
}

/* ============================================================
   COMPARATIVO (table)
   ============================================================ */
.compare {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin-top: 12px; overflow: hidden; border-radius: var(--r-lg);
  background: var(--bg-2); border: 1px solid var(--line);
}
.compare th, .compare td { padding: 18px 20px; text-align: center; font-size: 15.5px; }
.compare thead th {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; font-size: 14px; color: var(--txt-soft);
  border-bottom: 1px solid var(--line); padding-top: 26px; padding-bottom: 26px;
}
.compare thead th.hl { color: #fff; background: var(--orange); position: relative; }
.compare thead th.hl small { display: block; font-size: 10px; letter-spacing: .14em; opacity: .85; margin-top: 4px; }
.compare tbody th {
  text-align: left; font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em; font-size: 13.5px;
  color: var(--txt-soft); white-space: nowrap;
}
.compare tbody td { color: var(--txt); border-top: 1px solid var(--line); }
.compare td.hl { background: rgba(240,90,20,.10); color: #fff; font-weight: 600; border-left: 1px solid rgba(240,90,20,.3); border-right: 1px solid rgba(240,90,20,.3); }
.compare tbody tr:last-child td.hl { border-bottom: 1px solid rgba(240,90,20,.3); }
.compare td.muted { color: var(--txt-soft); }
.compare-note {
  margin-top: 30px; padding: 26px 30px; border-left: 4px solid var(--orange);
  background: var(--bg-2); border-radius: 0 var(--r) var(--r) 0; max-width: 880px;
}
.compare-note p { margin: 0; font-size: 17px; color: #fff; line-height: 1.5; }
.compare-note p strong { color: var(--orange); }
.compare-note cite { display: block; margin-top: 10px; font-style: normal; color: var(--txt-soft); font-size: 14px; }

/* ============================================================
   CONFIÁVEL (used parts) split layout
   ============================================================ */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split.rev > :first-child { order: 2; }
.checklist { display: grid; gap: 16px; margin: 30px 0 0; padding: 0; list-style: none; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 16.5px; color: var(--txt); }
.checklist .ck {
  width: 26px; height: 26px; flex: none; border-radius: 50%;
  background: rgba(56,177,90,.16); color: var(--green);
  display: grid; place-items: center; margin-top: 1px;
}
.guarantee-card {
  background: linear-gradient(160deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 40px; text-align: center; position: relative; overflow: hidden;
}
.guarantee-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% -10%, rgba(240,90,20,.22), transparent 60%);
}
.seal {
  width: 130px; height: 130px; margin: 0 auto 22px; position: relative; z-index: 1;
}
.guarantee-card h3 { font-size: 26px; color: #fff; position: relative; z-index: 1; }
.guarantee-card p { color: var(--txt-soft); margin: 14px 0 0; position: relative; z-index: 1; font-size: 15.5px; }

/* ============================================================
   CATÁLOGO
   ============================================================ */
.cat-tags { display: flex; flex-wrap: wrap; gap: 12px; margin: 36px 0 44px; }
.cat-tag {
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 11px 20px; border-radius: 999px;
  border: 1.5px solid var(--line-strong); color: var(--txt);
  background: var(--bg-2); transition: .15s;
}
.cat-tag:hover, .cat-tag.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.parts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.part-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; transition: .2s;
  display: flex; flex-direction: column;
}
.part-card:hover { border-color: rgba(240,90,20,.5); transform: translateY(-4px); }
.part-thumb { aspect-ratio: 4/3; background: var(--bg-3); position: relative; }
.part-thumb img.part-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.part-thumb image-slot { width: 100%; height: 100%; }
.part-head {
  position: relative; aspect-ratio: 16/7; display: grid; place-items: center;
  background: radial-gradient(135% 135% at 50% 0%, #22222c 0%, #13131a 78%);
  border-bottom: 1px solid var(--line);
}
.part-head .part-ic { width: 50px; height: 50px; color: var(--orange); opacity: .92; }
.part-head .part-stock { top: 12px; left: 12px; }
.part-stock {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: .05em;
  background: rgba(56,177,90,.18); color: var(--green);
  padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(4px);
  display: inline-flex; align-items: center; gap: 6px;
}
.part-stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.part-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.part-body .brand { font-size: 12px; color: var(--orange); font-family: var(--font-display); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.part-body h4 { font-size: 17px; color: #fff; margin: 6px 0 4px; text-transform: none; letter-spacing: 0; }
.part-body .loc { font-size: 13px; color: var(--txt-soft); margin-bottom: 14px; }
.part-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
  color: var(--orange); text-transform: uppercase; letter-spacing: .04em;
}
.part-link svg { width: 15px; height: 15px; transition: transform .15s; }
.part-card:hover .part-link svg { transform: translateX(3px); }

.find-banner {
  margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
  background: linear-gradient(120deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line); border-left: 4px solid var(--orange);
  border-radius: var(--r-lg); padding: 34px 38px;
}
.find-banner .ic { width: 56px; height: 56px; flex: none; color: var(--orange); }
.find-banner h3 { font-size: 24px; color: #fff; }
.find-banner p { color: var(--txt-soft); margin: 8px 0 0; max-width: 560px; }
.find-banner .btn { margin-left: auto; }

/* ============================================================
   SERVIÇOS
   ============================================================ */
.serv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.serv-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 38px 32px; transition: .2s;
}
.serv-card:hover { border-color: rgba(240,90,20,.5); }
.serv-ic {
  width: 60px; height: 60px; border-radius: 14px; margin-bottom: 22px;
  background: rgba(240,90,20,.12); color: var(--orange);
  display: grid; place-items: center;
}
.serv-ic svg { width: 30px; height: 30px; }
.serv-card h3 { font-size: 20px; color: #fff; margin-bottom: 12px; }
.serv-card p { color: var(--txt-soft); font-size: 15.5px; margin: 0; }

/* ============================================================
   CINEMATIC BAND (full-bleed photo divider)
   ============================================================ */
.cinematic {
  position: relative; min-height: 460px; display: flex; align-items: center;
  background: #000; overflow: hidden;
}
.cinematic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cinematic::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,8,10,.92) 0%, rgba(8,8,10,.7) 42%, rgba(8,8,10,.25) 100%);
}
.cinematic .wrap { position: relative; z-index: 2; }
.cinematic .eyebrow { color: var(--orange-l); }
.cinematic h2 { font-size: clamp(28px, 4.4vw, 50px); max-width: 18ch; color: #fff; }
.cinematic .lead { color: #d8d8db; max-width: 540px; margin: 18px 0 30px; }

/* ============================================================
   COBERTURA (orange split)
   ============================================================ */
.coverage { background: linear-gradient(180deg, #09090c 0%, #111115 100%); }
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,60px); align-items: center; }
.coverage h2 { font-size: clamp(34px, 5.2vw, 72px); line-height: 1.02; }
.coverage h2 .o { color: var(--orange); }
.coverage .lead { max-width: 560px; color: var(--txt-soft); }
.coverage .cover-badge {
  margin-top: 28px; padding: 26px 28px; border-radius: var(--r); background: rgba(240,90,20,.12);
  border: 1px solid rgba(240,90,20,.3); max-width: 420px;
}
.cover-badge b { font-family: var(--font-display); font-weight: 800; color: var(--orange); font-size: 20px; display: block; }
.cover-badge span { color: var(--txt-soft); font-size: 15px; }
.map-panel { display: flex; flex-direction: column; gap: 0; }
.map-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(135deg, rgba(13,13,15,.95) 0%, rgba(25,24,28,.92) 100%);
  border: 1px solid rgba(255,135,40,.25); padding: 28px;
  min-height: 500px;
  display: grid; place-items: center;
}
.map-image { width: 85%; height: auto; max-width: 100%; object-fit: contain; border-radius: 8px; }
.map-pin-label {
  position: absolute; bottom: 24px; left: 24px; z-index: 4;
  background: rgba(13,13,15,.92); color: #fff; padding: 12px 18px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; gap: 9px; backdrop-filter: blur(6px);
}
.map-pin-label svg { width: 16px; height: 16px; color: var(--orange); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.google-badge {
  display: inline-flex; align-items: center; gap: 18px;
  background: var(--white); color: var(--ink);
  border-radius: var(--r-lg); padding: 20px 30px; box-shadow: var(--shadow);
}
.google-badge .g-logo { width: 38px; height: 38px; flex: none; }
.google-badge .score { font-family: var(--font-display); font-weight: 800; font-size: 38px; line-height: 1; }
.google-badge .stars { color: var(--amber); font-size: 18px; letter-spacing: 2px; }
.google-badge .meta { font-size: 13.5px; color: var(--ink-soft); }
.google-badge .vlink { color: var(--orange-d); font-weight: 700; font-size: 13.5px; display: inline-flex; align-items: center; gap: 5px; }

.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.review {
  background: var(--white); color: var(--ink); border-radius: var(--r);
  padding: 26px; box-shadow: 0 18px 40px -30px rgba(0,0,0,.4);
  display: flex; flex-direction: column;
}
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-av { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 18px; flex: none; }
.review-id b { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; display: block; }
.review-id .stars { color: var(--amber); font-size: 14px; letter-spacing: 1px; }
.review p { font-size: 15.5px; color: #2c2c30; line-height: 1.5; margin: 0; flex: 1; }
.review .gmark { margin-top: 16px; display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--ink-soft); }
.review .gmark svg { width: 16px; height: 16px; }

/* ============================================================
   ALERTA AUTENTICIDADE
   ============================================================ */
.alert-box {
  background: #1a120a; border: 1px solid rgba(255,181,71,.3);
  border-left: 5px solid var(--amber); border-radius: var(--r-lg);
  padding: clamp(30px, 4vw, 48px);
}
.alert-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.alert-head .ic { width: 46px; height: 46px; color: var(--amber); flex: none; }
.alert-head h2 { font-size: clamp(22px, 3vw, 32px); color: var(--amber); }
.alert-box > p { color: var(--txt); font-size: 17px; max-width: 760px; }
.alert-box strong { color: #fff; }
.channels { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 26px; }
.channel { display: flex; align-items: center; gap: 13px; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: var(--r); padding: 15px 18px; }
.channel .ck { width: 24px; height: 24px; flex: none; color: var(--green); }
.channel span { font-size: 15px; }
.channel b { color: #fff; font-family: var(--font-body); font-weight: 600; }
.alert-final { margin-top: 22px; font-family: var(--font-display); font-weight: 700; color: var(--amber); font-size: 16px; }

/* ============================================================
   SOBRE / RAFAEL
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(30px,5vw,64px); align-items: center; }
.about-media { position: relative; }
.carousel-container { width: 100%; aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; position: relative; }
.carousel-img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 0.6s ease-in-out; }
.carousel-img.carousel-active { opacity: 1; }
.about-media img.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 14px; display: block; }
.about-media image-slot { width: 100%; aspect-ratio: 4/5; }
.about-badge {
  position: absolute; right: -18px; bottom: -18px; z-index: 4;
  background: var(--orange); color: #1a1003; padding: 20px 26px; border-radius: var(--r);
  box-shadow: var(--shadow); text-align: center;
}
.about-badge b { font-family: var(--font-display); font-weight: 800; font-size: 34px; line-height: 1; display: block; }
.about-badge span { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: 11px; }
.about-grid h2 { font-size: clamp(28px, 4vw, 46px); }
.about-grid p { color: var(--txt-soft); margin: 18px 0 0; font-size: 16.5px; }
.quote {
  margin-top: 30px; padding: 26px 30px; border-radius: var(--r);
  background: var(--bg-2); border: 1px solid var(--line); position: relative;
}
.quote::before { content: "“"; font-family: Georgia, serif; font-size: 70px; color: var(--orange); position: absolute; top: 6px; left: 18px; line-height: 1; opacity: .5; }
.quote p { color: #fff; font-size: 18px; font-style: italic; margin: 0 0 0 30px; }
.quote cite { display: block; margin: 12px 0 0 30px; font-style: normal; color: var(--orange); font-family: var(--font-display); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; }

/* ============================================================
   CTA FINAL (orange)
   ============================================================ */
.cta-final { text-align: center; }
.cta-final h2 { font-size: clamp(32px, 5.5vw, 64px); color: #1a1003; max-width: 16ch; margin: 0 auto 20px; }
.cta-final .lead { color: #3a2406; max-width: 640px; margin: 0 auto 38px; font-size: 19px; }
.paths { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 50px; max-width: 920px; margin-inline: auto; }
.path {
  background: rgba(13,13,15,.92); color: var(--txt); border-radius: var(--r-lg);
  padding: 30px 26px; text-align: left; transition: .2s; display: block;
}
.path:hover { transform: translateY(-4px); background: #0d0d0f; }
.path .ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(240,90,20,.16); color: var(--orange); display: grid; place-items: center; margin-bottom: 18px; }
.path h4 { font-size: 14px; color: var(--orange); letter-spacing: .1em; }
.path .big { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: #fff; margin: 8px 0 6px; }
.path span { font-size: 13.5px; color: var(--txt-soft); }

/* ============================================================
   FORMULÁRIO
   ============================================================ */
.form-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px,5vw,60px); align-items: center; }
.form-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--txt-soft); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; background: var(--bg); border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm); padding: 14px 16px; color: #fff;
  font-family: var(--font-body); font-size: 16px; transition: border .15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); }
.field textarea { resize: vertical; min-height: 92px; }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .ck { width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 50%; background: rgba(56,177,90,.16); color: var(--green); display: grid; place-items: center; }
.form-success h3 { font-size: 26px; color: #fff; }
.form-success p { color: var(--txt-soft); margin-top: 10px; }
.form-note { font-size: 13px; color: var(--txt-soft); margin-top: 8px; text-align: center; }

/* ============================================================
   MAPA / ONDE ESTAMOS
   ============================================================ */
.location { position: relative; }
.map-embed { width: 100%; height: 480px; border: 0; filter: grayscale(.2) contrast(1.05); display: block; }
.location-card {
  position: absolute; left: var(--gut); bottom: 40px; z-index: 5;
  background: var(--bg); border: 1px solid var(--line); border-top: 4px solid var(--orange);
  border-radius: var(--r); padding: 28px 32px; max-width: 380px; box-shadow: var(--shadow);
}
.location-card h3 { font-size: 22px; color: #fff; margin-bottom: 14px; }
.location-card p { color: var(--txt-soft); margin: 0 0 14px; font-size: 15.5px; }
.location-card .row { display: flex; align-items: center; gap: 11px; margin-bottom: 9px; font-size: 14.5px; }
.location-card .row svg { width: 17px; height: 17px; color: var(--orange); flex: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #08080a; padding: 70px 0 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .tagline { color: var(--txt-soft); margin: 20px 0 0; max-width: 280px; font-size: 15px; }
.footer h5 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; color: #fff; margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a, .footer ul li { color: var(--txt-soft); font-size: 14.5px; transition: color .15s; }
.footer ul a:hover { color: var(--orange-l); }
.footer .frow { display: flex; align-items: center; gap: 9px; }
.footer .frow svg { width: 15px; height: 15px; color: var(--orange); flex: none; }
.footer .social { display: flex; gap: 12px; margin-top: 16px; }
.footer .social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--txt-soft); transition: .15s; }
.footer .social a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: var(--txt-soft); font-size: 13px; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; align-items: center; gap: 0;
  background: var(--wa); color: #06351a; border-radius: 999px;
  padding: 0; height: 60px; overflow: hidden;
  box-shadow: 0 16px 40px -10px rgba(37,211,102,.6);
  transition: gap .25s ease, padding .25s ease;
}
.wa-float .wa-ic { width: 60px; height: 60px; display: grid; place-items: center; flex: none; }
.wa-float .wa-ic svg { width: 30px; height: 30px; }
.wa-float .wa-label { font-family: var(--font-display); font-weight: 800; font-size: 15px; white-space: nowrap; max-width: 0; opacity: 0; transition: .25s; }
.wa-float:hover .wa-label { max-width: 140px; opacity: 1; padding-right: 24px; }
.wa-float .pulse { position: absolute; inset: 0; border-radius: 999px; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.2s infinite; pointer-events: none; }
@keyframes pulse { to { box-shadow: 0 0 0 18px rgba(37,211,102,0); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .statband-inner { grid-template-columns: repeat(2, 1fr); }
  .statband .item:nth-child(2) { border-right: 0; }
  .statband .item:nth-child(1), .statband .item:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,.14); }
  .parts-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid, .serv-grid, .reviews { grid-template-columns: 1fr 1fr; }
  .reviews .review:nth-child(3) { display: none; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .header-phone { display: none; }
  .header-cta .btn-wa { display: none; }
  .split, .coverage-grid, .about-grid, .form-grid { grid-template-columns: 1fr; }
  .split.rev > :first-child { order: 0; }
  .about-media { max-width: 420px; }
  .compare-note p { font-size: 15px; }
  .find-banner .btn { margin-left: 0; width: 100%; }
  .location-card { position: static; max-width: none; margin: -40px var(--gut) 0; }

  .hero {
    padding: clamp(110px, 18vw, 120px) 0 70px;
    min-height: auto;
    padding-inline: 0;
  }
  .hero > .wrap {
    max-width: var(--maxw);
    padding-inline: var(--gut);
    padding-inline-start: var(--gut);
    padding-inline-end: var(--gut);
    justify-content: flex-start;
  }
  .hero-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .hero h1 {
    font-size: clamp(38px, 8vw, 64px);
  }
  .hero .lead { max-width: 100%; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .pain-grid, .serv-grid, .reviews, .paths, .channels, .form-2 { grid-template-columns: 1fr; }
  .reviews .review:nth-child(n+3) { display: none; }
  .statband-inner { grid-template-columns: 1fr; }
  .statband .item { border-right: 0 !important; border-bottom: 1px solid rgba(0,0,0,.14); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { gap: 14px; align-items: center; }
  .hero-actions .btn {
    width: min(100%, 360px);
    padding: 15px 26px;
    font-size: 15px;
  }
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare { min-width: 540px; }

  .hero {
    padding: 100px 0 55px;
    min-height: auto;
  }
  .hero > .wrap { padding-inline: 18px; }
  .hero h1 {
    font-size: clamp(32px, 10vw, 48px);
    margin: 18px 0 22px;
  }
  .hero .lead { font-size: 15.5px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-phone .n { font-size: 20px; }
  .hero-proofs {
    flex-direction: column;
    gap: 14px;
    padding-top: 22px;
  }
  .proof { width: 100%; }

  .cinematic .btn {
    width: min(100%, 360px);
    padding: 15px 26px;
    font-size: 15px;
  }
}


/* edit overrides injected by direct manipulation appear below */
