/* ============================================================
   VANELLI CAR — ESTÉTICA AUTOMOTIVA
   Paleta da marca: verde-lima (logo + neon da loja) e dourado
   fosco sobre quase-preto. Tema único (dark) — decisão de identidade.
   Portado do protótipo docs/vanellicardemo.html (Etapa 4).
   As fotos viraram arquivos em /static/img/.
   ============================================================ */

:root{
  color-scheme: dark;

  --bg:          #0B0F0C;
  --bg-2:        #10150F;
  --surface:     #141A12;
  --surface-2:   #1A2118;
  --line:        #283026;
  --line-strong: #3A4436;

  --text:        #EEF2EA;
  --text-muted:  #9EAA96;
  --text-dim:    #7E8A76;

  --accent:        #A6D63B;
  --accent-bright: #C2E85C;
  --accent-deep:   #232F0E;
  --accent-ink:    #0C1403;

  --gold:      #CBAA64;
  --gold-bright:#E3C88A;
  --gold-dim:  #8C7647;

  --shadow-card: 0 1px 0 rgba(255,255,255,.03) inset, 0 26px 50px -30px rgba(0,0,0,.8);

  --font-display: "Saira Semi Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --step-0:  1rem;
  --step-1:  1.15rem;
  --step-2:  clamp(1.45rem, 1.2rem + 1.1vw, 2rem);
  --step-3:  clamp(1.9rem, 1.45rem + 2.2vw, 2.9rem);
  --step-4:  clamp(2.55rem, 1.7rem + 4.4vw, 4.7rem);

  --wrap: 1180px;
  --pad:  clamp(20px, 5vw, 48px);
  --radius: 16px;

  /* fotos reais da loja (arquivos em /static/img/) */
  --img-logo:   url("/img/logo.jpg");
  --img-vidro:  url("/img/vidro.jpg");

  /* fotos reais da loja (enviadas pela Naiara em 2026-09-14) */
  --img-cla:    url("/img/real-hero1.jpg");
  --img-espuma: url("/img/real-hero2.jpg");
  --img-uno:    url("/img/real-hero3.jpg");
  --img-couro:  url("/img/real-hero4.jpg");
  --img-prod:   url("/img/real-metodo1.jpg");
  --img-cert:   url("/img/real-metodo2.jpg");
  --img-farol1: url("/img/real-farol-ad.jpg");
  --img-farol2: url("/img/real-vidro-ad.jpg");
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference){ html{ scroll-behavior: smooth; } }

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; margin: 0; text-wrap: balance; }
a { color: inherit; }
::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible{ outline: 2px solid var(--accent-bright); outline-offset: 3px; border-radius: 4px; }

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

.skip{
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 16px; font-family: var(--font-display); font-weight: 600;
}
.skip:focus{ left: 12px; top: 12px; }

/* ---------- faixa de aviso ---------- */
.ribbon{
  background: var(--accent-deep); color: var(--accent-bright);
  border-bottom: 1px solid rgba(166,214,59,.22);
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .02em;
}
.ribbon__inner{
  position: relative; display: flex; align-items: center; justify-content: center; gap: 10px;
  text-align: center; padding: 8px 44px; max-width: var(--wrap); margin: 0 auto;
}
.ribbon__dot{ color: var(--accent); }
.ribbon__close{
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: inherit; cursor: pointer;
  font-size: 1.05rem; line-height: 1; padding: 6px; border-radius: 6px;
}
.ribbon__close:hover{ color: var(--text); }

/* ---------- cabeçalho ---------- */
.header{ border-bottom: 1px solid var(--line); background: var(--bg); position: relative; z-index: 40; }
.header__inner{ display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 12px; }
.brand{ display: inline-flex; align-items: center; text-decoration: none; }
.brand__logo{
  width: 72px; height: 58px;
  background: var(--img-logo) center / contain no-repeat;
  mix-blend-mode: screen;
}
.nav{ display: flex; align-items: center; gap: 26px; }
.nav__links{ display: flex; gap: 24px; }
.nav__links a{
  font-family: var(--font-display); font-weight: 500; font-size: .95rem; letter-spacing: .02em;
  color: var(--text-muted); text-decoration: none; padding-block: 4px;
}
.nav__links a:hover{ color: var(--accent); }
@media (max-width: 820px){ .nav__links{ display: none; } }

