:root {
  --green: #75C64B;
  --green-strong: #4e9e2e;  --green-text: #3d7a1f;    --blue: #2477B9;
  --blue-dark: #1b5f96;
  --ink: #102033;
  --bg: #F7FAFC;
  --green-soft: #EAF8E3;
  --blue-soft: #EAF3FC;
  --gray: #5B6675;
  --white: #ffffff;
  --border: #e3eaf1;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 4px rgba(16, 32, 51, 0.06);
  --shadow: 0 6px 24px rgba(16, 32, 51, 0.08);
  --shadow-lg: 0 16px 44px rgba(16, 32, 51, 0.12);

  --header-height: 76px;

  --font-display: "Archivo", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;

  --surface-white: rgba(255, 255, 255, 0.84);
  --surface-bg: rgba(247, 250, 252, 0.84);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: transparent;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  contain: paint;
  background: var(--bg);
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.ambient-orb-blue {
  width: min(62vw, 720px);
  height: min(62vw, 720px);
  background: rgba(36, 119, 185, 0.17);
  top: -14%;
  left: -12%;
  transform: translate(calc(var(--mx, 0) * 110px), calc(var(--my, 0) * 85px));
}

.ambient-orb-green {
  width: min(54vw, 600px);
  height: min(54vw, 600px);
  background: rgba(117, 198, 75, 0.14);
  top: 28%;
  right: -14%;
  transform: translate(calc(var(--mx, 0) * -95px), calc(var(--my, 0) * 72px));
}

.ambient-orb-soft {
  width: min(48vw, 540px);
  height: min(48vw, 540px);
  background: rgba(36, 119, 185, 0.1);
  bottom: 6%;
  left: 24%;
  transform: translate(calc(var(--mx, 0) * 70px), calc(var(--my, 0) * -60px));
}

.ambient-spotlight {
  position: absolute;
  width: min(68vw, 760px);
  height: min(68vw, 760px);
  left: 0;
  top: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(36, 119, 185, 0.22) 0%,
    rgba(117, 198, 75, 0.1) 32%,
    transparent 68%
  );
  filter: blur(48px);
  will-change: transform;
  transform: translate(
    calc(var(--cursor-x, 50) * 1vw - min(34vw, 380px)),
    calc(var(--cursor-y, 45) * 1vh - min(34vw, 380px))
  );
}

.ambient-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at calc(50% + var(--mx, 0) * 14%) calc(38% + var(--my, 0) * 10%), rgba(36, 119, 185, 0.09) 0%, transparent 46%),
    radial-gradient(circle at calc(72% + var(--mx, 0) * -10%) calc(68% + var(--my, 0) * 8%), rgba(117, 198, 75, 0.08) 0%, transparent 42%);
}

.header,
main,
.footer {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: var(--blue);
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  letter-spacing: -0.015em;
}

::placeholder {
  color: var(--gray);
  opacity: 1;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.container-narrow {
  width: min(860px, 92%);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head--left {
  margin-left: 0;
  text-align: left;
}

.section-kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: 16px;
}

.section-kicker--dark {
  color: var(--green);
}

.section-title {
  font-size: clamp(1.65rem, 3.3vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
}

.section-text {
  color: var(--gray);
  font-size: 1.05rem;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.title-accent {
  background: linear-gradient(180deg, transparent 64%, rgba(117, 198, 75, 0.4) 64%);
  padding: 0 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.02rem;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(36, 119, 185, 0.28);
}

.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 20px rgba(36, 119, 185, 0.38);
}

.btn-outline {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue-soft);
}

.btn-white {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-suporte {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--green-text);
  border: 1px solid rgba(117, 198, 75, 0.72);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.btn-suporte:hover {
  background: var(--green-soft);
  border-color: var(--green);
  color: var(--green-text);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(16, 32, 51, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  width: auto;
  height: 46px;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand-text-soft {
  color: var(--blue);
  font-weight: 600;
  margin-left: 4px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: inline-block;
  padding: 8px 13px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.94rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--blue);
}

.btn-header {
  padding: 11px 22px;
  font-size: 0.92rem;
}

.btn-nav-mobile {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px;
  box-shadow: var(--shadow-sm);
}

.hamburger-line {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  padding-top: var(--header-height);
  background:
    radial-gradient(55% 70% at calc(88% + var(--mx, 0) * 10%) calc(8% + var(--my, 0) * 8%), rgba(117, 198, 75, 0.16), transparent 60%),
    radial-gradient(65% 85% at calc(8% + var(--mx, 0) * -8%) calc(18% + var(--my, 0) * 6%), rgba(36, 119, 185, 0.14), transparent 60%),
    transparent;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 119, 185, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 119, 185, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 85%);
  pointer-events: none;
  transform: translate(calc(var(--mx, 0) * 18px), calc(var(--my, 0) * 12px));
}

.carousel {
  position: relative;
}

.carousel-track {
  display: grid;
}

.carousel-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  padding: 48px 0 108px;
}

.carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.9vw, 2.9rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  margin-top: 20px;
  font-size: 0.86rem;
  color: var(--gray);
}

