/* Camada editorial: linguagem humana, presença e ritmo visual. */
:root {
  --ink: #17231d;
  --canvas: #f3f1ea;
  --paper: #fffefb;
  --moss: #b8df70;
  --moss-dark: #5f7d31;
  --line: #d6d7cc;
  --muted: #5f695f;
  --premium-navy: #142019;
  --premium-sand: #e8e2d5;
  --premium-shadow:
    0 24px 70px rgba(25, 35, 27, 0.12), 0 2px 8px rgba(25, 35, 27, 0.04);
}

body {
  background: var(--canvas);
  font-size: 16px;
}
body::selection {
  background: #cce899;
  color: #17231d;
}
.site-header {
  position: sticky;
  top: 0;
  height: 76px;
  background: rgba(243, 241, 234, 0.84);
  backdrop-filter: blur(18px) saturate(130%);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.site-header:has(+ main) {
  border-bottom-color: rgba(23, 35, 29, 0.08);
}
.brand {
  letter-spacing: -0.075em;
}
.header-cta {
  min-height: 44px;
  padding: 0.72rem 1.15rem;
  border-color: rgba(23, 35, 29, 0.6);
  box-shadow: none;
}
.header-cta:hover {
  background: #17231d;
  color: #fff;
  border-color: #17231d;
}
nav a {
  position: relative;
  padding: 0.45rem 0;
}
nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.15rem;
  left: 0;
  height: 1px;
  background: var(--moss-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s;
}
nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 76px);
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 9rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -13vw;
  top: 4%;
  width: min(62vw, 860px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(194, 225, 134, 0.42) 0,
    rgba(194, 225, 134, 0.14) 30%,
    transparent 67%
  );
  filter: blur(3px);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: calc(50% - 46vw);
  bottom: 4%;
  width: 64vw;
  height: 22vw;
  border: 1px solid rgba(97, 125, 49, 0.14);
  border-radius: 50%;
  transform: rotate(-9deg);
}
.hero-copy {
  max-width: 670px;
}
.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 6.4vw, 7.25rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.092em;
}
.hero-copy h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.08em;
}
.hero-text {
  max-width: 535px;
  margin-top: 1.75rem !important;
  font-size: clamp(1.04rem, 1.4vw, 1.22rem) !important;
  line-height: 1.65 !important;
  color: #475248 !important;
}
.hero-actions {
  margin-top: 2rem !important;
  gap: 0.85rem !important;
  align-items: center;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px !important;
  padding: 0.9rem 1.25rem !important;
  letter-spacing: -0.02em;
}
.button-primary {
  box-shadow: 0 12px 24px rgba(65, 92, 29, 0.16);
}
.button-primary:hover {
  background: #17231d !important;
  color: #fff !important;
  transform: translateY(-2px);
}
.text-link {
  font-size: 0.8rem !important;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.hero-note {
  margin-top: 3rem !important;
  font-size: 0.73rem !important;
  color: #556053 !important;
}
.hero-ui {
  max-width: 480px;
  border: 0 !important;
  border-radius: 18px !important;
  box-shadow: var(--premium-shadow) !important;
  transform: rotate(2.2deg);
  background: #1a271e !important;
}
.hero-ui::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 13px -13px -13px 13px;
  border: 1px solid rgba(95, 125, 49, 0.32);
  border-radius: 18px;
  transform: rotate(-3.5deg);
}
.ui-canvas {
  background: linear-gradient(145deg, #1b2a20, #101a13) !important;
}
.flow-node {
  border-radius: 8px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.17);
}

.audience-section,
.client-section,
.faq-section {
  border-top: 0 !important;
}
.audience-section {
  padding-top: clamp(6rem, 12vw, 11rem) !important;
}
.audience-intro {
  grid-template-columns: 0.68fr 1.32fr !important;
}
.audience-grid {
  gap: 0 !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.audience-grid article {
  min-height: 310px !important;
  padding: 2rem 1.4rem !important;
  border: 0 !important;
  border-right: 1px solid var(--line) !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}
.audience-grid article:last-child {
  border-right: 0 !important;
}
.audience-grid article:nth-child(2) {
  background: #e9eee0 !important;
}
.audience-grid article:nth-child(3) {
  background: #17231d !important;
  color: #f4f5ef;
}
.audience-grid article:nth-child(3) p {
  color: #c1cbbd !important;
}
.audience-icon {
  width: 52px !important;
  height: 52px !important;
  margin: 2.8rem 0 1.35rem !important;
  background: #dceac6 !important;
}
.audience-grid article:nth-child(3) .audience-icon {
  background: #b8df70 !important;
  color: #17231d;
}
.audience-grid h3 {
  font-size: 1.4rem !important;
}
.audience-grid p {
  font-size: 0.88rem !important;
  line-height: 1.7 !important;
}

.pain {
  background: #e5e1d7 !important;
  padding-top: clamp(6rem, 11vw, 10rem) !important;
  padding-bottom: clamp(6rem, 11vw, 10rem) !important;
}
.section-heading h2,
.audience-intro h2,
.client-heading h2,
.faq-section h2 {
  font-weight: 600;
  letter-spacing: -0.075em !important;
}
.pain-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr !important;
  gap: 1rem !important;
}
.pain-card {
  min-height: 350px !important;
  border: 0 !important;
  border-radius: 16px !important;
  box-shadow: none !important;
  transition:
    transform 0.22s,
    box-shadow 0.22s !important;
}
.pain-card:first-child {
  transform: translateY(-16px);
}
.pain-card:nth-child(2) {
  background: #fffefb !important;
}
.pain-card:nth-child(3) {
  background: #1b2a20 !important;
  color: #f7f8f2 !important;
}
.pain-card:nth-child(3) p {
  color: #c1cbbd !important;
}
.pain-card:hover {
  transform: translateY(-7px) !important;
  box-shadow: var(--premium-shadow) !important;
}
.pain-card:first-child:hover {
  transform: translateY(-22px) !important;
}

