/*
 * shared.css — New Home Decorações
 * CSS base: nav, hero, diferenciais, slider, steps, depoimentos, FAQ, footer.
 * A LP /lp/*.html usa CSS inline próprio (performance/noindex).
 */

/* ── FONTES SELF-HOSTED ─────────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/playfair-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/playfair-italic-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── TOKENS ──────────────────────────────────────────────────────── */
:root {
  --gold:         #c9a96e;
  --beige:        #d4b896;
  --cream:        #f5f0eb;
  --warm:         #ede7de;
  --black:        #0f0f0f;
  --nav-h:        72px;
  --pad:          clamp(64px, 9vw, 112px);
  --gutter:       clamp(20px, 5vw, 48px);
  --radius:       4px;
  --trans:        0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ── RESET MÍNIMO ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* overflow-x: hidden em html + body é necessário no Safari mobile —
   só em body não basta. */
html, body { overflow-x: hidden; width: 100%; max-width: 100%; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}
img  { display: block; max-width: 100%; object-fit: cover; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

.container { max-width: 1200px; margin-inline: auto; padding-inline: var(--gutter); }

/* ── NAV ─────────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding-block: 20px;
  transition: background var(--trans), padding var(--trans), box-shadow var(--trans);
}
#nav.scrolled,
#nav.nav--solid {
  background: rgba(15,15,15,0.96);
  backdrop-filter: blur(12px);
  padding-block: 12px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
#nav.nav--solid {
  transition: none;
}
.nav__inner   { display: flex; align-items: center; justify-content: space-between; }
.nav__logo         { display: flex; align-items: center; gap: 12px; line-height: 1; }
.nav__logo-symbol  { width: 36px; height: 36px; flex-shrink: 0; display: block; }
.nav__logo-text    { display: flex; flex-direction: column; gap: 2px; }
.nav__logo-main    { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--cream); }
.nav__logo-sub     { font-size: 10px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.nav__links   { display: none; align-items: center; gap: 32px; }
.nav__links a { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,235,0.85); transition: color var(--trans); }
.nav__links a:hover { color: var(--gold); }
.nav__links .btn {
  padding: 9px 22px; font-size: 11px;
  border: 1.5px solid var(--gold); color: var(--gold);
  border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--trans), color var(--trans);
}
.nav__links .btn:hover { background: var(--gold); color: var(--black); }
.nav__hamburger { display: flex; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; }
.nav__hamburger span {
  display: block; height: 1.5px; background: var(--cream); border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans), width var(--trans);
  transform-origin: center;
}
.nav__hamburger span:nth-child(3) { width: 65%; }
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { width: 100%; transform: translateY(-6.5px) rotate(-45deg); }
.nav__links.open {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(12,12,12,0.98);
  backdrop-filter: blur(12px);
  padding: 28px var(--gutter) 36px;
  gap: 24px; align-items: flex-start;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.nav__links.open .btn { width: 100%; justify-content: center; }
.nav__wa-mobile {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  color: #25D366 !important; text-transform: uppercase;
}

/* ── BREADCRUMB ──────────────────────────────────────────────────── */
.breadcrumb {
  background: var(--cream);
  padding-block: 10px;
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.breadcrumb ol {
  display: flex; align-items: center; gap: 0;
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(15,15,15,0.45); flex-wrap: wrap;
  line-height: 1.4;
}
.breadcrumb li { display: inline-flex; align-items: center; }
.breadcrumb li + li::before {
  content: '›';
  color: var(--gold);
  opacity: 0.55;
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  margin: 0 10px;
  display: inline-block;
  transform: translateY(-1px);
}
.breadcrumb a { color: rgba(15,15,15,0.45); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current] { color: var(--black); font-weight: 600; letter-spacing: 0.02em; }

/* ── HERO DE SERVIÇO ─────────────────────────────────────────────── */
.srv-hero {
  position: relative; min-height: 70vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.srv-hero__bg { position: absolute; inset: 0; }
.srv-hero__bg picture,
.srv-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
.srv-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.82) 0%, rgba(15,15,15,0.42) 100%);
}
.srv-hero__content { position: relative; z-index: 2; color: var(--cream); max-width: 680px; padding-block: 80px 64px; }
.srv-hero__eyebrow {
  font-size: 11px; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--beige); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.srv-hero__eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.srv-hero__title { font-family: var(--font-display); font-size: clamp(34px, 5vw, 62px); font-weight: 700; line-height: 1.08; margin-bottom: 20px; }
.srv-hero__title em { font-style: italic; font-weight: 400; color: var(--beige); }
.srv-hero__sub { font-size: clamp(15px, 1.6vw, 17px); font-weight: 400; opacity: 0.85; margin-bottom: 32px; line-height: 1.75; max-width: 520px; }
.srv-hero__microcopy { margin-top: 14px; font-size: 11px; letter-spacing: 0.12em; color: rgba(245,240,235,0.5); text-transform: uppercase; }
.srv-hero__phone { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font-size: 13px; color: rgba(245,240,235,0.55); transition: color 0.2s; }
.srv-hero__phone:hover { color: var(--beige); }
.srv-hero__phone svg { color: var(--gold); }

/* trust bar */
.srv-hero__trust {
  display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 28px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
  max-width: 480px;
}
.srv-hero__trust-item { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: rgba(245,240,235,0.9); }
.srv-hero__trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── ÂNCORA DE PREÇO ─────────────────────────────────────────────── */
.preco-ancora { background: var(--warm); border-bottom: 1px solid rgba(201,169,110,0.2); padding-block: 14px; }
.preco-ancora__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 16px; font-size: 13px; color: rgba(15,15,15,0.7); text-align: center;
}
.preco-ancora__inner strong { color: var(--black); font-weight: 600; }
.preco-ancora__sep { color: rgba(201,169,110,0.6); }
@media (max-width: 480px) { .preco-ancora__sep { display: none; } }

