@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

:root {
  --plum: #725969;
  --plum-dark: #463945;
  --plum-deep: #2d272d;
  --mauve: #a8828b;
  --rose: #c9a6aa;
  --lavender: #e7dfe4;
  --paper: #f4eff2;
  --ivory: #fdfaf8;
  --surface: #ffffff;
  --ink: #2d282e;
  --muted: #574e57;
  --accent: #725969;
  --line: rgba(70, 57, 69, 0.16);
  --line-light: rgba(255, 255, 255, 0.17);
  --error: #963d51;
  --success: #376653;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Archivo", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-utility: "Space Grotesk", Arial, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section-space: clamp(4rem, 6vw, 6.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 0.85rem;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, svg, video, canvas, audio, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-padding-top: 5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: var(--ivory);
  font: 1rem/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
}

main, header, footer, section {
  width: 100%;
  box-sizing: border-box;
}

button, input, select, textarea {
  font: inherit;
  max-width: 100%;
}
button, a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
a {
  color: inherit;
}
[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 3000;
  padding: 0.8rem 1rem;
  color: #fff;
  background: var(--plum-deep);
  transform: translateY(-180%);
  transition: transform 200ms ease;
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: 3px solid #c89db0;
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
  text-wrap: balance;
}

.section-pad {
  padding: var(--section-space) var(--gutter);
}
.section-index, .eyebrow {
  margin: 0 0 1rem;
  color: var(--plum-dark);
  font: 700 0.76rem/1.2 var(--font-utility);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Header Fixo */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.6rem var(--gutter);
  color: #fff;
  background: rgba(45, 39, 45, 0.96);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(14px);
}
.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  text-decoration: none;
}
.brand > img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-wordmark strong {
  font: 400 1.25rem/1 var(--font-display);
  letter-spacing: 0.02em;
}
.brand-wordmark > span {
  margin-top: 0.28rem;
  font: 600 0.54rem/1 var(--font-utility);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 150ms ease;
}
.site-nav a:hover {
  color: #fff;
}
.site-nav .nav-cta {
  padding: 0 1.2rem;
  color: var(--plum-dark);
  background: var(--ivory);
  border-radius: 999px;
  font-weight: 700;
}
.site-nav .nav-cta:hover {
  color: #fff;
  background: var(--plum);
}
.menu-toggle {
  display: none;
  min-width: 46px;
  min-height: 46px;
  place-items: center;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

/* Hero Section */
.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 68px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--plum-deep);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(29, 24, 30, 0.92) 0%, rgba(38, 32, 39, 0.72) 50%, rgba(42, 35, 43, 0.25) 100%),
              linear-gradient(0deg, rgba(28, 23, 29, 0.5) 0%, transparent 60%);
}
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-copy {
  width: min(760px, 100%);
  padding: clamp(3rem, 6vh, 5.5rem) var(--gutter);
}
.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.88);
}
.hero-copy .eyebrow > span {
  width: 1.8rem;
  height: 1px;
  background: var(--rose);
}
.hero h1 {
  max-width: 680px;
  margin-bottom: 1.1rem;
  font-size: clamp(2.35rem, 5.2vw, 4.8rem);
  line-height: 0.98;
}
.hero-lede {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.5;
}
/* Hero Rating Badge */
.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.42rem 0.95rem;
  background: rgba(22, 17, 23, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 1.25rem;
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 0.18rem;
}
.hero-stars svg {
  width: 14px;
  height: 14px;
  fill: #f59e0b;
}
.hero-rating-badge span {
  font: 600 0.78rem/1 var(--font-utility);
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}
.hero-rating-badge span strong {
  color: #fff;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.8rem;
}

/* Botão WhatsApp Hero e Micro-copy */
.button-whatsapp {
  background: #178347;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(30, 149, 83, 0.35);
}
.button-whatsapp:hover {
  background: #126f3b;
  color: #fff;
  box-shadow: 0 12px 30px rgba(30, 149, 83, 0.5);
}
.hero-cta-micro {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.78);
  font: 500 0.78rem/1.3 var(--font-utility);
}
.hero-cta-micro svg {
  flex-shrink: 0;
  stroke: var(--rose);
}

/* Pilares de Confiança Hero */
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-pillar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.95rem;
  background: rgba(22, 17, 23, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-pillar-item svg {
  flex-shrink: 0;
  stroke: var(--rose);
}
.hero-pillar-item strong {
  display: block;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero-pillar-item span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  line-height: 1.25;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.hero-meta span {
  padding: 0.38rem 0.72rem;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font: 600 0.68rem/1.2 var(--font-utility);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* Botões Padrão */
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: scale(0.98);
}
.button-light {
  color: var(--plum-dark);
  background: var(--ivory);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.button-light:hover {
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.button-dark {
  color: #fff;
  background: var(--plum);
  box-shadow: 0 8px 22px rgba(114, 89, 105, 0.25);
}
.button-dark:hover {
  background: var(--plum-dark);
}
.button-ghost {
  color: var(--plum-dark);
  background: transparent;
  border-color: var(--line);
}
.button-ghost:hover {
  background: rgba(70, 57, 69, 0.06);
}
.button img {
  width: 20px;
  height: 20px;
}
.button svg {
  width: 18px;
  height: 18px;
}

/* Trustbar — Faixa de Segurança e Credibilidade */
.trustbar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 1.35rem var(--gutter);
}
.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.trust-item svg {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  stroke: var(--plum);
  stroke-width: 1.8;
  fill: none;
}
.trust-item-text {
  min-width: 0;
}
.trust-item-text strong {
  display: block;
  color: var(--plum-dark);
  font: 700 0.88rem/1.25 var(--font-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trust-item-text span {
  display: block;
  color: var(--muted);
  font: 400 0.74rem/1.25 var(--font-utility);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Cabeçalho das Seções */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}
.section-head h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2.1rem, 3.8vw, 3.8rem);
}
.section-head > p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* 01 / Serviços Transparentes */
.services {
  background: var(--paper);
}
.service-categories {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.service-group {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 2.5vw, 1.75rem);
}
.service-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}
.service-group-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  color: var(--plum-dark);
  margin: 0;
}
.service-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font: 700 0.76rem/1 var(--font-utility);
  color: #21583e;
  background: #e3f5ec;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(33, 88, 62, 0.18);
}
.service-tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}
.service-tag {
  min-width: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 0.1rem 0.75rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
}
.service-tag svg {
  grid-row: 1 / 3;
  width: 24px;
  height: 24px;
  align-self: center;
  fill: none;
  stroke: var(--mauve);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-tag span {
  align-self: end;
  color: var(--plum-dark);
  font: 600 0.92rem/1.2 var(--font-body);
}
.service-tag small {
  align-self: start;
  color: var(--muted);
  font-size: 0.72rem;
}
.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.8rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.services-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* 02 / Ambientes Reais (Fotos Grandes e Nítidas) */
.gallery {
  background: var(--ivory);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 300px;
  width: 100%;
  overflow: hidden;
  background: var(--lavender);
  border-radius: var(--radius);
  display: block;
  text-decoration: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  appearance: none;
  font: inherit;
  font-family: inherit;
  color: #fff;
  box-shadow: 0 8px 24px rgba(45, 39, 45, 0.08);
  transition: transform 260ms var(--ease), box-shadow 260ms ease;
}
.gallery-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(45, 39, 45, 0.16);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease);
}
.gallery-card:hover img {
  transform: scale(1.04);
}
.gallery-card .gallery-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  background: rgba(22, 17, 23, 0.94);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font: 800 0.72rem/1 var(--font-utility);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.gallery-expand-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(22, 17, 23, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform 240ms var(--ease), background 240ms ease, border-color 240ms ease;
}
.gallery-expand-btn svg {
  width: 16px;
  height: 16px;
}
.gallery-card:hover .gallery-expand-btn {
  transform: scale(1.1);
  background: rgba(22, 17, 23, 0.95);
  border-color: rgba(255, 255, 255, 0.75);
}
.gallery-card figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 3.5rem 1.25rem 1.15rem;
  background: linear-gradient(180deg, transparent 0%, rgba(18, 14, 19, 0.6) 30%, rgba(18, 14, 19, 0.95) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}