.solution {
  position: relative;
  overflow: hidden;
  background: #17231d !important;
}
.solution::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -40%;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 223, 112, 0.23);
  border-radius: 50%;
}
.solution-intro,
.solution-ui {
  position: relative;
  z-index: 1;
}
.solution-ui {
  border: 0 !important;
  border-radius: 20px !important;
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.28);
}
.solution-stack {
  border-top: 1px solid rgba(229, 238, 224, 0.24);
}
.solution-stack li {
  font-size: 0.79rem !important;
}

.approach-section {
  background: var(--paper);
  border-top: 0 !important;
}
.approach-console {
  border: 0 !important;
  border-radius: 16px !important;
  box-shadow: var(--premium-shadow) !important;
}
.approach-tabs {
  background: #e9eee0 !important;
}
.approach-tab {
  min-height: 64px !important;
}
.approach-panel {
  min-height: 390px !important;
}
.panel-copy h3 {
  font-size: clamp(2rem, 3vw, 3rem) !important;
  line-height: 0.98 !important;
}

.mcp-section {
  position: relative;
  overflow: hidden;
  background: #132018 !important;
}
.mcp-section::before {
  content: "";
  position: absolute;
  left: -14%;
  top: -56%;
  width: 64%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 223, 112, 0.22),
    transparent 65%
  );
}
.mcp-section > * {
  position: relative;
  z-index: 1;
}
.mcp-copy h2 {
  font-size: clamp(3rem, 5.2vw, 5.7rem) !important;
  letter-spacing: -0.085em !important;
}
.business-map {
  transform: rotate(-1.5deg);
  box-shadow: var(--premium-shadow);
}

.tool-carousel {
  background: #f0eee7 !important;
  color: #17231d !important;
  border-color: #d7d8cf !important;
}
.tool-carousel > p {
  color: #667067 !important;
}
.marquee-track i {
  color: var(--moss-dark) !important;
}

.client-section {
  background: var(--paper);
  padding-top: clamp(6rem, 11vw, 10rem) !important;
}
.client-heading {
  grid-template-columns: 1.15fr 0.85fr !important;
  align-items: end;
}
.trust-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 4rem 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-rail > div {
  min-height: 205px;
  padding: 1.65rem 1.35rem;
  border-right: 1px solid var(--line);
}
.trust-rail > div:last-child {
  border-right: 0;
}
.trust-rail span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--moss-dark);
  font:
    500 0.65rem "DM Mono",
    monospace;
}
.trust-rail strong {
  display: block;
  font-size: 1.18rem;
  letter-spacing: -0.045em;
}
.trust-rail p {
  max-width: 270px;
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}
.client-commitment {
  margin-top: 2rem !important;
  border: 0 !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: var(--premium-shadow);
}
.client-commitment .case-visual {
  background: #dfeacb !important;
}
.client-commitment .case-copy {
  background: #17231d !important;
  color: #fff;
  padding: clamp(2rem, 5vw, 5rem) !important;
}
.client-commitment .case-copy .eyebrow {
  color: #c6d9ae !important;
}
.client-commitment .case-copy dl {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.client-commitment .case-copy dd {
  color: #c3ccc0 !important;
}
.client-commitment .case-copy dt {
  color: #b8df70 !important;
}
.partner-note {
  max-width: 540px;
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #c3ccc0;
  font-size: 0.82rem;
  line-height: 1.65;
}
.partner-note a {
  color: #d4ef9d;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wize-section {
  background: #e7e2d6;
  border-top: 0 !important;
}
.wize-ui {
  border: 0 !important;
  border-radius: 18px !important;
  box-shadow: var(--premium-shadow) !important;
}
.wize-copy h2 {
  font-size: clamp(3rem, 5vw, 5.5rem) !important;
}

.method {
  background: #17231d !important;
}
.method h2 {
  font-size: clamp(3rem, 5vw, 5.5rem) !important;
  letter-spacing: -0.085em !important;
}
.contact {
  position: relative;
  overflow: hidden;
  background: #b8df70 !important;
}
.contact::after {
  content: "";
  position: absolute;
  right: -7%;
  bottom: -30%;
  width: 42vw;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 35, 29, 0.28);
  border-radius: 50%;
}
.contact > * {
  position: relative;
  z-index: 1;
}
.contact h2 {
  max-width: 900px;
  font-size: clamp(3.2rem, 6vw, 6.7rem) !important;
  letter-spacing: -0.095em !important;
}
.button-dark {
  border-radius: 4px !important;
}
.site-footer {
  background: #101811 !important;
}