/* ── BADGE LAFER ─────────────────────────────────────────────────── */
.lafer-badge { background: var(--black); border-top: 1px solid rgba(201,169,110,0.15); border-bottom: 1px solid rgba(201,169,110,0.15); padding-block: 22px; }
.lafer-badge__inner { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; text-align: center; }
.lafer-badge__icon { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.lafer-badge__label { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.lafer-badge__title { font-family: var(--font-display); font-size: clamp(15px, 2vw, 20px); font-weight: 700; color: var(--cream); line-height: 1.2; }
.lafer-badge__sub { font-size: 13px; color: rgba(245,240,235,0.5); }

/* ── SEÇÕES GENÉRICAS ────────────────────────────────────────────── */
.section { padding-block: var(--pad); }
.section--dark { background: var(--black); }
.section--warm { background: var(--warm); }

.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 600;
  line-height: 1.18; margin-bottom: 40px; position: relative; padding-bottom: 18px;
  color: var(--black);
}
.section-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 44px; height: 2px; background: var(--gold); }
.section-title em { font-style: italic; font-weight: 400; color: var(--gold); }
.section-title.centered { text-align: center; }
.section-title.centered::after { left: 50%; transform: translateX(-50%); }
.section-title.light { color: var(--cream); }

/* ── BOTÕES ──────────────────────────────────────────────────────── */
.btn-filled {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--black);
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 34px; border-radius: var(--radius);
  transition: filter 0.2s, transform 0.15s;
}
.btn-filled:hover { filter: brightness(0.9); transform: translateY(-1px); }