.hero-first-load .carousel-slide.is-active .hero-kicker,
.hero-first-load .carousel-slide.is-active .hero-title,
.hero-first-load .carousel-slide.is-active .hero-subtitle,
.hero-first-load .carousel-slide.is-active .hero-ctas,
.hero-first-load .carousel-slide.is-active .hero-trust,
.hero-first-load .carousel-slide.is-active .hero-visual {
  animation: heroIn 0.7s var(--ease-out) both;
}

.hero-first-load .carousel-slide.is-active .hero-title { animation-delay: 0.07s; }
.hero-first-load .carousel-slide.is-active .hero-subtitle { animation-delay: 0.14s; }
.hero-first-load .carousel-slide.is-active .hero-ctas { animation-delay: 0.21s; }
.hero-first-load .carousel-slide.is-active .hero-trust { animation-delay: 0.28s; }
.hero-first-load .carousel-slide.is-active .hero-visual { animation-delay: 0.18s; }

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-visual {
  position: relative;
}

.hero-visual-frame {
  position: relative;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px 16px;
  font-size: 0.85rem;
}

.float-card strong {
  display: block;
  color: var(--ink);
  font-size: 0.88rem;
}

.float-card span:not(.float-card-dot) {
  color: var(--gray);
  font-size: 0.78rem;
}

.float-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-green { background: var(--green-strong); box-shadow: 0 0 0 4px var(--green-soft); }
.dot-blue { background: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }

.float-card-1 { bottom: -20px; left: -16px; }

.mock-dashboard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
}

.mock-dash-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
}

.mock-dash-title {
  margin-left: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.mock-dash-note {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--gray);
  font-style: italic;
}