.gallery-card figcaption strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.gallery-card-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font: 700 0.8rem/1 var(--font-utility);
  background: rgba(255, 255, 255, 0.16);
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  transition: background 200ms ease, border-color 200ms ease;
}
.gallery-card-hint svg {
  width: 13px;
  height: 13px;
}
.gallery-card:hover .gallery-card-hint {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Lightbox Modal de Alta Resolução */
.photo-lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 280ms var(--ease), visibility 280ms;
}
.photo-lightbox[open],
.photo-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.photo-lightbox::backdrop {
  display: none;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 11, 16, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}
.lightbox-container {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1080px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--paper);
  border-radius: 1.25rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transform: scale(0.96);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.photo-lightbox[open] .lightbox-container,
.photo-lightbox.is-open .lightbox-container {
  transform: scale(1);
}
.lightbox-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(22, 17, 23, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  transition: transform 200ms var(--ease), background 200ms ease;
  backdrop-filter: blur(6px);
}
.lightbox-close-btn:hover {
  transform: scale(1.08);
  background: rgba(22, 17, 23, 1);
  border-color: rgba(255, 255, 255, 0.6);
}
.lightbox-nav-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(22, 17, 23, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  transition: transform 200ms var(--ease), background 200ms ease;
  backdrop-filter: blur(6px);
}
.lightbox-nav-btn:hover {
  transform: translateY(-50%) scale(1.1);
  background: rgba(22, 17, 23, 1);
}
.lightbox-prev {
  left: 1rem;
}
.lightbox-next {
  right: 1rem;
}
.lightbox-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 92vh;
}
.lightbox-img-wrap {
  width: 100%;
  background: #0f0b10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  max-height: 64vh;
  overflow: hidden;
}
.lightbox-img-wrap img {
  width: 100%;
  max-height: 64vh;
  object-fit: contain;
  display: block;
}
.lightbox-details {
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.lightbox-details > div {
  max-width: 600px;
}
.lightbox-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font: 800 0.74rem/1 var(--font-utility);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum-dark);
  background: rgba(114, 89, 105, 0.14);
  border: 1px solid rgba(114, 89, 105, 0.28);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}
.lightbox-details h3 {
  font: 700 1.35rem/1.25 var(--font-display);
  color: var(--plum-dark);
  margin: 0 0 0.35rem;
}
.lightbox-details p {
  margin: 0;
  color: #38313a;
  font-size: 0.94rem;
  line-height: 1.5;
}
.lightbox-details .button {
  flex-shrink: 0;
}
.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.25rem;
  padding: 1.4rem 1.8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.gallery-cta p {
  margin: 0;
  color: var(--plum-dark);
  font-weight: 700;
  font-size: 1rem;
}

/* 03 / Modalidades de Contratação */
.hiring-modalities {
  background: #f8f4f7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hiring-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.hiring-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 18px rgba(45, 39, 45, 0.04);
}
.hiring-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lavender);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.hiring-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--plum-dark);
  fill: none;
  stroke-width: 1.8;
}
.hiring-card h3 {
  font-size: 1.2rem;
  color: var(--plum-dark);
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
}
.hiring-card p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.hiring-pill {
  margin-top: 1.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font: 700 0.76rem/1 var(--font-utility);
  color: var(--plum-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
}
.hiring-swipe-hint {
  display: none;
}

/* 04 / Segurança & Confiança */
.credibility-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.credibility-head {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.credibility-head h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  color: var(--plum-dark);
  margin-bottom: 0.85rem;
}
.credibility-head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}
.credibility-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.security-pillar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem 1.6rem;
  box-shadow: 0 4px 20px rgba(45, 39, 45, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}
.security-pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(45, 39, 45, 0.08);
}
.pillar-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--lavender);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
}
.pillar-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--plum-dark);
  fill: none;
  stroke-width: 1.8;
}
.pillar-tag {
  display: inline-block;
  font: 700 0.7rem/1 var(--font-utility);
  color: #21583e;
  background: #e3f5ec;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(33, 88, 62, 0.18);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.security-pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--plum-dark);
  margin: 0 0 0.55rem;
}
.security-pillar-card p {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
}

