/* Golden Minas | Static, mobile-first, framework-free */
:root {
  --ink: #0b0e10;
  --ink-soft: #121719;
  --ink-card: #161c1e;
  --ink-card-2: #1c2325;
  --paper: #f8f5ef;
  --paper-soft: #ece8df;
  --muted: #a9b1b0;
  --muted-dark: #5e6868;
  --line: rgba(248, 245, 239, 0.14);
  --line-dark: #ded8cd;
  --gold: #e4b34b;
  --gold-strong: #c88d22;
  --gold-soft: #fff0c5;
  --red: #b9081b;
  --green: #1d8c63;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 20px 60px rgba(5, 8, 9, 0.18);
  --shadow-lg: 0 35px 90px rgba(3, 5, 6, 0.28);
  --container: 1180px;
  --font:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --display: Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 206px;
}
body {
  margin: 0;
  min-width: 320px;
  /* clip (e não hidden) impede rolagem horizontal acidental sem criar
     contêiner de rolagem — o cabeçalho sticky continua funcionando. */
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open {
  overflow: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.1;
}
h1,
h2 {
  font-family: var(--display);
  letter-spacing: -0.035em;
}
h3,
h4 {
  letter-spacing: -0.02em;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
::selection {
  background: var(--gold);
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 11px 16px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 9px;
  font-weight: 800;
  transition: transform 0.18s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.narrow {
  width: min(100%, 780px);
  margin-inline: auto;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #7b5514;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}
.eyebrow--light {
  color: var(--gold-soft);
}
.eyebrow--light::before {
  background: var(--gold);
}
.kicker {
  color: var(--muted-dark);
  font-size: 1rem;
  line-height: 1.7;
}
.kicker--light {
  color: rgba(248, 245, 239, 0.76);
}
.text-gold {
  color: var(--gold-strong);
}
.text-muted {
  color: var(--muted-dark);
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 0.25s var(--ease),
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: translateY(0);
}
.button--gold {
  color: #161005;
  background: linear-gradient(135deg, #f9d573, var(--gold) 60%, #c5881e);
  box-shadow: 0 12px 28px rgba(190, 126, 15, 0.25);
}
.button--gold:hover {
  box-shadow: 0 16px 32px rgba(190, 126, 15, 0.34);
}
.button--dark {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 10px 22px rgba(7, 9, 10, 0.17);
}
.button--dark:hover {
  background: #20292b;
}
.button--outline {
  color: var(--ink);
  border-color: #b5b0a7;
  background: rgba(255, 255, 255, 0.12);
}
.button--outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.button--light {
  color: var(--paper);
  border-color: rgba(248, 245, 239, 0.34);
  background: rgba(10, 14, 15, 0.2);
  backdrop-filter: blur(6px);
}
.button--light:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}
.button--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.83rem;
}
.button svg {
  width: 18px;
  height: 18px;
  flex: none;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.button-row--center {
  justify-content: center;
}
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 800;
  color: #765212;
  border-bottom: 1px solid currentColor;
}
.inline-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.inline-link:hover::after {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  color: var(--paper);
  background: rgba(10, 14, 16, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  background: rgba(10, 14, 16, 0.99);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 194px;
}
.brand {
  display: inline-flex;
  min-width: 0;
  flex: none;
  align-items: center;
  gap: 15px;
  color: var(--paper);
}
.brand__inss {
  display: grid;
  flex: 0 0 auto;
  gap: 2px;
  min-width: 101px;
  padding-right: 14px;
  border-right: 1px solid rgba(228, 179, 75, 0.38);
  color: rgba(248, 245, 239, 0.83);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.095em;
  line-height: 1.08;
  text-align: right;
  white-space: nowrap;
}
.brand__inss strong {
  color: var(--gold-soft);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-shadow: 0 0 13px rgba(228, 179, 75, 0.34);
}
.brand__logo {
  display: block;
  width: 250px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.95))
    drop-shadow(0 0 10px rgba(255, 231, 164, 0.18)) contrast(1.1) saturate(1.1)
    brightness(1.05);
}
.brand__mark {
  width: 50px;
  height: 48px;
  object-fit: contain;
}
.brand__wordmark {
  display: grid;
  gap: 1px;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  white-space: nowrap;
}
.brand__wordmark small {
  color: var(--gold-soft);
  font-family: var(--font);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav__links {
  display: flex;
  align-items: center;
  gap: 21px;
}
.main-nav__links > a {
  position: relative;
  color: rgba(248, 245, 239, 0.8);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}
.main-nav__links > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}
.main-nav__links > a:hover,
.main-nav__links > a[aria-current="page"] {
  color: var(--paper);
}
.main-nav__links > a:hover::after,
.main-nav__links > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header__cta {
  flex: none;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: none;
  color: var(--paper);
}
.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.menu-button.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-button.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(730px, calc(100svh - 194px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 11, 12, 0.96) 0%,
    rgba(7, 11, 12, 0.88) 36%,
    rgba(7, 11, 12, 0.33) 68%,
    rgba(7, 11, 12, 0.25) 100%
  );
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, rgba(7, 11, 12, 0.46));
}
.hero__inner {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  padding-block: 98px 82px;
}
.hero__content {
  max-width: 760px;
}
.hero h1 {
  margin-top: 17px;
  color: var(--paper);
  font-size: clamp(2.65rem, 5.25vw, 5.15rem);
  text-wrap: balance;
}
.hero-keyword {
  display: inline;
  color: #ffe9a7;
  background: linear-gradient(
    105deg,
    #e2a92f 0%,
    #fff3b7 33%,
    #e6b044 50%,
    #fff2af 67%,
    #cf8e16 100%
  );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(228, 179, 75, 0.32);
  animation: gold-shimmer 5s linear infinite;
}
.hero-title__rest {
  color: var(--paper);
}
.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.hero-keywords span {
  padding: 6px 10px;
  color: #ffe9a7;
  border: 1px solid rgba(255, 227, 145, 0.5);
  border-radius: 999px;
  background: rgba(6, 8, 8, 0.46);
  box-shadow:
    inset 0 0 16px rgba(228, 179, 75, 0.09),
    0 0 12px rgba(228, 179, 75, 0.12);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@keyframes gold-shimmer {
  to {
    background-position: 240% 0;
  }
}
.hero .kicker {
  max-width: 650px;
  margin-top: 20px;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}
.hero .kicker strong {
  color: var(--gold-soft);
}
.hero .button-row {
  margin-top: 24px;
}
.hero__footnote {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 21px;
  color: rgba(248, 245, 239, 0.7);
  font-size: 0.78rem;
}
.hero__footnote span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero__footnote span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.hero__line {
  position: absolute;
  z-index: -1;
  right: 7%;
  bottom: -30%;
  width: min(46vw, 660px);
  aspect-ratio: 1;
  border: 1px solid rgba(243, 191, 79, 0.24);
  border-radius: 50%;
  animation: turn 28s linear infinite;
}
.hero__line::before,
.hero__line::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(243, 191, 79, 0.16);
  border-radius: 50%;
}
.hero__line::after {
  inset: 28%;
}
@keyframes turn {
  to {
    transform: rotate(360deg);
  }
}