/* ---------- botões ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .85em 1.35em; font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  letter-spacing: .02em; text-decoration: none; white-space: nowrap;
  border: 1px solid transparent; border-radius: 10px; cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn svg{ width: 18px; height: 18px; flex-shrink: 0; }
.btn--primary{ background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover{ background: var(--accent-bright); transform: translateY(-1px); box-shadow: 0 14px 34px -12px rgba(166,214,59,.5); }
.btn--ghost{ border-color: var(--line-strong); color: var(--text); background: rgba(11,15,12,.45); }
.btn--ghost:hover{ border-color: var(--accent); color: var(--accent); }
.btn--sm{ padding: .6em .95em; font-size: .85rem; border-radius: 8px; }
.btn--wa{ width: 100%; background: var(--accent); color: var(--accent-ink); }
.btn--wa:hover{ background: var(--accent-bright); box-shadow: 0 14px 34px -14px rgba(166,214,59,.45); }

/* ---------- hero ---------- */
.hero{ position: relative; overflow: hidden; isolation: isolate; display: flex; align-items: center; min-height: min(88vh, 780px); }
.hero__media{ position: absolute; inset: 0; z-index: -2; background: #0B0F0C; }
.hero__slide{
  position: absolute; inset: 0; opacity: 0;
  background-size: cover; background-position: center;
  filter: brightness(.8) saturate(1.05);
}
.hero__slide:first-child{ opacity: 1; }
.hero__slide--1{ background-image: var(--img-cla); }
.hero__slide--2{ background-image: var(--img-espuma); }
.hero__slide--3{ background-image: var(--img-uno); }
.hero__slide--4{ background-image: var(--img-couro); }
@media (prefers-reduced-motion: no-preference){
  .hero__slide{ animation: heroCycle 24s infinite; }
  .hero__slide--1{ animation-delay: 0s; }
  .hero__slide--2{ animation-delay: 6s; }
  .hero__slide--3{ animation-delay: 12s; }
  .hero__slide--4{ animation-delay: 18s; }
  @keyframes heroCycle{ 0%,20%{ opacity: 1; } 25%,95%{ opacity: 0; } 100%{ opacity: 1; } }
}
.hero__scrim{
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(9,12,8,.95) 0%, rgba(9,12,8,.8) 36%, rgba(9,12,8,.32) 76%, rgba(9,12,8,.62) 100%),
    linear-gradient(to top, rgba(9,12,8,.92) 0%, transparent 46%);
}
.hero .hero__inner{ position: relative; padding-block: clamp(56px, 10vw, 120px); max-width: 58ch; margin-inline: 0 auto; }
.hero__eyebrow{ font-family: var(--font-mono); font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); }
.hero h1{ font-size: var(--step-4); font-weight: 800; letter-spacing: -.02em; margin: 20px 0; }
.hero h1 .w{ display: inline-block; }
html.js .hero h1 .w{ animation: rise .72s cubic-bezier(.2,.7,.2,1) both; }
html.js .hero h1 .w:nth-child(1){ animation-delay: .06s; }
html.js .hero h1 .w:nth-child(2){ animation-delay: .13s; }
html.js .hero h1 .w:nth-child(3){ animation-delay: .20s; }
html.js .hero h1 .w:nth-child(4){ animation-delay: .27s; }
html.js .hero h1 .w:nth-child(5){ animation-delay: .34s; }
html.js .hero h1 .w:nth-child(6){ animation-delay: .41s; }
@keyframes rise{ from{ opacity: 0; transform: translateY(.5em); } to{ opacity: 1; transform: none; } }
.hero p{ font-size: clamp(1rem, .95rem + .35vw, 1.18rem); color: var(--text-muted); max-width: 50ch; }
.hero__cta{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ---------- faixa de credenciais ---------- */
.specs{ background: var(--bg-2); border-block: 1px solid var(--line); }
.specs__row{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.spec{ background: var(--bg-2); padding: 22px clamp(16px, 2.4vw, 26px); display: flex; gap: 14px; align-items: center; }
.spec svg{ width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; }
.spec b{ display: block; font-family: var(--font-display); font-weight: 600; font-size: .98rem; }
.spec span{ font-size: .8rem; color: var(--text-dim); }
@media (max-width: 860px){ .specs__row{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px){ .specs__row{ grid-template-columns: 1fr; } }

/* ---------- blocos e leads ---------- */
.block{ padding-block: clamp(56px, 9vw, 104px); }
.block--tint{ background: var(--bg-2); border-top: 1px solid var(--line); }

.lead{ max-width: 46ch; }
.lead__eyebrow{
  display: block; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.lead h2{ font-size: var(--step-3); letter-spacing: -.01em; }
.lead p{ margin: 14px 0 0; color: var(--text-muted); }

/* ---------- estúdio / método ---------- */
.studio{ background: var(--bg-2); border-top: 1px solid var(--line); }
.studio__grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center;
  padding-block: clamp(48px, 8vw, 96px);
}
@media (max-width: 900px){ .studio__grid{ grid-template-columns: 1fr; } }
.studio h2{ font-size: var(--step-3); letter-spacing: -.01em; margin-top: 12px; }
.studio p{ color: var(--text-muted); margin: 14px 0 0; }
.studio p strong{ color: var(--gold-bright); font-weight: 600; }
.studio__points{ list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: .92rem; color: var(--text-muted); }
.studio__points li{ position: relative; padding-left: 20px; }
.studio__points li::before{ content: ""; position: absolute; left: 0; top: .5em; width: 8px; height: 8px; background: var(--accent); transform: rotate(45deg); }
.studio__photos{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.studio__photos figure{ margin: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--surface); }
.studio__photos .ph{ aspect-ratio: 3 / 4; background-size: cover; background-position: center; }
.studio__photos .ph--prod{ background-image: var(--img-prod); }
.studio__photos .ph--cert{ background-image: var(--img-cert); background-position: center top; }
.studio__photos figcaption{ font-family: var(--font-mono); font-size: .66rem; letter-spacing: .04em; color: var(--text-dim); padding: 8px 10px; border-top: 1px solid var(--line); }

/* ---------- barra de filtro ---------- */
.filter{
  position: sticky; top: 0; z-index: 30; margin-top: 32px;
  background: var(--bg-2);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-block: 1px solid var(--line);
}
.filter__inner{ display: flex; align-items: center; justify-content: space-between; gap: 14px 20px; flex-wrap: wrap; padding-block: 14px; }
.filter__chips{ display: flex; gap: 8px; }
.filter__chip{
  font-family: var(--font-display); font-weight: 600; font-size: .92rem; padding: .5em 1.15em;
  border-radius: 999px; border: 1px solid var(--line-strong); background: transparent; color: var(--text-muted);
  cursor: pointer; transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.filter__chip:hover{ color: var(--text); border-color: var(--text-dim); }
.filter__chip[aria-pressed="true"]{ background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.filter__note{ font-family: var(--font-mono); font-size: .72rem; color: var(--text-dim); letter-spacing: .01em; }

/* ---------- cartões de serviço ---------- */
.svc-list{ display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.svc{
  display: grid; grid-template-columns: minmax(0, 43%) 1fr;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-card); transition: border-color .2s ease;
}
.svc:hover{ border-color: var(--line-strong); }
.svc[hidden]{ display: none; }
@media (max-width: 880px){ .svc{ grid-template-columns: 1fr; } }
.svc__media{ padding: 14px; display: flex; align-items: center; }
.svc__media > .carousel{ width: 100%; }
.svc__body{ padding: clamp(18px, 3vw, 32px); border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 880px){ .svc__body{ border-left: 0; border-top: 1px solid var(--line); } }

.svc__tags{ display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tag{ font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; padding: .4em .65em; border-radius: 6px; border: 1px solid transparent; }
.tag--carro{ background: var(--accent-deep); color: var(--accent-bright); border-color: rgba(166,214,59,.3); }
.tag--moto{ background: rgba(203,170,100,.12); color: var(--gold); border-color: rgba(203,170,100,.32); }
.tag--tier{ color: var(--text-dim); border-color: var(--line-strong); }

.svc__name{ font-size: var(--step-2); font-weight: 700; letter-spacing: -.005em; }
.svc__tagline{ margin: -6px 0 0; color: var(--text-muted); font-style: italic; }
.svc__desc{ margin: 0; color: var(--text-muted); font-size: .92rem; line-height: 1.55; }

.svc__includes{ list-style: none; margin: 4px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 7px 20px; font-size: .86rem; color: var(--text-muted); }
@media (max-width: 540px){ .svc__includes{ grid-template-columns: 1fr; } }
.svc__includes li{ position: relative; padding-left: 16px; line-height: 1.45; }
.svc__includes li::before{ content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; background: var(--accent); transform: rotate(45deg); }

.svc__price{ margin-top: auto; padding-top: 15px; border-top: 1px dashed var(--line-strong); }
.price-portes{ display: flex; flex-wrap: wrap; gap: 8px; }
.price-porte{ display: flex; flex-direction: column; gap: 2px; min-width: 92px; padding: .5em .85em; background: var(--bg-2); border: 1px solid var(--line); border-radius: 9px; }
.price-porte b{ font-family: var(--font-mono); font-weight: 500; font-size: .58rem; letter-spacing: .12em; color: var(--text-dim); }
.price-porte span{ font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text); font-variant-numeric: tabular-nums; }
.price-single{ display: flex; align-items: baseline; gap: 10px; }
.price-single b{ font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--text); }
.price-single span{ font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; color: var(--text-dim); text-transform: uppercase; }
.price-quote{ display: inline-flex; flex-direction: column; gap: 3px; padding: .65em 1em; border: 1px solid var(--gold); border-radius: 9px; background: rgba(203,170,100,.06); }
.price-quote b{ font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--gold); }
.price-quote small{ font-family: var(--font-mono); font-size: .74rem; letter-spacing: .02em; color: var(--gold); }

/* ---------- carrossel ---------- */
.carousel{ position: relative; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden; background: var(--surface-2); border: 1px solid var(--line); }
.carousel__progress{ position: absolute; inset: 0 0 auto 0; height: 2px; background: rgba(255,255,255,.09); z-index: 4; }
.carousel__progress span{ display: block; height: 100%; width: 0; background: var(--accent); }
.carousel__track{ display: flex; height: 100%; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.carousel__slide{ position: relative; min-width: 100%; height: 100%; background-size: cover; background-position: center; }
.carousel__cap{
  position: absolute; left: 10px; top: 12px; z-index: 3;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .03em; color: var(--text);
  background: rgba(6,9,6,.68); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  padding: .3em .6em; border-radius: 6px; border: 1px solid rgba(255,255,255,.08);
}
.carousel__note{
  position: absolute; right: 10px; top: 12px; z-index: 3;
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .04em; color: var(--gold);
  background: rgba(6,9,6,.62); padding: .3em .55em; border-radius: 5px; border: 1px solid rgba(203,170,100,.25);
}
.carousel__nav{
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(6,9,6,.55); border: 1px solid var(--line-strong); color: var(--text);
  cursor: pointer; opacity: 0; transition: opacity .2s ease, background .2s ease, color .2s ease;
}
.carousel:hover .carousel__nav, .carousel:focus-within .carousel__nav{ opacity: 1; }
.carousel__nav:hover{ background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.carousel__nav--prev{ left: 10px; } .carousel__nav--next{ right: 10px; }
.carousel__dots{ position: absolute; left: 0; right: 0; bottom: 11px; z-index: 3; display: flex; gap: 6px; justify-content: center; }
.carousel__dot{ width: 6px; height: 6px; border: 0; padding: 0; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: width .2s ease, background .2s ease; }
.carousel__dot[aria-current="true"]{ width: 18px; border-radius: 3px; background: var(--accent); }

/* ---------- legenda de porte ---------- */
.porte-legend{
  margin: 24px 0 0; display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 10px; background: var(--surface); font-size: .88rem; color: var(--text-muted);
}
.porte-legend svg{ width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.porte-legend b{ color: var(--text); font-family: var(--font-display); font-weight: 600; }

/* ---------- antes e depois ---------- */
.ba-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px auto 0; max-width: 780px; }
@media (max-width: 720px){ .ba-grid{ grid-template-columns: 1fr; max-width: 380px; } }
.ba{ margin: 0; position: relative; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--surface); }
.ba__img{ aspect-ratio: 764 / 1400; background-size: cover; background-position: center; }
.ba__img--1{ background-image: var(--img-farol1); }
.ba__img--2{ background-image: var(--img-farol2); }
.ba__tag{ position: absolute; left: 12px; z-index: 2; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; padding: .35em .6em; border-radius: 5px; background: rgba(6,9,6,.74); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.ba__tag--antes{ top: 12px; color: var(--text-muted); border: 1px solid var(--line-strong); }
.ba__tag--depois{ bottom: 66px; color: var(--accent); border: 1px solid rgba(166,214,59,.35); }
/* a foto do vidro já vem com "antes/depois" escrito nela; some com as etiquetas pra não duplicar */
.ba--sem-tag .ba__tag{ display: none; }
.ba figcaption{ font-size: .84rem; color: var(--text-muted); padding: 12px 14px; border-top: 1px solid var(--line); }
.ba figcaption span{ font-family: var(--font-display); font-weight: 600; color: var(--text); margin-right: 8px; }

/* ---------- como agendar ---------- */
.steps__grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
@media (max-width: 780px){ .steps__grid{ grid-template-columns: 1fr; } }
.step{ padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.step__num{ font-family: var(--font-mono); font-size: .78rem; letter-spacing: .14em; color: var(--accent); }
.step h3{ font-size: 1.18rem; font-weight: 600; margin: 10px 0 6px; }
.step p{ margin: 0; font-size: .9rem; color: var(--text-muted); }

/* ---------- rodapé ---------- */
.footer{ border-top: 1px solid var(--line); background: var(--bg); padding-block: clamp(44px, 7vw, 76px) 34px; }
.footer__grid{ display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
@media (max-width: 780px){ .footer__grid{ grid-template-columns: 1fr; gap: 26px; } }
.footer__logo{ width: 116px; height: 94px; background: var(--img-logo) center / contain no-repeat; mix-blend-mode: screen; }
.footer h4{ font-family: var(--font-mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-dim); margin: 0 0 12px; }
.footer__brandline{ color: var(--text-muted); max-width: 36ch; margin: 16px 0 0; font-size: .92rem; }
.footer ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: .9rem; }
.footer li span{ color: var(--text-dim); }
.footer a{ color: var(--text-muted); text-decoration: none; }
.footer a:hover{ color: var(--accent); }
.footer__base{
  margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: .72rem; color: var(--text-dim); letter-spacing: .02em;
}

/* ---------- botão flutuante ---------- */
.fab{
  position: fixed; right: clamp(16px, 4vw, 30px); bottom: clamp(16px, 4vw, 30px); z-index: 50;
  display: inline-flex; align-items: center; gap: 0; background: var(--accent); color: var(--accent-ink);
  border-radius: 999px; padding: 14px; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  box-shadow: 0 16px 34px -10px rgba(166,214,59,.5);
  transition: gap .22s ease, padding .22s ease, background .2s ease;
}
.fab svg{ width: 24px; height: 24px; }
.fab span{ max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .25s ease; }
.fab:hover{ background: var(--accent-bright); gap: 9px; padding-right: 20px; }
.fab:hover span{ max-width: 180px; }
@media (max-width: 620px){ .fab span{ display: none; } }

/* ============================================================
   Montador de orçamento (modal)
   ============================================================ */
.mo{ position: fixed; inset: 0; z-index: 60; display: flex; align-items: flex-end; justify-content: center; }
/* o atributo hidden precisa vencer o display:flex acima, senão o modal nunca fecha */
.mo[hidden], .mo__rodape[hidden]{ display: none !important; }
@media (min-width: 720px){ .mo{ align-items: center; padding: 24px; } }
.mo__overlay{ position: absolute; inset: 0; background: rgba(4,7,4,.72); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.mo__painel{
  position: relative; width: min(680px, 100%);
  max-height: 92dvh; display: flex; flex-direction: column;
  background: var(--bg-2); border: 1px solid var(--line-strong);
  border-radius: 18px 18px 0 0; overflow: hidden;
}
@media (min-width: 720px){ .mo__painel{ border-radius: 18px; } }

.mo__topo{
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px;
  padding: 14px 12px 14px 14px; border-bottom: 1px solid var(--line); background: var(--surface);
}
.mo__voltar{
  justify-self: start; background: none; border: 0; color: var(--text-muted); cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: .9rem; padding: 6px 8px; border-radius: 8px;
}
.mo__voltar:hover{ color: var(--accent); }
.mo__titulo{ grid-column: 2; text-align: center; font-size: 1.05rem; font-weight: 700; }
.mo__x{
  justify-self: end; background: none; border: 0; color: var(--text-muted); cursor: pointer;
  font-size: 1.4rem; line-height: 1; width: 34px; height: 34px; border-radius: 8px;
}
.mo__x:hover{ color: var(--text); background: var(--surface-2); }

.mo__corpo{ overflow-y: auto; padding: 20px clamp(14px, 3vw, 26px) 26px; }
.mo__passo-titulo{ font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin: 0 0 4px; }
.mo__passo-sub{ color: var(--text-muted); margin: 0 0 18px; font-size: .92rem; }

/* grade de serviços / opções */
.mo__grid{ display: grid; gap: 10px; }
@media (min-width: 520px){ .mo__grid{ grid-template-columns: 1fr 1fr; } }

.mo-opc{
  display: flex; gap: 12px; align-items: center; text-align: left; width: 100%;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px; cursor: pointer; color: inherit; font: inherit;
  transition: border-color .15s ease, background .15s ease;
}
.mo-opc:hover{ border-color: var(--line-strong); }
.mo-opc[aria-pressed="true"], .mo-opc.is-sel{ border-color: var(--accent); background: var(--accent-deep); }
.mo-opc__foto{ width: 56px; height: 44px; border-radius: 8px; object-fit: cover; background: var(--surface-2); flex-shrink: 0; }
.mo-opc__txt{ min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 2px; }
.mo-opc__nome{ display: block; font-family: var(--font-display); font-weight: 600; font-size: .98rem; }
.mo-opc__meta{ display: block; font-size: .8rem; color: var(--text-muted); }
.mo-opc__preco{ font-family: var(--font-display); font-weight: 700; white-space: nowrap; }
.mo-opc__check{
  width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--line-strong);
  display: grid; place-items: center; flex-shrink: 0; color: var(--accent-ink); font-size: .85rem;
}
.mo-opc.is-sel .mo-opc__check{ background: var(--accent); border-color: var(--accent); }

/* botões de porte */
.mo__portes{ display: flex; gap: 10px; flex-wrap: wrap; }
.mo-porte{
  flex: 1; min-width: 96px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 10px; cursor: pointer; color: inherit; font: inherit; text-align: center;
}
.mo-porte:hover{ border-color: var(--line-strong); }
.mo-porte.is-sel{ border-color: var(--accent); background: var(--accent-deep); }
.mo-porte b{ display: block; font-family: var(--font-display); font-size: 1.1rem; }
.mo-porte span{ display: block; font-size: .78rem; color: var(--text-muted); margin: 2px 0 6px; }
.mo-porte strong{ font-family: var(--font-display); font-weight: 700; }

/* quantidade (adicionais por unidade) */
.mo-qtd{ display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; }
.mo-qtd button{
  width: 28px; height: 28px; border-radius: 7px; border: 1px solid var(--line-strong);
  background: var(--surface-2); color: var(--text); font-size: 1rem; cursor: pointer; line-height: 1;
}
.mo-qtd span{ font-family: var(--font-mono); min-width: 2ch; text-align: center; }

/* pergunta sim/não e ações */
.mo__acoes{ display: grid; gap: 10px; margin-top: 22px; }
@media (min-width: 520px){ .mo__acoes--par{ grid-template-columns: 1fr 1fr; } }
.mo__acoes .btn{ width: 100%; }

/* resumo */
.mo-resumo{ background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.mo-resumo__linha{ display: flex; justify-content: space-between; gap: 14px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.mo-resumo__linha:last-child{ border-bottom: 0; }
.mo-resumo__rot{ color: var(--text-muted); }
.mo-resumo__total{ display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-strong); }
.mo-resumo__total b{ font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; }
.mo-obs-combinado{ color: var(--gold); font-size: .82rem; margin-top: 6px; }

.mo__nota{ font-size: .82rem; color: var(--text-dim); margin-top: 14px; text-align: center; }

/* rodapé com total parcial */
.mo__rodape{
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px clamp(14px, 3vw, 26px); border-top: 1px solid var(--line);
  background: var(--surface); font-size: .9rem; color: var(--text-muted);
}
.mo__rodape strong{ font-family: var(--font-display); font-size: 1.15rem; color: var(--text); }

body.mo-aberto{ overflow: hidden; }

/* ---------- reveal ---------- */
html.js .reveal{ opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.in{ opacity: 1; transform: none; }
[id]{ scroll-margin-top: 84px; }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html.js .reveal{ opacity: 1 !important; transform: none !important; }
}