/* Depoimentos WhatsApp */
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.testimonials-swipe-hint {
  display: none;
}
.wa-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 8px 24px rgba(45, 39, 45, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wa-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.wa-card-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--plum-dark);
  display: grid;
  place-items: center;
  font: 700 0.88rem/1 var(--font-utility);
  flex-shrink: 0;
}
.wa-card-client strong {
  display: block;
  font-size: 0.92rem;
  color: var(--plum-dark);
}
.wa-card-client span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.76rem;
  color: var(--muted);
}
.wa-card-verified {
  color: #128c7e;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-weight: 600;
}
.wa-card-verified svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}
.wa-card-bubble {
  position: relative;
  background: #f0f4f2;
  border-radius: 0.65rem;
  padding: 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #202824;
}
.wa-card-bubble::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 18px;
  border-width: 0 6px 6px;
  border-style: solid;
  border-color: #f0f4f2 transparent;
  display: block;
  width: 0;
}
.wa-card-time {
  font-size: 0.68rem;
  color: var(--muted);
  text-align: right;
  margin-top: 0.45rem;
}

/* 05 / Cobertura e Regiões */
.coverage-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.coverage-regions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.coverage-swipe-hint {
  display: none;
}
.region-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.region-card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--plum-dark);
  font-weight: 700;
  font-size: 1.05rem;
}
.region-card-head svg {
  width: 18px;
  height: 18px;
  stroke: var(--plum);
  fill: none;
  stroke-width: 2;
}
.region-neighborhoods {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.5;
}
.region-status {
  display: inline-block;
  font: 700 0.7rem/1 var(--font-utility);
  color: var(--plum);
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.coverage-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  background: rgba(114, 89, 105, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--plum-dark);
  font-weight: 600;
  text-align: left;
}
.coverage-notice svg {
  width: 18px;
  height: 18px;
  stroke: var(--plum);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* 06 / Formulário e Briefing */
.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  background: #eee8ec;
  align-items: center;
}
.quote-copy h2 {
  max-width: 540px;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
}
.quote-copy > p {
  max-width: 480px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0;
}
.privacy-note {
  max-width: 480px;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.privacy-note svg {
  fill: none;
  stroke: var(--plum);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.privacy-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.privacy-note strong {
  color: var(--ink);
}

.quote-form {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: var(--ivory);
  border: 1px solid rgba(70, 57, 69, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(45, 37, 46, 0.08);
}
.form-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
}
.form-progress::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16.66%;
  right: 16.66%;
  height: 1px;
  background: var(--line);
}
.form-progress li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
}
.form-progress li span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 50%;
  font: 700 0.74rem/1 var(--font-utility);
}
.form-progress li.is-current, .form-progress li.is-complete {
  color: var(--plum-dark);
}
.form-progress li.is-current span, .form-progress li.is-complete span {
  color: #fff;
  background: var(--plum);
  border-color: var(--plum);
}
fieldset,
.form-step {
  border: none;
  border-width: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.form-step legend {
  display: block;
  width: 100%;
  margin: 0 0 1.25rem;
  padding: 0;
  color: var(--plum-dark);
  font: 400 clamp(1.4rem, 2.2vw, 1.85rem)/1.15 var(--font-display);
}
.form-step legend span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--mauve);
  font: 700 0.68rem/1.2 var(--font-utility);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  min-width: 0;
  margin-bottom: 0.9rem;
}
.field label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--plum-dark);
  font-size: 0.8rem;
  font-weight: 700;
}
.field label span {
  color: var(--muted);
  font-weight: 400;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(70, 57, 69, 0.25);
  border-radius: 0.5rem;
  outline: none;
}
.field input, .field select {
  min-height: 50px;
}
.field textarea {
  min-height: 96px;
  padding-block: 0.75rem;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(114, 89, 105, 0.14);
}
.field input[aria-invalid=true], .field select[aria-invalid=true], .field textarea[aria-invalid=true] {
  border-color: var(--error);
}
.field-error {
  min-height: 0.9rem;
  margin: 0.18rem 0 0;
  color: var(--error);
  font-size: 0.72rem;
}
.field-hint {
  margin: 0.2rem 0 0;
  color: var(--muted);
  text-align: right;
  font-size: 0.7rem;
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.form-actions-split {
  justify-content: space-between;
}
.form-actions .button {
  min-width: 140px;
}
.submit-button {
  min-width: 195px;
}
.form-privacy-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  line-height: 1.35;
  color: var(--muted);
  margin: 0.65rem 0 1rem;
}
.form-privacy-note svg {
  flex-shrink: 0;
  stroke: var(--plum);
}
.form-privacy-note a {
  color: var(--plum-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-status {
  min-height: 1.4rem;
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.78rem;
}
.form-status[data-state=error] {
  color: var(--error);
}

/* 07 / Dúvidas Frequentes */
.faq {
  background: var(--ivory);
}
.faq-list {
  max-width: 820px;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-item button {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  color: var(--plum-dark);
  background: transparent;
  border: 0;
  text-align: left;
  font: 400 clamp(1.05rem, 1.4vw, 1.25rem)/1.35 var(--font-display);
}
.faq-item button svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  transition: transform 220ms var(--ease);
}
.faq-item button[aria-expanded=true] svg {
  transform: rotate(45deg);
}
.faq-item p {
  max-width: 740px;
  margin: -0.2rem 2.5rem 1.4rem 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Fechamento Conclusivo */
.closing-cta {
  position: relative;
  isolation: isolate;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: #3b333b url("assets/images/quarto-restaurado.webp") center/cover no-repeat;
}
.closing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(40, 34, 41, 0.72) 0%, rgba(48, 39, 49, 0.9) 100%);
}
.closing-cta > img {
  width: 76px;
  height: 76px;
  margin-bottom: 1rem;
  object-fit: contain;
}
.closing-cta > p {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}
.closing-cta h2 {
  max-width: 580px;
  margin-bottom: 1.75rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

/* Rodapé */
.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr auto;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: end;
  padding: clamp(3rem, 5vw, 4.5rem) var(--gutter);
  color: #e2d9df;
  background: #292329;
}
.brand-footer {
  pointer-events: none;
}
.brand-footer > img {
  width: 54px;
  height: 54px;
}
.footer-brand > p, .site-footer > p {
  margin: 0.8rem 0 0;
  color: #aa9faa;
  font-size: 0.8rem;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 0.85rem;
}
.footer-legal-links a {
  color: #c9bed2;
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-legal-links a:hover {
  color: #fff;
}
.footer-contact-info {
  margin-top: 0.6rem;
  color: #b4a7b4;
  font-size: 0.78rem;
  line-height: 1.5;
}
.footer-contact-info strong {
  color: #fff;
  font-weight: 600;
}
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}
.footer-social a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-size: 0.86rem;
}
.footer-social img {
  width: 20px;
  height: 20px;
}
.site-footer > p {
  text-align: right;
}