.mock-dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.mock-kpi {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mock-kpi-label {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mock-kpi-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.kpi-green { color: var(--green-text); }
.kpi-blue { color: var(--blue-dark); }
.kpi-dark { color: var(--ink); }

.mock-dash-rows {
  display: grid;
  gap: 12px;
}

.mock-row {
  display: grid;
  grid-template-columns: 74px 1fr 42px;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
}

.mock-row-label {
  color: var(--gray);
  font-weight: 500;
}

.mock-row-track {
  height: 8px;
  background: var(--bg);
  border-radius: 999px;
  overflow: hidden;
}

.mock-row-fill {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: 999px;
  background: var(--blue);
}

.mock-row-fill.fill-green {
  background: var(--green-strong);
}

.mock-row-value {
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

.mock-dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
}

.mock-bar {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 5px 5px 0 0;
  background: rgba(36, 119, 185, 0.55);
}

.mock-bar-green {
  background: rgba(78, 158, 46, 0.65);
}

.ecosystem-orbit {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(150px, 170px) minmax(120px, 1fr);
  grid-template-rows: repeat(3, minmax(66px, auto));
  align-items: center;
  gap: 12px 16px;
  min-height: 390px;
  padding: 28px;
  border: 1px solid rgba(227, 234, 241, 0.95);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(36, 119, 185, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 119, 185, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(117, 198, 75, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(247,250,252,0.94));
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.ecosystem-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ecosystem-lines line {
  stroke: url(#ecosystem-line);
  stroke-width: 1.8;
  stroke-linecap: round;
  opacity: 0.28;
}

.ecosystem-lines circle {
  fill: var(--green-strong);
  opacity: 0.52;
}

.ecosystem-core,
.ecosystem-node {
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.ecosystem-core {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  padding: 24px 18px;
  text-align: center;
  border-radius: var(--radius-lg);
  border-color: rgba(117, 198, 75, 0.44);
  background:
    radial-gradient(circle at 50% 28%, rgba(117, 198, 75, 0.2), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(234,248,227,0.88));
}

.ecosystem-core-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(36, 119, 185, 0.2);
}

.ecosystem-core-mark img {
  width: 32px;
  height: auto;
}

.ecosystem-core strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--ink);
}

.ecosystem-core span:last-child {
  margin-top: 2px;
  color: var(--gray);
  font-size: 0.78rem;
}

.ecosystem-node {
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: center;
  column-gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
  border-radius: var(--radius);
}

.ecosystem-node::before {
  content: "";
  grid-row: 1 / span 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}

.ecosystem-node:nth-of-type(even)::before {
  background: var(--green-strong);
  box-shadow: 0 0 0 4px var(--green-soft);
}

.ecosystem-node strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.84rem;
  line-height: 1.2;
  color: var(--ink);
}

.ecosystem-node span {
  color: var(--gray);
  font-size: 0.68rem;
  line-height: 1.25;
}

.ecosystem-node-top { grid-column: 1; grid-row: 1; }
.ecosystem-node-upper-left { grid-column: 1; grid-row: 2; }
.ecosystem-node-lower-left { grid-column: 1; grid-row: 3; }
.ecosystem-node-upper-right { grid-column: 3; grid-row: 1; }
.ecosystem-node-right { grid-column: 3; grid-row: 2; }
.ecosystem-node-lower-right { grid-column: 3; grid-row: 3; }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.carousel-arrow:hover {
  background: var(--blue);
  color: var(--white);
}

.carousel-prev { left: 18px; }
.carousel-next { right: 18px; }

.carousel-controls {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.carousel-dots {
  display: flex;
  gap: 2px;
}

.carousel-dot {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.carousel-dot::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.22);
  transition: background 0.25s ease, width 0.25s ease;
}

.carousel-dot.is-active::after {
  width: 24px;
  background: var(--blue);
}

.carousel-pause {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.carousel-pause:hover {
  background: var(--blue);
  color: var(--white);
}

.carousel-pause .icon-play {
  display: none;
}

.carousel-pause[aria-pressed="true"] .icon-pause {
  display: none;
}

.carousel-pause[aria-pressed="true"] .icon-play {
  display: block;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-pains {
  background: var(--surface-white);
}

.pains-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pain-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pain-card:hover {
  border-color: rgba(36, 119, 185, 0.35);
  box-shadow: var(--shadow);
}

.pain-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 16px;
}

.pain-icon svg {
  width: 23px;
  height: 23px;
}

.pain-card h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.pain-card p {
  color: var(--gray);
  font-size: 0.92rem;
}

.section-solution {
  background: var(--ink);
}

.section-solution .section-title {
  color: var(--white);
}

.section-solution .section-text {
  color: rgba(255, 255, 255, 0.72);
}

.impact-statement {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}

.impact-highlight {
  color: var(--green);
}

.solution-map {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.solution-node {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--white);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.solution-node:hover {
  border-color: var(--green);
  background: rgba(117, 198, 75, 0.12);
}

.solution-node::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 10px;
}

.section-textil {
  background: var(--surface-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(78, 158, 46, 0.4);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--green-soft);
  color: var(--green-strong);
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

.section-producao {
  background: var(--surface-white);
}

.producao-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.producao-list {
  display: grid;
  gap: 11px;
}

.producao-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.producao-list li:hover {
  border-color: var(--green);
}

.producao-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / 12px no-repeat,
    var(--green-strong);
}

.mock-dashboard-lg {
  padding: 26px;
}

.mock-dashboard-lg .mock-dash-bars {
  height: 170px;
}

.gestao-vista {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 44px;
}

.gestao-vista-title {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  margin-bottom: 14px;
}

.gestao-vista .section-text {
  max-width: 700px;
  margin: 0 auto;
}

.metric-disclaimer {
  margin-top: 26px;
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.metric-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 22px 12px;
  transition: box-shadow 0.25s ease;
}

.metric-card:hover {
  box-shadow: var(--shadow);
}

.metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
}

.gestao-vista .section-cta {
  margin-top: 40px;
}

.section-balance {
  background: var(--surface-bg);
}

.balance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.balance-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.balance-card:hover {
  border-color: rgba(36, 119, 185, 0.35);
  box-shadow: var(--shadow);
}

.balance-icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 20px;
}

.balance-icon svg {
  width: 29px;
  height: 29px;
}

.balance-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.balance-card p {
  color: var(--gray);
  font-size: 0.96rem;
}

.section-products {
  background: var(--surface-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  border-color: rgba(78, 158, 46, 0.45);
  box-shadow: var(--shadow);
}

.product-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.product-icon svg {
  width: 25px;
  height: 25px;
}

.icon-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.icon-green {
  background: var(--green-soft);
  color: var(--green-strong);
}

.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.product-card p {
  color: var(--gray);
  font-size: 0.92rem;
  flex-grow: 1;
  margin-bottom: 18px;
}

.product-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
  transition: color 0.2s ease;
}

.product-link:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

.section-logistics {
  background: var(--surface-bg);
}

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.logistics-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.logistics-col:hover {
  border-color: rgba(78, 158, 46, 0.4);
  box-shadow: var(--shadow);
}

.logistics-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green-strong);
  margin-bottom: 20px;
}

