/* =========================================================
   BUTTER.CORE — SISTEMA VISUAL
   ---------------------------------------------------------
   Edite cores, largura e bordas aqui.
   ========================================================= */
:root {
  --butter: #F4D35E;
  --butter-light: #F9E79E;
  --ink: #111111;
  --ink-2: #191919;
  --cream: #F7F5EF;
  --paper: #FFFFFF;
  --muted: #6F6D67;
  --muted-dark: #A8A8A3;
  --line: #DFDDD7;
  --line-dark: #323232;
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 28px 70px rgba(17, 17, 17, .12);
  --ease: cubic-bezier(.2,.75,.25,1);
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  line-height: 1.5;
  -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, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--butter); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section { padding: 112px 0; }
.section--paper { background: var(--paper); }
.section--cream { background: var(--cream); }
.section--dark { background: var(--ink); color: white; }
.section--butter { background: var(--butter); color: var(--ink); }

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow { color: var(--butter); }
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.display-title {
  margin: 0;
  font-size: clamp(52px, 7vw, 98px);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 800;
}
.section-title {
  margin: 0;
  max-width: 760px;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.01;
  letter-spacing: -.05em;
}
.section-copy {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.section--dark .section-copy { color: var(--muted-dark); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 52px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--butter { background: var(--butter); color: var(--ink); }
.button--butter:hover { background: #f7dc76; }
.button--dark { background: var(--ink); color: white; }
.button--dark:hover { background: #2a2a2a; }
.button--ghost-dark { border-color: #3B3B3B; color: white; background: transparent; }
.button--ghost-dark:hover { border-color: #666; background: rgba(255,255,255,.04); }
.button--ghost { border-color: #CFCBC2; background: transparent; color: var(--ink); }
.button--ghost:hover { border-color: var(--ink); }

/* =========================================================
   HEADER
   Fundo off-white desliza sobre seções coloridas.
   Em seções claras, some sem tirar o header da tela.
   ========================================================= */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 80px;
  color: var(--ink);
}
.header-surface {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(247, 245, 239, .97);
  border-bottom: 1px solid rgba(17,17,17,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(-105%);
  transition: transform .42s var(--ease), box-shadow .3s ease;
}
.site-header.header--surface .header-surface { transform: translateY(0); }
.site-header.header--scrolled.header--surface .header-surface { box-shadow: 0 10px 28px rgba(17,17,17,.05); }

.nav {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.05em;
}
.brand-text { white-space: nowrap; }
.brand-text span { color: var(--butter); }
.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: var(--butter);
  border-radius: 9px 9px 9px 3px;
}
.brand-mark::before { left: 0; width: 13px; height: 28px; }
.brand-mark::after { right: 0; width: 13px; height: 19px; border-radius: 9px 9px 9px 3px; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background: var(--butter);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-cta { margin-left: 10px; }

.menu-button {
  display: none;
  position: relative;
  z-index: 1102;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.menu-button span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  border-radius: 5px;
  background: currentColor;
  transition: transform .24s var(--ease), opacity .18s ease;
}
.menu-button span:nth-child(1) { top: 14px; }
.menu-button span:nth-child(2) { top: 21px; }
.menu-button span:nth-child(3) { top: 28px; }
.menu-button.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.is-open span:nth-child(2) { opacity: 0; }
.menu-button.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 1101;
  inset: 0 0 0 auto;
  width: min(390px, 90vw);
  padding: 106px 30px 30px;
  background: var(--cream);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform .3s var(--ease), visibility .3s;
}
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu-label {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -.04em;
}
.mobile-menu a span { color: var(--butter); }
.mobile-menu a.is-active { color: var(--ink); border-bottom-color: var(--butter); }
.menu-backdrop {
  position: fixed;
  z-index: 1100;
  inset: 0;
  background: rgba(17,17,17,.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s;
}
.menu-backdrop.is-open { opacity: 1; visibility: visible; }

/* =========================================================
   HOME — HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 830px;
  padding: 150px 0 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -210px;
  top: -235px;
  border: 1px solid rgba(244,211,94,.18);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  left: 8%;
  bottom: -112px;
  border-radius: 50%;
  background: var(--butter);
  opacity: .12;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 72px;
  align-items: center;
}
.hero .display-title span { color: var(--butter); }
.hero-copy {
  max-width: 620px;
  margin: 28px 0 32px;
  color: #B9B9B5;
  font-size: 17px;
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 34px;
  color: #82827E;
  font-size: 11px;
  font-weight: 650;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--butter);
}

/* Hero visual: bancada de projeto, sem duplicar o próprio site */
.workbench {
  position: relative;
  overflow: hidden;
  min-height: 530px;
  padding: 22px;
  border: 1px solid #343434;
  background: #151515;
  box-shadow: 0 35px 90px rgba(0,0,0,.35);
}
.workbench::before {
  content: "PROJETO / EM CONSTRUÇÃO";
  display: block;
  margin-bottom: 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid #2C2C2C;
  color: #72726E;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}
.workbench-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 12px;
}
.preview-page {
  position: relative;
  min-height: 410px;
  padding: 24px;
  background: var(--cream);
  color: var(--ink);
  overflow: hidden;
}
.preview-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #D8D5CC;
  font-size: 9px;
  font-weight: 800;
}
.preview-topline span:last-child { color: #8A877F; font-weight: 600; }
.preview-title {
  max-width: 270px;
  margin: 54px 0 20px;
  font-size: clamp(30px, 3vw, 43px);
  line-height: .98;
  letter-spacing: -.055em;
}
.preview-copy {
  width: 70%;
  color: #74716A;
  font-size: 10px;
  line-height: 1.7;
}
.preview-cta {
  display: inline-flex;
  margin-top: 26px;
  padding: 10px 13px;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  font-size: 9px;
  font-weight: 800;
}
.preview-accent {
  position: absolute;
  right: -28px;
  bottom: -30px;
  width: 170px;
  height: 170px;
  border-radius: 50% 0 0 0;
  background: var(--butter);
}
.preview-accent::after {
  content: "";
  position: absolute;
  left: 42px;
  top: 45px;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(17,17,17,.32);
  border-radius: 50%;
}
.workbench-side { display: grid; gap: 12px; }
.signal-card {
  min-height: 96px;
  padding: 15px;
  border: 1px solid #303030;
  background: #1D1D1D;
}
.signal-card small {
  display: block;
  margin-bottom: 20px;
  color: #777772;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.signal-card strong { display: block; font-size: 13px; }
.signal-card span { display: block; margin-top: 5px; color: #A6A6A1; font-size: 9px; line-height: 1.5; }
.signal-card--butter { background: var(--butter); border-color: var(--butter); color: var(--ink); }
.signal-card--butter small,
.signal-card--butter span { color: #61572E; }
.demo-cursor {
  position: absolute;
  z-index: 5;
  left: 55%;
  top: 46%;
  width: 12px;
  height: 12px;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(244,211,94,.45);
  animation: cursor-tour 7s var(--ease) infinite;
}
@keyframes cursor-tour {
  0%, 15% { transform: translate(0,0); }
  32% { transform: translate(105px,-120px); }
  48% { transform: translate(130px,40px); }
  66% { transform: translate(-180px,120px); }
  84%, 100% { transform: translate(0,0); }
}

.value-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.value-item {
  min-height: 118px;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}
.value-item:last-child { border-right: 0; }
.value-index {
  color: #9B978F;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}
.value-item strong { display: block; font-size: 13px; }
.value-item span { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; }

/* =========================================================
   SERVIÇOS
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  transition: background .26s ease, transform .26s var(--ease);
}
.service-card:hover { background: #FBFAF7; }
.service-card::after {
  content: "↗";
  position: absolute;
  right: 28px;
  top: 28px;
  font-size: 18px;
  transition: transform .28s var(--ease);
}
.service-card:hover::after { transform: translate(4px,-4px); }
.service-number {
  color: #A5A19A;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.service-card h3 {
  margin: 78px 0 14px;
  font-size: 26px;
  letter-spacing: -.04em;
}
.service-card p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

/* =========================================================
   PROCESSO
   Setas ficam exatamente no meio do espaço entre os cards.
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 54px minmax(0,1fr) 54px minmax(0,1fr) 54px minmax(0,1fr);
  gap: 0;
  margin-top: 10px;
  align-items: stretch;
}
.process-step {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: #151515;
}
.process-step:not(:last-child)::after { display: none; }
.process-arrow {
  width: 42px;
  height: 42px;
  place-self: center;
  display: grid;
  place-items: center;
  border: 1px solid #4B4B4B;
  border-radius: 50%;
  background: var(--ink);
  color: var(--butter);
}
.process-arrow svg {
  width: 23px;
  height: 23px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-number {
  color: var(--butter);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}
.process-step h3 {
  margin: 86px 0 12px;
  font-size: 21px;
  letter-spacing: -.035em;
}
.process-step p {
  margin: 0;
  color: #9A9A96;
  font-size: 12px;
  line-height: 1.8;
}

/* =========================================================
   PLANOS
   Sem valores inventados. Cada CTA pré-seleciona o plano.
   ========================================================= */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.plan-card {
  min-height: 480px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: background-color .32s var(--ease), color .32s var(--ease), border-color .32s var(--ease), transform .32s var(--ease);
}
.plan-card:hover,
.plan-card:focus-within {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: translateY(-4px);
}
.plan-price {
  display: grid;
  gap: 5px;
  margin: 0 0 22px;
}
.plan-price strong {
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -.035em;
}
.plan-price span {
  color: #77736B;
  font-size: 10px;
  line-height: 1.5;
  transition: color .32s var(--ease);
}
.plan-card:hover .plan-eyebrow,
.plan-card:focus-within .plan-eyebrow { color: var(--butter); }
.plan-card:hover > p,
.plan-card:focus-within > p,
.plan-card:hover .plan-price span,
.plan-card:focus-within .plan-price span,
.plan-card:hover .plan-list li,
.plan-card:focus-within .plan-list li { color: #C7C7C2; }
.plan-card:hover .plan-list,
.plan-card:focus-within .plan-list { border-color: #333; }
.plan-card:hover .button,
.plan-card:focus-within .button {
  background: var(--butter);
  border-color: var(--butter);
  color: var(--ink);
}

.plan-eyebrow {
  color: #96928A;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.plan-card--dark .plan-eyebrow { color: var(--butter); }
.plan-card h3 {
  margin: 20px 0 8px;
  font-size: 26px;
  letter-spacing: -.05em;
}
.plan-card > p {
  min-height: 62px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.plan-card--dark > p { color: #A4A49F; }
.plan-list {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.plan-card--dark .plan-list { border-color: #333; }
.plan-list li {
  position: relative;
  padding-left: 18px;
  color: #55534D;
  font-size: 11px;
}
.plan-card--dark .plan-list li { color: #C7C7C2; }
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--butter);
}
.plan-card .button { margin-top: auto; width: 100%; }
.plans-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
}

/* =========================================================
   SOBRE HOME
   ========================================================= */
.about-home {
  position: relative;
  overflow: hidden;
}
.about-home::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -260px;
  top: 50px;
  border: 1px solid rgba(17,17,17,.13);
  border-radius: 50%;
}
.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-home .section-title { max-width: 580px; }
.about-lead {
  max-width: 580px;
  margin: 0 0 34px;
  font-size: 17px;
  line-height: 1.75;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(17,17,17,.24);
}
.about-value {
  min-height: 220px;
  padding: 26px 22px 0 0;
  border-right: 1px solid rgba(17,17,17,.24);
}
.about-value + .about-value { padding-left: 22px; }
.about-value:last-child { border-right: 0; }
.about-value span {
  display: block;
  margin-bottom: 54px;
  font-size: 9px;
  font-weight: 800;
}
.about-value h3 { margin: 0 0 10px; font-size: 18px; }
.about-value p { margin: 0; color: #5B512C; font-size: 11px; line-height: 1.75; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-wrap {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  font-size: 15px;
  font-weight: 750;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform .22s ease, background .22s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--butter); border-color: var(--butter); }
.faq-answer {
  max-width: 720px;
  padding: 0 56px 24px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

/* =========================================================
   CTA
   ========================================================= */
.cta-section { padding: 96px 0; background: var(--cream); }
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 74px;
  background: var(--ink);
  color: white;
}
.cta-panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -60px;
  bottom: -85px;
  border-radius: 50%;
  background: var(--butter);
}
.cta-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 0 20px;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: .98;
  letter-spacing: -.06em;
}
.cta-panel p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 0 28px;
  color: #A9A9A4;
  font-size: 14px;
  line-height: 1.8;
}
.cta-panel .button { position: relative; z-index: 1; }

/* =========================================================
   PÁGINAS INTERNAS
   ========================================================= */
.page-hero {
  padding: 160px 0 100px;
  background: var(--ink);
  color: white;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 94px);
  line-height: .96;
  letter-spacing: -.065em;
}
.page-hero h1 span { color: var(--butter); }
.page-hero p {
  margin: 0 0 6px;
  color: #B1B1AD;
  font-size: 15px;
  line-height: 1.8;
}

.about-story {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 88px;
}
.about-story-copy {
  max-width: 730px;
  font-size: 18px;
  line-height: 1.8;
}
.about-story-copy p { margin: 0 0 22px; }
.about-story-copy p:last-child { margin-bottom: 0; }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.principle {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}
.principle span { color: #A19D95; font-size: 10px; font-weight: 800; }
.principle h3 { margin: 84px 0 12px; font-size: 22px; }
.principle p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; }

.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #303030;
}
.scope-col { padding: 36px 48px 36px 0; }
.scope-col + .scope-col { padding-left: 48px; border-left: 1px solid #303030; }
.scope-col h3 { margin: 0 0 24px; font-size: 24px; }
.scope-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.scope-list li { display: flex; gap: 12px; color: #B2B2AD; font-size: 13px; }
.scope-list li::before { content: "→"; color: var(--butter); font-weight: 800; }

/* =========================================================
   CONTATO
   ========================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 74px;
  align-items: start;
}
.contact-intro h2 { margin: 0 0 18px; font-size: 42px; letter-spacing: -.05em; }
.contact-intro > p { max-width: 470px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.contact-list { margin-top: 46px; border-top: 1px solid var(--line); }
.contact-row {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row small { color: #9B978F; font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-row a,
.contact-row span { font-size: 12px; font-weight: 650; }
.contact-row a:hover { text-decoration: underline; text-underline-offset: 4px; }

.form-panel {
  padding: 36px;
  border: 1px solid var(--line);
  background: white;
}
.form-panel h2 { margin: 0 0 8px; font-size: 28px; letter-spacing: -.04em; }
.form-panel > p { margin: 0 0 30px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #D8D5CE;
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input,
.field select { height: 50px; padding: 0 14px; }
.field textarea { min-height: 150px; resize: vertical; padding: 14px; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: #8B792F; box-shadow: 0 0 0 3px rgba(244,211,94,.28); background: white; }
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 22px; }
.form-status { min-height: 20px; color: #5B512C; font-size: 11px; }
.form-status.is-error { color: #A22929; }
.form-note { margin: 14px 0 0; color: #8C8880; font-size: 10px; line-height: 1.6; }

/* =========================================================
   404
   ========================================================= */
.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px;
  background: var(--butter);
}
.error-card { max-width: 760px; text-align: center; }
.error-code { display: block; margin-bottom: 20px; font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.error-card h1 { margin: 0 0 22px; font-size: clamp(54px, 9vw, 110px); line-height: .9; letter-spacing: -.07em; }
.error-card p { max-width: 560px; margin: 0 auto 28px; color: #5E542D; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { padding: 66px 0 30px; background: var(--ink); color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 46px;
  padding-bottom: 54px;
}
.footer .brand { margin-bottom: 16px; }
.footer-brand p { max-width: 330px; margin: 0; color: #848480; font-size: 12px; line-height: 1.8; }
.footer-title { margin-bottom: 16px; color: var(--butter); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { width: fit-content; color: #AEAEA9; font-size: 12px; }
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid #2B2B2B;
  color: #6F6F6B;
  font-size: 10px;
}

/* =========================================================
   REVEAL
   ========================================================= */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 44px; }
  .process-grid { grid-template-columns: minmax(0,1fr) 42px minmax(0,1fr) 42px minmax(0,1fr) 42px minmax(0,1fr); }
  .process-arrow { width: 36px; height: 36px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .container { width: min(100% - 34px, var(--container)); }
  .section { padding: 84px 0; }
  .nav-links, .nav-cta { display: none; }
  .menu-button { display: block; }

  .hero { min-height: auto; padding: 126px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-copy { max-width: 650px; }
  .workbench { width: 100%; min-height: 0; }

  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .section-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .services-grid { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: 1fr; gap: 18px; }
  .process-step { min-height: 230px; }
  .process-step h3 { margin-top: 55px; }
  .process-arrow {
    width: 38px;
    height: 38px;
    transform: rotate(90deg);
  }

  .about-grid { grid-template-columns: 1fr; gap: 42px; }
  .about-values { grid-template-columns: 1fr; }
  .about-value { min-height: auto; padding: 24px 0; border-right: 0; border-bottom: 1px solid rgba(17,17,17,.22); }
  .about-value + .about-value { padding-left: 0; }
  .about-value:last-child { border-bottom: 0; }
  .about-value span { margin-bottom: 26px; }

  .faq-wrap { grid-template-columns: 1fr; gap: 42px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-story { grid-template-columns: 1fr; gap: 35px; }
  .principles-grid { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
  .scope-col { padding-right: 0; }
  .scope-col + .scope-col { padding: 34px 0 0; margin-top: 34px; border-left: 0; border-top: 1px solid #303030; }
  .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header, .nav { height: 72px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 25px; height: 25px; }
  .brand-mark::before { width: 12px; height: 25px; }
  .brand-mark::after { width: 11px; height: 17px; }

  .display-title { font-size: clamp(48px, 15vw, 72px); }
  .hero-copy { font-size: 15px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-meta { display: grid; gap: 8px; }

  .workbench { padding: 14px; }
  .workbench-grid { grid-template-columns: 1fr; }
  .workbench-side { grid-template-columns: repeat(2, 1fr); }
  .signal-card:last-child { grid-column: 1 / -1; }
  .preview-page { min-height: 360px; }
  .demo-cursor { display: none; }

  .value-grid { grid-template-columns: 1fr; }
  .value-item { min-height: 86px; border-right: 0; border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: 0; }

  .service-card { min-height: 270px; padding: 26px; }
  .service-card h3 { margin-top: 62px; }

  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 0; }

  .cta-panel { padding: 46px 26px 120px; }
  .cta-panel::after { width: 190px; height: 190px; }

  .page-hero { padding: 130px 0 76px; }
  .form-panel { padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .form-actions { display: grid; align-items: stretch; }
  .form-actions .button { width: 100%; }

  .contact-row { grid-template-columns: 1fr; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================
   ACESSIBILIDADE / ÂNCORAS
   ========================================================= */
:focus-visible {
  outline: 3px solid var(--butter);
  outline-offset: 4px;
}
section[id] { scroll-margin-top: 88px; }
[aria-disabled="true"] { cursor: default; opacity: .65; }

@media (hover: none) {
  .plan-card:hover {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--line);
    transform: none;
  }
  .plan-card:hover .plan-eyebrow { color: #96928A; }
  .plan-card:hover > p,
  .plan-card:hover .plan-price span,
  .plan-card:hover .plan-list li { color: var(--muted); }
  .plan-card:hover .plan-list { border-color: var(--line); }
  .plan-card:hover .button { background: transparent; border-color: #CFCBC2; color: var(--ink); }
}


/* =========================================================
   AJUSTE — HEADER COM FUNDO FIXO
   Mantém o header sempre off-white, sem transparência.
   ========================================================= */
.header-surface {
  background: #F7F5EF !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
  border-bottom: 1px solid rgba(17,17,17,.08);
  box-shadow: 0 6px 20px rgba(17,17,17,.035);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}


/* =========================================================
   V6 — TRANSIÇÃO SUAVE DOS PLANOS
   A troca claro -> escuro agora acontece de forma progressiva.
   ========================================================= */
.plan-card {
  transition:
    background-color .62s cubic-bezier(.16, 1, .3, 1),
    color .50s cubic-bezier(.16, 1, .3, 1),
    border-color .50s cubic-bezier(.16, 1, .3, 1),
    transform .50s cubic-bezier(.16, 1, .3, 1),
    box-shadow .50s cubic-bezier(.16, 1, .3, 1) !important;
}

.plan-card:hover,
.plan-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(17,17,17,.08);
}

.plan-card .plan-eyebrow,
.plan-card > p,
.plan-card .plan-price strong,
.plan-card .plan-price span,
.plan-card .plan-list,
.plan-card .plan-list li,
.plan-card .button {
  transition:
    color .48s cubic-bezier(.16, 1, .3, 1),
    background-color .55s cubic-bezier(.16, 1, .3, 1),
    border-color .55s cubic-bezier(.16, 1, .3, 1),
    transform .48s cubic-bezier(.16, 1, .3, 1) !important;
}

.plan-card:hover .button,
.plan-card:focus-within .button {
  transform: translateY(-1px);
}

@media (hover: none) {
  .plan-card:hover { box-shadow: none; }
}


/* =========================================================
   V7 — FAQ / ÍCONES CENTRALIZADOS
   Corrige o "+" e o "x" para ficarem perfeitamente centralizados.
   ========================================================= */
.faq-item summary {
  position: relative;
}

.faq-item summary::after {
  content: "";
  width: 36px;
  height: 36px;
  display: block;
  justify-self: center;
  align-self: center;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 50%;
  background-color: transparent;
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: center center, center center;
  background-size: 12px 2px, 2px 12px;
  color: var(--ink);
  transition:
    transform .24s ease,
    background-color .24s ease,
    border-color .24s ease,
    color .24s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--butter);
  border-color: var(--butter);
  color: var(--ink);
}

@media (max-width: 640px) {
  .faq-item summary::after {
    width: 34px;
    height: 34px;
    background-size: 11px 2px, 2px 11px;
  }
}

/* V8 — ESCALA, RITMO E RESPONSIVIDADE. Identidade V7 preservada. */
:root { --muted: #605e58; --radius: 10px; --radius-sm: 7px; }
html { scroll-padding-top: 100px; }
body { font-size: 1rem; }
main, .hero-grid > *, .section-head > *, .contact-layout > *,
.footer-grid > *, .field, .workbench-grid > * { min-width: 0; }
h1,h2,h3 { text-wrap: balance; overflow-wrap: break-word; }
p { text-wrap: pretty; }
.section { padding-block: clamp(64px,8vw,112px); }
.section-title { font-size: clamp(2rem,4.1vw,3.5rem); line-height: 1.12; letter-spacing: -.045em; }
.section-copy,.service-card p,.process-step p,.plan-card > p,.about-value p,
.faq-answer,.principle p,.page-hero p,.contact-intro > p,.form-panel > p,
.cta-panel p,.scope-list li { font-size: 1rem; line-height: 1.75; }
.eyebrow,.section-kicker,.service-number,.process-number,.plan-eyebrow,
.footer-title,.mobile-menu-label,.principle > span { font-size: .75rem; letter-spacing: .1em; }
.button,.nav-links,.field label,.contact-row a,.contact-row span,.form-note,
.form-status,.plan-list li,.plans-note,.plan-price span,.footer-links a,
.footer-brand p,.hero-meta { font-size: .875rem; }
.button { min-height: 48px; padding: 12px 20px; line-height: 1.45; }
.site-header { z-index: 1200; background: var(--cream); }
.nav { gap: 18px; }
.nav-links { gap: 20px; }
.nav-links a { padding-block: 14px; }
/* Navegação: página atual sempre com sublinhado na cor oficial da marca. */
.nav-links a.is-active { color: var(--ink); }
.nav-links a:hover { color: var(--butter); }
.nav-links a::after { background: var(--butter); }
.nav-links a.is-active::after { transform: scaleX(1); }
.brand-text span { color: inherit; }
.footer .brand-text span { color: var(--butter); }
.mobile-menu { overflow-y: auto; overscroll-behavior: contain; }
.hero { min-height: auto; padding-block: 155px 88px; }
.hero-grid { grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); gap: 48px; }
.display-title { font-size: clamp(2.75rem,5.1vw,4.4rem); line-height: 1.08; letter-spacing: -.055em; }
.hero-copy { max-width: 540px; color: #c2c2bc; font-size: 1.0625rem; }
.hero-meta { color: #b5b5ae; }
.hero::before,.hero::after { display: none; }
.workbench { min-height: 0; padding: 20px; box-shadow: none; border-color: #42423b; }
.workbench::before { font-size: .75rem; color: #b5b5ae; }
.workbench-grid { grid-template-columns: minmax(0,1fr); gap: 18px; }
.preview-page { min-height: 310px; padding: 28px; }
.preview-topline { gap: 16px; font-size: .75rem; flex-wrap: wrap; }
.preview-topline span:last-child { color: var(--muted); }
.preview-title { max-width: 320px; font-size: 2.25rem; line-height: 1.08; margin-top: 30px; }
.preview-copy { width: 82%; font-size: .875rem; color: var(--muted); }
.preview-cta { font-size: .875rem; position: relative; z-index: 1; }
.preview-accent { width: 100px; height: 100px; }
.preview-accent::after { display: none; }
.workbench-side { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.signal-card { min-height: 0; padding: 14px 10px; }
.signal-card small { font-size: .75rem; }
.signal-card strong { font-size: .875rem; margin-block: 14px 8px; line-height: 1.45; }
.signal-card span { font-size: .75rem; line-height: 1.6; }
.value-item { padding: 24px 18px; }
.value-item strong { font-size: 1rem; }
.value-item span { font-size: .875rem; }
.services-grid { border-left: 0; gap: 0 48px; }
.service-card { min-height: 0; padding: 32px 0; border-right: 0; overflow: visible; }
.service-card::after { display: none; }
.service-card h3 { margin: 30px 0 14px; }
.service-number { color: var(--muted); }
.process-step { padding: 22px; border-radius: 8px; }
.process-step h3 { margin-top: 46px; font-size: 1.375rem; }
.process-step p { color: #b5b5af; }
.process-arrow { border-radius: 7px; }
.plans-grid { gap: 16px; border: 0; }
.plan-card { border: 1px solid var(--line); padding: 26px 22px; border-radius: 8px; }
.plan-eyebrow { color: #68645c; min-height: 2.8em; }
.plan-card h3 { margin-top: 18px; font-size: 1.625rem; }
.plan-card > p { min-height: 0; }
.plan-price { margin-top: auto; min-height: 95px; align-content: start; }
.plan-price strong { font-size: 1.875rem; line-height: 1.2; }
.plan-price .price-prefix { display: block; font-size: .875rem; font-weight: 500; margin-bottom: 6px; }
.plan-list li::before { background: #8b711d; }
.plan-card:hover .plan-list li::before,.plan-card:focus-within .plan-list li::before { background: var(--butter); }
.about-value span { font-size: .75rem; }
.faq-item summary { font-size: 1rem; line-height: 1.55; gap: 16px; }
.faq-answer { padding-right: 24px; }
.cta-panel { padding: clamp(32px,6vw,74px); }
.cta-panel h2 { font-size: clamp(2.2rem,5vw,4rem); line-height: 1.1; }
.cta-panel::after { display: none; }
.page-hero h1 { font-size: clamp(2.75rem,6vw,5rem); line-height: 1.1; }
.principle { min-height: 0; }
.principle h3 { margin-top: 40px; }
.contact-row small { font-size: .75rem; color: var(--muted); }
.contact-row a { overflow-wrap: anywhere; }
.field label { text-transform: none; letter-spacing: 0; }
.field input,.field select,.field textarea { font-size: 1rem; }
.field input::placeholder,.field textarea::placeholder { color: #716d65; opacity: 1; }
.form-note { color: var(--muted); }
.form-panel { border-top: 4px solid var(--butter); }
.form-actions { flex-wrap: wrap; }
.footer-brand p,.footer-links a,.footer-bottom { color: #b5b5af; }
.footer-bottom { font-size: .75rem; }
.footer-links a { padding-block: 6px; overflow-wrap: anywhere; }
:focus-visible { outline: 3px solid #8c711c; outline-offset: 4px; }
.section--dark :focus-visible,.hero :focus-visible,.footer :focus-visible,.cta-panel :focus-visible { outline-color: var(--butter); }
@media (min-width:901px) and (max-width:1150px) {
 .nav-links { gap: 14px; } .nav-cta { display: none; }
 .process-grid { grid-template-columns: minmax(0,1fr) 32px minmax(0,1fr) 32px minmax(0,1fr) 32px minmax(0,1fr); }
 .process-step { padding: 16px; } .process-arrow { width: 28px; height: 28px; }
}
@media (max-width:1100px) {
 .plans-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } .footer-grid { gap: 28px; }
}
@media (max-width:900px) {
 .hero-grid { grid-template-columns: minmax(0,1fr); gap: 40px; }
 /* Oculta somente o mockup no layout mobile; mantém texto e CTAs. */
 .hero .workbench { display: none; }
 .hero { padding-block: 128px 64px; }
 .display-title { max-width: 740px; font-size: clamp(2.75rem,7.5vw,4.5rem); }
 .workbench { width: 100%; max-width: 600px; margin-inline: auto; }
 .process-step { min-height: 0; padding: 26px; }
 .process-step h3 { margin-top: 20px; } .process-grid { gap: 12px; }
 .service-card { min-height: 0; } .page-hero { padding-block: 132px 64px; }
}
@media (max-width:640px) {
 .container { width: calc(100% - 40px); } .hero { padding-top: 116px; }
 .hero-copy { font-size: 1rem; } .display-title { font-size: clamp(2.5rem,10.5vw,3.5rem); }
 .hero-meta { display: flex; gap: 12px 18px; }
 .workbench { padding: 14px; } .preview-page { min-height: 0; padding: 22px; }
 .preview-title { font-size: 2rem; } .workbench-side { grid-template-columns: minmax(0,1fr); }
 .signal-card { padding: 16px; } .signal-card strong { margin-block: 6px; font-size: 1rem; }
 .signal-card span { font-size: .875rem; } .signal-card:last-child { grid-column: auto; }
 .value-item { min-height: 0; padding: 20px 0; }
 .plans-grid { grid-template-columns: minmax(0,1fr); } .plan-card { padding: 28px; }
 .plan-eyebrow { min-height: 0; } .plan-price { min-height: 0; margin-top: 0; }
 .plan-list { margin-top: 6px; } .contact-intro h2 { font-size: 2rem; }
 .section-head { margin-bottom: 32px; } .form-panel { padding: 24px 18px; }
 .footer-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
 .footer-grid > :last-child { grid-column: 1/-1; }
}
@media (hover:none) {
 .plan-card:hover { box-shadow: none; transform: none; }
 .plan-card:focus-within { background: var(--paper); color: var(--ink); transform: none; box-shadow: none; border-color: var(--line); }
 .plan-card:focus-within .plan-eyebrow,.plan-card:focus-within > p,
 .plan-card:focus-within .plan-price span,.plan-card:focus-within .plan-list li { color: var(--muted); }
 .plan-card:focus-within .plan-list { border-color: var(--line); }
 .plan-card:focus-within .button { background: var(--butter); color: var(--ink); border-color: var(--butter); }
}
@media (prefers-reduced-motion:reduce) {
 *,*::before,*::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* =========================================================
   V9 — MOBILE COMPACTO
   Ajustes exclusivos para celular. O desktop permanece intacto.
   ========================================================= */
@media (max-width: 767px) {
  /* Estrutura e navegação */
  .container { width: calc(100% - 32px); }
  .site-header,
  .nav { height: 68px; }
  .brand { font-size: 17px; gap: 9px; }
  .brand-mark { width: 24px; height: 24px; }
  .brand-mark::before { width: 11px; height: 24px; }
  .brand-mark::after { width: 11px; height: 16px; }
  .mobile-menu { width: min(350px, 88vw); padding: 88px 24px 24px; }
  .mobile-menu-label { margin-bottom: 12px; }
  .mobile-menu a { padding: 15px 0; font-size: 18px; }

  /* Ritmo geral */
  .section { padding-block: 52px; }
  .section-head { gap: 14px; margin-bottom: 26px; }
  .section-title { font-size: clamp(1.85rem, 8.6vw, 2.25rem); line-height: 1.08; letter-spacing: -.04em; }
  .section-copy,
  .service-card p,
  .process-step p,
  .plan-card > p,
  .about-value p,
  .faq-answer,
  .principle p,
  .page-hero p,
  .contact-intro > p,
  .form-panel > p,
  .cta-panel p,
  .scope-list li { font-size: .9375rem; line-height: 1.65; }

  /* Home — hero */
  .hero { padding: 96px 0 48px; }
  .hero-grid { gap: 0; }
  .hero .workbench { display: none; }
  .display-title { max-width: none; font-size: clamp(2.25rem, 10.7vw, 2.9rem); line-height: 1.06; letter-spacing: -.05em; }
  .hero-copy { margin: 18px 0 22px; font-size: .9375rem; line-height: 1.65; }
  .hero-actions { gap: 9px; }
  .hero-actions .button { min-height: 46px; }
  .hero-meta { margin-top: 22px; gap: 8px 14px; font-size: .78rem; line-height: 1.4; }
  .hero-meta span { gap: 7px; }

  /* Faixa de diferenciais — 2x2 em vez de quatro blocos altos */
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-item {
    min-height: 88px;
    padding: 15px 10px;
    align-items: flex-start;
    gap: 9px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .value-item:nth-child(2n) { border-right: 0; }
  .value-item:nth-last-child(-n+2) { border-bottom: 0; }
  .value-index { padding-top: 2px; font-size: .66rem; }
  .value-item strong { font-size: .875rem; line-height: 1.35; }
  .value-item span { margin-top: 4px; font-size: .76rem; line-height: 1.45; }

  /* Serviços */
  .service-card { min-height: 0; padding: 22px 0; }
  .service-card h3 { margin: 20px 0 8px; font-size: 1.3rem; }
  .service-number { font-size: .7rem; }

  /* Processo */
  .process-grid { gap: 9px; }
  .process-step { min-height: 0; padding: 18px; }
  .process-step h3 { margin: 20px 0 8px; font-size: 1.25rem; }
  .process-number { font-size: .7rem; }
  .process-arrow { width: 30px; height: 30px; }
  .process-arrow svg { width: 18px; height: 18px; }

  /* Planos */
  .plans-grid { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .plan-card { min-height: 0; padding: 21px 18px; }
  .plan-eyebrow { min-height: 0; font-size: .68rem; }
  .plan-card h3 { margin: 14px 0 7px; font-size: 1.45rem; }
  .plan-card > p { margin-bottom: 16px; }
  .plan-price { min-height: 0; margin: 0 0 16px; }
  .plan-price strong { font-size: 1.6rem; }
  .plan-price .price-prefix { margin-bottom: 4px; font-size: .78rem; }
  .plan-list { gap: 8px; margin-bottom: 18px; padding-top: 16px; }
  .plan-list li { font-size: .84rem; line-height: 1.45; }
  .plans-note { margin-top: 14px; font-size: .78rem; line-height: 1.5; }

  /* Sobre na Home */
  .about-home::after { display: none; }
  .about-grid { gap: 28px; }
  .about-lead { margin-bottom: 24px; font-size: .98rem; line-height: 1.65; }
  .about-value { min-height: 0; padding: 18px 0; }
  .about-value + .about-value { padding-left: 0; }
  .about-value span { margin-bottom: 14px; }
  .about-value h3 { margin-bottom: 7px; font-size: 1.05rem; }

  /* FAQ */
  .faq-wrap { gap: 28px; }
  .faq-item summary { padding: 18px 0; font-size: .95rem; line-height: 1.45; }
  .faq-item summary::after { width: 32px; height: 32px; }
  .faq-answer { padding: 0 42px 18px 0; }

  /* CTA */
  .cta-section { padding: 52px 0; }
  .cta-panel { padding: 30px 22px; }
  .cta-panel h2 { margin-bottom: 14px; font-size: clamp(2rem, 10vw, 2.55rem); line-height: 1.06; }
  .cta-panel p { margin-bottom: 20px; }

  /* Páginas internas */
  .page-hero { padding: 100px 0 48px; }
  .page-hero-grid { gap: 18px; }
  .page-hero h1 { font-size: clamp(2.35rem, 11vw, 3rem); line-height: 1.06; letter-spacing: -.05em; }
  .about-story { gap: 22px; }
  .about-story-copy { font-size: 1rem; line-height: 1.7; }
  .about-story-copy p { margin-bottom: 16px; }
  .principles-grid { margin-top: 38px; }
  .principle { min-height: 0; padding: 20px; }
  .principle h3 { margin: 24px 0 8px; font-size: 1.22rem; }
  .scope-col { padding: 24px 0; }
  .scope-col + .scope-col { margin-top: 0; padding: 24px 0 0; }
  .scope-col h3 { margin-bottom: 16px; font-size: 1.3rem; }
  .scope-list { gap: 10px; }

  /* Contato */
  .contact-layout { gap: 32px; }
  .contact-intro h2 { margin-bottom: 12px; font-size: 1.75rem; }
  .contact-list { margin-top: 26px; }
  .contact-row { gap: 5px; padding: 14px 0; }
  .contact-row small { font-size: .68rem; }
  .contact-row a,
  .contact-row span { font-size: .9rem; }
  .form-panel { padding: 22px 16px; }
  .form-panel h2 { font-size: 1.5rem; }
  .form-panel > p { margin-bottom: 22px; }
  .form-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .field--full { grid-column: auto; }
  .field { gap: 6px; }
  .field input,
  .field select { height: 48px; }
  .field textarea { min-height: 120px; }
  .form-actions { gap: 12px; margin-top: 18px; }
  .form-note { font-size: .78rem; line-height: 1.5; }

  /* Rodapé */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 26px 18px; padding-bottom: 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer .brand { margin-bottom: 12px; }
  .footer-title { margin-bottom: 10px; }
  .footer-links { gap: 6px; }
  .footer-bottom { gap: 8px; padding-top: 18px; line-height: 1.5; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 28px); }
  .display-title { font-size: 2.15rem; }
  .hero-meta { display: grid; grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .value-item,
  .value-item:nth-child(2n),
  .value-item:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
}