/* Botão Flutuante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #178347;
  color: #fff;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38), 0 2px 6px rgba(0, 0, 0, 0.12);
  font: 700 0.86rem/1 var(--font-body);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.92);
  transition: opacity 280ms var(--ease), transform 280ms var(--ease), box-shadow 180ms ease;
}
.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.48), 0 4px 8px rgba(0, 0, 0, 0.15);
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

/* Animações Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1), transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.js .hero-intro {
  opacity: 0;
  transform: translateY(16px);
}
.js.is-ready .hero-intro {
  opacity: 1;
  transform: none;
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.js.is-ready .hero-intro-2 { transition-delay: 70ms; }
.js.is-ready .hero-intro-3 { transition-delay: 130ms; }
.js.is-ready .hero-intro-4 { transition-delay: 190ms; }
.js.is-ready .hero-intro-5 { transition-delay: 250ms; }
.js .hero-intro-image {
  opacity: 0;
  transform: scale(1.015);
}
.js.is-ready .hero-intro-image {
  opacity: 1;
  transform: none;
  transition: opacity 800ms var(--ease), transform 1000ms var(--ease);
}

/* ==========================================================================
   RESPONSIVIDADE E ADAPTAÇÃO MOBILE/TABLET (PERFEITO ALINHAMENTO E ZERO DRAG)
   ========================================================================== */

@media (max-width: 1080px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hiring-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .coverage-regions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer > p {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 820px) {
  :root {
    --gutter: 1.25rem;
    --section-space: 4rem;
  }
  .site-header {
    min-height: 64px;
    padding-inline: var(--gutter);
  }
  .menu-toggle {
    display: grid;
  }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem var(--gutter) 1.2rem;
    background: rgba(45, 39, 45, 0.99);
    box-shadow: 0 20px 45px rgba(25, 20, 26, 0.25);
    border-bottom: 1px solid var(--line-light);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    min-height: 48px;
    border-bottom: 1px solid var(--line-light);
  }
  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 0.75rem;
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding: 3.5rem 0 2.5rem;
  }
  .hero-copy {
    width: 100%;
    padding: 1.5rem var(--gutter);
  }

  .trustbar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 0.85rem;
  }

  .credibility-head {
    text-align: left;
    margin-bottom: 1.8rem;
  }
  .credibility-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .credibility-section {
    overflow-x: clip;
  }
  .social-proof-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    gap: 0.85rem;
    padding: 0.35rem var(--gutter) 1.25rem;
    margin: 0 calc(-1 * var(--gutter));
    scrollbar-width: none;
  }
  .social-proof-grid::-webkit-scrollbar {
    display: none;
  }
  .wa-card {
    flex: 0 0 82%;
    max-width: 85%;
    min-width: 260px;
    scroll-snap-align: start;
    scroll-margin-left: var(--gutter);
    padding: 1.25rem 1.15rem;
    border-radius: 0.85rem;
    box-shadow: 0 4px 16px rgba(45, 39, 45, 0.05);
  }
  .wa-card-bubble {
    font-size: 0.84rem;
    line-height: 1.45;
    padding: 0.85rem 0.95rem;
  }
  .testimonials-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font: 600 0.76rem/1 var(--font-utility);
    color: var(--muted);
    padding: 0.25rem 0 0;
  }
  .testimonials-swipe-hint svg {
    stroke: var(--plum);
  }

  .quote {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 1.1rem;
    --section-space: 3.5rem;
  }

  .brand > img {
    width: 44px;
    height: 44px;
  }
  .brand-wordmark strong {
    font-size: 1.15rem;
  }

  .hero {
    min-height: calc(100svh - 64px);
    height: auto;
    display: flex;
    align-items: center;
    padding: 1.75rem 0 2rem;
  }
  .hero::after {
    /* Gradiente refinado: protege a legibilidade do texto sem esconder o ambiente iluminado */
    background: linear-gradient(0deg, rgba(29, 24, 30, 0.96) 0%, rgba(36, 31, 37, 0.82) 55%, rgba(39, 34, 40, 0.45) 100%);
  }
  .hero-copy {
    padding: 0.5rem var(--gutter) 1.5rem;
    width: 100%;
  }
  .hero-rating-badge {
    margin-bottom: 0.85rem;
    padding: 0.32rem 0.75rem;
    gap: 0.5rem;
  }
  .hero-rating-badge span {
    font-size: 0.72rem;
  }
  .hero-stars svg {
    width: 13px;
    height: 13px;
  }
  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    line-height: 1.06;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
  }
  .hero-lede {
    font-size: 0.92rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.35rem;
  }
  .hero-primary {
    width: 100%;
    min-height: 52px;
    font-size: 0.95rem;
    justify-content: center;
  }
  .hero-cta-micro {
    justify-content: center;
    text-align: center;
    font-size: 0.74rem;
    margin-top: 0.6rem;
  }
  .hero-pillars {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 1.4rem;
    padding-top: 1.1rem;
  }
  .hero-pillar-item {
    padding: 0.6rem 0.85rem;
    gap: 0.65rem;
  }
  .hero-pillar-item strong {
    font-size: 0.8rem;
  }
  .hero-pillar-item span {
    font-size: 0.7rem;
  }

  /* Faixa de Credibilidade 2x2 no Celular */
  .trustbar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.75rem;
  }
  .trust-item svg {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }
  .trust-item-text strong {
    font-size: 0.8rem;
  }
  .trust-item-text span {
    font-size: 0.68rem;
  }

  /* Serviços */
  .service-group {
    padding: 1.15rem;
  }
  .service-tags {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .service-tag {
    min-height: 64px;
  }

  /* Fotos Grandes em 1 Coluna no Celular */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .gallery-card {
    aspect-ratio: 16 / 11;
    min-height: 270px;
    border-radius: 0.75rem;
  }
  .gallery-card .gallery-badge {
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
  }
  .gallery-card figcaption {
    padding: 3rem 1.15rem 1rem;
  }
  .gallery-card figcaption strong {
    font-size: 1.05rem;
  }
  .gallery-card-hint {
    font-size: 0.76rem;
    padding: 0.3rem 0.55rem;
  }
  .gallery-expand-btn {
    top: 0.75rem;
    right: 0.75rem;
    width: 34px;
    height: 34px;
  }
  .gallery-expand-btn svg {
    width: 14px;
    height: 14px;
  }

  /* Lightbox no Mobile */
  .lightbox-container {
    width: 95%;
    max-height: 94vh;
    border-radius: 1rem;
  }
  .lightbox-img-wrap {
    max-height: 48vh;
    min-height: 200px;
  }
  .lightbox-img-wrap img {
    max-height: 48vh;
  }
  .lightbox-details {
    flex-direction: column;
    align-items: stretch;
    padding: 1.15rem 1rem;
    gap: 1rem;
  }
  .lightbox-details .button {
    width: 100%;
    min-height: 48px;
    font-size: 0.9rem;
    justify-content: center;
  }
  .lightbox-nav-btn {
    width: 38px;
    height: 38px;
    top: 25%;
  }
  .lightbox-nav-btn svg {
    width: 18px;
    height: 18px;
  }
  .lightbox-prev {
    left: 0.4rem;
  }
  .lightbox-next {
    right: 0.4rem;
  }
  .lightbox-close-btn {
    top: 0.6rem;
    right: 0.6rem;
    width: 36px;
    height: 36px;
  }
  .lightbox-close-btn svg {
    width: 18px;
    height: 18px;
  }
  .gallery-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem;
    text-align: center;
  }
  .gallery-cta .button {
    width: 100%;
  }

  /* Modalidades em Carrossel Horizontal no Celular (Swipe Snap) */
  .hiring-modalities {
    overflow-x: clip;
  }
  .hiring-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    gap: 0.85rem;
    padding: 0.35rem var(--gutter) 1.25rem;
    margin: 0 calc(-1 * var(--gutter));
    scrollbar-width: none;
  }
  .hiring-grid::-webkit-scrollbar {
    display: none;
  }
  .hiring-card {
    flex: 0 0 80%;
    max-width: 82%;
    min-width: 250px;
    scroll-snap-align: start;
    scroll-margin-left: var(--gutter);
    padding: 1.15rem 1.15rem;
    box-shadow: 0 4px 16px rgba(45, 39, 45, 0.05);
    border-radius: 0.85rem;
  }
  .hiring-card-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 0.65rem;
  }
  .hiring-card-icon svg {
    width: 19px;
    height: 19px;
  }
  .hiring-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
  }
  .hiring-card p {
    font-size: 0.82rem;
    line-height: 1.42;
  }
  .hiring-pill {
    margin-top: 0.85rem;
    padding-top: 0.55rem;
    font-size: 0.7rem;
  }
  .hiring-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font: 600 0.76rem/1 var(--font-utility);
    color: var(--muted);
    padding: 0.25rem 0 0;
  }
  .hiring-swipe-hint svg {
    stroke: var(--plum);
  }

  /* Regiões no Celular (Carrossel Horizontal Swipe Snap) */
  .coverage-section {
    overflow-x: clip;
  }
  .coverage-regions {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    gap: 0.85rem;
    padding: 0.35rem var(--gutter) 1.25rem;
    margin: 0 calc(-1 * var(--gutter));
    scrollbar-width: none;
  }
  .coverage-regions::-webkit-scrollbar {
    display: none;
  }
  .region-card {
    flex: 0 0 80%;
    max-width: 82%;
    min-width: 250px;
    scroll-snap-align: start;
    scroll-margin-left: var(--gutter);
    padding: 1.15rem 1.15rem;
    border-radius: 0.85rem;
    box-shadow: 0 4px 16px rgba(45, 39, 45, 0.05);
  }
  .region-card-head {
    font-size: 1rem;
    margin-bottom: 0.45rem;
  }
  .region-neighborhoods {
    font-size: 0.82rem;
    line-height: 1.45;
    margin: 0 0 0.85rem;
  }
  .region-status {
    padding-top: 0.5rem;
    font-size: 0.68rem;
  }
  .coverage-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font: 600 0.76rem/1 var(--font-utility);
    color: var(--muted);
    padding: 0.25rem 0 0;
  }
  .coverage-swipe-hint svg {
    stroke: var(--plum);
  }
  .coverage-notice {
    font-size: 0.82rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
  }

  /* Formulário no Celular */
  .quote-form {
    padding: 1.15rem;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .field {
    margin-bottom: 0.8rem;
  }
  .field input, .field select {
    min-height: 50px;
    font-size: 1rem;
  }
  .field textarea {
    font-size: 1rem;
  }
  .form-actions {
    flex-direction: column;
  }
  .form-actions .button {
    width: 100%;
    min-width: 0;
  }
  .form-actions-split {
    flex-direction: column-reverse;
  }

  /* Rodapé */
  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2.5rem var(--gutter);
  }
  .site-footer > p {
    text-align: left;
  }

  /* Botão Flutuante */
  .whatsapp-float {
    bottom: 1.15rem;
    right: 1.15rem;
    padding: 0.8rem;
    border-radius: 50%;
  }
  .whatsapp-float span {
    display: none;
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero-pillar-item {
    padding: 0.5rem 0.75rem;
  }
  .trustbar-grid {
    grid-template-columns: 1fr;
  }
}