/* Pages / breadcrumbs */
.breadcrumb-wrap {
  background: #eff0eb;
  border-bottom: 1px solid #dddcd5;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 48px;
  align-items: center;
  color: #65706f;
  font-size: 0.78rem;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumbs li + li::before {
  content: "/";
  color: #9ba29f;
}
.breadcrumbs a:hover {
  color: var(--ink);
  text-decoration: underline;
}
.service-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 9vw, 116px) 0;
  background: var(--ink);
  color: var(--paper);
}
.service-hero--image {
  background: var(--ink) center/cover no-repeat;
}
.service-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 13, 14, 0.97),
    rgba(9, 13, 14, 0.87) 46%,
    rgba(9, 13, 14, 0.53)
  );
}
.service-hero--image > .container {
  position: relative;
}
.service-hero h1 {
  max-width: 830px;
  margin-top: 16px;
  color: var(--paper);
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  text-wrap: balance;
}
.service-hero__keyword {
  color: #ffe9a7;
  background: linear-gradient(
    105deg,
    #e2a92f,
    #fff3b7 35%,
    #db9c29 54%,
    #fff0a8 72%,
    #cc8b17
  );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(228, 179, 75, 0.3);
  animation: gold-shimmer 5s linear infinite;
}
.service-hero .kicker {
  max-width: 660px;
  margin-top: 21px;
}
.service-hero .button-row {
  margin-top: 30px;
}
.service-hero__side-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 10px 14px;
  color: rgba(248, 245, 239, 0.85);
  border: 1px solid rgba(248, 245, 239, 0.17);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
}
.service-hero__side-note strong {
  color: var(--gold-soft);
}

/* General sections */
.section {
  padding-block: clamp(64px, 8vw, 112px);
}
.section--paper {
  background: var(--paper);
}
.section--soft {
  background: #eeece6;
}
.section--dark {
  color: var(--paper);
  background: var(--ink);
}
.section--dark h2,
.section--dark h3 {
  color: var(--paper);
}
.section--white {
  background: #fff;
}
.section-header {
  display: grid;
  gap: 13px;
  max-width: 760px;
}
.section-header--center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.35rem);
  text-wrap: balance;
}
.section-title--wide {
  max-width: 890px;
}
.section-intro {
  max-width: 680px;
  color: var(--muted-dark);
  font-size: 1.03rem;
  line-height: 1.75;
}
.section--dark .section-intro {
  color: rgba(248, 245, 239, 0.72);
}
.section-header + .grid,
.section-header + .content-grid,
.section-header + .process,
.section-header + .faq-list,
.section-header + .article-layout,
.section-header + .cards-grid {
  margin-top: 42px;
}

