/* ============================================================
   SB Engenharia em Segurança do Trabalho
   Design system — editorial-engineering, warm & precise
   "Precisão técnica com atendimento próximo."
   ============================================================ */

/* ---------- Fonts (self-hosted, variable) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2212;
}

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --ivory: #fbf8f2;
  --beige: #f3ece0;
  --beige-deep: #eaddc9;
  --paper: #fefcf8;
  --card: #ffffff;

  --terracotta: #b26140;
  --terracotta-soft: #c07a55;
  --terracotta-deep: #7c4429;

  --gold: #c39a54;
  --gold-soft: #d3b378;
  --gold-deep: #a67f3c;

  --espresso: #2b201a;
  --espresso-soft: #3a2c23;

  --charcoal: #2a2521;
  --ink: #1b1815;
  --muted: #6d635a;
  --muted-soft: #8b8177;

  --line: rgba(43, 32, 26, 0.12);
  --line-strong: rgba(43, 32, 26, 0.2);
  --gold-line: rgba(195, 154, 84, 0.4);

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1180px;
  --container-wide: 1320px;
  --container-narrow: 780px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);

  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 26px;

  --shadow-sm: 0 1px 2px rgba(43, 32, 26, 0.05), 0 4px 14px rgba(43, 32, 26, 0.05);
  --shadow: 0 6px 26px rgba(43, 32, 26, 0.09), 0 2px 6px rgba(43, 32, 26, 0.05);
  --shadow-lg: 0 24px 60px -20px rgba(43, 32, 26, 0.28);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 74px;

  --focus: 0 0 0 3px rgba(178, 97, 64, 0.35);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img,
picture,
svg { max-width: 100%; display: block; }

img { height: auto; }

a { color: var(--terracotta-deep); text-decoration: none; }
a:hover { color: var(--terracotta); }

button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold-soft); color: var(--espresso); }

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.6rem, 8vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.6rem, 5vw, 4.2rem); }
.section--beige { background: var(--beige); }
.section--paper { background: var(--paper); }
.section--espresso { background: var(--espresso); color: #efe6da; }
.section--terra { background: var(--terracotta-deep); color: #f6e8dd; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--espresso);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 1200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 1.7rem;
  height: 1px;
  background: var(--gold);
}
.eyebrow--center::before { display: none; }
.section--espresso .eyebrow,
.section--terra .eyebrow { color: var(--gold-soft); }

/* ---------- Typographic scale ---------- */
.display {
  font-size: clamp(2.35rem, 6vw, 4.1rem);
  line-height: 1.05;
}
.h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.h3 { font-size: clamp(1.32rem, 2.3vw, 1.7rem); }
.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 60ch;
}
.section--espresso .lead,
.section--terra .lead { color: rgba(239, 230, 218, 0.82); }

.measure { max-width: 65ch; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--terracotta-deep);
  --btn-fg: #fdf7ef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  line-height: 1;
  padding: 1rem 1.6rem;
  border-radius: 100px;
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    box-shadow 0.25s var(--ease), color 0.2s var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(124, 68, 41, 0.7);
}
.btn:active { transform: translateY(0); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--espresso); }
.btn--gold:hover { box-shadow: 0 12px 28px -12px rgba(166, 127, 60, 0.75); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--charcoal);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  --btn-fg: var(--espresso);
  background: rgba(43, 32, 26, 0.04);
  border-color: var(--terracotta);
  box-shadow: none;
}
.section--espresso .btn--ghost,
.section--terra .btn--ghost,
.cta-panel .btn--ghost {
  --btn-fg: #f4ece1;
  border-color: rgba(244, 236, 225, 0.35);
}
.section--espresso .btn--ghost:hover,
.section--terra .btn--ghost:hover,
.cta-panel .btn--ghost:hover { background: rgba(255, 255, 255, 0.07); }

.btn--sm { padding: 0.7rem 1.15rem; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* Constrain icons inside buttons/links so they never balloon */
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.doc-card__more svg { width: 1.05em; height: 1.05em; flex: none; }
.eyebrow svg { width: 1.05em; height: 1.05em; flex: none; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

/* Narrow screens: long labels wrap inside the pill instead of overflowing/clipping */
@media (max-width: 820px) {
  .btn {
    white-space: normal;
    line-height: 1.3;
    text-wrap: balance;
  }
}

/* text link with arrow */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--terracotta-deep);
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 2px;
  transition: gap 0.25s var(--ease), border-color 0.25s var(--ease);
}
.tlink svg { width: 0.9em; height: 0.9em; transition: transform 0.25s var(--ease); }
.tlink:hover { gap: 0.75rem; border-color: var(--terracotta); }
.tlink:hover svg { transform: translateX(3px); }