/* Refinamento editorial: menos repetição, melhor leitura e alinhamento */
.hero {
  min-height: min(800px, calc(100svh - 72px));
  max-height: none;
  align-items: center;
}

.hero-copy {
  width: min(1180px, 78vw);
  padding-right: clamp(1.5rem, 4vw, 5rem);
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.45rem, 4.35vw, 5.35rem);
  line-height: 0.97;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.hero-lede {
  max-width: 570px;
}

.hero-actions {
  margin-top: 1.7rem;
}

.trustbar-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1080px;
}

.gallery-card figcaption {
  padding: 3rem 1.2rem 1.1rem;
}

.gallery-expand-btn {
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
}

.gallery-cta {
  margin-top: 1.75rem;
  padding: 1.5rem 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.hiring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.hiring-card {
  grid-column: auto;
  min-height: 250px;
  width: 100%;
  min-width: 0;
  max-width: none;
}

.coverage-regions {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.region-card {
  min-height: 0;
  width: 100%;
  min-width: 0;
  max-width: none;
  padding: 1.45rem 1.5rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.region-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.region-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.region-card-head {
  gap: 0.7rem;
  font-size: 1.08rem;
}

.region-card-head svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.region-neighborhoods {
  margin: 0.55rem 0 0 2rem;
  line-height: 1.55;
}

.coverage-notice-wrap {
  margin-top: 1.35rem;
}

.coverage-notice {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

@media (max-width: 820px) {
  .hero {
    min-height: calc(100svh - 64px);
  }

  .hero-copy {
    width: 100%;
    padding-top: clamp(4rem, 11vh, 6rem);
    padding-right: var(--gutter);
    padding-bottom: 3rem;
  }

  .hero-rating-badge {
    max-width: 100%;
    margin-bottom: 1.15rem;
  }

  .hero h1 {
    max-width: none;
    margin-bottom: 1rem;
    font-size: clamp(2.65rem, 10.5vw, 3.45rem);
    line-height: 0.98;
  }

  .hero-lede {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 1.4rem;
  }

  .hero-primary {
    width: 100%;
    min-height: 52px;
    padding-inline: 1rem;
  }

  .hero-cta-micro {
    align-items: flex-start;
    line-height: 1.4;
  }

  .trustbar-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding: 0.85rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2) {
    aspect-ratio: 16 / 10;
  }

  .gallery-card figcaption {
    padding: 2.7rem 1rem 0.9rem;
  }

  .gallery-cta {
    align-items: flex-start;
    gap: 1rem;
    padding-top: 1.25rem;
  }

  .hiring-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .hiring-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 0.9rem;
    min-height: 0;
    padding: 1.25rem 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .hiring-card-icon {
    grid-row: 1 / span 3;
    grid-column: 1;
    width: 40px;
    height: 40px;
  }

  .hiring-card h3,
  .hiring-card p,
  .hiring-pill {
    grid-column: 2;
  }

  .hiring-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
  }

  .hiring-card p {
    margin-top: 0.35rem;
  }

  .hiring-pill {
    margin-top: 0.8rem;
  }

  .coverage-regions {
    grid-template-columns: 1fr;
  }

  .region-card,
  .region-card:nth-child(odd),
  .region-card:nth-last-child(-n + 2) {
    min-height: 0;
    padding: 1.2rem 0.2rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .region-card:last-child {
    border-bottom: 0;
  }

  .coverage-notice {
    gap: 0.65rem;
    text-align: left;
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 2.45rem;
  }
}

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

/* Refinamento visual 2026 — hierarquia, confiança e conversão */
:root {
  --radius: 0.625rem;
  --radius-small: 0.4rem;
  --radius-large: 0.8rem;
  --section-space: clamp(4.75rem, 7vw, 7.5rem);
  --content-max: 1320px;
}

.section-pad {
  padding-inline: max(var(--gutter), calc((100vw - var(--content-max)) / 2));
}

.site-header {
  min-height: 72px;
  padding-block: 0.55rem;
  background: rgba(40, 34, 40, 0.97);
}

.site-nav {
  gap: clamp(0.85rem, 1.75vw, 1.75rem);
}

.site-nav a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 600;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-cta,
.button,
.whatsapp-float {
  border-radius: var(--radius);
}

.hero {
  min-height: calc(100svh - 72px);
  max-height: 920px;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(27, 22, 28, 0.96) 0%, rgba(31, 25, 32, 0.83) 38%, rgba(35, 29, 36, 0.38) 70%, rgba(35, 29, 36, 0.18) 100%),
    linear-gradient(0deg, rgba(26, 21, 27, 0.64) 0%, transparent 56%);
}

.hero-copy {
  width: min(780px, 62vw);
  padding-top: clamp(4.25rem, 8vh, 7rem);
  padding-bottom: clamp(3.5rem, 7vh, 6rem);
  padding-left: max(var(--gutter), calc((100vw - var(--content-max)) / 2));
}

.hero-rating-badge {
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-small);
  background: rgba(26, 21, 27, 0.68);
}

.hero-service-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--rose);
}

