/* =========================================================
   Paleta / tipografia — altere aqui para ajustar a identidade
   ========================================================= */
:root {
  --ink: #1b1612;
  --espresso: #2a211a;
  --walnut: #3d2f24;
  --oak: #b9803f;
  --oak-dark: #9a6630;
  --oak-light: #e0b577;
  --cream: #f6f0e6;
  --paper: #fcfaf6;
  --line: #e7ddcf;
  --muted: #6d6258;
  --white: #fff;
  --success: #2f7d4f;
  --danger: #b3261e;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 50px -20px rgba(27, 22, 18, .35);
  --shadow-sm: 0 6px 20px -8px rgba(27, 22, 18, .2);
  --container: 1200px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 .5em; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.25rem; }
h1 em, h2 em { font-style: italic; color: var(--oak); font-weight: 500; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.center { text-align: center; margin-top: 40px; }
.lead { font-size: 1.15rem; color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 16px; z-index: 999; border-radius: 6px; }
.skip-link:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--oak-light); outline-offset: 2px; }

.eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--oak-dark); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.eyebrow-light { color: var(--oak-light); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow::after { content: ""; width: 26px; height: 2px; background: currentColor; }
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; }

/* Telefone, e-mail e SMS nunca quebram linha */
.nowrap, a[href^="tel:"], a[href^="sms:"], a[href^="mailto:"] { white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px; border: 2px solid transparent;
  font: 600 1rem/1.2 var(--font-body); text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--oak); color: #fff; box-shadow: 0 10px 24px -10px rgba(185, 128, 63, .9); }
.btn-primary:hover { background: var(--oak-dark); }
.btn-ghost { border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-link { background: none; border: 0; color: var(--muted); padding-inline: 4px; }
.btn-lg { padding: 17px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Announcement ---------- */
.announce { background: var(--oak); color: #fff; font-size: .9rem; }
.announce-inner { display: flex; justify-content: center; align-items: center; gap: 16px; padding: 9px 0; text-align: center; }
.announce p { margin: 0; }
.announce-link { font-weight: 700; white-space: nowrap; text-decoration: none; }
.announce-link:hover { text-decoration: underline; }
.announce p a { color: inherit; font-weight: 700; text-decoration: none; }
.ann-short { display: none; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
/* O desfoque fica num pseudo-elemento: backdrop-filter no próprio header prenderia o menu mobile (position: fixed) dentro dele. */
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(252, 250, 246, .92); backdrop-filter: saturate(1.4) blur(12px);
}
.header.is-scrolled { border-color: var(--line); box-shadow: 0 4px 20px -12px rgba(0, 0, 0, .2); }
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 28px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; flex-shrink: 0; }
.logo-mark { width: 40px; height: 40px; border-radius: 10px; background: var(--ink); color: var(--oak-light); display: grid; place-items: center; font-size: 1.3rem; }
.logo-img { height: 48px; width: auto; }
.logo-light { color: #fff; }
.logo-light .logo-mark { background: var(--oak); color: #fff; }

.nav { display: flex; gap: 24px; margin-left: auto; white-space: nowrap; }
.nav a { text-decoration: none; font-weight: 500; font-size: .95rem; color: var(--walnut); position: relative; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--oak); transition: width .2s; }
.nav a:not(.btn):hover::after { width: 100%; }
.nav-cta-mobile { display: none; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; white-space: nowrap; }
.header-phone svg { width: 36px; height: 36px; padding: 8px; border-radius: 50%; background: var(--cream); fill: var(--oak-dark); }
.header-phone small { display: block; font-weight: 500; font-size: .72rem; color: var(--muted); line-height: 1.1; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; padding: clamp(48px, 7vw, 96px) 0; overflow: hidden; background: var(--espresso); }
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20, 15, 11, .92) 0%, rgba(20, 15, 11, .78) 45%, rgba(20, 15, 11, .35) 100%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 em { color: var(--oak-light); }
.hero-lead { font-size: 1.18rem; color: rgba(255, 255, 255, .85); max-width: 580px; }
.hero-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 26px 0 32px; max-width: 580px; }
.hero-checks li, .checklist li { position: relative; padding-left: 30px; font-weight: 500; }
.hero-checks li::before, .checklist li::before {
  content: ""; position: absolute; left: 0; top: .3em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--oak) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/12px no-repeat;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: rgba(255, 255, 255, .85); text-decoration: none; font-size: .95rem; }