/* ============================================================
   Top bar
   ============================================================ */
.topbar {
  background: var(--espresso);
  color: rgba(239, 230, 218, 0.85);
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  padding-block: 0.35rem;
}
.topbar a { color: rgba(239, 230, 218, 0.85); }
.topbar a:hover { color: #fff; }
.topbar__group { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar__item svg { width: 15px; height: 15px; color: var(--gold-soft); flex: none; }
.topbar__region { color: var(--gold-soft); font-weight: 500; }
@media (max-width: 720px) {
  .topbar__region-full { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar__group--contact .topbar__item span { display: none; }
  .topbar__group--contact .topbar__item { padding: 4px; }
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}
.header.is-stuck {
  border-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(43, 32, 26, 0.5);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand__mark { width: 40px; height: 44px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand__tag {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 0.4rem; }
.nav__link {
  position: relative;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.3rem;
  height: 1.5px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav__link:hover { color: var(--terracotta-deep); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--terracotta-deep); }

.header__cta { display: flex; align-items: center; gap: 0.7rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--ivory);
  padding: calc(var(--header-h) + 1rem) var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.38s var(--ease), visibility 0s linear 0.38s;
  overflow-y: auto;
}
.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.38s var(--ease);
}
.mobile-menu__head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
}
.mobile-menu__list { list-style: none; margin: 1rem 0 2rem; padding: 0; }
.mobile-menu__list a {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__list a:hover { color: var(--terracotta); }
.mobile-menu__list .idx {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
}
.mobile-menu__cta { margin-top: auto; display: grid; gap: 0.75rem; }
.mobile-menu__contact {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--muted);
  display: grid;
  gap: 0.5rem;
}
.mobile-menu__contact a { color: var(--charcoal); }

body.menu-open { overflow: hidden; }

@media (max-width: 940px) {
  .nav, .header__cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: clip; background: var(--ivory); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(2.6rem, 6vw, 5rem) clamp(3rem, 6vw, 5.5rem);
}
.hero__copy { position: relative; z-index: 2; max-width: 40rem; }
.hero__title { font-size: clamp(2.3rem, 5.2vw, 3.75rem); line-height: 1.06; margin-bottom: 1.1rem; }
.hero__title .accent { color: var(--terracotta); font-style: italic; }
.hero__lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--muted); max-width: 44ch; margin-bottom: 1.7rem; }
.hero .btn-row { margin-bottom: 2rem; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.hero__stat { min-width: 0; }
.hero__stat dt {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--terracotta-deep);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero__stat dd { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.35; max-width: 18ch; }

/* Hero media — editorial framed portrait */
.hero__media { position: relative; }
.hero__frame {
  position: relative;
  border-radius: 240px 240px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--beige-deep);
  aspect-ratio: 1024 / 1200;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.hero__media::before {
  content: "";
  position: absolute;
  inset: -14px -14px auto auto;
  width: 62%;
  height: 62%;
  border: 1px solid var(--gold-line);
  border-radius: 200px 200px 0 0;
  z-index: -1;
}
.hero__badge {
  position: absolute;
  left: -1.6rem;
  bottom: 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 15rem;
}
.hero__badge svg { width: 26px; height: 26px; color: var(--gold-deep); flex: none; }
.hero__badge b { font-family: var(--font-display); font-size: 1rem; color: var(--ink); display: block; }
.hero__badge span { font-size: 0.76rem; color: var(--muted); line-height: 1.3; }

/* blueprint watermark */
.blueprint-mark {
  position: absolute;
  pointer-events: none;
  opacity: 0.05;
  z-index: 0;
  width: min(38vw, 480px);
}
.hero .blueprint-mark { top: -6%; right: 42%; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero__media { max-width: 26rem; margin-inline: auto; }
  .hero__frame { aspect-ratio: 1024 / 1040; }
  .hero__frame img { object-position: 50% 15%; }
  .hero__badge { left: 0; right: auto; }
  .hero__title { font-size: clamp(2.1rem, 8vw, 2.9rem); }
}
@media (max-width: 460px) {
  .hero__badge { display: none; }
}

/* ============================================================
   Credibility ribbon
   ============================================================ */
.ribbon { background: var(--espresso); color: #eee2d4; }
.ribbon__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
}
.ribbon__item {
  background: var(--espresso);
  padding: 1.6rem 1.4rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.ribbon__item svg { width: 24px; height: 24px; color: var(--gold-soft); flex: none; margin-top: 2px; }
.ribbon__item b { font-family: var(--font-display); font-size: 1.28rem; color: #fff; display: block; line-height: 1.05; }
.ribbon__item span { font-size: 0.82rem; color: rgba(238, 226, 212, 0.7); line-height: 1.4; }
@media (max-width: 860px) { .ribbon__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .ribbon__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Section header
   ============================================================ */
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.section-head--split {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1.5rem;
  max-width: none;
}
.section-head--split .section-head__text { max-width: 52ch; }
@media (max-width: 720px) { .section-head--split { grid-template-columns: 1fr; } }

/* ============================================================
   Featured services (asymmetric spotlight)
   ============================================================ */
.spotlight { display: grid; gap: 1.4rem; }
.spotlight__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.4rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.spotlight__row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(var(--terracotta), var(--gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.spotlight__row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold-line);
}
.spotlight__row:hover::before { transform: scaleY(1); }
.spotlight__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  color: var(--beige-deep);
  line-height: 0.9;
  font-weight: 500;
}
.spotlight__row:hover .spotlight__num { color: var(--gold-soft); }
.spotlight__body h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); margin-bottom: 0.4rem; }
.spotlight__body p { color: var(--muted); max-width: 58ch; font-size: 0.98rem; margin: 0; }
.spotlight__body .tags { margin-top: 0.8rem; }
.spotlight__cta { flex: none; }
@media (max-width: 760px) {
  .spotlight__row { grid-template-columns: auto 1fr; }
  .spotlight__cta { grid-column: 1 / -1; width: 100%; }
}

.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--terracotta-deep);
  background: rgba(178, 97, 64, 0.09);
  border: 1px solid rgba(178, 97, 64, 0.16);
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
}