/* ── BENEFÍCIOS / DIFERENCIAIS ───────────────────────────────────── */
.beneficios-grid { display: grid; gap: 24px; }
.beneficio {
  background: #fff; border: 1px solid rgba(15,15,15,0.08);
  border-radius: var(--radius); padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.beneficio:hover { box-shadow: 0 8px 28px rgba(15,15,15,0.09); transform: translateY(-2px); }
.beneficio__icon { font-size: 28px; color: var(--gold); margin-bottom: 16px; }
.beneficio h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.beneficio p  { font-size: 14px; color: rgba(15,15,15,0.68); line-height: 1.75; }

/* ── 3 CARDS DIFERENCIAIS ────────────────────────────────────────── */
.dif-cards { display: grid; gap: 20px; margin-top: 40px; }
.dif-card {
  background: #fff; border: 1px solid rgba(15,15,15,0.08);
  border-radius: var(--radius); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.dif-card:hover { box-shadow: 0 8px 28px rgba(15,15,15,0.09); transform: translateY(-2px); }
.dif-card__icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(201,169,110,0.12); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.dif-card__title { font-family: var(--font-display); font-size: 20px; font-weight: 700; line-height: 1.2; }
.dif-card__body  { font-size: 14px; color: rgba(15,15,15,0.6); line-height: 1.7; }

/* ── ANTES / DEPOIS — SLIDER ─────────────────────────────────────── */
.slider-grid { display: grid; gap: 32px; }
.slider-card {
  border: 1px solid rgba(15,15,15,0.1); border-radius: var(--radius);
  overflow: hidden; background: #fff;
  transition: box-shadow 0.25s;
}
.slider-card:hover { box-shadow: 0 8px 32px rgba(15,15,15,0.1); }
.slider-wrap {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  user-select: none; touch-action: pan-y;
}
.slider-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.slider-wrap .img-before { z-index: 1; }
.slider-wrap .img-after  { z-index: 2; clip-path: inset(0 50% 0 0); }
.slider-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  z-index: 3; width: 2px; background: var(--gold);
  transform: translateX(-50%); cursor: ew-resize;
}
.slider-arrows {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4; width: 36px; height: 36px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black); pointer-events: none;
}
.slider-label {
  position: absolute; top: 12px; z-index: 5;
  font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px; pointer-events: none;
}
.slider-label--antes  { left: 12px; background: rgba(15,15,15,0.75); color: rgba(245,240,235,0.9); }
.slider-label--depois { right: 12px; background: var(--gold); color: var(--black); }
.slider-hint {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  z-index: 5; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,240,235,0.7); background: rgba(15,15,15,0.55);
  padding: 4px 10px; border-radius: 20px; white-space: nowrap;
  pointer-events: none; opacity: 1; transition: opacity 0.4s;
}
.slider-wrap.interacted .slider-hint { opacity: 0; }
.slider-card__info { padding: 20px 24px; border-top: 1px solid rgba(15,15,15,0.07); }
.slider-card__info h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.slider-card__info ul { display: flex; flex-direction: column; gap: 5px; }
.slider-card__info li { display: flex; justify-content: space-between; font-size: 13px; color: rgba(15,15,15,0.55); }
.slider-card__info li span:last-child { font-weight: 600; color: var(--black); }

/* ── PROCESSO / STEPS — Timeline horizontal (desktop) / vertical (mobile) ── */
.steps {
  display: grid;
  gap: 36px;
  margin-top: 24px;
  position: relative;
  background: transparent;
}
.step {
  background: transparent;
  padding: 0;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: none;
  position: relative;
}
.step:hover { background: transparent; }
.step__num {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.32);
  letter-spacing: -0.02em;
}
/* Mobile: linha vertical conectando círculos consecutivos */
.step:not(:last-child) .step__num::after {
  content: '';
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 32px;
  background: var(--gold);
  opacity: 0.4;
}
.step__body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin: 8px 0 8px;
  line-height: 1.3;
}
.step__body p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,240,235,0.62);
  line-height: 1.75;
}

