:root {
  --bg: #f3f6fa;
  --surface: #ffffff;
  --surface-soft: #eef3f7;
  --surface-deep: #e9eff6;
  --text: #152033;
  --text-muted: #5e6b81;
  --line: #d8e1ea;
  --line-strong: #c7d3df;
  --navy: #21314f;
  --navy-strong: #16233a;
  --navy-soft: #6e7d96;
  --green: #5cc16b;
  --green-strong: #3ea458;
  --green-soft: rgba(92, 193, 107, 0.12);
  --shadow: 0 18px 48px rgba(21, 32, 51, 0.08);
  --shadow-soft: 0 10px 30px rgba(21, 32, 51, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --font-body: Inter, "Segoe UI", Arial, sans-serif;
  --font-heading: "Segoe UI Variable Display", "Segoe UI", Inter, Arial, sans-serif;
  --font-accent: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(92, 193, 107, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fbfd 0%, #eff4f8 100%);
  line-height: 1.65;
  font-size: 16px;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--navy-strong);
  text-wrap: balance;
}

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 253, 0.92);
  border-bottom: 1px solid rgba(216, 225, 234, 0.9);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
}

.brand-mark {
  display: none;
}

.brand-title {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

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

.site-nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--navy-strong);
  background: rgba(33, 49, 79, 0.06);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 20px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  transition: 0.2s ease;
}

.header-cta:hover,
.button-primary:hover {
  transform: translateY(-1px);
  background: var(--navy-strong);
}

.hero {
  padding: 84px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.page-hero {
  padding: 54px 0 24px;
}

.page-hero-card {
  padding: 42px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 225, 234, 0.95);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(92, 193, 107, 0.22);
  color: var(--green-strong);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.hero-copy,
.hero-panel,
.premium-strip,
.info-card,
.service-card,
.segment-card,
.value-card,
.cta-banner,
.contact-card,
.highlight-panel,
.method-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 225, 234, 0.95);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.hero-copy {
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(92, 193, 107, 0.14), transparent 70%);
  pointer-events: none;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  max-width: 16ch;
}

.page-hero h1 {
  max-width: 11ch;
}

.hero-copy p,
.page-hero p,
.section-intro {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.06rem;
}

.hero-copy p {
  max-width: 650px;
  font-size: 1.12rem;
  line-height: 1.75;
}

.text-highlight {
  position: relative;
  display: inline;
  color: var(--navy);
}

.text-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.34em;
  background: linear-gradient(180deg, transparent 0%, rgba(92, 193, 107, 0.22) 100%);
  z-index: -1;
  border-radius: 999px;
}

.title-accent {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--navy-strong);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.button-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 30px rgba(22, 35, 58, 0.14);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--navy);
}

.button-secondary:hover {
  border-color: rgba(33, 49, 79, 0.28);
  transform: translateY(-1px);
}

.hero-points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding: 15px 18px 15px 42px;
  border-radius: var(--radius-md);
  background: rgba(247, 250, 252, 0.92);
  border: 1px solid rgba(216, 225, 234, 0.8);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.97rem;
  line-height: 1.72;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.35em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(92, 193, 107, 0.14);
  transform: translateY(-50%);
}

.list-check li,
.check-card {
  border: 1px solid rgba(92, 193, 107, 0.18);
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
}

.hero-panel {
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 248, 0.96));
}

.hero-panel-header,
.hero-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.hero-panel-header img,
.hero-panel-top img {
  height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-panel h2 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 14ch;
}

.hero-panel-body {
  display: grid;
  gap: 14px;
}

.hero-panel-lead {
  margin: 0;
  color: var(--navy-strong);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.55;
}

.hero-panel-body p,
.hero-panel p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.hero-deliverables h3 {
  margin: 0 0 14px;
  font-size: 1.08rem;
  color: var(--navy-strong);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.deliverable-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 225, 234, 0.9);
}

.deliverable-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.deliverable-item strong {
  display: block;
  color: var(--navy-strong);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.deliverable-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

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

.stat-item {
  border-radius: var(--radius-md);
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 243, 247, 0.98));
  border: 1px solid var(--line);
}

.stat-item strong {
  display: block;
  font-size: 1.8rem;
  color: var(--navy);
}

.stat-item span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.premium-strip {
  padding: 28px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.premium-strip p {
  margin: 0;
  color: var(--text-muted);
  max-width: 720px;
}

.premium-strip strong {
  display: block;
  color: var(--navy-strong);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.section {
  padding: 38px 0;
}

.section-header {
  margin-bottom: 22px;
}

.section-header h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
  max-width: 13ch;
  position: relative;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  max-width: 760px;
  font-size: 1.04rem;
  line-height: 1.8;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), rgba(92, 193, 107, 0.08));
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.service-card,
.segment-card,
.value-card,
.contact-card,
.highlight-panel,
.method-panel {
  padding: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.info-card:hover,
.service-card:hover,
.segment-card:hover,
.value-card:hover,
.highlight-panel:hover,
.method-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(21, 32, 51, 0.1);
}

.info-card h3,
.service-card h3,
.segment-card h3,
.value-card h3,
.contact-card h3,
.highlight-panel h3,
.method-panel h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
}