.logistics-icon svg {
  width: 27px;
  height: 27px;
}

.logistics-col h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.logistics-col p {
  color: var(--gray);
  font-size: 0.95rem;
}

.section-commercial {
  background: var(--surface-white);
}

.commercial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.commercial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.25s ease;
}

.commercial-card:nth-child(even) {
  border-left-color: var(--green);
}

.commercial-card:hover {
  box-shadow: var(--shadow);
}

.commercial-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.commercial-card p {
  color: var(--gray);
  font-size: 0.92rem;
}

.section-implantation {
  background: var(--surface-bg);
}

.timeline {
  list-style: none;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 22px;
  padding: 16px 0;
}

.timeline-number {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  margin-left: -34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(36, 119, 185, 0.28);
}

.timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  flex-grow: 1;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.timeline-item:hover .timeline-content {
  border-color: rgba(36, 119, 185, 0.3);
  box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.timeline-content p {
  color: var(--gray);
  font-size: 0.94rem;
}

html.js .timeline-item.reveal {
  transform: translateX(-20px);
}

html.js .timeline-item.reveal.is-visible {
  transform: translateX(0);
}

.section-social {
  background: var(--surface-white);
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.client-logo-placeholder {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  color: var(--gray);
  font-weight: 500;
  font-size: 0.9rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  border-color: rgba(36, 119, 185, 0.3);
  box-shadow: var(--shadow);
}

.testimonial-card blockquote p {
  color: var(--gray);
  font-size: 0.96rem;
  font-style: italic;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-soft);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.testimonial-card figcaption strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-card figcaption span:not(.testimonial-avatar) {
  color: var(--gray);
  font-size: 0.82rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.trust-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: border-color 0.25s ease;
}

.trust-card:hover {
  border-color: rgba(78, 158, 46, 0.4);
}

.trust-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-strong);
  margin-bottom: 12px;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-card h3 {
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 700;
}

.section-faq {
  background: var(--surface-bg);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(36, 119, 185, 0.35);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  flex-shrink: 0;
  display: inline-flex;
  color: var(--blue);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 22px;
}

.faq-answer p {
  color: var(--gray);
  font-size: 0.97rem;
}

.section-final-cta {
  padding: 80px 0;
  background: var(--surface-white);
}

.final-cta {
  position: relative;
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 72px 56px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.final-cta-mark {
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 220px;
  height: auto;
  opacity: 0.08;
  pointer-events: none;
}

.final-cta h2,
.final-cta p,
.final-cta-buttons {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  margin-bottom: 16px;
}

.final-cta p {
  max-width: 640px;
  margin: 0 auto 34px;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.section-contact {
  background: var(--surface-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.contact-info .section-title {
  margin-bottom: 12px;
}

.contact-list {
  margin: 30px 0;
  display: grid;
  gap: 16px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-list a {
  color: var(--ink);
  font-weight: 600;
  font-size: 1.02rem;
}

.contact-list a:hover {
  color: var(--blue);
}

.contact-list-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--blue-soft);
  color: var(--blue);
  flex-shrink: 0;
}

.contact-highlight {
  background: var(--green-soft);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
}

.contact-highlight p {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.form-interest {
  background: var(--blue-soft);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 7px;
  color: var(--ink);
}

.req {
  color: var(--blue);
  margin-left: 3px;
}

.optional {
  color: var(--gray);
  font-weight: 400;
  font-size: 0.82rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(36, 119, 185, 0.3);
}

.form-group.has-error input,
.form-group.has-error select {
  border-color: #d64545;
  background: #fdf3f3;
}

.form-error {
  color: #c03434;
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 1em;
}

.btn-submit {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
}

.form-feedback {
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.form-feedback.is-success {
  background: var(--green-soft);
  border: 1px solid rgba(117, 198, 75, 0.4);
  color: var(--green-text);
  padding: 13px 18px;
}

.form-feedback.is-warning {
  background: var(--blue-soft);
  border: 1px solid rgba(36, 119, 185, 0.3);
  color: var(--blue-dark);
  padding: 13px 18px;
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 52px;
}

.footer-brand-icon {
  width: 41px;
  height: 36px;
}

.brand-text-footer {
  color: var(--white);
  line-height: 1.2;
}

.brand-text-footer .brand-text-soft {
  display: block;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-left: 0;
}

.footer-desc {
  margin-top: 16px;
  font-size: 0.94rem;
  max-width: 300px;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: var(--green);
  color: var(--ink);
}

.footer-col h3 {
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.88rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5);
}

.whatsapp-float.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.back-to-top {
  position: fixed;
  right: 29px;
  bottom: 96px;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue);
  color: var(--white);
}

@media (max-width: 1120px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 20px 5% 28px;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-link {
    display: block;
    padding: 13px 16px;
    font-size: 1.02rem;
  }

  .btn-nav-mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 14px;
  }

  .hamburger {
    display: flex;
  }

  .header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 76px 0;
  }

  .pains-grid,
  .features-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .commercial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .ecosystem-orbit {
    min-height: 400px;
  }

  .float-card-1 { left: 0; }

  .carousel-arrow {
    display: none;
  }

  .producao-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .header-phone {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .pains-grid,
  .features-grid,
  .products-grid,
  .balance-grid,
  .logistics-grid,
  .commercial-grid,
  .trust-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .btn-header {
    display: none;
  }

  .carousel-slide {
    padding: 22px 0 58px;
  }

  .carousel-controls {
    bottom: 20px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-kicker {
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: clamp(1.58rem, 7.4vw, 2rem);
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-trust {
    display: none;
  }

  .hero-visual {
    max-width: 340px;
  }

  .float-card {
    position: static;
    margin-top: 14px;
  }

  .hero .mock-dashboard {
    padding: 14px;
  }

  .hero .mock-dash-kpis {
    gap: 6px;
    margin-bottom: 12px;
  }

  .hero .mock-kpi {
    padding: 8px 7px;
  }

  .hero .mock-dash-bars {
    height: 86px;
  }

  .hero .mock-row {
    grid-template-columns: 68px 1fr 34px;
    gap: 8px;
  }

  .hero .mock-dash-rows .mock-row:nth-child(n+3) {
    display: none;
  }

  .brand-logo {
    height: 38px;
  }

  .ecosystem-orbit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    min-height: auto;
    padding: 14px;
    overflow: visible;
  }

  .ecosystem-orbit::before,
  .ecosystem-lines {
    display: none;
  }

  .ecosystem-core,
  .ecosystem-node {
    position: static;
    transform: none;
    width: auto;
    grid-column: auto;
    grid-row: auto;
  }

  .ecosystem-core {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 82px;
    padding: 14px;
    border-radius: var(--radius-lg);
  }

  .ecosystem-core-mark {
    width: 36px;
    height: 36px;
    margin-bottom: 6px;
    border-radius: 12px;
    font-size: 0.86rem;
  }

  .ecosystem-node {
    min-height: 54px;
    padding: 9px 8px;
  }

  .ecosystem-node strong {
    margin-bottom: 0;
    font-size: 0.76rem;
  }

  .ecosystem-node span {
    display: none;
  }

  .ecosystem-node::before {
    width: 8px;
    height: 8px;
    margin-bottom: 6px;
    box-shadow: 0 0 0 4px var(--blue-soft);
  }

  .ecosystem-node:nth-of-type(even)::before {
    box-shadow: 0 0 0 4px var(--green-soft);
  }

  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    left: 23px;
  }

  .timeline-number {
    margin-left: 0;
  }

  .flow-step {
    padding: 14px 0;
  }

  .section-cta .btn {
    width: 100%;
  }

  .final-cta {
    padding: 52px 26px;
  }

  .final-cta-mark {
    right: -72px;
    bottom: -50px;
    width: 180px;
  }

  .final-cta-buttons .btn {
    width: 100%;
    white-space: normal;
  }

  .contact-form {
    padding: 30px 22px;
  }

  .gestao-vista {
    padding: 40px 22px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 18px;
    bottom: 18px;
  }

  .back-to-top {
    right: 23px;
    bottom: 84px;
    width: 44px;
    height: 44px;
  }
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 64px 20px;
  text-align: center;
  background: var(--color-bg);
}

.not-found-page .brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.not-found-logo {
  width: min(320px, 82vw);
  height: auto;
}

.not-found-page h1 {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.not-found-page p {
  max-width: 560px;
  margin: 0;
  color: var(--color-text-muted);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }

  .ambient-bg {
    display: none;
  }
}