.hero-rating strong { color: #fff; }
.stars { color: #f5b301; letter-spacing: 2px; }

/* ---------- Quote form ---------- */
.quote-card {
  position: relative; background: var(--white); color: var(--ink); border-radius: 20px; padding: 34px 30px 24px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .55); scroll-margin-top: calc(var(--header-h) + 20px);
}
.quote-badge {
  position: absolute; top: -14px; left: 30px; background: var(--oak); color: #fff; font-size: .78rem; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; letter-spacing: .02em; box-shadow: var(--shadow-sm);
}
.quote-title { font-size: 1.7rem; margin-bottom: 4px; }
.quote-sub { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
.quote-alt { text-align: center; font-size: .9rem; color: var(--muted); margin: 14px 0 0; }
.quote-alt a { color: var(--oak-dark); font-weight: 600; }

.lead-form fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.form-step { display: none; }
.form-step.is-active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.field { display: block; margin-bottom: 14px; }
.field > span { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--walnut); }
.field em { font-weight: 400; color: var(--muted); font-style: normal; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field input, .field select, .field textarea {
  width: 100%; font: 500 1rem var(--font-body); color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d6258' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 38px;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--oak); box-shadow: 0 0 0 4px rgba(185, 128, 63, .15); background: #fff; }
.field .is-invalid { border-color: var(--danger); }
.segmented { display: grid; grid-template-columns: 1fr 1fr; background: var(--cream); padding: 4px; border-radius: 10px; }
.segmented input { position: absolute; opacity: 0; }
.segmented span { display: block; text-align: center; padding: 9px; border-radius: 8px; font-weight: 600; font-size: .92rem; cursor: pointer; color: var(--muted); transition: background .2s, color .2s; }
.segmented input:checked + span { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.segmented input:focus-visible + span { outline: 3px solid var(--oak-light); }
.form-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.form-consent { font-size: .72rem; line-height: 1.45; color: var(--muted); margin: 14px 0 0; }
.form-status { margin: 10px 0 0; font-size: .9rem; font-weight: 600; }
.form-status.is-error { color: var(--danger); }
.form-status.is-ok { color: var(--success); }
.hp { position: absolute; left: -9999px; }
.lead-form.is-loading button[type=submit] { opacity: .7; pointer-events: none; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--ink); color: #fff; padding: 28px 0; }
.trustbar-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; align-items: center; text-align: center; }
.trustbar strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--oak-light); line-height: 1.1; }
.trustbar span { font-size: .88rem; color: rgba(255, 255, 255, .75); }
.trust-badge { display: flex; align-items: center; justify-content: center; gap: 10px; }
.trust-badge svg { width: 38px; height: 38px; fill: var(--oak-light); flex-shrink: 0; }
.trust-badge span { color: #fff; font-weight: 600; font-size: .95rem; text-align: left; }

/* ---------- Promise ---------- */
.promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.promise-list { display: grid; gap: 18px; }
.promise-list li { display: flex; gap: 20px; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s, box-shadow .2s; }
.promise-list li:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.promise-list h3 { margin-bottom: 6px; }
.promise-list p { margin: 0; color: var(--muted); }
.promise-icon { font-family: var(--font-display); font-size: 1.6rem; color: var(--oak); font-weight: 600; line-height: 1; }

/* ---------- Services ---------- */
.services { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--line); }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.service-body p { color: var(--muted); font-size: .97rem; flex: 1; }
.service-link { font-weight: 700; color: var(--oak-dark); text-decoration: none; }
.service-link:hover { text-decoration: underline; }

/* ---------- Before / After ---------- */
.beforeafter { background: var(--espresso); color: #fff; }
.beforeafter h2 { color: #fff; }
.beforeafter h2 em { color: var(--oak-light); }
.ba-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.ba-copy p { color: rgba(255, 255, 255, .8); }
.checklist { display: grid; gap: 10px; margin: 22px 0 30px; }
.checklist-light li { color: rgba(255, 255, 255, .9); }
.ba-slider { position: relative; aspect-ratio: 3 / 2; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); user-select: none; }
.ba-slider > img, .ba-before img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; background: #fff; transform: translateX(-50%); pointer-events: none; }
.ba-handle span { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; font-size: 1.3rem; box-shadow: var(--shadow-sm); }
.ba-label { position: absolute; top: 16px; padding: 5px 12px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; background: rgba(0, 0, 0, .55); border-radius: 999px; pointer-events: none; }
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; background: var(--oak); }
.ba-slider input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; counter-reset: step; position: relative; }
.process-grid::before { content: ""; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(90deg, var(--oak-light) 0 8px, transparent 8px 16px); }
.process-grid li { position: relative; text-align: center; }
.step-num {
  width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; background: var(--ink); color: var(--oak-light);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; position: relative; box-shadow: 0 0 0 8px var(--paper);
}
.process-grid h3 { font-size: 1.15rem; }
.process-grid p { color: var(--muted); font-size: .95rem; }