/* Ritmo mais compacto: menos rolagem vazia, mais leitura útil. */
.site-header {
  position: relative;
  height: 72px;
}
.hero {
  min-height: auto;
  padding-top: clamp(3.5rem, 5vw, 5.5rem);
  padding-bottom: clamp(4rem, 6vw, 6rem);
  gap: clamp(2rem, 4vw, 4.5rem);
}
.hero-copy h1 {
  font-size: clamp(3.35rem, 5.7vw, 6.35rem);
}
.hero-ui {
  transform: rotate(1deg);
}
.audience-section,
.client-section,
.faq-section,
.approach-section,
.wize-section {
  padding-top: clamp(4rem, 6vw, 6.5rem) !important;
  padding-bottom: clamp(4rem, 6vw, 6.5rem) !important;
}
.audience-intro {
  gap: clamp(1.5rem, 5vw, 5rem) !important;
  margin-bottom: clamp(2rem, 3vw, 3rem) !important;
}
@media (min-width: 721px) {
  .audience-intro {
    grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr) !important;
    align-items: start !important;
  }
  .audience-intro .eyebrow {
    grid-column: 1;
    grid-row: 1;
    margin: 0 !important;
  }
  .audience-intro h2 {
    grid-column: 2;
    grid-row: 1;
    margin: 0 !important;
  }
  .audience-intro > p:last-child {
    grid-column: 2;
    grid-row: 2;
    max-width: 580px;
    margin: 0 !important;
  }
}
.audience-grid article {
  min-height: 250px !important;
  padding: 1.5rem 1.35rem !important;
}
.audience-icon {
  margin: 1.65rem 0 1rem !important;
}
.pain,
.solution,
.mcp-section,
.capabilities,
.method,
.contact {
  padding-top: clamp(4rem, 6vw, 6.5rem) !important;
  padding-bottom: clamp(4rem, 6vw, 6.5rem) !important;
}
.pain-grid {
  margin-top: 2.5rem !important;
}
.pain-card {
  min-height: 285px !important;
  padding: 1.4rem !important;
}
.solution {
  gap: clamp(2rem, 5vw, 5rem) !important;
}
.approach-heading {
  margin-bottom: 2.25rem !important;
}
.approach-panel {
  min-height: 300px !important;
}
.panel-copy {
  padding: clamp(1.5rem, 3vw, 2.5rem) !important;
}
.client-heading {
  margin-bottom: 0 !important;
}
.trust-rail {
  margin-top: 2.5rem !important;
}
.trust-rail > div {
  min-height: 170px;
  padding: 1.35rem 1.15rem;
}
.client-commitment {
  margin-top: 1.25rem !important;
}
.wize-flow {
  min-height: 210px !important;
}
.tool-carousel {
  padding: 0.85rem 0 !important;
}

:focus-visible {
  outline: 3px solid #759e2b !important;
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }
  .hero-ui {
    margin-top: 3rem;
    transform: none;
  }
  .hero-ui::before {
    display: none;
  }
  .audience-intro,
  .client-heading {
    grid-template-columns: 1fr !important;
  }
  .audience-grid {
    grid-template-columns: 1fr !important;
  }
  .audience-grid article {
    min-height: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .audience-grid article:last-child {
    border-bottom: 0 !important;
  }
  .pain-grid {
    grid-template-columns: 1fr !important;
  }
  .pain-card:first-child {
    transform: none;
  }
  .pain-card:first-child:hover {
    transform: translateY(-7px) !important;
  }
  .trust-rail {
    grid-template-columns: 1fr;
  }
  .trust-rail > div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-rail > div:last-child {
    border-bottom: 0;
  }
  .trust-rail span {
    margin-bottom: 1rem;
  }
  .business-map {
    transform: none;
  }
  .mcp-copy h2 {
    font-size: clamp(2.7rem, 9vw, 4.4rem) !important;
  }
}
@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }
  .site-header {
    height: 68px;
    min-width: 0;
  }
  .hero {
    display: block !important;
    min-width: 0;
    padding-top: 3.5rem;
  }
  .hero-copy {
    min-width: 0;
    max-width: 100%;
  }
  .hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.72rem, 12.1vw, 3.3rem);
    overflow-wrap: normal;
    word-break: normal;
  }
  .hero-text {
    max-width: 100% !important;
  }
  .hero-ui {
    width: 100%;
    max-width: 100%;
  }
  .hero-actions {
    align-items: stretch !important;
  }
  .hero-actions .button {
    width: 100%;
  }
  .approach-tabs {
    grid-template-columns: 1fr;
  }
  .approach-tab {
    border-right: 0 !important;
    border-bottom: 1px solid #d8dfd3;
  }
  .approach-tab:last-child {
    border-bottom: 0;
  }
  .contact h2 {
    font-size: clamp(3rem, 14vw, 4.3rem) !important;
  }
}
