/* ==========================================================================
   JLeme Locação de Impressoras — folha de estilo principal
   Identidade: laranja da marca + preto, neutros com viés quente.
   ========================================================================== */

:root {
  /* Marca (extraída do logotipo) */
  --brand: #E8481C;
  --brand-dark: #C2380F;
  --brand-light: #FF6A3D;
  --brand-wash: #FDF0EB;

  /* Tinta e papel — neutros com viés quente */
  --ink: #17191C;
  --ink-soft: #4A4F57;
  --ink-faint: #7C838D;
  --paper: #FBF9F7;
  --surface: #FFFFFF;
  --line: #E6E1DC;
  --line-soft: #F0ECE8;

  /* Apoio */
  --whats: #25D366;
  --whats-dark: #1DA851;
  --gold: #B8863B;
  --good: #2C8C5F;

  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(23,25,28,.06), 0 2px 8px rgba(23,25,28,.05);
  --shadow: 0 2px 6px rgba(23,25,28,.06), 0 12px 32px rgba(23,25,28,.09);
  --shadow-lg: 0 8px 24px rgba(23,25,28,.10), 0 24px 60px rgba(23,25,28,.13);

  --maxw: 1360px;
  --font: "Segoe UI", system-ui, -apple-system, "Roboto", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Archivo", "Segoe UI", system-ui, sans-serif;
  --font-alt: "Segoe UI", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.12;
  letter-spacing: -.02em;
  text-wrap: balance;
  font-weight: 800;
  font-family: var(--font-display);
}
h1 { font-size: clamp(32px, 5.2vw, 54px); }
h2 { font-size: clamp(26px, 3.6vw, 38px); }
h3 { font-size: clamp(19px, 2.2vw, 23px); }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.25em; }
li { margin: .4em 0; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(22px, 3vw, 40px); }
.narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--ink-soft); }
.small { font-size: 15px; }