/* ---------- Compare ---------- */
.compare { background: var(--cream); }
.compare-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.compare-table { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1.3fr .8fr 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: 0; }
.compare-row > span { padding: 16px 20px; font-size: .95rem; }
.compare-row > span:first-child { font-weight: 600; }
.compare-head { background: var(--ink); color: #fff; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.compare-head .us { background: var(--oak); }
.compare-row .yes { background: rgba(185, 128, 63, .08); color: var(--oak-dark); font-weight: 700; text-align: center; font-size: 1.05rem; }
.compare-head .us { text-align: center; }
.compare-row .no { color: var(--muted); font-size: .88rem; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 32px; }
.gallery-filters button { font: 600 .92rem var(--font-body); padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; cursor: pointer; color: var(--walnut); transition: all .2s; }
.gallery-filters button:hover { border-color: var(--oak); }
.gallery-filters .is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; grid-auto-flow: dense; gap: 14px; }
.gallery-grid a { position: relative; overflow: hidden; border-radius: var(--radius-sm); background: var(--line); }
.gallery-grid a.is-hidden { display: none; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid a::after { content: "＋"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 2rem; background: rgba(27, 22, 18, .4); opacity: 0; transition: opacity .25s; }
.gallery-grid a:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream); }
.google-score { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; background: #fff; padding: 10px 18px; border-radius: 999px; box-shadow: var(--shadow-sm); margin-top: 6px; }
.google-score svg { width: 22px; height: 22px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { margin: 0; background: #fff; border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.review blockquote { margin: 14px 0 22px; flex: 1; font-size: 1.02rem; }
.review figcaption strong { display: block; }
.review figcaption span { font-size: .88rem; color: var(--muted); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); aspect-ratio: 5 / 6; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
.about-stamp { position: absolute; right: -24px; bottom: 36px; background: var(--oak); color: #fff; padding: 20px 24px; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-stamp strong { display: block; font-family: var(--font-display); font-size: 1.6rem; line-height: 1.1; }
.about-stamp span { font-size: .85rem; opacity: .9; }
.about p:not(.eyebrow):not(.lead) { color: var(--walnut); }

/* ---------- Instagram ---------- */
.insta { padding-top: 0; }
.insta-handle { font-weight: 700; color: var(--oak-dark); text-decoration: none; font-size: 1.1rem; }
.insta-embed:empty { display: none; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.insta-grid a { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius-sm); background: var(--line); }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, opacity .3s; }
.insta-grid a:hover img { transform: scale(1.06); opacity: .85; }

/* ---------- Areas ---------- */
.areas { background: var(--ink); color: #fff; }
.areas h2 { color: #fff; }
.areas .lead { color: rgba(255, 255, 255, .75); }
.areas .eyebrow { color: var(--oak-light); }
.areas .btn-outline { border-color: #fff; color: #fff; }
.areas .btn-outline:hover { background: #fff; color: var(--ink); }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.areas-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 20px; margin: 24px 0 32px; }
.areas-list li { padding-left: 22px; position: relative; font-weight: 500; }
.areas-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 10px; height: 10px; border-radius: 50%; background: var(--oak); box-shadow: 0 0 0 4px rgba(185, 128, 63, .25); }
.map-wrap { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3.4; box-shadow: var(--shadow); background: var(--walnut); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.faq-grid > div:first-child { position: sticky; top: calc(var(--header-h) + 30px); }
.faq-grid .lead a { color: var(--oak-dark); font-weight: 600; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; list-style: none; padding: 22px 44px 22px 0; font-weight: 600; font-size: 1.08rem; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; font-size: 1.3rem; color: var(--oak-dark); transition: transform .25s; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { color: var(--muted); padding-bottom: 20px; margin: 0; }

/* ---------- Final CTA ---------- */
.cta-final { background: linear-gradient(120deg, var(--oak-dark), var(--oak)); color: #fff; padding: 64px 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-final h2 { color: #fff; margin-bottom: 8px; }
.cta-final p { margin: 0; opacity: .9; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-final .btn-primary { background: var(--ink); box-shadow: none; }
.cta-final .btn-primary:hover { background: #000; }

/* ---------- Footer ---------- */
.footer { background: #120e0b; color: rgba(255, 255, 255, .7); padding: 72px 0 0; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 48px; }
.footer h3 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer ul { display: grid; gap: 10px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--oak-light); }
.footer-brand p { margin: 18px 0; }
.footer-contact a { color: #fff; font-weight: 600; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .08); display: grid; place-items: center; transition: background .2s; }
.socials a:hover { background: var(--oak); }
.socials svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 56px; padding: 22px 0; font-size: .85rem; }
.footer-bottom p { margin: 0; }

/* ---------- Mobile bar ---------- */
.mobile-bar { display: none; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(10, 8, 6, .94); display: flex; align-items: center; justify-content: center; padding: 60px 70px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 100%; max-width: 100%; border-radius: 6px; object-fit: contain; }
.lightbox button { position: absolute; background: rgba(255, 255, 255, .1); color: #fff; border: 0; width: 50px; height: 50px; border-radius: 50%; font-size: 2rem; line-height: 1; cursor: pointer; }
.lightbox button:hover { background: var(--oak); }
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Simple pages (thank-you, privacy, 404) ---------- */
.page-simple { min-height: 60vh; padding: clamp(60px, 9vw, 110px) 0; }
.page-simple .container { max-width: 820px; }
.page-simple h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
.page-simple h2 { font-size: 1.4rem; margin-top: 1.6em; }
.page-simple p, .page-simple li { color: var(--walnut); }
.page-simple ul { list-style: disc; padding-left: 1.3em; margin-bottom: 1em; }
.thanks { text-align: center; }
.thanks-icon { width: 84px; height: 84px; border-radius: 50%; background: var(--oak); display: grid; place-items: center; margin: 0 auto 24px; box-shadow: 0 0 0 12px rgba(185, 128, 63, .15); }
.thanks-icon svg { width: 40px; height: 40px; stroke: #fff; }
.thanks-steps { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 32px; margin: 32px 0; list-style: none !important; padding-left: 32px !important; display: grid; gap: 14px; counter-reset: t; }
.thanks-steps li { counter-increment: t; display: flex; gap: 14px; }
.thanks-steps li::before { content: counter(t); flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: var(--oak-light); display: grid; place-items: center; font-weight: 700; font-size: .9rem; }
.thanks .hero-actions { justify-content: center; }
.thanks .btn-ghost { border-color: var(--ink); color: var(--ink); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1480px) and (min-width: 961px) {
  .nav a[href="#faq"], .nav a[href="#process"] { display: none; }
}

@media (max-width: 1100px) {
  .nav { gap: 18px; }
  .header-phone small { display: none; }
  .process-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .process-grid::before { display: none; }
  .trustbar-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-badge { grid-column: span 3; }
}

@media (max-width: 960px) {
  :root { --header-h: 66px; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed; top: var(--nav-top, var(--header-h)); left: 0; right: 0; bottom: 0; background: var(--paper);
    flex-direction: column; gap: 0; padding: 12px 20px 40px; margin: 0;
    transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; visibility: hidden;
  }
  .nav-open .nav { transform: none; visibility: visible; }
  .nav a:not(.btn) { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .nav a:not(.btn)::after { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 24px; }
  .nav a.btn-primary { color: #fff; }
  .nav-open .mobile-bar { transform: translateY(110%); }
  .header-actions { margin-left: auto; }

  .hero-grid, .promise-grid, .ba-grid, .compare-grid, .about-grid, .areas-grid, .faq-grid { grid-template-columns: 1fr; gap: 44px; }
  .faq-grid > div:first-child { position: static; }
  .service-grid, .review-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-stamp { right: 16px; }
  .about-media { max-width: 520px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; padding-bottom: 68px; }
  .announce { font-size: .82rem; }
  .announce-link, .ann-long { display: none; }
  .ann-short { display: inline; white-space: nowrap; }
  .announce-inner { padding: 8px 0; }
  .eyebrow { letter-spacing: .1em; font-size: .74rem; }
  .eyebrow-sep { display: none; }
  .hero .eyebrow { flex-wrap: wrap; row-gap: 2px; }
  .form-consent { font-size: .78rem; }
  .quote-alt { font-size: .95rem; line-height: 1.8; }
  .qa-lead { display: block; }
  .hero-rating { font-size: .92rem; }
  .compare-row .yes { font-size: .95rem; }
  /* Processo: layout compacto (número à esquerda) */
  .process-grid { gap: 26px; }
  .process-grid li { display: grid; grid-template-columns: 52px 1fr; column-gap: 16px; text-align: left; align-items: start; }
  .process-grid .step-num { grid-row: span 2; width: 52px; height: 52px; margin: 0; font-size: 1.25rem; box-shadow: none; }
  .process-grid h3 { margin: 4px 0 4px; }
  .process-grid p { margin: 0; }
  .header-phone span { display: none; }
  .logo { font-size: 1.02rem; }
  .logo-mark { width: 34px; height: 34px; font-size: 1.1rem; }
  .hero { padding-top: 40px; }
  .hero-checks { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
  .quote-card { padding: 30px 20px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .trustbar-grid { grid-template-columns: 1fr 1fr; }
  .trust-badge { grid-column: span 2; }
  .service-grid, .review-grid, .process-grid { grid-template-columns: 1fr; }
  .service-img { aspect-ratio: 16 / 9; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
  .areas-list { grid-template-columns: 1fr 1fr; }
  .compare-row { grid-template-columns: 1.2fr .6fr .9fr; }
  .compare-row > span { padding: 13px 12px; font-size: .85rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-actions .btn { flex: 1 1 100%; }
  .lightbox { padding: 60px 10px; }

  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr 1.6fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--ink); padding: 8px 8px calc(8px + env(safe-area-inset-bottom)); gap: 8px;
    box-shadow: 0 -8px 24px -10px rgba(0, 0, 0, .4); transition: transform .3s;
  }
  .mobile-bar.is-hidden { transform: translateY(110%); }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 6px; color: #fff; text-decoration: none; font-weight: 600; font-size: .95rem; padding: 12px 6px; border-radius: 10px; background: rgba(255, 255, 255, .08); }
  .mobile-bar svg { width: 18px; height: 18px; fill: var(--oak-light); }
  .mobile-bar .mobile-bar-cta { background: var(--oak); }
}

.footer-tagline { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.05rem; color: var(--oak-light); }