/* ── DEPOIMENTOS ─────────────────────────────────────────────────── */
.dep-grid { display: grid; gap: 20px; }
.dep-card {
  background: #fff; border: 1px solid rgba(15,15,15,0.08);
  border-radius: var(--radius); padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.dep-card:hover { box-shadow: 0 6px 24px rgba(15,15,15,0.08); transform: translateY(-2px); }
.dep-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.dep-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--warm); border: 2px solid rgba(201,169,110,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--gold); flex-shrink: 0; overflow: hidden;
}
.dep-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dep-meta { display: flex; flex-direction: column; gap: 2px; }
.dep-stars  { color: var(--gold); font-size: 12px; letter-spacing: 2px; }
.dep-author strong { display: block; font-size: 13px; font-weight: 600; }
.dep-author span   { font-size: 11px; color: rgba(15,15,15,0.45); }
.dep-text { font-family: var(--font-display); font-style: italic; font-size: clamp(14px, 2vw, 17px); line-height: 1.65; margin-bottom: 14px; }
.dep-date { font-size: 11px; color: rgba(15,15,15,0.35); }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 10px; max-width: 760px; margin: 0 auto; }
/* min-width: 0 + word-break: tabelas/URLs longas não empurram o card além
   da viewport em mobile estreito (mesma defesa do FAQ da LP). */