/* ---------- Eyebrow / rótulos ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none !important;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn-whats { background: var(--whats); color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.32); }
.btn-whats:hover { background: var(--whats-dark); }
.btn-brand { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(232,72,28,.28); }
.btn-brand:hover { background: var(--brand-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: #fff; }
.btn-light { background: #fff; color: var(--brand-dark); }
.btn svg { width: 20px; height: 20px; fill: currentColor; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-top: 6px; padding-bottom: 6px;
}
.logo { display: flex; align-items: center; text-decoration: none !important; }
.logo img { width: auto; height: 120px; transition: height .25s ease; }
.site-header.compact .logo img { height: 78px; }
@media (max-width: 900px) {
  .logo img { height: 92px; }
  .site-header.compact .logo img { height: 64px; }
}
.logo .lg-txt { line-height: 1.1; }
.logo .lg-name { font-family: var(--font-display); font-weight: 900; font-size: 23px; color: var(--ink); letter-spacing: -.02em; }
.logo .lg-sub { font-size: 12px; color: var(--ink-faint); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--ink-soft); font-size: 15px; font-weight: 600;
  padding: 9px 13px; border-radius: 8px; text-decoration: none;
  white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--brand-dark); background: var(--brand-wash); }
.nav .btn { margin-left: 8px; padding: 11px 18px; font-size: 15px; }

.burger {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  color: var(--ink);
}
.burger svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2.2; }

@media (max-width: 1140px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 84px 18px 24px; gap: 2px;
    transform: translateX(100%); transition: transform .28s ease;
    box-shadow: var(--shadow-lg); overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 13px 14px; font-size: 16px; }
  .nav .btn { margin: 12px 0 0; justify-content: center; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(23,25,28,.45);
    opacity: 0; pointer-events: none; transition: opacity .28s ease; z-index: 49;
  }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(90% 120% at 88% 0%, rgba(232,72,28,.09), transparent 58%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero .wrap { display: grid; grid-template-columns: 1.08fr .92fr; gap: 46px; align-items: center; padding-top: 62px; padding-bottom: 62px; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .hl { color: var(--brand); }
.hero .lede { font-size: clamp(17px, 1.9vw, 20px); color: var(--ink-soft); max-width: 54ch; margin-bottom: 26px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-note { font-size: 14.5px; color: var(--ink-faint); display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 17px; height: 17px; fill: var(--brand); flex: none; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.hero-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: #fff; border-radius: 14px; padding: 13px 18px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.hero-badge .n { font-size: 30px; font-weight: 900; color: var(--brand); line-height: 1; letter-spacing: -.03em; }
.hero-badge .t { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.hero-badge .t span { display: block; font-weight: 500; color: var(--ink-faint); font-size: 12px; }
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 34px; padding-top: 40px; padding-bottom: 46px; }
  .hero-badge { left: 12px; bottom: -14px; }
}

/* ---------- Barra de confiança ---------- */
.trustbar { background: linear-gradient(90deg, var(--brand-dark) 0%, var(--brand) 60%, var(--brand-light) 100%); color: #fff; }
.trustbar .wrap {
  display: flex; justify-content: center; gap: 14px 44px; flex-wrap: wrap;
  padding-top: 18px; padding-bottom: 18px;
}
.trustbar .ti { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 700; }
.trustbar .ti svg { width: 19px; height: 19px; fill: #fff; flex: none; }

/* ---------- Seções ---------- */
.section { padding: 74px 0; }
.section.tight { padding: 52px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section.dark { background: var(--ink); color: #fff; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark .muted { color: #B9BEC6; }
.sec-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.sec-head p { font-size: 18px; color: var(--ink-soft); margin: 0; }
.sec-head.left { margin-left: 0; text-align: left; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 22px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .g4 { grid-template-columns: repeat(2, 1fr); } .g3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }

/* Dor */
.pain { border-left: 3px solid var(--brand); }
.pain h3 { font-size: 18px; }
.pain p { font-size: 15.5px; color: var(--ink-soft); margin: 0; }

/* Passos */
.step { position: relative; padding-top: 8px; }
.step .sn {
  width: 46px; height: 46px; border-radius: 12px; background: var(--brand);
  color: #fff; font-size: 21px; font-weight: 900; display: flex;
  align-items: center; justify-content: center; margin-bottom: 14px;
}
.step h3 { font-size: 20px; }
.step p { color: var(--ink-soft); font-size: 16px; margin: 0; }

/* Diferenciais */
.why { display: flex; gap: 16px; align-items: flex-start; }
.why .ic {
  width: 44px; height: 44px; border-radius: 11px; background: var(--brand-wash);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.why .ic svg { width: 23px; height: 23px; fill: var(--brand); }
.why h3 { font-size: 18.5px; margin-bottom: .3em; }
.why p { font-size: 15.5px; color: var(--ink-soft); margin: 0; }
.section.dark .why .ic { background: rgba(232,72,28,.16); }
.section.dark .why p { color: #B9BEC6; }

/* Produtos */
.prod {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.prod:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prod .ph {
  background: #fff; padding: 22px; display: flex; align-items: center;
  justify-content: center; min-height: 200px; border-bottom: 1px solid var(--line-soft);
}
.prod .ph img { max-height: 180px; width: auto; object-fit: contain; }
.prod .bd { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.prod h3 { font-size: 19px; margin-bottom: .35em; }
.prod p { font-size: 15px; color: var(--ink-soft); flex: 1; margin-bottom: 14px; }
.prod .lnk { font-weight: 700; color: var(--brand-dark); font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.prod .lnk::after { content: "→"; transition: transform .15s ease; }
.prod:hover .lnk::after { transform: translateX(4px); }

/* Incluso */
.incl { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .incl { grid-template-columns: 1fr; gap: 28px; } }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin: 13px 0; font-size: 16.5px; }
.check-list li::before {
  content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--good); color: #fff; font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.x-list { list-style: none; padding: 0; margin: 0; }
.x-list li { display: flex; gap: 12px; align-items: flex-start; margin: 12px 0; font-size: 16px; color: var(--ink-soft); }
.x-list li::before {
  content: "✕"; flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--line); color: var(--ink-faint); font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}

/* Volumes */
.vol {
  background: var(--surface); border: 2px solid var(--line); border-radius: var(--radius);
  padding: 24px 20px; text-align: center; transition: border-color .18s ease, transform .18s ease;
}
.vol:hover { border-color: var(--brand); transform: translateY(-3px); }
.vol .vn { font-size: 32px; font-weight: 900; color: var(--brand); letter-spacing: -.03em; line-height: 1; }
.vol .vl { font-size: 14px; color: var(--ink-faint); font-weight: 600; margin-top: 6px; }

/* Cidades */
.cities { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.cities a {
  background: var(--surface); border: 1px solid var(--line); border-radius: 30px;
  padding: 9px 18px; font-size: 15px; font-weight: 600; color: var(--ink-soft);
  text-decoration: none; transition: all .15s ease;
}
.cities a:hover { border-color: var(--brand); color: var(--brand-dark); background: var(--brand-wash); }
.cities a.home-city { border-color: var(--brand); color: var(--brand-dark); background: var(--brand-wash); }

/* Depoimentos */
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.quote .qm { font-size: 42px; color: var(--brand); line-height: 1; font-weight: 900; margin-bottom: 4px; }
.quote p { font-size: 16px; color: var(--ink-soft); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.quote .who .av {
  width: 42px; height: 42px; border-radius: 50%; background: var(--brand-wash);
  color: var(--brand); font-weight: 800; display: flex; align-items: center; justify-content: center; flex: none;
}
.quote .who b { display: block; font-size: 15px; color: var(--ink); }
.quote .who span { font-size: 13.5px; color: var(--ink-faint); }
/* ---------- Avaliações do Google ---------- */
.reviews-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: start; }
.reviews-wrap.sem-reviews { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
.reviews-wrap.sem-reviews .reviews-live { display: none; }
@media (max-width: 860px) { .reviews-wrap { grid-template-columns: 1fr; } }

.google-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 4px; box-shadow: var(--shadow-sm);
}
.google-card .gc-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.02em;
  color: var(--ink-faint); margin-bottom: 6px;
}
.google-card .gc-stars { color: #FBBC04; font-size: 24px; letter-spacing: 3px; }
.google-card .gc-nota { font-family: var(--font-display); font-size: 54px; font-weight: 900; color: var(--ink); line-height: 1; }
.google-card p { font-size: 14.5px; color: var(--ink-soft); margin: 8px 0 14px; }
.google-card .btn { width: 100%; justify-content: center; }
.google-card .gc-link { font-size: 13.5px; color: var(--ink-faint); margin-top: 10px; text-decoration: underline; }

.reviews-live { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 620px) { .reviews-live { grid-template-columns: 1fr; } }
.review {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; margin: 0; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 10px;
}
.review .rv-stars { color: #FBBC04; font-size: 16px; letter-spacing: 2px; }
.review blockquote { margin: 0; font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.review figcaption { display: flex; align-items: center; gap: 11px; font-size: 14px; }
.review .rv-av {
  width: 38px; height: 38px; border-radius: 50%; background: var(--brand-wash);
  color: var(--brand-dark); font-weight: 800; font-size: 14px; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.review figcaption b { display: block; color: var(--ink); }
.review figcaption span span { color: var(--ink-faint); font-size: 13px; }
.placeholder {
  border: 2px dashed var(--line); background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(232,72,28,.03) 10px, rgba(232,72,28,.03) 20px);
  border-radius: var(--radius); padding: 22px; color: var(--ink-faint); font-size: 14.5px;
}
.placeholder b { color: var(--brand-dark); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; padding: 20px 44px 20px 0; font-size: 18px; font-weight: 700;
  list-style: none; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 26px; font-weight: 400; color: var(--brand); transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .fa { padding: 0 0 22px; color: var(--ink-soft); font-size: 16px; }
.faq-item .fa p:last-child { margin-bottom: 0; }

/* CTA final */
.cta-final { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; }
.cta-final h2 { color: #fff; }
.cta-final p { color: rgba(255,255,255,.92); font-size: 18px; }
.cta-box { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.cta-final .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.cta-final .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---------- Página interna ---------- */
.page-hero {
  background: linear-gradient(180deg, #fff, var(--paper));
  border-bottom: 1px solid var(--line); padding: 46px 0 42px;
}
.crumbs { font-size: 14px; color: var(--ink-faint); margin-bottom: 12px; }
.crumbs a { color: var(--ink-faint); }
.crumbs a:hover { color: var(--brand-dark); }
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lede { font-size: 19px; color: var(--ink-soft); max-width: 62ch; margin: 0; }
.page-hero .wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.page-hero.no-media .wrap { grid-template-columns: 1fr; }
.page-hero .ph-media img { border-radius: var(--radius); background: #fff; border: 1px solid var(--line); padding: 18px; }
@media (max-width: 900px) { .page-hero .wrap { grid-template-columns: 1fr; } }

.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.4em; font-size: 20px; }
.prose p, .prose li { color: var(--ink-soft); font-size: 17px; }
.prose strong { color: var(--ink); }

.aside-cta {
  background: var(--brand-wash); border: 1px solid rgba(232,72,28,.22);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.aside-cta h3 { font-size: 20px; }
.aside-cta p { font-size: 15.5px; color: var(--ink-soft); }

/* ---------- Formulário ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14.5px; font-weight: 700; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-size: 16px; font-family: inherit;
  border: 1.5px solid var(--line); border-radius: 9px; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); outline: none; }
.field textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-faint); }
.consent input { width: auto; margin-top: 4px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #C3C8CF; padding: 56px 0 0; font-size: 15px; }
.site-footer h4 { color: #fff; font-size: 15px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a { color: #C3C8CF; text-decoration: none; }
.site-footer a:hover { color: var(--brand-light); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 34px; padding-bottom: 40px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin: 8px 0; }
.foot-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.foot-logo img { width: auto; height: 68px; border-radius: 10px; background: #fff; padding: 4px; }
.foot-logo b { color: #fff; font-size: 18px; display: block; }
.foot-logo span { font-size: 12px; color: var(--ink-faint); }
.foot-social { display: flex; gap: 10px; margin-top: 14px; }
.foot-social a {
  width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.foot-social a:hover { background: var(--brand); }
.foot-social svg { width: 19px; height: 19px; fill: #fff; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0 26px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--ink-faint);
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%; background: var(--whats);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,.45);
  transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@media (max-width: 620px) { .wa-float { width: 54px; height: 54px; right: 14px; bottom: 14px; } .wa-float svg { width: 28px; height: 28px; } }

/* ==========================================================================
   VIDA — assinatura de meio-tom (retícula de impressão), motion e blog
   ========================================================================== */

/* ---------- HERO LP: vídeo de fundo, headline viva ---------- */
.hero-lp {
  position: relative; overflow: hidden;
  min-height: min(92vh, 860px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--ink); color: #fff;
  padding: 90px 0 110px;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: saturate(1.05);
  opacity: 0; transition: opacity 1s ease;
}
.hero-video.on { opacity: 1; }
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 120% at 15% 30%, rgba(23,25,28,.88) 0%, rgba(23,25,28,.55) 45%, rgba(23,25,28,.30) 100%),
    linear-gradient(180deg, rgba(23,25,28,.55) 0%, rgba(23,25,28,.25) 40%, rgba(23,25,28,.78) 100%);
}
.hero-veil::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,107,61,.22) 1.3px, transparent 1.3px);
  background-size: 17px 17px;
  -webkit-mask-image: radial-gradient(60% 90% at 90% 10%, #000 0%, transparent 70%);
  mask-image: radial-gradient(60% 90% at 90% 10%, #000 0%, transparent 70%);
}
.hero-lp-content { position: relative; max-width: var(--maxw); width: 100%; }
.hero-lp .chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px); border-radius: 40px; padding: 8px 18px;
  font-size: 14px; font-weight: 700; letter-spacing: .02em; margin-bottom: 22px;
  animation: rise-in .6s ease both;
}
.hero-lp .chip svg { width: 15px; height: 15px; fill: var(--brand-light); }
.hero-lp h1 {
  color: #fff; max-width: 17em; margin-bottom: 20px;
  font-size: clamp(34px, 5.6vw, 62px);
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero-lp h1 .hl { color: var(--brand-light); }
/* palavras animadas (spans criados pelo main.js) */
.hero-lp h1 .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero-lp h1 .w > span { display: inline-block; transform: translateY(110%); animation: word-up .65s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: var(--wd, 0s); }
@keyframes word-up { to { transform: translateY(0); } }
.hero-lp .lede {
  font-size: clamp(17px, 1.9vw, 20px); color: rgba(255,255,255,.88);
  max-width: 56ch; margin-bottom: 30px; animation: rise-in .7s ease .55s both;
}
.hero-lp .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; animation: rise-in .7s ease .7s both; }
.btn-xl { font-size: 17px; padding: 17px 32px; border-radius: 12px; }
.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(6px); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.14); }
.hero-stats {
  display: flex; gap: 14px; flex-wrap: wrap; animation: rise-in .7s ease .85s both;
}
.hero-stats .hs {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px); border-radius: 14px; padding: 14px 22px;
  display: flex; flex-direction: column; min-width: 150px;
}
.hero-stats .n { font-family: var(--font-display); font-size: 32px; font-weight: 900; color: var(--brand-light); line-height: 1.05; letter-spacing: -.02em; }
.hero-stats .l { font-size: 13px; color: rgba(255,255,255,.82); font-weight: 600; margin-top: 3px; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 30px; height: 48px; border: 2px solid rgba(255,255,255,.5); border-radius: 20px;
  display: flex; justify-content: center; padding-top: 9px;
  animation: rise-in .7s ease 1.2s both;
}
.scroll-cue span {
  width: 4px; height: 10px; border-radius: 4px; background: var(--brand-light);
  animation: cue 1.6s ease-in-out infinite;
}
@keyframes cue { 0%, 100% { transform: translateY(0); opacity: 1; } 55% { transform: translateY(14px); opacity: .25; } }
@media (max-width: 720px) {
  .hero-lp { padding: 64px 0 92px; min-height: 88vh; }
  .hero-stats .hs { min-width: calc(50% - 7px); padding: 12px 16px; }
  .hero-stats .n { font-size: 26px; }
}

/* ---------- Sobre nós na home ---------- */
.sobre-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 52px; align-items: center; }
.sobre-foto { position: relative; }
.sobre-foto img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.sobre-foto .hero-badge { animation: none; }
@media (max-width: 900px) { .sobre-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Faixa de vídeo no meio da página ---------- */
.video-band {
  position: relative; overflow: hidden; color: #fff;
  padding: 110px 0; background: var(--ink);
}
.video-band video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vb-veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(23,25,28,.92) 0%, rgba(23,25,28,.72) 55%, rgba(194,56,15,.55) 100%);
}
.video-band .wrap { position: relative; max-width: 780px; margin-left: 0; padding-left: max(22px, calc((100vw - var(--maxw)) / 2 + 22px)); }
.video-band h2 { color: #fff; font-size: clamp(26px, 3.4vw, 40px); }
.video-band p { color: rgba(255,255,255,.88); font-size: 18px; margin-bottom: 26px; max-width: 48ch; }
@media (max-width: 720px) { .video-band { padding: 74px 0; } }

/* ---------- Retícula de meio-tom: a marca gráfica da casa ---------- */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(232,72,28,.16) 1.3px, transparent 1.3px);
  background-size: 17px 17px;
  -webkit-mask-image: radial-gradient(70% 90% at 92% 8%, #000 0%, transparent 68%);
  mask-image: radial-gradient(70% 90% at 92% 8%, #000 0%, transparent 68%);
}
.section.dark { position: relative; overflow: hidden; }
.section.dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.07) 1.3px, transparent 1.3px);
  background-size: 19px 19px;
  -webkit-mask-image: radial-gradient(55% 80% at 4% 100%, #000 0%, transparent 70%);
  mask-image: radial-gradient(55% 80% at 4% 100%, #000 0%, transparent 70%);
}
.section.dark > .wrap { position: relative; }
.cta-final { position: relative; overflow: hidden; }
.cta-final::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.14) 1.2px, transparent 1.2px);
  background-size: 15px 15px;
  -webkit-mask-image: radial-gradient(60% 100% at 100% 0%, #000 0%, transparent 70%);
  mask-image: radial-gradient(60% 100% at 100% 0%, #000 0%, transparent 70%);
}
.cta-final > .wrap { position: relative; }

/* ---------- Hero: título "saindo da impressora" + destaque varrido ---------- */
@keyframes print-in {
  from { clip-path: inset(0 0 100% 0); transform: translateY(-6px); }
  to   { clip-path: inset(0 0 -8% 0); transform: none; }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.hero h1 { animation: print-in .9s cubic-bezier(.2,.7,.2,1) both; }
.hero .lede { animation: rise-in .7s ease .35s both; }
.hero .hero-cta { animation: rise-in .7s ease .5s both; }
.hero .hero-note { animation: rise-in .7s ease .65s both; }
.hero .eyebrow { animation: rise-in .5s ease both; }
.hero-media { animation: rise-in .9s ease .25s both; }
.hero h1 .hl {
  background-image: linear-gradient(0deg, rgba(232,72,28,.18), rgba(232,72,28,.18));
  background-repeat: no-repeat; background-position: 0 78%; background-size: 0% .34em;
  animation: hl-sweep .6s ease 1s forwards;
}
@keyframes hl-sweep { to { background-size: 100% .34em; } }
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.hero-badge { animation: rise-in .6s ease .8s both, badge-float 5s ease-in-out 1.6s infinite; }

/* ---------- Reveal on scroll (classes aplicadas pelo main.js) ---------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); transition-delay: var(--rv-d, 0s); }
.rv.rv-in { opacity: 1; transform: none; }

/* ---------- Trustbar em marquee ---------- */
.trustbar { overflow: hidden; }
.trustbar .wrap.marquee-on {
  flex-wrap: nowrap; justify-content: flex-start; gap: 0;
  max-width: none; padding-left: 0; padding-right: 0;
}
.marquee-track {
  display: flex; gap: 44px; padding-right: 44px; flex: none;
  animation: marquee 26s linear infinite;
}
.marquee-track .ti { white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.trustbar:hover .marquee-track { animation-play-state: paused; }

/* ---------- WhatsApp flutuante: pulso ---------- */
@keyframes wa-pulse {
  0% { box-shadow: 0 6px 22px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 6px 22px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 22px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-float { animation: wa-pulse 2.6s ease-out infinite; }

/* ---------- Micro-interações extras ---------- */
.prod .ph img { transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.prod:hover .ph img { transform: scale(1.05) rotate(-1deg); }
.card, .quote { transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.why .ic { transition: transform .25s ease, background .25s ease; }
.why:hover .ic { transform: scale(1.12) rotate(-6deg); }
.step .sn { transition: transform .2s ease; }
.step:hover .sn { transform: scale(1.1); }

/* ---------- Blog ---------- */
.post-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 24px 22px; display: flex; flex-direction: column; gap: 10px;
  text-decoration: none !important; color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(232,72,28,.35); }
.post-card h3 { font-size: 19px; margin: 0; line-height: 1.25; }
.post-card p { font-size: 15px; color: var(--ink-soft); margin: 0; flex: 1; }
.post-card .lnk { font-weight: 700; color: var(--brand-dark); font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.post-card .lnk::after { content: "→"; transition: transform .15s ease; }
.post-card:hover .lnk::after { transform: translateX(4px); }
.pc-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-faint); }
.pc-cat {
  display: inline-block; background: var(--brand-wash); color: var(--brand-dark);
  font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 30px;
}
.post-hero h1 { font-size: clamp(28px, 4vw, 42px); max-width: 21em; }
.post-meta { font-size: 14.5px; color: var(--ink-faint); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 0; }
.post-body h2 { font-size: clamp(23px, 2.8vw, 29px); }
.post-body ol { margin: 0 0 1em; padding-left: 1.35em; }
.post-body ol li { margin: .5em 0; color: var(--ink-soft); }
.tbl-wrap { overflow-x: auto; margin: 0 0 1.2em; }
.tbl-wrap table { border-collapse: collapse; width: 100%; font-size: 15.5px; }
.tbl-wrap th, .tbl-wrap td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.tbl-wrap th { background: var(--brand-wash); color: var(--ink); font-family: var(--font-display); }
.tbl-wrap tr:nth-child(even) td { background: var(--surface); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .rv { opacity: 1; transform: none; }
}
