:root {
  --ink: #101416;
  --ink-soft: #3c4549;
  --muted: #7a8488;
  --line: rgba(16, 20, 22, 0.12);
  --cream: #f4f0e8;
  --paper: #fffdf8;
  --dark: #080d0f;
  --dark-soft: #12191c;
  --teal: #23b9c6;
  --gold: #c79a58;
  --green: #8ea06d;
  --blue: #377fad;
  --radius: 8px;
  --container: 1180px;
  --font: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(8, 13, 15, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(8, 13, 15, 0.96);
  box-shadow: 0 18px 40px rgba(8, 13, 15, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 206px;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  isolation: isolate;
  border-radius: 11px;
  color: #071013;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.28);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(35, 185, 198, 0.22);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, #32c4df 0%, #44d0df 42%, #1d6097 100%);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  width: 9px;
  height: 9px;
  z-index: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.brand-mark span {
  position: relative;
  z-index: 1;
}

.brand-name {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav .nav-cta {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav a[aria-current="page"] {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 132px 0 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--dark);
}

.hero-photo,
.hero-mask {
  position: absolute;
  inset: 0;
}

.hero-photo {
  z-index: -3;
  background-image: url("../images/home-slide-7.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-mask {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 13, 15, 0.96) 0%, rgba(8, 13, 15, 0.83) 50%, rgba(8, 13, 15, 0.55) 100%),
    linear-gradient(0deg, rgba(8, 13, 15, 0.22), rgba(8, 13, 15, 0.22));
}

.hero-inner {
  width: min(var(--container), calc(100% - 44px));
  min-height: calc(100svh - 212px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 700px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: 76px;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-statement {
  max-width: 670px;
  margin: 22px 0 0;
  color: #fff;
  font-size: 31px;
  line-height: 1.12;
}

.hero-lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
}

.button-primary {
  color: #061113;
  background: #77e2e9;
}

.button-primary:hover {
  background: #a5edf1;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.13);
}

.hero-stage {
  position: relative;
  min-height: 610px;
}

.screen-shell {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #0d1214;
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.42);
}

.screen-shell::before {
  content: "";
  display: block;
  height: 34px;
  background: linear-gradient(90deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-shell img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.screen-atlas img {
  aspect-ratio: 1552 / 793;
  object-fit: contain;
  background: #0d1214;
}

.screen-quant img {
  aspect-ratio: 1251 / 571;
  object-fit: contain;
  background: #0d1214;
}

.screen-shell figcaption {
  position: absolute;
  top: 9px;
  left: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 850;
}

.screen-atlas {
  top: 8px;
  right: 0;
  width: 88%;
}

.screen-quant {
  left: 0;
  bottom: 86px;
  width: 60%;
}

.screen-meter {
  right: 42px;
  bottom: 0;
  width: 48%;
}

.hero-proof {
  width: min(var(--container), calc(100% - 44px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 0.7fr 0.8fr 0.9fr 1.4fr;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof div {
  min-height: 106px;
  padding: 22px 28px 26px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.section {
  padding: 104px 0;
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 56px;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: 0;
}

p {
  color: var(--ink-soft);
}

.manifesto-section {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 190px 1fr 0.7fr;
  gap: 56px;
  align-items: start;
}

.manifesto-grid p:last-child {
  margin: 8px 0 0;
  font-size: 19px;
}

.suite-section {
  padding: 112px 0;
  background: var(--paper);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 56px;
}

.suite-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.suite-intro {
  max-width: 640px;
  margin: 20px auto 0;
  font-size: 18px;
  color: var(--ink-soft);
}

.suite-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 38px;
  align-items: start;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.suite-item:last-child {
  border-bottom: 1px solid var(--line);
}

.suite-index {
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
}

.suite-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.quant-item .suite-copy span {
  color: var(--gold);
}

.meter-item .suite-copy span {
  color: var(--green);
}

.suite-copy h3 {
  margin: 0 0 14px;
}

.suite-copy p {
  margin: 0;
  max-width: 650px;
  font-size: 19px;
}

.suite-list {
  display: grid;
  gap: 13px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.suite-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 15px;
}

.suite-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.quant-item .suite-list li::before {
  background: var(--gold);
}

.meter-item .suite-list li::before {
  background: var(--green);
}

.method-section {
  color: #fff;
  background: #0f1517;
}

.method-section h2 {
  color: #fff;
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 72px;
  align-items: start;
}

.method-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
}

.method-steps article {
  min-height: 226px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.method-steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.method-steps strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 20px;
}

.method-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
}

.engineering-section {
  background: var(--cream);
}

.engineering-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
  align-items: center;
}

.engineering-copy p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 24px;
  font-size: 18px;
}

.capability-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.capability-matrix article {
  min-height: 184px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}

.capability-matrix strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.capability-matrix span {
  color: var(--ink-soft);
  font-size: 15px;
}

.clients-section {
  background: #fff;
  border-top: 1px solid var(--line);
}

.clients-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 74px;
  align-items: start;
}

.clients-grid p:not(.section-kicker) {
  margin-top: 22px;
  font-size: 18px;
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.client-strip span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 850;
}

.client-strip span:nth-child(3n) {
  border-right: 0;
}

.client-strip span:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.contact-section {
  padding: 98px 0;
  color: #fff;
  background: #071011;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 68px;
  align-items: center;
}

.contact-grid h2 {
  max-width: 760px;
  color: #fff;
}

.contact-grid p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-link:hover {
  border-color: rgba(119, 226, 233, 0.7);
  background: rgba(255, 255, 255, 0.11);
}

.contact-link span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-link strong {
  color: #fff;
  font-size: 18px;
}

.site-footer {
  padding: 28px 0;
  background: #050809;
  color: rgba(255, 255, 255, 0.68);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.footer-inner a:hover {
  color: #fff;
}

/* ---------- Rótulo de destaque: ALL NEW 3S ---------- */
.manifesto-kicker {
  margin: 0 0 22px;
  text-transform: uppercase;
}

.mk-main {
  display: block;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.04em;
  background: linear-gradient(
    100deg,
    var(--teal) 0%,
    var(--blue) 42%,
    var(--gold) 60%,
    var(--teal) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: kicker-shine 7s linear infinite;
}

.mk-sub {
  display: block;
  margin-top: 9px;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
}

@keyframes kicker-shine {
  to {
    background-position: 220% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mk-main {
    animation: none;
  }
}

/* ---------- Links de texto (hub) ---------- */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover {
  color: var(--teal);
}

.text-link:hover span {
  transform: translateX(4px);
}

.suite-foot {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}

.suite-foot .text-link {
  margin-top: 0;
}

/* ---------- Links de acesso aos produtos ---------- */
.suite-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: 15px;
  font-weight: 800;
  color: var(--teal);
}

.suite-link span {
  transition: transform 0.2s ease;
}

.suite-link:hover span {
  transform: translateX(3px);
}

.quant-item .suite-link {
  color: var(--gold);
}

.meter-item .suite-link {
  color: var(--green);
}

/* ---------- Faixa de números ---------- */
.stats-strip {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stats-strip div {
  padding: 30px 28px;
  background: var(--paper);
}

.stats-strip strong {
  display: block;
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stats-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Depoimentos ---------- */
.testimonials-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 185, 198, 0.4);
  box-shadow: 0 22px 48px rgba(8, 13, 15, 0.08);
}

.testimonial blockquote {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.5;
}

.testimonial blockquote::before {
  content: "\201C";
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 48px;
  line-height: 0.5;
  font-weight: 800;
}

.testimonial figcaption {
  margin-top: auto;
}

.testimonial figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.testimonial figcaption span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Contato: endereço e horário ---------- */
.contact-meta {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.contact-meta li {
  display: grid;
  gap: 4px;
}

.contact-meta span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-meta strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
}

/* ---------- Rodapé ---------- */
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-address {
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* ---------- Botão flutuante de WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
}

.wa-float-label {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  padding: 10px 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(8, 13, 15, 0.18);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.wa-float:hover .wa-float-label,
.wa-float:focus-visible .wa-float-label {
  opacity: 1;
  transform: none;
}

.wa-float-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover .wa-float-icon,
.wa-float:focus-visible .wa-float-icon {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.52);
}

.wa-float-icon svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 680px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
  }

  .wa-float-icon {
    width: 52px;
    height: 52px;
  }
}

/* ---------- Transições e microinterações ---------- */
.button,
.site-nav a,
.nav-cta,
.contact-link,
.capability-matrix article {
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.capability-matrix article:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 185, 198, 0.4);
  box-shadow: 0 22px 48px rgba(8, 13, 15, 0.07);
}

/* ---------- Revelação on-scroll (progressive enhancement) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    padding-inline: 20px;
  }

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

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .brand {
    min-width: auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px 20px 18px;
    background: var(--cream);
    border-bottom: 1px solid rgba(16, 20, 22, 0.1);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 38px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-statement {
    font-size: 25px;
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .screen-shell,
  .screen-atlas,
  .screen-quant,
  .screen-meter {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .screen-quant,
  .screen-meter {
    display: none;
  }

  .hero-proof,
  .manifesto-grid,
  .suite-item,
  .method-grid,
  .engineering-grid,
  .clients-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-grid,
  .method-grid,
  .engineering-grid,
  .clients-grid,
  .contact-grid {
    gap: 40px;
  }

  h2 {
    font-size: 43px;
  }

  h3 {
    font-size: 40px;
  }
}

@media (max-width: 680px) {
  .container,
  .hero-inner,
  .hero-proof {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-statement {
    font-size: 22px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof div {
    min-height: 82px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section,
  .suite-section {
    padding: 72px 0;
  }

  h2,
  h3 {
    font-size: 34px;
  }

  .method-steps,
  .capability-matrix,
  .client-strip {
    grid-template-columns: 1fr;
  }

  .suite-item {
    gap: 18px;
    padding: 34px 0;
  }

  .client-strip span,
  .client-strip span:nth-child(3n),
  .client-strip span:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ---------- Cabeçalho de páginas internas ---------- */
.page-hero {
  position: relative;
  padding: 150px 0 86px;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(880px 420px at 86% -12%, rgba(35, 185, 198, 0.22), transparent 60%),
    radial-gradient(680px 360px at -5% 120%, rgba(55, 127, 173, 0.2), transparent 60%);
}

.page-hero .eyebrow {
  color: var(--teal);
}

.page-hero h1 {
  margin: 0;
  max-width: 18ch;
  color: #fff;
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

/* ---------- Catálogo de módulos sob medida ---------- */
.modules-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.modules-section .section-heading p {
  margin-top: 20px;
  font-size: 18px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.module-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.module-card:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 185, 198, 0.4);
  box-shadow: 0 22px 48px rgba(8, 13, 15, 0.07);
}

.module-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.module-card span {
  display: block;
  color: var(--ink-soft);
  font-size: 15px;
}

@media (max-width: 1040px) {
  .modules-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .page-hero {
    padding: 116px 0 64px;
  }

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

/* ---------- Página de Contato ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.contact-form-card {
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.contact-form-card iframe {
  display: block;
  width: 100%;
  min-height: 640px;
  border: 0;
  border-radius: 4px;
}

.contact-info-block {
  display: grid;
  gap: 22px;
  align-content: start;
}

.contact-info-block .info-item {
  display: grid;
  gap: 5px;
}

.contact-info-block .info-item > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact-info-block .info-item strong,
.contact-info-block .info-item a {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.contact-info-block .info-item a {
  color: var(--blue);
}

.contact-info-block .info-item a:hover {
  color: var(--teal);
}

.contact-info-block address {
  margin: 0;
  font-style: normal;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

.contact-map {
  border-top: 1px solid var(--line);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
}

@media (max-width: 1040px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 680px) {
  .contact-form-card iframe {
    min-height: 720px;
  }

  .contact-map iframe {
    height: 340px;
  }
}

/* ---------- Formulário nativo de contato ---------- */
.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .field {
  display: grid;
  gap: 6px;
}

.contact-form label {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}

.contact-form label span {
  color: var(--muted);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(35, 185, 198, 0.18);
}

.contact-form button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.contact-form .form-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}