/* ============================================================
   Cards grid (laudos / secondary)
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
  gap: 1.1rem;
}
.doc-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.5rem 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.doc-card:hover { transform: translateY(-3px); border-color: var(--gold-line); box-shadow: var(--shadow-sm); color: inherit; }
.doc-card__abbr {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-deep);
}
.doc-card h3 { font-size: 1.14rem; margin: 0; }
.doc-card p { font-size: 0.9rem; color: var(--muted); margin: 0; flex: 1; }
.doc-card__more {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--terracotta-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.doc-card:hover .doc-card__more { gap: 0.55rem; }

/* ============================================================
   Feature list (why choose)
   ============================================================ */
.why {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.why__list { display: grid; gap: 0.2rem; }
.why__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}
.why__item:last-child { border-bottom: 1px solid var(--line); }
.why__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  display: grid;
  place-items: center;
  color: var(--terracotta);
  flex: none;
}
.why__icon svg { width: 21px; height: 21px; }
.why__item h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.why__item p { font-size: 0.94rem; color: var(--muted); margin: 0; }
@media (max-width: 820px) { .why { grid-template-columns: 1fr; } }

/* ============================================================
   Process (sticky steps)
   ============================================================ */
.process { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.process__aside { position: sticky; top: calc(var(--header-h) + 2.5rem); }
.process__progress {
  margin-top: 2rem;
  height: 3px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.process__progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--terracotta), var(--gold)); transition: width 0.3s var(--ease); }
.process__steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.process__step:first-child { border-top: 0; }
.process__num {
  counter-increment: step;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-deep);
  width: 46px; height: 46px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  display: grid; place-items: center;
  flex: none;
}
.process__num::before { content: counter(step, decimal-leading-zero); }
.process__step h3 { font-size: 1.28rem; margin-bottom: 0.35rem; }
.process__step p { color: var(--muted); margin: 0; font-size: 0.98rem; }
@media (max-width: 820px) {
  .process { grid-template-columns: 1fr; }
  .process__aside { position: static; }
  .process__progress { display: none; }
}

/* ============================================================
   Founder section
   ============================================================ */