.faq-item { border: 1px solid rgba(15,15,15,0.1); border-radius: var(--radius); overflow: hidden; min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
.faq-item.open { border-color: var(--gold); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 18px 22px; background: #fff; border: none;
  text-align: left; font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--black); cursor: pointer; transition: background 0.15s;
}
.faq-btn:hover, .faq-item.open .faq-btn { background: #fdfaf6; }
.faq-icon {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 12px; flex-shrink: 0;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--black); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  background: #fdfaf6; padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 320px; padding-top: 4px; }
.faq-answer p { font-size: 14px; color: rgba(15,15,15,0.72); line-height: 1.8; padding-bottom: 18px; overflow-wrap: anywhere; }

/* ── BAIRROS ATENDIDOS ───────────────────────────────────────────── */
.bairros { padding-block: clamp(40px, 6vw, 64px); border-top: 1px solid rgba(15,15,15,0.06); }
.bairros__inner { text-align: center; }
.bairros__label { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.bairros__title { font-family: var(--font-display); font-size: clamp(17px, 2.2vw, 24px); font-weight: 600; margin-bottom: 14px; }
.bairros__list  { font-size: 14px; color: rgba(15,15,15,0.65); line-height: 2; }
.bairros__list strong { color: var(--black); font-weight: 600; }

/* ── CTA FINAL ───────────────────────────────────────────────────── */
.cta-final { background: var(--black); padding-block: clamp(72px, 10vw, 120px); text-align: center; }
.cta-final__label { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.cta-final__title { font-family: var(--font-display); font-size: clamp(26px, 4vw, 48px); font-weight: 700; color: var(--cream); line-height: 1.15; margin-bottom: 12px; }
.cta-final__title em { font-style: italic; font-weight: 400; color: var(--beige); }
.cta-final__sub { font-size: 15px; color: rgba(245,240,235,0.6); margin-bottom: 36px; }
.cta-final__response { margin-top: 14px; font-size: 13px; color: rgba(245,240,235,0.45); }
.cta-final__info     { margin-top: 10px; font-size: 12px; color: rgba(245,240,235,0.3); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
#footer { background: var(--black); padding-top: 64px; }
.footer__inner { display: grid; gap: 40px; padding-bottom: 48px; }
.footer__brand p { font-size: 13px; color: rgba(245,240,235,0.5); margin-top: 10px; line-height: 1.6; }
.footer__heading { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: rgba(245,240,235,0.55); transition: color var(--trans); }
.footer__links a:hover { color: var(--gold); }
.footer__social { display: flex; flex-direction: column; gap: 12px; }
.footer__social a { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(245,240,235,0.55); transition: color var(--trans); }
.footer__social a svg { width: 32px; height: 32px; padding: 8px; border-radius: 50%; border: 1px solid rgba(245,240,235,0.15); flex-shrink: 0; transition: border-color var(--trans), color var(--trans); }
.footer__social a:hover { color: var(--gold); }
.footer__social a:hover svg { border-color: var(--gold); color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(245,240,235,0.08); padding-block: 20px; text-align: center; font-size: 12px; color: rgba(245,240,235,0.3); }

/* ── WHATSAPP FAB ────────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 22px rgba(37,211,102,0.42);
  transition: transform 0.22s;
}
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ── FADE-IN ─────────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .btn-filled      { padding: 17px 28px; font-size: 13px; }

  .slider-grid     { gap: 20px; }
  .srv-hero__trust { max-width: 100%; }
}
@media (min-width: 768px) {
  .nav__links     { display: flex; }
  .nav__hamburger { display: none; }
  .nav__wa-mobile-wrap { display: none; }

  .beneficios-grid { grid-template-columns: repeat(2, 1fr); }
  .slider-grid     { grid-template-columns: repeat(2, 1fr); }
  /* Timeline horizontal — 4 colunas com trilha dourada contínua */
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-top: 8px;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 34px; /* 8px padding-top + 26px = meio do círculo */
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--gold);
    opacity: 0.4;
    z-index: 1;
  }
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .step:not(:last-child) .step__num::after { display: none; }
  .step__body h3 { margin-top: 22px; font-size: 17px; }
  .step__body p { font-size: 13px; max-width: 260px; margin: 0 auto; }
  .dep-grid        { grid-template-columns: repeat(2, 1fr); }
  .dif-cards       { grid-template-columns: repeat(2, 1fr); }
  .footer__inner   { grid-template-columns: 2fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .beneficios-grid { grid-template-columns: repeat(3, 1fr); }
  .dif-cards       { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .dif-card        { padding: 32px 24px; }
  .dif-card__title { font-size: 18px; }
}

/* GALLERY (carousel por serviço) — usado em site/index.html e em site/servicos/*\/index.html.
   Markup injetado pelo scripts/build-gallery.js entre os markers GALLERY:BEGIN/END. */
.gallery-grid { display: grid; gap: 48px; padding-block: 32px 8px; }
.gallery { background: transparent; padding-block: 0; }
.gallery__group-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600; text-align: center;
  color: var(--black, #0f0f0f);
  margin: 0 0 18px; letter-spacing: -0.01em;
}
.gallery__group-title em { font-style: italic; font-weight: 400; color: var(--gold, #c9a96e); }
.gallery__viewport {
  position: relative; max-width: 540px; margin: 0 auto;
  overflow: hidden; border-radius: 6px;
  background: #ede7de; aspect-ratio: 4 / 5;
  box-shadow: 0 10px 30px rgba(15, 15, 15, 0.08);
}
.gallery__track { display: flex; width: 100%; height: 100%; transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; }
.gallery__slide { flex: 0 0 100%; min-width: 100%; position: relative; margin: 0; }
.gallery__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 36px 22px 20px;
  font-size: 13px; font-weight: 400; letter-spacing: 0.02em;
  color: #faf7f2;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.78) 0%, rgba(15, 15, 15, 0) 100%);
}
.gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  border: none; background: rgba(15, 15, 15, 0.72);
  color: #faf7f2; font-size: 22px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.2s; z-index: 2;
}
.gallery__nav:hover { background: var(--gold, #c9a96e); color: #0f0f0f; }
.gallery__nav--prev { left: 10px; }
.gallery__nav--next { right: 10px; }
.gallery__dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.gallery__dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.55);
  background: transparent; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.2s;
}
.gallery__dot:hover { transform: scale(1.15); }
.gallery__dot.is-active { background: var(--gold, #c9a96e); border-color: var(--gold, #c9a96e); }
@media (max-width: 480px) {
  .gallery__nav { width: 34px; height: 34px; font-size: 18px; }
  .gallery__caption { font-size: 12px; padding: 28px 16px 14px; }
}