/* Trust / fact bar */
.trust-bar {
  background: #f0b73e;
  border-block: 1px solid #d49b1b;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 20px 25px;
  border-left: 1px solid rgba(63, 40, 0, 0.19);
}
.trust-item:first-child {
  border-left: 0;
}
.trust-item strong {
  color: #241705;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
}
.trust-item span {
  color: rgba(36, 23, 5, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}
.trust-note {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 21px;
  color: rgba(36, 23, 5, 0.78);
  text-align: center;
  font-size: 0.73rem;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.info-card {
  height: 100%;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 8px 22px rgba(23, 30, 31, 0.035);
}
.info-card--dark {
  background: var(--ink-card);
  border-color: rgba(255, 255, 255, 0.13);
}
.info-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 21px;
  color: #62450d;
  border: 1px solid rgba(202, 146, 31, 0.42);
  border-radius: 14px;
  background: #fff6d9;
}
.info-card--dark .info-card__icon {
  color: var(--gold-soft);
  background: rgba(228, 179, 75, 0.09);
  border-color: rgba(228, 179, 75, 0.29);
}
.info-card__icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-card h3 {
  margin-bottom: 9px;
  font-size: 1.15rem;
}
.info-card--dark h3 {
  color: var(--paper);
}
.info-card p {
  color: var(--muted-dark);
  font-size: 0.91rem;
  line-height: 1.68;
}
.info-card--dark p {
  color: rgba(248, 245, 239, 0.67);
}
.info-card__number {
  display: block;
  margin-bottom: 22px;
  color: #9a6710;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.info-card--dark .info-card__number {
  color: var(--gold);
}

/* Split content */
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
}
.content-grid--reverse > :first-child {
  order: 2;
}
.content-grid--reverse > :last-child {
  order: 1;
}
.content-copy {
  display: grid;
  gap: 18px;
}
.content-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}
.content-copy h3 {
  margin-top: 4px;
  font-size: 1.2rem;
}
.content-copy p {
  color: var(--muted-dark);
  line-height: 1.76;
}
.section--dark .content-copy p {
  color: rgba(248, 245, 239, 0.72);
}
.content-copy .button-row {
  margin-top: 7px;
}
.media-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink-card);
  box-shadow: var(--shadow);
}
.media-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.media-card__caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 15px 17px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(8, 12, 13, 0.76);
  backdrop-filter: blur(8px);
  font-size: 0.79rem;
  line-height: 1.5;
}
.media-card__caption strong {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-soft);
  font-size: 0.83rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
}
.team-intro {
  min-height: 400px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--paper);
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(233, 184, 75, 0.35),
      transparent 26%
    ),
    linear-gradient(135deg, #1e2526, #0b0e10 60%);
  position: relative;
}
.team-intro::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -110px;
  top: -80px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 32px rgba(255, 255, 255, 0.025),
    0 0 0 64px rgba(255, 255, 255, 0.018);
}
.team-intro > * {
  position: relative;
  z-index: 1;
}
.team-intro__emblem {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: var(--display);
  font-size: 1.75rem;
}
.team-intro h2 {
  color: var(--paper);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  max-width: 460px;
}
.team-intro p {
  max-width: 430px;
  margin-top: 15px;
  color: rgba(248, 245, 239, 0.74);
}
.team-members {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.team-member {
  min-height: 198px;
  padding: 26px;
  border: 1px solid #ded9ce;
  border-radius: var(--radius);
  background: #fff;
}
.team-member__avatar {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #452e07;
  background: linear-gradient(135deg, #ffe7a7, #d69720);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
}
.team-member h3 {
  font-size: 1.15rem;
}
.team-member p {
  margin-top: 5px;
  color: var(--muted-dark);
  font-size: 0.85rem;
  line-height: 1.5;
}
.team-note {
  grid-column: 1/-1;
  padding: 14px 16px;
  color: #5e5c56;
  border-left: 3px solid var(--gold-strong);
  background: #f1eee7;
  font-size: 0.79rem;
}

/* Problem / visual */
.problem-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  margin-top: 42px;
  align-items: stretch;
}
.problem-prompt {
  padding: clamp(26px, 5vw, 52px);
  border-radius: var(--radius-lg);
  color: var(--paper);
  background: linear-gradient(145deg, #1d2425, #0c1011);
}
.problem-prompt h3 {
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}
.problem-prompt p {
  margin-top: 17px;
  color: rgba(248, 245, 239, 0.7);
}
.problem-prompt .button {
  margin-top: 28px;
}
.issue-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.issue {
  padding: 24px;
  border: 1px solid #dcd7cd;
  border-radius: var(--radius);
  background: #fff;
}
.issue span {
  display: block;
  margin-bottom: 12px;
  color: #a16d12;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.issue h3 {
  font-size: 1.08rem;
}
.issue p {
  margin-top: 7px;
  color: var(--muted-dark);
  font-size: 0.87rem;
  line-height: 1.6;
}

/* Process */
.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process::before {
  content: "";
  position: absolute;
  top: 37px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: #d6d1c7;
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 0 10px;
}
.process-step__num {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: 21px;
  border: 1px solid #c7bdab;
  border-radius: 50%;
  color: #5b410e;
  background: #fbf8f1;
  font-family: var(--display);
  font-size: 1.42rem;
}
.process-step h3 {
  font-size: 1.11rem;
}
.process-step p {
  margin-top: 8px;
  color: var(--muted-dark);
  font-size: 0.86rem;
  line-height: 1.6;
}
.process--dark::before {
  background: rgba(255, 255, 255, 0.18);
}
.process--dark .process-step__num {
  color: var(--gold-soft);
  border-color: rgba(228, 179, 75, 0.48);
  background: var(--ink-card);
}
.process--dark .process-step h3 {
  color: var(--paper);
}
.process--dark .process-step p {
  color: rgba(248, 245, 239, 0.67);
}

/* Simulator / forms */
.calculator-section {
  position: relative;
  overflow: hidden;
  background: #e5e1d7;
}
.calculator-section::before {
  content: "";
  position: absolute;
  width: 600px;
  aspect-ratio: 1;
  top: -360px;
  right: -250px;
  border: 1px solid rgba(196, 135, 25, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(196, 135, 25, 0.035),
    0 0 0 104px rgba(196, 135, 25, 0.025);
}
.calculator-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
  margin-top: 42px;
}
.calculator-aside {
  padding: 32px;
  border-radius: var(--radius-lg);
  color: var(--paper);
  background: var(--ink);
}
.calculator-aside h3 {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.85rem;
}
.calculator-aside p {
  margin-top: 13px;
  color: rgba(248, 245, 239, 0.7);
  font-size: 0.92rem;
}
.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  color: inherit;
  font-size: 0.85rem;
  line-height: 1.5;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}
.calculator-aside .check-list li {
  color: rgba(248, 245, 239, 0.79);
}
.calculator-card {
  padding: clamp(23px, 4vw, 38px);
  border: 1px solid #d1cabe;
  border-radius: var(--radius-lg);
  background: #fffdf8;
  box-shadow: var(--shadow);
}
.calculator-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}
.calculator-card h3 {
  font-size: 1.55rem;
}
.calculator-card__head p {
  margin-top: 5px;
  color: var(--muted-dark);
  font-size: 0.85rem;
  line-height: 1.55;
}
.calculator-badge {
  flex: none;
  display: inline-flex;
  padding: 6px 10px;
  color: #6c4c0c;
  border: 1px solid #f0ce77;
  border-radius: 999px;
  background: #fff3ce;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-grid .field--wide {
  grid-column: 1/-1;
}
.field {
  display: grid;
  gap: 7px;
}
.field label {
  color: #344040;
  font-size: 0.79rem;
  font-weight: 800;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 47px;
  padding: 11px 12px;
  border: 1px solid #c7c8c3;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #bd8120;
  box-shadow: 0 0 0 3px rgba(228, 179, 75, 0.24);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #89908e;
}
.field small {
  color: #697271;
  font-size: 0.72rem;
  line-height: 1.45;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  grid-column: 1/-1;
  color: #636b69;
  font-size: 0.74rem;
  line-height: 1.45;
}
.form-consent input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: #bd8120;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.form-status {
  min-height: 20px;
  margin-top: 12px;
  color: #426e5d;
  font-size: 0.79rem;
  font-weight: 700;
}
.simulator-result {
  display: none;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid #dab455;
  border-radius: 14px;
  background: #fff7df;
}
.simulator-result.is-visible {
  display: block;
  animation: slide-up 0.35s var(--ease) both;
}
.simulator-result__label {
  color: #7a5613;
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.simulator-result h4 {
  margin-top: 6px;
  color: #281d09;
  font-size: 1.23rem;
}
.simulator-result p {
  margin-top: 8px;
  color: #51472f;
  font-size: 0.88rem;
  line-height: 1.63;
}
.simulator-result ul {
  display: grid;
  gap: 7px;
  margin-top: 15px;
}
.simulator-result li {
  position: relative;
  padding-left: 18px;
  color: #51472f;
  font-size: 0.82rem;
}
.simulator-result li::before {
  content: "•";
  position: absolute;
  left: 3px;
  color: #a46b0b;
}
.simulator-result .button {
  margin-top: 18px;
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Service content / articles */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}
.article-body {
  min-width: 0;
}
.article-body > * + * {
  margin-top: 24px;
}
.article-body h2 {
  margin-top: 45px;
  font-size: clamp(1.72rem, 3.2vw, 2.55rem);
}
.article-body h3 {
  margin-top: 30px;
  font-size: 1.24rem;
}
.article-body p,
.article-body li {
  color: #4e5958;
  line-height: 1.8;
}
.article-body ul,
.article-body ol {
  display: grid;
  gap: 11px;
  margin-left: 2px;
}
.article-body ul li {
  position: relative;
  padding-left: 24px;
}
.article-body ul li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 1px;
  width: 8px;
  height: 8px;
  border: 1px solid #b87c15;
  border-radius: 50%;
}
.article-body ol {
  counter-reset: article-list;
}
.article-body ol li {
  position: relative;
  padding-left: 35px;
  counter-increment: article-list;
}
.article-body ol li::before {
  content: counter(article-list, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  color: #9c6910;
  font-size: 0.75rem;
  font-weight: 900;
}
.article-body strong {
  color: #293333;
}
.article-body a {
  color: #855914;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}
.article-callout {
  margin-top: 34px;
  padding: 23px 25px;
  border-left: 4px solid var(--gold-strong);
  border-radius: 0 13px 13px 0;
  background: #f1eee6;
}
.article-callout strong {
  display: block;
  margin-bottom: 5px;
}
.article-callout p {
  color: #53605e;
  font-size: 0.89rem;
  line-height: 1.65;
}
.article-table-wrap {
  overflow-x: auto;
  margin-top: 27px;
  border: 1px solid #dfdacf;
  border-radius: 14px;
}
.article-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: #fff;
}
.article-table th {
  padding: 13px 16px;
  color: #3d2b0a;
  background: #fff0c8;
  font-size: 0.78rem;
  text-align: left;
}
.article-table td {
  padding: 14px 16px;
  color: #54605e;
  border-top: 1px solid #e7e1d7;
  font-size: 0.84rem;
  line-height: 1.5;
  vertical-align: top;
}
.article-toc {
  position: sticky;
  top: 192px;
  padding: 21px;
  border: 1px solid #dbd7cc;
  border-radius: 16px;
  background: #f2f0ea;
}
.article-toc h2 {
  margin-bottom: 12px;
  color: #2b3534;
  font-family: var(--font);
  font-size: 0.83rem;
  letter-spacing: 0.03em;
}
.article-toc a {
  display: block;
  padding: 8px 0;
  color: #5a6665;
  border-bottom: 1px solid #dcd7ce;
  font-size: 0.79rem;
  line-height: 1.4;
}
.article-toc a:last-child {
  border-bottom: 0;
}
.article-toc a:hover {
  color: #815813;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 17px;
  color: rgba(248, 245, 239, 0.66);
  font-size: 0.78rem;
}
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.article-meta span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 11px;
  max-width: 860px;
}
.faq-list--center {
  margin-inline: auto;
}
.faq-item {
  border: 1px solid #d8d4ca;
  border-radius: 13px;
  background: #fff;
  overflow: hidden;
}
.faq-item[open] {
  border-color: #c99834;
  box-shadow: 0 10px 20px rgba(74, 57, 21, 0.05);
}
.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 19px 50px 19px 20px;
  color: #273130;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  color: #8d5d0d;
  font-size: 1.45rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item__answer {
  padding: 0 20px 20px;
  color: #596462;
  font-size: 0.9rem;
  line-height: 1.7;
}
.section--dark .faq-item {
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--ink-card);
}
.section--dark .faq-item[open] {
  border-color: rgba(228, 179, 75, 0.72);
}
.section--dark .faq-item summary {
  color: var(--paper);
}
.section--dark .faq-item__answer {
  color: rgba(248, 245, 239, 0.72);
}