.founder { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.founder__media { position: relative; }
.founder__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--beige-deep);
}
.founder__frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.founder__media::after {
  content: "";
  position: absolute;
  inset: auto -16px -16px auto;
  width: 55%; height: 55%;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.founder__sig { font-family: var(--font-display); font-style: italic; font-size: 1.7rem; color: var(--terracotta-deep); margin-top: 0.5rem; }
.founder blockquote { margin: 0 0 1.5rem; font-family: var(--font-display); font-size: clamp(1.35rem, 2.6vw, 1.9rem); line-height: 1.35; color: var(--ink); }
@media (max-width: 820px) {
  .founder { grid-template-columns: 1fr; }
  .founder__media { max-width: 24rem; }
}

/* ============================================================
   Regional / service area
   ============================================================ */
.region { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.region__map {
  position: relative;
  aspect-ratio: 4 / 3.4;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(var(--gold-line) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(90deg, var(--gold-line) 1px, transparent 1px) 0 0 / 34px 34px,
    var(--paper);
  background-blend-mode: normal;
  overflow: hidden;
  padding: 1.4rem;
}
.region__map::before {
  content: "Vale do Paraíba · SP";
  position: absolute;
  top: 1.2rem; left: 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-soft);
  font-weight: 600;
}
.region__pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--espresso);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.3rem 0.6rem 0.3rem 0.4rem;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.region__pin::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--terracotta); box-shadow: 0 0 0 3px rgba(178, 97, 64, 0.2); }
.region__pin--primary { color: #fff; background: var(--terracotta-deep); border-color: var(--terracotta-deep); }
.region__pin--primary::before { background: var(--gold-soft); box-shadow: 0 0 0 3px rgba(211, 179, 120, 0.35); }
.region__pin:hover { transform: translateY(-2px); border-color: var(--gold); }
.region__list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 0.3rem; }
.region__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.2rem;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  font-weight: 500;
}
.region__list a:hover { color: var(--terracotta-deep); }
.region__list .city { font-family: var(--font-display); font-size: 1.18rem; }
.region__list svg { width: 18px; height: 18px; color: var(--gold-deep); }
@media (max-width: 820px) { .region { grid-template-columns: 1fr; } .region__map { order: 2; } }

/* ============================================================
   Quote / concept band
   ============================================================ */
.quote-band { text-align: center; }
.quote-band blockquote {
  margin: 0 auto;
  max-width: 26ch;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.3;
  color: #fff;
}
.quote-band .quote-mark { font-size: 3rem; color: var(--gold); line-height: 0; display: block; margin-bottom: 1rem; font-family: var(--font-display); }
.quote-band cite { display: block; margin-top: 1.6rem; font-style: normal; font-size: 0.86rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-soft); }

/* ============================================================
   FAQ / accordion
   ============================================================ */
.faq-cats { display: grid; gap: 2.4rem; }
.faq-cat__title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta-deep);
  margin-bottom: 0.9rem;
}
.faq-cat__title::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__btn {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.35rem 0.2rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: var(--ink);
  line-height: 1.3;
}
.accordion__btn:hover { color: var(--terracotta-deep); }
.accordion__icon { flex: none; width: 26px; height: 26px; position: relative; }
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 13px; height: 1.5px;
  background: var(--terracotta);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}
.accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__btn[aria-expanded="true"] .accordion__icon::after { transform: translate(-50%, -50%) rotate(0); }
.accordion__panel {
  overflow: hidden;
  height: 0;
  transition: height 0.34s var(--ease);
}
.accordion__panel-inner { padding: 0 0.2rem 1.5rem; color: var(--muted); max-width: 70ch; }
.accordion__panel-inner p { font-size: 0.98rem; }
.accordion__panel-inner p:first-child { margin-top: 0; }

/* ============================================================
   CTA panel
   ============================================================ */