.hero-service-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero h1 {
  max-width: 740px;
  margin-bottom: 1.25rem;
  font-size: clamp(3.3rem, 5.35vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 610px;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.58;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-primary {
  min-height: 56px;
  padding-inline: 1.6rem;
}

.hero-cta-micro {
  margin-top: 0.8rem;
  font-size: 0.8rem;
}

.hero-pillars {
  gap: 0;
  max-width: 720px;
  margin-top: 2.4rem;
  padding-top: 1.3rem;
}

.hero-pillar-item {
  gap: 0.7rem;
  padding: 0.45rem 1.15rem;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  backdrop-filter: none;
}

.hero-pillar-item:first-child {
  padding-left: 0;
}

.hero-pillar-item:last-child {
  border-right: 0;
}

.hero-pillar-item strong {
  font-size: 0.84rem;
}

.hero-pillar-item span {
  margin-top: 0.14rem;
  font-size: 0.73rem;
}

.trustbar {
  padding-block: 1.5rem;
}

.trustbar-grid {
  max-width: var(--content-max);
  margin-inline: auto;
}

.trust-item {
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.section-head h2 {
  font-size: clamp(2.55rem, 4.5vw, 4.6rem);
  line-height: 0.98;
}

.section-head > p {
  padding-bottom: 0.3rem;
  font-size: 1.02rem;
  line-height: 1.65;
}

.service-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-group {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.82);
}

.service-group-head {
  align-items: flex-start;
  flex-direction: column;
  min-height: 118px;
  margin-bottom: 0.5rem;
  padding-bottom: 1.15rem;
}

.service-group-head h3 {
  max-width: 12ch;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.service-price-pill,
.gallery-card .gallery-badge,
.pillar-tag {
  border-radius: var(--radius-small);
}

.service-price-pill {
  padding: 0.4rem 0;
  color: var(--plum-dark);
  background: transparent;
  border: 0;
}

.service-tags {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
}

.service-tag {
  min-height: 82px;
  padding: 1rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.service-tag:last-child {
  border-bottom: 0;
}

.service-tag svg {
  width: 25px;
  height: 25px;
  stroke: var(--plum);
  stroke-width: 1.75;
}

.service-tag span {
  font-size: 0.98rem;
}

.service-tag small {
  margin-top: 0.15rem;
  font-size: 0.76rem;
  line-height: 1.35;
}

.services-cta,
.gallery-cta {
  margin-top: 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  grid-column: span 4;
  min-height: 340px;
  border-radius: var(--radius-large);
  box-shadow: 0 10px 28px rgba(45, 39, 45, 0.08);
}

.gallery-card:nth-child(1) {
  grid-column: span 7;
  min-height: 430px;
  aspect-ratio: 16 / 10;
}

.gallery-card:nth-child(2) {
  grid-column: span 5;
  min-height: 430px;
  aspect-ratio: 5 / 4;
}

.gallery-expand-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-small);
}

.gallery-card figcaption {
  padding: 4rem 1.35rem 1.3rem;
}

.gallery-card figcaption strong {
  font-size: 1.12rem;
}

.gallery-card-hint {
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 0.74rem;
}

.gallery-cta {
  border-radius: var(--radius-large);
}

.hiring-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.hiring-card {
  grid-column: span 3;
  min-height: 290px;
  padding: 1.65rem;
  border-radius: var(--radius-large);
  box-shadow: none;
}

.hiring-card-icon,
.pillar-icon-box {
  border-radius: var(--radius-small);
}

.hiring-card h3 {
  font-size: 1.4rem;
}

.hiring-card p {
  font-size: 0.94rem;
  line-height: 1.62;
}

.hiring-pill {
  color: var(--plum);
  font-size: 0.7rem;
}

.credibility-head {
  max-width: 900px;
  margin-left: 0;
  text-align: left;
}

.credibility-head h2 {
  max-width: 760px;
  font-size: clamp(2.55rem, 4.5vw, 4.4rem);
  line-height: 1;
}

.credibility-head p {
  max-width: 760px;
}

.credibility-pillars-grid {
  gap: 1rem;
  margin-bottom: 4.5rem;
}

.request-info-head {
  grid-template-columns: 1fr;
  margin-top: 2.75rem;
  margin-bottom: 1.5rem;
}

.request-info-title {
  margin: 0 0 0.5rem;
  color: var(--plum-dark);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.request-info-head p {
  margin: 0;
  color: var(--muted);
}

.security-pillar-card {
  position: relative;
  min-height: 300px;
  padding: 1.75rem;
  border-radius: var(--radius-large);
  box-shadow: none;
}

.pillar-tag {
  padding: 0;
  color: var(--plum);
  background: transparent;
  border: 0;
}

.social-proof-grid {
  gap: 1rem;
}

.wa-card {
  min-height: 240px;
  padding: 1.5rem;
  border-radius: var(--radius-large);
  box-shadow: none;
}

.wa-card-avatar {
  border-radius: var(--radius-small);
}

.wa-card-bubble {
  padding: 1rem 0 0;
  color: var(--ink);
  background: transparent;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.wa-card-bubble::before {
  display: none;
}

.coverage-regions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1120px;
  margin-inline: auto;
}

.section-head-centered {
  display: block;
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-head-narrow {
  max-width: 760px;
  margin-inline: auto;
}

.section-head-copy {
  margin: 0.75rem auto 0;
  color: var(--muted);
  font-size: 1rem;
}

.region-card {
  min-height: 190px;
  padding: 1.6rem;
  border-radius: var(--radius-large);
  background: var(--paper);
  border-left: 4px solid var(--mauve);
}

.region-card-head svg {
  width: 23px;
  height: 23px;
}

.region-card-head {
  font-size: 1.15rem;
}

.region-neighborhoods {
  max-width: 52ch;
  font-size: 0.94rem;
}

.coverage-notice {
  max-width: 760px;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-small);
}

.coverage-notice-wrap {
  margin-top: 2rem;
  text-align: center;
}

.quote {
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
  align-items: start;
  background: #eee8ec;
}

.quote-copy {
  position: sticky;
  top: 112px;
}

.quote-copy h2 {
  font-size: clamp(2.65rem, 4.3vw, 4.7rem);
  line-height: 0.98;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.contact-actions .button {
  min-width: 0;
}

.contact-actions .button svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-form {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-large);
  box-shadow: 0 24px 60px rgba(45, 37, 46, 0.08);
}

.form-progress li span {
  border-radius: var(--radius-small);
}

.field input,
.field select,
.field textarea {
  border-radius: var(--radius-small);
}

.faq {
  padding-block: clamp(5.5rem, 8vw, 8.5rem);
}

.faq-list {
  max-width: 980px;
  margin-inline: auto;
}

.faq-item button {
  min-height: 86px;
  padding-inline: 0.25rem;
  font-size: clamp(1.18rem, 1.65vw, 1.45rem);
}

.faq-item p {
  max-width: 820px;
  margin-bottom: 1.65rem;
  font-size: 1rem;
}

.faq-item p a {
  color: var(--plum-dark);
  font-weight: 700;
  text-underline-offset: 3px;
}

.closing-cta {
  min-height: 540px;
}

.site-footer {
  align-items: start;
}

.footer-contact-info a {
  color: #e7dfe4;
  text-underline-offset: 3px;
}

.footer-social {
  gap: 0.45rem;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 0.85rem;
  }

  .site-nav a {
    font-size: 0.8rem;
  }

  .service-categories {
    grid-template-columns: 1fr;
  }

  .service-group {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: 1.5rem;
  }

  .service-group-head {
    min-height: 0;
    margin: 0;
    padding: 0 1.5rem 0 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hiring-card {
    grid-column: span 6;
    min-height: 250px;
  }

  .quote {
    grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1.25fr);
    gap: 2.5rem;
  }
}

@media (max-width: 820px) {
  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .hero {
    max-height: none;
  }

  .hero-copy {
    width: min(700px, 82vw);
  }

  .hero h1 {
    font-size: clamp(3rem, 8vw, 4.5rem);
  }

  .trust-item {
    padding-right: 0;
    border-right: 0;
  }

  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2) {
    grid-column: span 6;
    min-height: 340px;
    aspect-ratio: 4 / 3;
  }

  .credibility-pillars-grid,
  .social-proof-grid {
    grid-template-columns: 1fr;
  }

  .security-pillar-card,
  .wa-card {
    min-height: 0;
  }

  .quote {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }
}

@media (max-width: 600px) {
  :root {
    --section-space: 4.5rem;
  }

  .site-header {
    min-height: 64px;
  }

  .menu-toggle {
    border-radius: var(--radius-small);
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(30, 24, 31, 0.58) 0%, rgba(29, 23, 30, 0.9) 58%, rgba(26, 21, 27, 0.98) 100%),
      linear-gradient(90deg, rgba(28, 22, 29, 0.72), rgba(35, 29, 36, 0.3));
  }

  .hero-visual > img {
    object-position: 57% center;
  }

  .hero-copy {
    width: 100%;
    padding-top: 4.75rem;
    padding-bottom: 3rem;
  }

  .hero-rating-badge {
    width: fit-content;
    max-width: 100%;
    margin-bottom: 1.25rem;
  }

  .hero-rating-badge span {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .hero h1 {
    max-width: 11ch;
    margin-bottom: 1rem;
    font-size: clamp(2.55rem, 12vw, 3.6rem);
    line-height: 0.97;
  }

  .hero-lede {
    max-width: 36ch;
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-primary {
    width: 100%;
    min-height: 56px;
    padding-inline: 1rem;
  }

  .hero-cta-micro {
    align-items: flex-start;
    font-size: 0.74rem;
  }

  .hero-pillars {
    grid-template-columns: 1fr;
    margin-top: 1.75rem;
    padding-top: 0.8rem;
  }

  .hero-pillar-item,
  .hero-pillar-item:first-child {
    padding: 0.7rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hero-pillar-item:last-child {
    border-bottom: 0;
  }

  .trustbar {
    padding-block: 1.1rem;
  }

  .section-head h2,
  .credibility-head h2,
  .quote-copy h2 {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  .service-group {
    display: flex;
    padding: 1.3rem;
  }

  .service-group-head {
    min-height: 0;
    margin-bottom: 0.35rem;
    padding: 0 0 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-group-head h3 {
    max-width: none;
    font-size: 1.55rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2) {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
  }

  .gallery-card figcaption {
    padding: 3.5rem 1rem 1rem;
  }

  .gallery-card .gallery-badge {
    top: 0.8rem;
    left: 0.8rem;
    padding: 0.4rem 0.6rem;
  }

  .gallery-expand-btn {
    top: 0.8rem;
    right: 0.8rem;
  }

  .gallery-cta,
  .services-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-cta .button,
  .services-cta .button {
    width: 100%;
  }

  .hiring-grid,
  .credibility-pillars-grid,
  .social-proof-grid,
  .coverage-regions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    overflow: visible;
    scroll-snap-type: none;
  }

  .hiring-card,
  .security-pillar-card,
  .wa-card,
  .region-card {
    grid-column: auto;
    width: 100%;
    min-width: 0;
    min-height: 0;
    scroll-snap-align: none;
  }

  .hiring-card {
    padding: 1.35rem;
  }

  .hiring-swipe-hint,
  .testimonials-swipe-hint,
  .coverage-swipe-hint {
    display: none;
  }

  .credibility-head {
    margin-bottom: 2rem;
  }

  .credibility-pillars-grid {
    margin-bottom: 3.25rem;
  }

  .region-card {
    min-height: 175px;
    padding: 1.35rem;
  }

  .coverage-notice {
    align-items: flex-start;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
  }

  .quote-form {
    padding: 1.2rem;
  }

  .faq {
    padding-block: 5rem;
  }

  .faq-item button {
    min-height: 78px;
    padding-block: 0.8rem;
    font-size: 1.14rem;
  }

  .faq-item p {
    margin-right: 1.5rem;
    font-size: 0.94rem;
  }

  .closing-cta {
    min-height: 480px;
  }

  .site-footer {
    gap: 2.25rem;
  }

  .footer-social a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-rating-badge {
    align-items: flex-start;
  }

  .hero-service-icon {
    flex: 0 0 24px;
  }

  .button {
    font-size: 0.84rem;
  }
}

/* Camada final do redesign — manter abaixo das regras legadas */
.hero {
  min-height: min(800px, calc(100svh - 72px));
  max-height: none;
  align-items: center;
}

.hero-copy {
  width: min(1180px, 78vw);
  padding-right: clamp(1.5rem, 4vw, 5rem);
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.45rem, 4.35vw, 5.35rem);
  line-height: 0.97;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.hero-lede {
  max-width: 570px;
}

.hero-actions {
  margin-top: 1.7rem;
}

.trustbar-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1080px;
}

.gallery-card figcaption {
  padding: 3rem 1.2rem 1.1rem;
}

.gallery-expand-btn {
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
}

.gallery-cta {
  margin-top: 1.75rem;
  padding: 1.5rem 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.hiring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.hiring-card {
  grid-column: auto;
  min-height: 250px;
  width: 100%;
  min-width: 0;
  max-width: none;
}

.coverage-regions {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.region-card {
  min-height: 0;
  width: 100%;
  min-width: 0;
  max-width: none;
  padding: 1.45rem 1.5rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.region-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.region-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.region-card-head {
  gap: 0.7rem;
  font-size: 1.08rem;
}

.region-card-head svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.region-neighborhoods {
  margin: 0.55rem 0 0 2rem;
  line-height: 1.55;
}

.coverage-notice-wrap {
  margin-top: 1.35rem;
}

.coverage-notice {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

@media (max-width: 820px) {
  .hero {
    min-height: calc(100svh - 64px);
  }

  .hero-copy {
    width: 100%;
    padding-top: clamp(4rem, 11vh, 6rem);
    padding-right: var(--gutter);
    padding-bottom: 3rem;
  }

  .hero-rating-badge {
    max-width: 100%;
    margin-bottom: 1.15rem;
  }

  .hero h1 {
    max-width: none;
    margin-bottom: 1rem;
    font-size: clamp(2.65rem, 10.5vw, 3.45rem);
    line-height: 0.98;
  }

  .hero-lede {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 1.4rem;
  }

  .hero-primary {
    width: 100%;
    min-height: 52px;
    padding-inline: 1rem;
  }

  .trustbar-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding: 0.85rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2) {
    aspect-ratio: 16 / 10;
  }

  .gallery-card figcaption {
    padding: 2.7rem 1rem 0.9rem;
  }

  .hiring-grid {
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .hiring-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 0.9rem;
    min-height: 0;
    padding: 1.25rem 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .hiring-card-icon {
    grid-row: 1 / span 3;
    grid-column: 1;
    width: 40px;
    height: 40px;
  }

  .hiring-card h3,
  .hiring-card p,
  .hiring-pill {
    grid-column: 2;
  }

  .hiring-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
  }

  .hiring-card p {
    margin-top: 0.35rem;
  }

  .hiring-pill {
    margin-top: 0.8rem;
  }

  .coverage-regions {
    grid-template-columns: 1fr;
  }

  .region-card,
  .region-card:nth-child(odd),
  .region-card:nth-last-child(-n + 2) {
    min-height: 0;
    padding: 1.2rem 0.2rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .region-card:last-child {
    border-bottom: 0;
  }

  .coverage-notice {
    gap: 0.65rem;
    text-align: left;
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 2.45rem;
  }
}