/* CTA */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 58px);
  border-radius: var(--radius-lg);
  color: var(--paper);
  background: linear-gradient(120deg, #141b1c, #0b0e10);
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -190px;
  right: -100px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(228, 179, 75, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(228, 179, 75, 0.055),
    0 0 0 96px rgba(228, 179, 75, 0.033);
}
.cta-banner > * {
  position: relative;
  z-index: 1;
}
.cta-banner__inner {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
.cta-banner h2 {
  max-width: 650px;
  color: var(--paper);
  font-size: clamp(1.9rem, 3.5vw, 3.1rem);
}
.cta-banner p {
  max-width: 600px;
  margin-top: 12px;
  color: rgba(248, 245, 239, 0.7);
}
.cta-banner .button-row {
  flex: none;
}

/* Blog */
.blog-hero {
  padding: clamp(65px, 9vw, 106px) 0;
  background: #edeae1;
}
.blog-hero h1 {
  max-width: 780px;
  margin-top: 15px;
  font-size: clamp(2.4rem, 5vw, 4.55rem);
}
.blog-hero p {
  max-width: 650px;
  margin-top: 19px;
  color: var(--muted-dark);
  font-size: 1.05rem;
  line-height: 1.72;
}
.blog-featured {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  margin-top: 42px;
  border: 1px solid #d9d4ca;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}
.blog-featured__media {
  min-height: 340px;
}
.blog-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 5vw, 48px);
}
.post-category {
  color: #8c5d12;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-featured h2 {
  margin-top: 13px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.blog-featured p {
  margin-top: 12px;
  color: var(--muted-dark);
  font-size: 0.92rem;
  line-height: 1.65;
}
.blog-featured .inline-link {
  width: max-content;
  margin-top: 20px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}
.post-card {
  display: flex;
  height: 100%;
  min-height: 255px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid #dad5cb;
  border-radius: var(--radius);
  background: #fff;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.post-card:hover {
  transform: translateY(-5px);
  border-color: #c69a42;
  box-shadow: 0 15px 28px rgba(34, 41, 40, 0.1);
}
.post-card h2,
.post-card h3 {
  margin-top: 12px;
  font-size: 1.22rem;
}
.post-card p {
  margin-top: 10px;
  color: var(--muted-dark);
  font-size: 0.85rem;
  line-height: 1.62;
}
.post-card .inline-link {
  width: max-content;
  margin-top: auto;
  padding-top: 17px;
}
.post-card--featured {
  background: var(--ink-card);
  border-color: var(--ink-card);
}
.post-card--featured h2,
.post-card--featured h3 {
  color: var(--paper);
}
.post-card--featured p {
  color: rgba(248, 245, 239, 0.66);
}
.post-card--featured .post-category {
  color: var(--gold-soft);
}
.post-card--featured .inline-link {
  color: var(--gold-soft);
}

/* Cases */
.case-ethics {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid #dcbf72;
  border-radius: 15px;
  background: #fff5d9;
}
.case-ethics svg {
  width: 31px;
  height: 31px;
  stroke: #85580e;
  fill: none;
  stroke-width: 1.5;
}
.case-ethics h2 {
  font-family: var(--font);
  font-size: 1.1rem;
}
.case-ethics p {
  margin-top: 5px;
  color: #5b5039;
  font-size: 0.9rem;
  line-height: 1.65;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 35px;
}
.case-card {
  padding: 26px;
  border: 1px solid #d9d4c9;
  border-radius: var(--radius);
  background: #fff;
}
.case-card__state {
  display: inline-flex;
  padding: 5px 9px;
  color: #6d561d;
  border: 1px solid #e9c971;
  border-radius: 999px;
  background: #fff6d6;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.case-card h2,
.case-card h3 {
  margin-top: 15px;
  font-size: 1.18rem;
}
.case-card p {
  margin-top: 10px;
  color: var(--muted-dark);
  font-size: 0.86rem;
  line-height: 1.62;
}
.case-card ul {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.case-card li {
  padding-top: 8px;
  border-top: 1px solid #ebe7df;
  color: #55605e;
  font-size: 0.8rem;
}
.case-card li strong {
  display: block;
  color: #293130;
}
.case-grid--success {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 960px;
}
.cases-proof {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 35px;
}
.cases-proof__media {
  margin: 0;
}
.cases-proof__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.cases-proof .case-grid--success {
  margin-top: 0;
  max-width: none;
}
.case-card--success {
  position: relative;
  overflow: hidden;
  border-color: rgba(200, 141, 34, 0.55);
  background: linear-gradient(145deg, #fffaf0, #f7ead0);
  box-shadow: 0 16px 34px rgba(87, 61, 11, 0.1);
}
.case-card--success::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 112px;
  height: 112px;
  border-radius: 0 0 0 112px;
  background: radial-gradient(
    circle at top right,
    rgba(228, 179, 75, 0.3),
    transparent 68%
  );
  content: "";
  pointer-events: none;
}
.case-card--success h3 {
  position: relative;
  margin-top: 15px;
}
.case-card__values {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
}
.case-card__values > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(157, 111, 24, 0.18);
}
.case-card__values dt {
  color: #72500c;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.case-card__values dd {
  margin: 0;
  color: #b67812;
  font-family: var(--display);
  font-size: clamp(1.22rem, 2vw, 1.58rem);
  font-weight: 700;
  line-height: 1.08;
  text-align: right;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.case-card__values--saving {
  margin-top: 3px;
  padding: 12px 13px !important;
  border: 1px solid rgba(199, 144, 32, 0.52) !important;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(255, 234, 171, 0.98),
    rgba(228, 179, 75, 0.48)
  );
}
.case-card__values--saving dt {
  color: #382500;
}
.case-card__values--saving dd {
  color: #6d3d00;
  font-size: clamp(1.34rem, 2.2vw, 1.78rem);
}
.case-card__note {
  position: relative;
  margin-top: 17px !important;
  color: #665b48 !important;
  font-size: 0.75rem !important;
  line-height: 1.5 !important;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 30px;
  align-items: start;
}
.contact-panel {
  padding: 32px;
  color: var(--paper);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #1c2425, #0a0d0e);
}
.contact-panel h2 {
  color: var(--paper);
  font-size: 2rem;
}
.contact-panel > p {
  margin-top: 14px;
  color: rgba(248, 245, 239, 0.7);
  font-size: 0.92rem;
}
.contact-channel {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-channel svg {
  width: 22px;
  height: 22px;
  flex: none;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}
.contact-channel strong {
  display: block;
  color: var(--paper);
  font-size: 0.91rem;
}
.contact-channel p,
.contact-channel a {
  color: rgba(248, 245, 239, 0.7);
  font-size: 0.83rem;
}
.contact-channel a:hover {
  color: var(--gold-soft);
}
.contact-form {
  padding: clamp(24px, 4vw, 39px);
  border: 1px solid #d9d4ca;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-form h2 {
  font-size: 1.75rem;
}
.contact-form > p {
  margin-top: 7px;
  color: var(--muted-dark);
  font-size: 0.9rem;
}

/* 404 */
.not-found {
  min-height: calc(100svh - 162px);
  display: grid;
  place-items: center;
  padding: 60px 20px;
  color: var(--paper);
  text-align: center;
  background: radial-gradient(
    circle at 50% 24%,
    #344041 0,
    #111719 33%,
    #090c0d 75%
  );
}
.not-found__content {
  max-width: 680px;
}
.not-found__code {
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(7rem, 22vw, 14rem);
  line-height: 0.8;
  text-shadow: 0 0 50px rgba(228, 179, 75, 0.18);
}
.not-found h1 {
  margin-top: 25px;
  color: var(--paper);
  font-size: clamp(2.1rem, 5vw, 4rem);
}
.not-found p {
  margin: 16px auto 0;
  max-width: 550px;
  color: rgba(248, 245, 239, 0.7);
}
.not-found__keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.not-found__keywords span {
  padding: 6px 10px;
  color: var(--gold-soft);
  border: 1px solid rgba(228, 179, 75, 0.42);
  border-radius: 999px;
  background: rgba(228, 179, 75, 0.08);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.055em;
}
.not-found .button-row {
  justify-content: center;
  margin-top: 29px;
}

/* Footer */
.site-footer {
  color: rgba(248, 245, 239, 0.72);
  background: #080a0b;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-block: 62px 46px;
}
.footer-brand img {
  width: 220px;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 3px 9px rgba(0, 0, 0, 0.9)) contrast(1.07)
    brightness(1.04);
}
.footer-brand p {
  max-width: 330px;
  margin-top: 16px;
  font-size: 0.85rem;
  line-height: 1.62;
}
.footer-company-keyword {
  color: var(--gold-soft);
  font-weight: 900;
  letter-spacing: 0.035em;
}
.footer-col h2 {
  margin-bottom: 14px;
  color: var(--paper);
  font-family: var(--font);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.footer-col ul {
  display: grid;
  gap: 9px;
}
.footer-col li,
.footer-col a {
  font-size: 0.83rem;
  line-height: 1.45;
}
.footer-col a:hover {
  color: var(--gold-soft);
}
.footer-nationwide {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}
.footer-keyword-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px 17px;
  min-height: 51px;
  padding: 10px 20px;
}
.footer-keyword {
  display: inline-block;
  color: #ffe8a0;
  background: linear-gradient(
    105deg,
    #c98718,
    #fff2ae 36%,
    #dfaa35 54%,
    #ffeca7 72%,
    #be7910
  );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.075em;
  line-height: 1.3;
  text-shadow: 0 0 14px rgba(228, 179, 75, 0.25);
  animation: gold-shimmer 5.5s linear infinite;
}
.footer-keyword-strip__note {
  color: rgba(248, 245, 239, 0.68);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  padding: 20px 0;
  color: rgba(248, 245, 239, 0.5);
  font-size: 0.73rem;
}
.footer-bottom a:hover {
  color: var(--paper);
}

/* WhatsApp + Toast */
.whatsapp-float {
  position: fixed;
  z-index: 950;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px 13px 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: #14804f;
  box-shadow: 0 12px 28px rgba(4, 50, 29, 0.32);
  font-size: 0.8rem;
  font-weight: 900;
  transition:
    transform 0.2s var(--ease),
    background 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #0d6a3f;
}
.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.toast {
  position: fixed;
  z-index: 10001;
  right: 20px;
  bottom: 84px;
  max-width: 320px;
  padding: 14px 17px;
  color: #eaf7f0;
  border: 1px solid rgba(147, 229, 190, 0.3);
  border-radius: 12px;
  background: #15573d;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.toast.is-visible {
  opacity: 1;
  transform: none;
}

/* Consentimento de medição: só aparece após a configuração de IDs reais. */
.tracking-consent {
  position: fixed;
  z-index: 10002;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(680px, calc(100% - 40px));
  padding: 18px;
  color: var(--paper);
  border: 1px solid rgba(228, 179, 75, 0.48);
  border-radius: 16px;
  background: linear-gradient(145deg, #171d1e, #080a0b);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.48);
}
.tracking-consent__copy strong {
  color: var(--gold-soft);
  font-size: 0.87rem;
}
.tracking-consent__copy p {
  margin-top: 4px;
  color: rgba(248, 245, 239, 0.72);
  font-size: 0.76rem;
  line-height: 1.52;
}
.tracking-consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.tracking-consent button,
.tracking-consent__privacy,
.tracking-preferences {
  min-height: 36px;
  padding: 8px 11px;
  color: var(--paper);
  border: 1px solid rgba(255, 231, 164, 0.33);
  border-radius: 8px;
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}
.tracking-consent__accept {
  color: #251804 !important;
  border-color: var(--gold) !important;
  background: linear-gradient(135deg, #ffe8a3, var(--gold)) !important;
}
.tracking-consent__privacy:hover,
.tracking-consent__deny:hover,
.tracking-preferences:hover {
  color: #251804;
  border-color: var(--gold);
  background: var(--gold);
}
.tracking-preferences {
  min-height: auto;
  margin: 0;
  padding: 0;
  color: inherit;
  border: 0;
  border-radius: 0;
  background: none;
  text-decoration: underline;
  cursor: pointer;
}

/* Motion */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
/* O deslocamento lateral usa clamp() para nunca ultrapassar a largura útil
   em telas estreitas — evita rolagem horizontal acidental no celular. */
[data-reveal="left"] {
  transform: translate3d(clamp(-20px, -3vw, -8px), 0, 0);
}
[data-reveal="right"] {
  transform: translate3d(clamp(8px, 3vw, 20px), 0, 0);
}
[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible {
  transform: none;
}

/* Responsive */
@media (max-width: 1200px) {
  html {
    scroll-padding-top: 172px;
  }
  .header__inner {
    min-height: 160px;
  }
  .brand {
    gap: 10px;
  }
  .brand__inss {
    min-width: 86px;
    padding-right: 10px;
    font-size: 0.56rem;
  }
  .brand__inss strong {
    font-size: 0.8rem;
  }
  .brand__logo {
    width: 205px;
  }
  .hero {
    min-height: min(730px, calc(100svh - 160px));
  }
  .main-nav__links {
    gap: 15px;
  }
  .main-nav__links > a {
    font-size: 0.77rem;
  }
  .header__cta {
    display: none;
  }
  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-main > :last-child {
    grid-column: 2;
  }
}
@media (max-width: 980px) {
  .cases-proof {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .cases-proof__media img {
    max-width: 280px;
    margin-inline: auto;
  }
  html {
    scroll-padding-top: 166px;
  }
  .site-header {
    position: sticky;
  }
  .header__inner {
    min-height: 152px;
  }
  /* "INSS DE OBRA. BRASIL" permanece sempre à direita da logomarca,
     inclusive no celular — o cabeçalho fica mais baixo e o conteúdo respira. */
  .brand {
    max-width: none;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .brand__inss {
    display: grid;
    gap: 3px;
    min-width: 0;
    margin-left: 0;
    padding: 0;
    border: 0;
    font-size: 0.58rem;
    letter-spacing: 0.085em;
    line-height: 1.12;
    text-align: left;
  }
  .brand__inss strong {
    font-size: 0.74rem;
    letter-spacing: 0.13em;
  }
  .brand__logo {
    width: 185px;
  }
  .menu-button {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 152px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990;
    display: block;
    padding: 29px 20px;
    overflow-y: auto;
    visibility: hidden;
    background: rgba(7, 10, 11, 0.98);
    opacity: 0;
    transform: translateY(-7px);
    transition:
      visibility 0s linear 0.25s,
      opacity 0.25s ease,
      transform 0.25s ease;
  }
  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }
  .main-nav__links {
    display: grid;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .main-nav__links > a {
    display: block;
    padding: 17px 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--paper);
    font-size: 1rem;
  }
  .main-nav__links > a::after {
    display: none;
  }
  .main-nav::after {
    content: "Fale com a Golden Minas";
    display: block;
    max-width: 600px;
    margin: 27px auto 0;
    color: var(--gold-soft);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .hero {
    min-height: 650px;
  }
  .hero__inner {
    padding-block: 86px 76px;
  }
  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(7, 11, 12, 0.96) 0%,
      rgba(7, 11, 12, 0.82) 60%,
      rgba(7, 11, 12, 0.45) 100%
    );
  }
  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(3) {
    border-left: 0;
  }
  .content-grid,
  .team-grid,
  .calculator-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .content-grid--reverse > :first-child,
  .content-grid--reverse > :last-child {
    order: initial;
  }
  .team-intro {
    min-height: 330px;
  }
  .problem-layout {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }
  .process::before {
    display: none;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-toc {
    position: static;
    order: -1;
  }
  .blog-grid,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main > :last-child {
    grid-column: auto;
  }
}
@media (max-width: 620px) {
  html {
    scroll-padding-top: 140px;
  }
  .container {
    width: min(100% - 32px, var(--container));
  }
  .section {
    padding-block: 62px;
  }
  .hero {
    min-height: calc(100svh - 126px);
  }
  .header__inner {
    min-height: 126px;
  }
  .brand__inss {
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }
  .brand__inss strong {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
  .brand__logo {
    width: 150px;
  }
  .main-nav {
    top: 126px;
  }
  .hero__inner {
    width: min(100% - 32px, var(--container));
    padding-block: 64px 72px;
  }
  .hero-keywords span {
    padding: 5px 8px;
    font-size: 0.61rem;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(7, 11, 12, 0.96), rgba(7, 11, 12, 0.74)),
      linear-gradient(0deg, rgba(7, 11, 12, 0.7), transparent);
  }
  .hero h1 {
    font-size: clamp(2.42rem, 12vw, 3.5rem);
  }
  .hero .button-row,
  .service-hero .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero .button,
  .service-hero .button {
    width: 100%;
  }
  .button-row:not(.button-row--center) .button {
    flex: 1 1 220px;
  }
  .trust-item {
    min-height: 99px;
    padding: 17px 16px;
  }
  .trust-item strong {
    font-size: 1.35rem;
  }
  .trust-item span {
    font-size: 0.71rem;
  }
  .trust-note {
    padding: 0 17px 17px;
    font-size: 0.68rem;
  }
  .cards-grid,
  .cards-grid--2,
  .cards-grid--4,
  .issue-list,
  .team-members,
  .blog-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }
  .info-card {
    padding: 23px;
  }
  .media-card,
  .media-card img {
    min-height: 300px;
  }
  .team-intro {
    min-height: 315px;
    padding: 27px;
  }
  .team-member {
    min-height: 160px;
  }
  .process {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .process-step {
    display: grid;
    grid-template-columns: 63px 1fr;
    column-gap: 17px;
    padding: 0;
  }
  .process-step__num {
    width: 58px;
    height: 58px;
    grid-row: span 2;
    margin: 0;
    font-size: 1.1rem;
  }
  .process-step p {
    margin-top: 5px;
  }
  .calculator-aside {
    padding: 25px;
  }
  .calculator-card {
    padding: 21px;
  }
  .calculator-card__head {
    display: block;
  }
  .calculator-badge {
    margin-top: 12px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .field--wide {
    grid-column: auto;
  }
  .form-actions .button {
    width: 100%;
  }
  .article-body h2 {
    margin-top: 38px;
  }
  .article-toc {
    padding: 17px;
  }
  .cta-banner {
    padding: 29px 23px;
  }
  .cta-banner__inner {
    display: block;
  }
  .cta-banner .button-row {
    margin-top: 23px;
  }
  .cta-banner .button {
    width: 100%;
  }
  .blog-featured {
    grid-template-columns: 1fr;
  }
  .blog-featured__media {
    min-height: 230px;
  }
  .case-ethics {
    grid-template-columns: 1fr;
  }
  .contact-panel,
  .contact-form {
    padding: 23px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-block: 48px 36px;
  }
  .footer-brand img {
    width: 190px;
  }
  .footer-keyword-strip {
    gap: 6px 12px;
    padding: 12px 16px;
  }
  .footer-keyword {
    font-size: 0.66rem;
    letter-spacing: 0.048em;
  }
  .footer-keyword-strip__note {
    width: 100%;
    font-size: 0.65rem;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px;
  }
  .whatsapp-float span {
    display: none;
  }
  .toast {
    right: 14px;
    bottom: 74px;
    left: 14px;
    max-width: none;
  }
  .tracking-consent {
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    gap: 13px;
    padding: 16px;
  }
  .tracking-consent__actions {
    justify-content: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Onde estamos — mapa e Street View do escritório */
.footer-map {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 30px;
  align-items: center;
  margin: 0 auto;
  max-width: 1180px;
  padding: 44px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-map__info h2 {
  margin-bottom: 12px;
  color: var(--paper);
  font-family: var(--font);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.footer-map__info p {
  color: rgba(248, 245, 239, 0.72);
  font-size: 0.88rem;
  line-height: 1.65;
}
.footer-map__info address {
  margin: 14px 0 18px;
  color: var(--gold-soft);
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.6;
}
.footer-map__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-map__frame {
  overflow: hidden;
  border: 1px solid rgba(228, 179, 75, 0.3);
  border-radius: 16px;
  background: #0b1112;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}
.footer-map__frame iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}
@media (max-width: 860px) {
  .footer-map {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 36px 18px;
  }
}

/* Página principal — atualização 2026-09-09 */
.button--hero-cta {
  min-height: 78px;
  padding: 22px 48px;
  font-size: 1.16rem;
  letter-spacing: 0.03em;
  box-shadow: 0 20px 44px rgba(190, 126, 15, 0.42);
}

.team-member {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}
.team-member__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #111;
}
.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-member:first-child .team-member__photo img {
  object-position: 50% 35%;
}
.team-member:last-child .team-member__photo img {
  object-position: 50% 32%;
}
.team-member__content {
  padding: 22px 24px 25px;
}
.team-member__role {
  font-weight: 800;
}
.team-member__bio {
  margin-top: 5px;
}
/* Botão dourado de WhatsApp dos especialistas (Cintia e Matheus). */
.team-member__whatsapp {
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
}

.case-grid--success {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  align-items: stretch;
}
.case-grid--success .case-card {
  height: 100%;
  min-height: 0;
  margin-top: 0;
  padding: 28px;
}
.case-grid--success .case-card__values {
  margin-top: 0;
}

@media (max-width: 980px) {
  .case-grid--success {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .button--hero-cta {
    min-height: 70px;
    padding: 19px 26px;
    font-size: 1.03rem;
  }
  .team-member__content {
    padding: 21px;
  }
  .case-grid--success {
    grid-template-columns: 1fr;
  }
  .case-grid--success .case-card {
    padding: 24px;
  }
}

/* Seletor flutuante de especialistas */
.specialist-contact {
  position: fixed;
  z-index: 950;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
}
.specialist-contact .specialist-contact__trigger {
  position: static;
  right: auto;
  bottom: auto;
  list-style: none;
  user-select: none;
}
.specialist-contact__trigger::-webkit-details-marker {
  display: none;
}
.specialist-contact__trigger::marker {
  content: "";
}
.specialist-contact[open] .specialist-contact__trigger {
  transform: translateY(-2px);
}
.specialist-contact__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 13px);
  width: min(350px, calc(100vw - 28px));
  padding: 20px;
  color: var(--paper);
  border: 1px solid rgba(228, 179, 75, 0.48);
  border-radius: 18px;
  background: linear-gradient(145deg, #171d1e, #080a0b);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.48);
  animation: specialist-panel-in 0.22s var(--ease) both;
}
.specialist-contact__panel > strong {
  display: block;
  color: var(--gold-soft);
  font-size: 1rem;
}
.specialist-contact__panel > p {
  margin-top: 5px;
  color: rgba(248, 245, 239, 0.68);
  font-size: 0.78rem;
  line-height: 1.5;
}
.specialist-contact__options {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.specialist-contact__option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 231, 164, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s var(--ease);
}
.specialist-contact__option:hover {
  transform: translateY(-2px);
  border-color: rgba(228, 179, 75, 0.72);
  background: rgba(228, 179, 75, 0.1);
}
.specialist-contact__name {
  color: var(--paper);
  font-size: 0.94rem;
  font-weight: 900;
}
.specialist-contact__option small {
  grid-column: 1;
  color: rgba(248, 245, 239, 0.62);
  font-size: 0.72rem;
}
.specialist-contact__action {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 900;
  text-align: right;
}
@keyframes specialist-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 620px) {
  .specialist-contact {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
  }
  .specialist-contact__panel {
    padding: 17px;
  }
  .specialist-contact__option {
    padding: 13px;
  }
}