.cta-panel { position: relative; overflow: hidden; }
.cta-panel__inner {
  background: var(--espresso);
  color: #efe6da;
  border-radius: var(--radius-xl);
  padding: clamp(2.4rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}
.cta-panel__inner .blueprint-mark { opacity: 0.08; top: -20%; right: -6%; width: 320px; }
.cta-panel h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.cta-panel p { color: rgba(239, 230, 218, 0.82); max-width: 46ch; }
.cta-panel__actions { display: grid; gap: 0.8rem; position: relative; z-index: 2; }
.cta-panel__note { font-size: 0.82rem; color: rgba(239, 230, 218, 0.6); }
@media (max-width: 820px) { .cta-panel__inner { grid-template-columns: 1fr; } }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--espresso); color: rgba(239, 230, 218, 0.72); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer a { color: rgba(239, 230, 218, 0.72); }
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.4rem;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand-logo { width: 150px; margin-bottom: 1.1rem; }
.footer__brand p { font-size: 0.9rem; max-width: 30ch; }
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer__col a { font-size: 0.92rem; }
.footer__contact li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; margin-bottom: 0.7rem; }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold-soft); flex: none; margin-top: 3px; }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer__social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  display: grid; place-items: center;
}
.footer__social a:hover { border-color: var(--gold); background: rgba(255, 255, 255, 0.05); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  font-size: 0.82rem;
  color: rgba(239, 230, 218, 0.55);
}
.footer__disclaimer { font-size: 0.78rem; color: rgba(239, 230, 218, 0.45); max-width: 62ch; margin-top: 1.2rem; line-height: 1.55; }
.footer__bottom-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Floating WhatsApp
   ============================================================ */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px -8px rgba(37, 211, 102, 0.6), 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); color: #fff; box-shadow: 0 16px 34px -8px rgba(37, 211, 102, 0.7); }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 480px) { .wa-float { width: 52px; height: 52px; } .wa-float svg { width: 27px; height: 27px; } }

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb { padding-block: 1.1rem; font-size: 0.84rem; color: var(--muted); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0; align-items: center; }
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--gold-deep); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--terracotta-deep); }
.breadcrumb [aria-current="page"] { color: var(--charcoal); }

/* ============================================================
   Service / content page pieces
   ============================================================ */
.page-hero { position: relative; overflow: clip; padding-block: clamp(2rem, 4vw, 3rem) clamp(2.6rem, 5vw, 4rem); }
.page-hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.page-hero__title { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 1rem; }
.page-hero__lead { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--muted); max-width: 48ch; margin-bottom: 1.6rem; }
.page-hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(195,154,84,0.14), transparent 55%),
    linear-gradient(150deg, var(--beige), var(--beige-deep));
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 2rem;
}
.page-hero__visual .blueprint-mark { position: static; opacity: 0.14; width: 62%; }
.page-hero__visual figcaption {
  position: absolute;
  left: 1.4rem; bottom: 1.2rem;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
@media (max-width: 820px) { .page-hero__grid { grid-template-columns: 1fr; } .page-hero__visual { max-width: 30rem; } }

/* Prose content */
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); margin-top: 0; }
.prose h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
.prose p { color: var(--charcoal); }
.prose ul.check { list-style: none; padding: 0; display: grid; gap: 0.75rem; margin: 1.3em 0; }
.prose ul.check li { display: grid; grid-template-columns: auto 1fr; gap: 0.75rem; align-items: start; }
.prose ul.check li::before {
  content: "";
  width: 22px; height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(178,97,64,0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%23b26140' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
  flex: none;
}

.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 940px) { .content-layout { grid-template-columns: 1fr; } }

/* Two balanced text columns separated by a vertical bar (Para quem / Benefícios) */
.duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.duo__divider {
  width: 1px;
  align-self: stretch;
  background: var(--gold-line);
}
.duo__head {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1.4rem;
}
.duo__head h2 { margin: 0; }
.duo__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  background: rgba(195, 154, 84, 0.12);
  color: var(--terracotta);
  display: grid;
  place-items: center;
  flex: none;
}
.duo__icon svg { width: 22px; height: 22px; }
@media (max-width: 940px) {
  .duo { grid-template-columns: 1fr; gap: 2.2rem; }
  .duo__divider { width: 100%; height: 1px; align-self: auto; }
}

.sidebar-card {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1rem;
}
.sidebar-card h3 { font-size: 1.28rem; margin: 0; }
.sidebar-card p { font-size: 0.92rem; color: var(--muted); margin: 0; }
.sidebar-card .btn { width: 100%; }
.sidebar-card__divider { height: 1px; background: var(--line); }
.sidebar-card__links { display: grid; gap: 0.55rem; }
.sidebar-card__links a { font-size: 0.9rem; font-weight: 500; display: inline-flex; gap: 0.4rem; align-items: center; }
.sidebar-card__links a::before { content: "→"; color: var(--gold-deep); }
@media (max-width: 940px) { .sidebar-card { position: static; } }

/* Blocks with numbered headers */
.block-list { display: grid; gap: 2.4rem; counter-reset: blk; }
.block { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; }
.block__marker {
  counter-increment: blk;
  font-family: var(--font-display);
  font-size: 0.86rem;
  color: var(--gold-deep);
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  flex: none;
}
.block__marker::before { content: counter(blk, decimal-leading-zero); }
.block h2 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin-bottom: 0.5rem; }
@media (max-width: 560px) { .block { grid-template-columns: 1fr; gap: 0.7rem; } }