.info-card p,
.service-card p,
.segment-card p,
.value-card p,
.contact-card p,
.highlight-panel p,
.method-panel p {
  margin: 0;
  color: var(--text-muted);
}

.service-card ul,
.contact-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.service-card li,
.contact-card li {
  margin-bottom: 8px;
}

.plain-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.plain-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-strong);
  font-weight: 700;
  font-size: 0.9rem;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.method-panel {
  padding: 34px;
}

.list-check {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.timeline-step strong {
  color: var(--green-strong);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.timeline-step h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.timeline-step p {
  margin: 0;
  color: var(--text-muted);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.client-logo-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.client-logo-frame {
  display: grid;
  place-items: center;
  min-height: 140px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  border: 1px dashed var(--line-strong);
}

.client-logo-frame img {
  max-height: 96px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.client-logo-frame--pending.is-missing .client-logo-placeholder {
  display: block;
}

.client-logo-placeholder {
  display: none;
  color: var(--text-muted);
  font-weight: 600;
}

.client-logo-caption {
  margin: 14px 0 0;
  font-weight: 700;
  color: var(--navy);
}

.clients-note {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cta-banner {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 247, 0.96));
}

.cta-banner h3 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.cta-banner p {
  margin: 0;
  color: var(--text-muted);
  max-width: 620px;
}

.footer {
  padding: 42px 0 54px;
  border-top: 1px solid rgba(216, 225, 234, 0.9);
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.footer p {
  margin: 0 0 10px;
  color: var(--text-muted);
}

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

.footer-nav a {
  color: var(--navy);
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--green-strong);
}

.showcase-block {
  position: relative;
}

.showcase-block--insights {
  padding-top: 0;
}

.showcase-block--insights::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(92, 193, 107, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 72%);
  pointer-events: none;
}

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

.segment-showcase .segment-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(216, 225, 234, 0.95);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.94));
}

.segment-showcase .segment-card::before {
  content: "";
  display: block;
  height: 4px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: linear-gradient(90deg, var(--green), rgba(92, 193, 107, 0.35));
}

.segment-card--agro::before {
  background: linear-gradient(90deg, #3ea458, rgba(92, 193, 107, 0.35));
}

.segment-card--industria::before {
  background: linear-gradient(90deg, #21314f, rgba(33, 49, 79, 0.28));
}

.segment-card--logistica::before {
  background: linear-gradient(90deg, #4f7fd1, rgba(79, 127, 209, 0.28));
}

.segment-card--manutencao::before {
  background: linear-gradient(90deg, #d4842c, rgba(212, 132, 44, 0.28));
}

.segment-card--administracao::before {
  background: linear-gradient(90deg, #5b6b8c, rgba(91, 107, 140, 0.28));
}

.segment-card--custos::before {
  background: linear-gradient(90deg, #2f9e6b, rgba(47, 158, 107, 0.28));
}

.segment-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 28px 0;
}

.segment-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex-shrink: 0;
  background: var(--green-soft);
  border: 1px solid rgba(92, 193, 107, 0.18);
  font-size: 1.35rem;
  line-height: 1;
}

.segment-card--industria .segment-card__icon {
  background: rgba(33, 49, 79, 0.08);
  border-color: rgba(33, 49, 79, 0.12);
}

.segment-card--logistica .segment-card__icon {
  background: rgba(79, 127, 209, 0.1);
  border-color: rgba(79, 127, 209, 0.16);
}

.segment-card--manutencao .segment-card__icon {
  background: rgba(212, 132, 44, 0.12);
  border-color: rgba(212, 132, 44, 0.18);
}

.segment-card--administracao .segment-card__icon {
  background: rgba(91, 107, 140, 0.12);
  border-color: rgba(91, 107, 140, 0.18);
}

.segment-card--custos .segment-card__icon {
  background: rgba(47, 158, 107, 0.12);
  border-color: rgba(47, 158, 107, 0.18);
}

.segment-showcase .segment-card h3 {
  margin: 0;
  font-size: 1.28rem;
}

.segment-showcase .segment-card p {
  padding: 14px 28px 28px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .segment-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  position: relative;
  z-index: 1;
}

.showcase-block--insights .method-panel {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.95));
  border: 1px solid rgba(216, 225, 234, 0.95);
}

.method-panel--process {
  border-top: 4px solid var(--green);
}

.method-panel--value {
  border-top: 4px solid var(--navy);
}

.method-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-steps {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.insight-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 225, 234, 0.9);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
  box-shadow: var(--shadow-soft);
}

.insight-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(92, 193, 107, 0.18), rgba(92, 193, 107, 0.08));
  color: var(--green-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.insight-steps--value .insight-steps__num {
  background: linear-gradient(180deg, rgba(33, 49, 79, 0.12), rgba(33, 49, 79, 0.05));
  color: var(--navy);
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .feature-band,
  .contact-box,
  .clients-grid,
  .footer-grid,
  .cta-banner,
  .premium-strip {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid {
    display: grid;
  }

  .grid-2,
  .insights-grid,
  .segment-showcase {
    grid-template-columns: 1fr;
  }

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

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

  .timeline-step {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-header-inner {
    position: relative;
  }

  .hero-copy,
  .page-hero-card,
  .hero-panel,
  .cta-banner {
    padding: 28px;
  }

  .brand img {
    height: 50px;
    max-width: min(190px, 52vw);
  }