/* callout */
.callout {
  border-left: 3px solid var(--gold);
  background: var(--beige);
  padding: 1.2rem 1.4rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.96rem;
  color: var(--charcoal);
}
.callout strong { color: var(--terracotta-deep); }

/* deliverables grid */
.deliverables { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); gap: 0.9rem; }
.deliverable {
  display: flex; gap: 0.7rem; align-items: flex-start;
  padding: 1.1rem 1.15rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.deliverable svg { width: 20px; height: 20px; color: var(--gold-deep); flex: none; margin-top: 2px; }
.deliverable span { font-size: 0.92rem; font-weight: 500; color: var(--charcoal); }

/* related services */
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 1.1rem; }
.related-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  display: grid;
  gap: 0.5rem;
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease);
}
.related-card:hover { transform: translateY(-3px); border-color: var(--gold-line); color: inherit; }
.related-card h3 { font-size: 1.12rem; margin: 0; }
.related-card p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ============================================================
   Serviços overview
   ============================================================ */
.svc-group { margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.svc-group__label {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.svc-group__label .idx { font-family: var(--font-display); color: var(--gold-deep); font-size: 1rem; }
.svc-group__label h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0; }

/* ============================================================
   About / timeline
   ============================================================ */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 15px; top: 8px; bottom: 8px;
  width: 1px; background: var(--gold-line);
}
.timeline__item { position: relative; padding: 0 0 2rem 3rem; }
.timeline__item::before {
  content: ""; position: absolute; left: 9px; top: 6px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--terracotta);
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__era { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.3rem; }
.timeline__item h3 { font-size: 1.24rem; margin-bottom: 0.3rem; }
.timeline__item p { color: var(--muted); font-size: 0.96rem; margin: 0; }

.edu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); gap: 0.9rem; }
.edu-item {
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.edu-item b { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); display: block; margin-bottom: 0.2rem; }
.edu-item span { font-size: 0.85rem; color: var(--muted); }

/* ============================================================
   Form
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (max-width: 940px) { .contact-layout { grid-template-columns: 1fr; } }

.form { display: grid; gap: 1.3rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--charcoal); }
.field label .req { color: var(--terracotta); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--terracotta); box-shadow: var(--focus); }
.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid { border-color: #c0492f; }
.field__error { font-size: 0.8rem; color: #c0492f; display: none; }
.field.has-error .field__error { display: block; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #c0492f; }

.consent { display: grid; grid-template-columns: auto 1fr; gap: 0.7rem; align-items: start; }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--terracotta); }
.consent label { font-size: 0.85rem; color: var(--muted); font-weight: 400; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__status { padding: 1rem 1.2rem; border-radius: var(--radius); font-size: 0.92rem; display: none; }
.form__status.is-visible { display: block; }
.form__status--ok { background: rgba(46, 120, 80, 0.12); color: #23663f; border: 1px solid rgba(46, 120, 80, 0.25); }
.form__status--err { background: rgba(192, 73, 47, 0.1); color: #a53b23; border: 1px solid rgba(192, 73, 47, 0.25); }

.contact-aside { display: grid; gap: 1.2rem; }
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.contact-card__item { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.7rem 0; border-top: 1px solid var(--line); }
.contact-card__item:first-of-type { border-top: 0; }
.contact-card__item svg { width: 20px; height: 20px; color: var(--gold-deep); flex: none; margin-top: 2px; }
.contact-card__item b { display: block; font-size: 0.8rem; color: var(--muted); font-weight: 600; }
.contact-card__item a, .contact-card__item span { font-size: 0.98rem; color: var(--charcoal); word-break: break-word; }
.contact-card__item a:hover { color: var(--terracotta-deep); }

/* ============================================================
   Utilities & reveal
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.gold-rule { width: 54px; height: 2px; background: var(--gold); border: 0; margin: 0 0 1.4rem; }
.section-head--center .gold-rule { margin-inline: auto; }

/* Hidden state only applies when JS is active (html.js). Without JS,
   or if anything fails, content stays fully visible. */
.reveal { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.js .reveal { opacity: 0; transform: translateY(22px); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal,
  html.js .reveal.in,
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .spotlight__row, .doc-card, .related-card, .wa-float { transition: none; }
}

/* watermark decorative on sections */
.watermark {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: min(30vw, 340px);
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}
.section > .container { position: relative; z-index: 1; }
