
    /* #region CSS-BASICS */
    :root {
      --green-950: #07130f;
      --green-925: #0b1813;
      --green-900: #0f1f19;
      --green-850: #10281f;
      --green-800: #123327;
      --green-700: #0b6b44;
      --green-600: #0b7a4b;
      --green-500: #17a36a;
      --green-400: #45c88b;
      --green-300: #6ee0a8;
      --green-100: #e4f5ed;
      --green-50: #f1faf5;

      --ink: #111c17;
      --text: #17211d;
      --muted: #53685f;
      --muted-strong: #40564c;
      --line: rgba(6, 39, 29, 0.12);
      --line-soft: rgba(6, 39, 29, 0.075);
      --bg: #f7faf9;
      --surface: #eef3f1;
      --surface-deep: #e5eeea;
      --surface-card: rgba(255, 255, 255, 0.86);
      --white: #ffffff;

      --shadow-sm: 0 10px 24px rgba(8, 31, 22, 0.06);
      --shadow-md: 0 18px 48px rgba(8, 31, 22, 0.09);
      --shadow-lg: 0 28px 70px rgba(8, 31, 22, 0.14);
      --glow: 0 0 46px rgba(110, 224, 168, 0.18);

      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 10px;

      --container: min(1120px, 92vw);
      --header-height: 72px;
      --cliente-card-height: 112px;
      --ease-out: cubic-bezier(0.22, 0.7, 0.2, 1);
      --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: var(--header-height);
      background: var(--green-950);
    }

    body {
      min-height: 100vh;
      font-family: 'IBM Plex Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      text-rendering: geometricPrecision;
      -webkit-font-smoothing: antialiased;
    }

    body.menu-open {
      overflow: hidden;
    }

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

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

    button,
    input,
    textarea {
      font: inherit;
    }

    ::selection {
      background: rgba(110, 224, 168, 0.35);
      color: var(--green-950);
    }

    .container {
      width: var(--container);
      margin-inline: auto;
    }

    .section {
      position: relative;
      padding: 104px 0;
      overflow: hidden;
    }

    .section-header {
      max-width: 900px;
      margin-bottom: 44px;
    }

    .section-header.center {
      margin-inline: auto;
      text-align: center;
    }

    .section-kicker,
    .section-header span,
    .outcome-copy span {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--green-600);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .section-kicker::before,
    .section-header span::before,
    .outcome-copy span::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: currentColor;
      box-shadow: 0 0 0 5px rgba(11, 122, 75, 0.10);
    }

    .section-header h2,
    .outcome-copy h2 {
      margin-top: 12px;
      margin-bottom: 16px;
      max-width: 860px;
      color: var(--green-900);
      font-family: 'Manrope', sans-serif;
      font-size: clamp(2rem, 4vw, 3.18rem);
      line-height: 1.04;
      letter-spacing: -1.35px;
    }

    .section-header.center h2 {
      margin-inline: auto;
    }

    .section-header p,
    .outcome-copy p {
      color: var(--muted);
      font-size: 1.065rem;
      max-width: 720px;
    }

    .section-header.center p {
      margin-inline: auto;
    }

    .btn-primary,
    .btn-secondary,
    .nav-cta {
      position: relative;
      isolation: isolate;
      overflow: hidden;
    }

    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 14px 22px;
      border: 0;
      border-radius: 13px;
      font-weight: 900;
      cursor: pointer;
      overflow: hidden;
      transition:
        transform 0.22s var(--ease-out),
        box-shadow 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease;
    }

    .btn-primary::after,
    .btn-secondary::after,
    .nav-cta::after {
      content: "";
      position: absolute;
      inset: 0;

      z-index: 0;

      background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.22) 42%,
        transparent 72%
      );

      transform: translateX(-120%);
      transition: transform 0.75s var(--ease-premium);
    }

    .btn-primary:hover::after,
    .btn-secondary:hover::after,
    .nav-cta:hover::after {
      transform: translateX(120%);
    }

    .btn-primary span {
      position: relative;
      z-index: 1;
    }

    .btn-primary {
      color: var(--white);
      background: linear-gradient(135deg, var(--green-600), #087143);
      box-shadow: 0 16px 36px rgba(11, 122, 75, 0.24);
    }

    .btn-primary:hover,
    .btn-secondary:hover {
      transform: translateY(-2px) scale(1.01);
    }

    .btn-primary:active,
    .btn-secondary:active {
      transform: translateY(0) scale(0.99);
    }

    .btn-secondary {
      color: var(--green-700);
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(110, 224, 168, 0.28);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      border-color: rgba(110, 224, 168, 0.55);
      box-shadow: 0 14px 34px rgba(11, 122, 75, 0.14);
    }

    

    /* #endregion */

/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */

    /* #region CSS-HEADER */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;

  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;
}

header.is-floating {
  background: rgba(3, 24, 18, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 40, 30, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.045);
}

.navbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  min-width: 148px;
}

.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 700;
}

nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

header.scrolled nav a {
  color: #17362b;
}

nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--green-600);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.75;
  transition: transform 0.22s ease;
}

nav a:not(.nav-cta):hover {
  color: var(--green-600);
}

nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 12px;
  color: var(--white);
  background: #008f5a;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(0, 143, 90, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  color: var(--white);
  background: #00a668;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 143, 90, 0.20);
}

header.scrolled .nav-cta {
  color: var(--white);
  background: #007f50;
  border: 1px solid rgba(0, 127, 80, 0.18);
  box-shadow: 0 6px 18px rgba(0, 127, 80, 0.14);
}

.hamburger {
  display: none;
}

/* #endregion */

/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */

/* #region CSS-HERO */

    .hero {
  min-height: 102vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(0, 14, 10, 0.54) 0%,
      transparent 18%
    ),
    linear-gradient(
      90deg,
      rgba(0, 18, 13, 0.88) 0%,
      rgba(0, 30, 22, 0.62) 42%,
      rgba(0, 28, 20, 0.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 20, 15, 0.38) 0%,
      rgba(0, 20, 15, 0.60) 100%
    ),
    url("./assets/fotos/foto-tecnico-manutencao.webp") center right / cover no-repeat;

  padding: 120px 0 120px; /* aumentei um pouco embaixo */
}

    .hero::before {
      content: "";
      position: absolute;
      inset: 0; /* cobre tudo */
      background-image:
        linear-gradient(rgba(11, 122, 75, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 122, 75, 0.09) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent 78%);
      pointer-events: none;
      z-index: 1;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 3vh;
      z-index: 3;
      pointer-events: none;
      background: linear-gradient(
        to bottom,
        rgba(7, 19, 15, 0) 0%,
        rgba(15, 31, 25, 0.06) 20%,
        rgba(232, 240, 236, 0.52) 52%,
        rgba(232, 240, 236, 0.88) 76%,
        #e8f0ec 100%
      );
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1.12fr 0.88fr;
      gap: 56px;
      align-items: center;
    }
.hero-highlight {
  display: block;
  margin-top: 22px;
  color: #6ee0a8;
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(110, 224, 168, 0.25);
  transform: translateX(4px);
}

.hero-subtitle {
  max-width: 610px;
  color: #d7e8e0;
  font-size: 1.12rem;
  margin-bottom: 30px;
}

.hero-card-simple {
  max-width: 430px;
  justify-self: end;
  padding: 30px;
  background: rgba(255, 255, 255, 0.90);
}

.hero-card-simple h3 {
  font-size: 1.55rem;
  margin-bottom: 22px;
}

.hero-card-simple .check-list {
  gap: 14px;
}

.hero-card-simple .check-list li {
  font-weight: 700;
}

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: var(--green-100);
      color: var(--green-700);
      font-weight: 800;
      font-size: 0.9rem;
      margin-bottom: 22px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green-500);
      box-shadow: 0 0 0 6px rgba(23, 163, 106, 0.13);
    }

    .hero h1 {
      font-size: clamp(2.2rem, 3.1vw, 3.8rem);
      line-height: 0.98;
      font-family: 'Manrope', sans-serif;
      letter-spacing: -2.3px;
      color: var(--white);
      margin-bottom: 10px;
      max-width: 680px;
      font-weight: 300;
    }

.hero-solution {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 4.6vw, 5.5rem);
  font-weight: 900;
  font-family: 'Manrope', sans-serif;
  color: #6ee0a8;
  letter-spacing: -1px;
  text-shadow: 0 6px 24px rgba(110, 224, 168, 0.25);
  line-height: 0.95;
  max-width: 500px;
}

  .hero p {
    max-width: 670px;
    color: #d7e8e0;
    font-size: 1.18rem;
    margin-bottom: 34px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      margin-bottom: 24px;
    }

    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 22px;
      border-radius: 12px;
      font-weight: 900;
      transition: 0.2s ease;
      border: 0;
      cursor: pointer;
    }

    .btn-primary {
      background: #009f64;
      color: var(--white);
      box-shadow: 0 14px 34px rgba(0, 159, 100, 0.24);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background: #00ad6d;
      box-shadow: 0 18px 42px rgba(0, 159, 100, 0.30);
    }


.btn-secondary {
  background: rgba(255, 255, 255, 0.105);
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
}

.btn-secondary:active {
  transform: translateY(0);
}

    .hero-proof {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      align-items: flex-start;
    }

    .hero-proof span {
      width: 280px;
      height: 42px;
      padding: 0 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.86);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      font-size: 0.9rem;
      font-weight: 600;
    }

    .hero-proof span::before {
      content: "✓";
      color: #6ee0a8;
      font-weight: 900;
      flex-shrink: 0;
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 34px;
      box-shadow: var(--shadow);
    }

    .hero-card h3 {
      font-size: 1.45rem;
      line-height: 1.18;
      margin-bottom: 12px;
      color: var(--green-900);
    }

    .hero-card > p {
      font-size: 0.98rem;
      margin-bottom: 22px;
      color: var(--muted);
    }

    .hero-problem {
  color: rgba(229, 239, 235, 0.54);
  font-weight: 300;
  }

  .solution {
  padding-left: 22px;
  opacity: 1;
  position: relative;
  }

  .solution::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 8%;
  height: 85%;
  background: linear-gradient(to bottom, #00e89a, rgba(0, 232, 154, 0.35));
  width: 3px;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 208, 132, 0.18);
  }

    .critical-box {
      padding: 18px;
      border-radius: 18px;
      background: #0f1f19;
      color: #eaf7f0;
      margin-bottom: 22px;
    }

    .critical-box strong {
      display: block;
      color: #6ee0a8;
      font-size: 1.9rem;
      line-height: 1;
      margin-bottom: 8px;
    }

    .critical-box span {
      color: #d5e6df;
      font-size: 0.95rem;
    }

    .check-list {
      list-style: none;
      display: grid;
      gap: 15px;
    }

    .check-list li {
      display: flex;
      gap: 12px;
      color: #40564c;
    }

    .check {
      width: 24px;
      height: 24px;
      flex: 0 0 24px;
      border-radius: 50%;
      background: #dff5ea;
      color: var(--green-600);
      display: grid;
      place-items: center;
      font-weight: 900;
      margin-top: 2px;
    }

    /* ANIMAÇÕES HERO */

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroEyebrowFade {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUpSoft {
  from {
    opacity: 0.2;
    transform: translateY(15px);
  }
  to {
    opacity: 0.6;
    transform: translateY(0);
  }
}

@keyframes heroLineReveal {
  from {
    opacity: 0;
    transform: scaleY(0.25);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes heroLineRevealH {
  from {
    opacity: 0;
    transform: scaleX(0.15);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* estado inicial */
.hero .hero-solution,
.hero .hero-subtitle,
.hero .hero-actions {
  opacity: 0;
  animation: heroFadeUp 1.4s cubic-bezier(0.22, 0.7, 0.2, 1) forwards;
}

.hero .hero-proof span {
  opacity: 0;
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 0.7, 0.2, 1) forwards;
}

.hero .hero-problem {
  opacity: 0; /* começa invisível */
  animation: heroFadeUpSoft 0.9s cubic-bezier(0.22, 0.7, 0.2, 1) forwards;
}

.hero .eyebrow{
  opacity: 0;
  animation: heroEyebrowFade 0.9s cubic-bezier(0.22, 0.7, 0.2, 1) forwards;
}

/* sequencia narrativa */
.hero .eyebrow { animation-delay: 0.30s; }
.hero .hero-problem { animation-delay: 0.05s; }
.hero .hero-solution { animation-delay: 0.24s; }
.hero .hero-subtitle { animation-delay: 0.40s; }
.hero .hero-actions { animation-delay: 0.48s; }
.hero .hero-proof span:nth-child(1) { animation-delay: 1.05s; }
.hero .hero-proof span:nth-child(2) { animation-delay: 1.50s; }

/* linha verde da solução entrando com controle */
.solution::before {
  transform-origin: top;
  animation: heroLineReveal 0.7s ease forwards;
  animation-delay: 0.45s;
  opacity: 0;
}

/* hover individual definido em cada botão */

/* respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow,
  .hero .hero-problem,
  .hero .hero-solution,
  .hero .hero-subtitle,
  .hero .hero-actions,
  .hero .hero-proof span,
  .solution::before {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
/* #endregion */

/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */

    /* #region CSS-CLIENTES */
.clientes-section {
  position: relative;
  z-index: 5;
  padding: 53px 0 87px;
  background:
    radial-gradient(circle at 50% -10%, rgba(11, 122, 75, 0.17), transparent 42%),
    radial-gradient(circle at 18% 70%, rgba(255,255,255,0.9), transparent 36%),
    radial-gradient(circle at 82% 42%, rgba(11,122,75,0.055), transparent 34%),
    linear-gradient(to bottom, #e8f0ec 0%, #eef4f1 45%, #e6eeea 100%);
  border-bottom: 1px solid rgba(6, 39, 29, 0.08);
  overflow: hidden;
}

.clientes-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 122, 75, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 122, 75, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.42) 22%, transparent 78%);
  pointer-events: none;
}

.clientes-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(980px, 92vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(11,122,75,0.16), transparent);
  pointer-events: none;
}

.clientes-section .container {
  position: relative;
  z-index: 1;
}

.clientes-section .section-header {
  margin-bottom: 0;
}

.clientes-section .section-header h2 {
  max-width: 760px;
}

.clientes-section .section-header p {
  color: #4b6459;
  font-weight: 600;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 780px;
  margin: 30px auto 0;
}

.trust-metric {
  padding: 15px 16px;
  border: 1px solid rgba(11, 122, 75, 0.16);
  border-radius: 16px;
  background: rgba(255,255,255,0.66);
  box-shadow: 0 14px 34px rgba(8,31,22,0.055);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
}

.trust-metric strong {
  display: block;
  color: var(--green-900);
  font-family: 'Manrope', sans-serif;
  font-size: 1.18rem;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}

.trust-metric span {
  display: block;
  color: #50685d;
  font-size: 0.88rem;
  line-height: 1.35;
}

.clientes-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 2.4fr 1.1fr;
  gap: 34px;
  align-items: start;
  margin-top: 50px;
  padding: 24px;
  border: 1px solid rgba(11, 122, 75, 0.10);
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.34),
      rgba(255,255,255,0.14)
    ),
    radial-gradient(circle at 1px 1px, rgba(11, 122, 75, 0.048) 1px, transparent 0),
    rgba(255,255,255,0.12);
  background-size: auto, 20px 20px;
  box-shadow:
    0 24px 70px rgba(6, 39, 29, 0.055),
    inset 0 1px 0 rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.clientes-wrapper::after {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: calc(67%);
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(11, 122, 75, 0.20) 38%,
    rgba(11, 122, 75, 0.16) 68%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 5;
}

.clientes-bloco {
  margin-top: 0;
}

.clientes-bloco h3 {
  margin-bottom: 18px;
  color: #087648;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

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

.clientes-grid-operadoras {
  grid-template-columns: 1fr;
}

.cliente-card {
  position: relative;
  height: var(--cliente-card-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  border: 1px solid rgba(11, 122, 75, 0.17);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(6, 39, 29, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition:
    transform 0.22s var(--ease-out),
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.cliente-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(110, 224, 168, 0.15), transparent 48%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.cliente-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 150px;
  max-height: 68px;
  height: auto;
  object-fit: contain;
  filter: saturate(0.94) contrast(1.02);
  opacity: 0.96;
  transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.cliente-TierA {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(11, 122, 75, 0.26);
  box-shadow: 0 18px 42px rgba(11, 122, 75, 0.075);
}

.cliente-TierA img {
  max-width: 174px;
  max-height: 84px;
  filter: saturate(1) contrast(1.03);
  opacity: 1;
}

.cliente-operacional img {
  max-width: 165px;
  max-height: 78px;
}

.cliente-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 140, 90, 0.35);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 12px 32px rgba(0, 70, 45, 0.08);
}

.cliente-card:hover::before {
  opacity: 0.6;
}

.cliente-card:hover img {
  filter: saturate(1.015) contrast(1.015);
  opacity: 1;
  transform: scale(1.008);
}

/* ---- Frase institucional de fechamento ---- */

.clientes-footer-phrase {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(11, 122, 75, 0.09);
  text-align: center;
  color: #5a7a6a;
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.62;
}

/* ========================================================= */
/* #region ANIMAÇÃO DE ENTRADA */
/* ========================================================= */

.cliente-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

/* =========================================================
ESTADO VISÍVEL
========================================================= */

.clientes-section.clientes-visible .cliente-reveal {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
DELAYS — LOGOS
========================================================= */

.cliente-reveal:nth-child(1) {
  transition-delay: 0.20s;
}

.cliente-reveal:nth-child(2) {
  transition-delay: 0.35s;
}

.cliente-reveal:nth-child(3) {
  transition-delay: 0.50s;
}

.cliente-reveal:nth-child(4) {
  transition-delay: 0.65s;
}

.cliente-reveal:nth-child(5) {
  transition-delay: 0.80s;
}

.cliente-reveal:nth-child(6) {
  transition-delay: 0.95s;
}

.cliente-reveal:nth-child(7) {
  transition-delay: 1.10s;
}

.cliente-reveal:nth-child(8) {
  transition-delay: 1.25s;
}

/* =========================================================
ACESSIBILIDADE
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .cliente-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

}

/* #endregion */

/* #endregion */

/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */

    /* #region CSS-SERVICES */
    #servicos {
      background: #f4f7f5;
      position: relative;
      overflow: hidden;
    }

    #servicos::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(15, 139, 99, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 139, 99, 0.022) 1px, transparent 1px);
      background-size: 44px 44px;
      pointer-events: none;
    }

    #servicos .container {
      position: relative;
      z-index: 1;
    }

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

    .srv-card-reveal {
      display: flex;
      flex-direction: column;
    }

    .srv-card-reveal .service-card {
      flex: 1;
    }

    .srv-photo-reveal {
      display: block;
    }

    .service-card {
      position: relative;
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.96),
        rgba(248, 250, 249, 0.92)
      );
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(20, 70, 50, 0.09);
      border-radius: var(--radius-lg);
      padding: 20px 22px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04), 0 1px 0 rgba(255,255,255,0.6) inset;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, rgba(11, 122, 75, 0.55), transparent 70%);
      transition: opacity 0.22s ease;
    }

    .service-card:hover::before {
      opacity: 1;
      background: linear-gradient(to right, rgba(11, 122, 75, 0.80), transparent 70%);
    }

    .service-card:hover {
      transform: translateY(-4px);
      border-color: rgba(15, 139, 99, 0.18);
      box-shadow: 0 14px 35px rgba(0, 0, 0, 0.05);
    }

    .service-card h3 {
      margin: 12px 0 7px;
      color: var(--green-900);
      font-size: 1.06rem;
      line-height: 1.25;
    }

    .service-card p {
      color: #596d63;
      font-size: 0.92rem;
    }

    .service-card .icon {
      position: absolute;
      top: 18px;
      right: 18px;
      color: var(--green-600);
      font-weight: 700;
      font-size: 0.60rem;
      font-family: 'Courier New', Courier, monospace;
      letter-spacing: 0.06em;
      opacity: 0.18;
    }

    .service-icon-wrap {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(11, 122, 75, 0.07);
      border: 1px solid rgba(11, 122, 75, 0.13);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      color: var(--green-600);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 1px 4px rgba(11, 122, 75, 0.07);
      transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
    }

    .service-card:hover .service-icon-wrap {
      background: rgba(11, 122, 75, 0.12);
      border-color: rgba(11, 122, 75, 0.22);
      color: var(--green-500);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 2px 8px rgba(11, 122, 75, 0.13);
    }

    .card-icon {
      pointer-events: none;
      flex-shrink: 0;
    }

    /* --- Services two-column layout + photo card --- */

    .services-layout {
      display: grid;
      grid-template-columns: 1.7fr 1fr;
      gap: 52px;
      align-items: center;
    }

    #servicos .section-header {
      margin-bottom: 52px;
    }

    #servicos .section-header h2 {
      font-size: clamp(1.65rem, 2.8vw, 2.6rem);
    }

    .services-photo-card {
      position: relative;
      margin: 0;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(20, 70, 50, 0.10);
      box-shadow:
        0 2px 6px rgba(8, 31, 22, 0.04),
        0 14px 42px rgba(8, 31, 22, 0.11),
        0 0 0 1px rgba(11, 122, 75, 0.04) inset;
      transition: transform 0.38s var(--ease-out), box-shadow 0.38s ease;
    }

    .services-photo-card:hover {
      transform: translateY(-3px);
      box-shadow:
        0 4px 10px rgba(8, 31, 22, 0.05),
        0 22px 56px rgba(8, 31, 22, 0.14),
        0 0 0 1px rgba(11, 122, 75, 0.06) inset;
    }

    .services-photo-card img {
      width: 100%;
      height: auto;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      object-position: center 22%;
      display: block;
      filter: contrast(1.06) saturate(0.90) brightness(0.95);
      transition: filter 0.5s ease;
    }

    .services-photo-card:hover img {
      filter: contrast(1.10) saturate(0.98) brightness(0.92);
    }

    .services-photo-card figcaption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 68px 20px 22px;
      background: linear-gradient(
        to top,
        rgba(3, 11, 8, 0.86) 0%,
        rgba(3, 11, 8, 0.56) 42%,
        rgba(3, 11, 8, 0.16) 68%,
        transparent 100%
      );
      display: flex;
      flex-direction: column;
      gap: 0;
      pointer-events: none;
    }

    .services-photo-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: rgba(8, 18, 14, 0.30);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: rgba(180, 215, 198, 0.62);
      font-size: 0.55rem;
      font-weight: 600;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: 5px;
      border: 1px solid rgba(110, 224, 168, 0.08);
      pointer-events: none;
      z-index: 2;
      transition: opacity 0.3s ease;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .services-photo-card figcaption strong {
      display: block;
      color: rgba(255, 255, 255, 1);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      line-height: 1.25;
      text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
    }

    .services-photo-card figcaption span {
      display: block;
      color: rgba(218, 236, 225, 0.84);
      font-size: 0.78rem;
      line-height: 1.4;
      letter-spacing: 0.01em;
      text-shadow: 0 1px 6px rgba(0, 0, 0, 0.40);
    }

    .services-photo-col {
      transform: translateY(+4%);
    }

    .ortosintese-badge {
      margin-top: 10px;
      padding: 15px 21px;
      border: 1px solid rgba(11, 122, 75, 0.11);
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.68);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 4px 16px rgba(8, 28, 22, 0.05);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      flex-wrap: wrap;
    }

    .ortosintese-badge__text span {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #0b7a4b;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .ortosintese-badge__text strong {
      display: block;
      font-size: 1.17rem;
      color: #10291f;
      font-weight: 800;
    }

    .ortosintese-badge__logo {
      max-width: 199px;
      max-height: 62px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .feature-card {
      position: relative;
      background: var(--white);
      border: 1px solid #e0eee8;
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: 0 16px 34px rgba(25, 51, 40, 0.06);
      transition: 0.2s ease;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgba(25, 51, 40, 0.10);
      border-color: #bddfd0;
    }

    .feature-card h3 {
      margin: 16px 0 10px;
      color: var(--green-900);
      font-size: 1.14rem;
      line-height: 1.25;
    }

    .feature-card p {
      color: #596d63;
      font-size: 0.97rem;
    }

    .icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: var(--green-100);
      color: var(--green-600);
      display: grid;
      place-items: center;
      font-weight: 900;
      font-size: 1.08rem;
    }
     /* #endregion */

/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */

    /* #region DIFERENCIAIS */
    .diferenciais-section {
      background:
        radial-gradient(circle at 18% 18%, rgba(110, 224, 168, 0.12), transparent 30%),
        radial-gradient(circle at 82% 82%, rgba(15, 139, 99, 0.08), transparent 30%),
        linear-gradient(135deg, #0f1f19, #0b261c);
      color: var(--white);
    }

    .diferenciais-section::after {
      content: '';
      position: absolute;
      right: -280px;
      top: 52%;
      transform: translateY(-50%);
      width: 1100px;
      height: 1100px;
      background-image: url('assets/g_ghtec.png');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      opacity: 0.03;
      pointer-events: none;
      z-index: 0;
      filter: saturate(0.35) brightness(2.8) contrast(0.55);
    }

    .diferenciais-section .container {
      position: relative;
      z-index: 1;
    }

    .dif-top {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 48px;
      align-items: center;
      margin-bottom: 40px;
    }

    .dif-header span {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #6ee0a8;
      margin-bottom: 18px;
    }

    .dif-header h2 {
      color: var(--white);
      font-size: clamp(1.8rem, 3.2vw, 2.45rem);
      line-height: 1.16;
      letter-spacing: -0.5px;
      margin-bottom: 18px;
    }

    .dif-header p {
      color: #c8d8d1;
      font-size: 1rem;
      line-height: 1.65;
      max-width: 460px;
    }

    .dif-stats {
      display: flex;
      flex-direction: column;
      align-self: center;
      border-left: 2px solid rgba(110, 224, 168, 0.20);
      padding-left: 24px;
    }

    .dif-stat {
      display: flex;
      flex-direction: column;
      gap: 7px;
      padding: 18px 0;
    }

    .dif-stat strong {
      color: #6ee0a8;
      font-size: clamp(1.7rem, 2.8vw, 2.2rem);
      font-weight: 800;
      letter-spacing: -0.5px;
      line-height: 1;
    }

    .dif-stat span {
      color: #7a9e94;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      line-height: 1.2;
    }

    .dif-stat-sep {
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
    }

    .dif-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .dif-card-reveal {
      display: flex;
      flex-direction: column;
    }

    .dif-card {
      flex: 1;
      background: rgba(10, 36, 28, 0.35);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: var(--radius-lg);
      padding: 26px;
      position: relative;
      overflow: hidden;
      transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    }

    .dif-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(to right, rgba(110, 224, 168, 0.75), rgba(110, 224, 168, 0.22), transparent);
      opacity: 0;
      transform: scaleX(0.3);
      transform-origin: left;
      transition: opacity 0.32s ease, transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .dif-card:hover::before {
      opacity: 1;
      transform: scaleX(1);
    }

    .dif-card:hover {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.095);
      border-color: rgba(110, 224, 168, 0.28);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.20), 0 0 20px rgba(110, 224, 168, 0.055);
    }

    .dif-card:hover .dif-card-icon {
      opacity: 0.95;
    }

    .dif-card-icon {
      color: #6ee0a8;
      opacity: 0.72;
      margin-bottom: 14px;
      display: block;
      transition: opacity 0.22s ease;
    }

    .dif-card h3 {
      color: var(--white);
      font-size: 1.04rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 8px;
    }

    .dif-card p {
      color: #c6d8d1;
      font-size: 0.92rem;
      line-height: 1.58;
    }
    /* #endregion */

/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */

    /* #region CTA STRIP */
    .cta-strip {
      background: linear-gradient(135deg, #0d2a1e 0%, #0f1f19 60%, #091410 100%);
      color: var(--white);
      padding: 30px 0;
    }

    .cta-strip-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .cta-strip h2 {
      font-size: clamp(1.4rem, 3vw, 2.1rem);
      line-height: 1.15;
      letter-spacing: -0.6px;
    }

    .cta-strip p {
      color: #c8d8d1;
      margin-top: 6px;
    }
      /* #endregion */

/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */

    /* #region CONTACT */
    .contact {
      background: linear-gradient(135deg, #eaf8f1, #ffffff);
      padding-top: 60px;
    }

    .contact-box {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 32px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 34px;
      box-shadow: var(--shadow);
    }

    .contact-info h3 {
      font-size: 1.55rem;
      line-height: 1.2;
      margin-bottom: 12px;
      color: var(--green-900);
    }

    .contact-info p {
      color: var(--muted);
      margin-bottom: 22px;
      line-height: 1.65;
    }

    .contact-list {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .contact-list li {
      position: relative;
      padding: 15px 16px 15px 20px;
      border: 1px solid #e0eee8;
      border-radius: 14px;
      background: #fbfefd;
      display: block;
      overflow: hidden;
    }

    .contact-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10px;
      bottom: 10px;
      width: 3px;
      background: linear-gradient(to bottom, var(--green-500), rgba(69, 200, 139, 0.42));
      border-radius: 0 2px 2px 0;
    }

    .contact-list li strong {
      display: block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: var(--green-700);
      margin-bottom: 4px;
    }

    .contact-list-desc {
      display: block;
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.4;
      margin-bottom: 3px;
    }

    .contact-list-value {
      display: block;
      color: var(--green-900);
      font-size: 0.96rem;
      font-weight: 600;
      line-height: 1.3;
    }

    .contact-card-icon {
      position: absolute;
      top: 13px;
      right: 13px;
      color: var(--green-600);
      opacity: 0.11;
      pointer-events: none;
    }

    form {
      display: grid;
      gap: 14px;
    }

    input,
    textarea {
      width: 100%;
      border: 1px solid #d4e5dd;
      border-radius: 12px;
      padding: 14px 16px;
      outline: none;
      background: #fbfefd;
      color: var(--text);
      transition: 0.2s ease;
    }

    input:focus,
    textarea:focus {
      border-color: var(--green-600);
      box-shadow: 0 0 0 4px rgba(11, 122, 75, 0.10);
    }

    textarea {
      resize: vertical;
      min-height: 126px;
    }

    /* Labels acessíveis do formulário */
    .form-field {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .form-label {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--muted-strong);
      letter-spacing: 0.01em;
    }

    .required-mark {
      color: var(--green-600);
    }

    /* Honeypot anti-spam — oculto visualmente, mas presente no DOM */
    .form-honeypot {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
    }

    footer {
      background: var(--green-900);
      color: #c8d8d1;
      padding: 28px 0;
      text-align: center;
      font-size: 0.95rem;
    }

    .whatsapp-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #00b874;
      color: var(--white);
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.24);
      box-shadow: 0 14px 34px rgba(0, 184, 116, 0.24);
      z-index: 60;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .whatsapp-float:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(0, 184, 116, 0.32);
    }

    /* #endregion */

/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */

 /* #region CSS-OUTCOME */
.outcome-section {
  background:
    radial-gradient(ellipse at 72% 50%, rgba(228, 241, 235, 0.60) 0%, transparent 58%),
    linear-gradient(175deg, #ffffff 0%, var(--bg) 100%);
  padding: 108px 0;
  border-top: 1px solid var(--surface-deep);
}

.outcome-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.outcome-copy h2 {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.18rem);
  margin-bottom: 22px;
}

.outcome-copy p {
  max-width: 460px;
  line-height: 1.74;
  color: var(--muted-strong);
}

.outcome-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(6, 39, 29, 0.18);
  margin-top: 36px;
  padding-top: 26px;
}

.outcome-fact + .outcome-fact {
  padding-left: 22px;
  border-left: 1px solid rgba(6, 39, 29, 0.13);
}

.outcome-fact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(11, 122, 75, 0.07);
  border: 1px solid rgba(11, 122, 75, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--green-600);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 1px 3px rgba(11, 122, 75, 0.06);
}

.outcome-fact strong {
  display: block;
  color: var(--green-800);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.outcome-fact span {
  display: block;
  color: var(--muted-strong);
  font-size: 0.86rem;
  line-height: 1.5;
}

.outcome-visual {
  position: relative;
  filter: drop-shadow(0 10px 44px rgba(11, 122, 75, 0.10));
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.outcome-visual:hover {
  transform: translateY(-2px);
}

.outcome-visual img {
  width: 100%;
  height: 558px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  filter: contrast(1.08) saturate(0.85) brightness(0.91);
  box-shadow:
    0 1px 2px rgba(8, 31, 22, 0.06),
    0 6px 18px rgba(8, 31, 22, 0.09),
    0 20px 52px rgba(8, 31, 22, 0.13),
    0 0 0 1px rgba(11, 122, 75, 0.08);
  transition: filter 0.55s ease, box-shadow 0.55s ease;
}

.outcome-visual:hover img {
  filter: contrast(1.10) saturate(0.84) brightness(0.89);
  box-shadow:
    0 2px 4px rgba(8, 31, 22, 0.07),
    0 8px 24px rgba(8, 31, 22, 0.11),
    0 26px 64px rgba(8, 31, 22, 0.16),
    0 0 0 1px rgba(11, 122, 75, 0.10);
}

.outcome-visual-caption {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(9, 16, 13, 0.76);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  padding: 10px 16px 10px 13px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 2px solid rgba(71, 201, 139, 0.50);
  display: flex;
  align-items: center;
  gap: 9px;
  transition: background 0.4s ease;
}

.outcome-visual:hover .outcome-visual-caption {
  background: rgba(9, 16, 13, 0.84);
}

.outcome-visual-caption svg {
  flex-shrink: 0;
  opacity: 0.88;
}

/* --- Animações de reveal e glow --- */

@keyframes outcome-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes outcome-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes outcome-glow-breathe {
  0%, 100% { filter: drop-shadow(0 10px 44px rgba(11, 122, 75, 0.10)); }
  50%       { filter: drop-shadow(0 12px 56px rgba(11, 122, 75, 0.15)); }
}

/* Estado inicial — ativado via JS para evitar flash sem JS */
.outcome-animate .outcome-copy span,
.outcome-animate .outcome-copy h2,
.outcome-animate .outcome-copy p,
.outcome-animate .outcome-facts {
  opacity: 0;
  transform: translateY(18px);
}

.outcome-animate .outcome-visual {
  opacity: 0;
}

/* Reveal em stagger quando a seção entra na viewport */
.outcome-animate.is-visible .outcome-copy span {
  animation: outcome-reveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

.outcome-animate.is-visible .outcome-copy h2 {
  animation: outcome-reveal 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.20s both;
}

.outcome-animate.is-visible .outcome-copy p {
  animation: outcome-reveal 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.34s both;
}

.outcome-animate.is-visible .outcome-visual {
  animation:
    outcome-fade-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both,
    outcome-glow-breathe 9s ease-in-out 1.5s infinite;
}

.outcome-animate.is-visible .outcome-facts {
  animation: outcome-reveal 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both;
}

/* #endregion */

/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */

      /* #region RESPONSIVIDADES */
    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .carousel-track,
      * {
        animation: none !important;
        transition: none !important;
      }
    }

    @media (max-width: 960px) {
      nav {
        display: none;
      }

      nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 31, 25, 0.97);
        backdrop-filter: blur(12px);
        z-index: 49;
        align-items: center;
        justify-content: center;
        gap: 32px;
        font-size: 1.2rem;
      }

      nav.open a {
        color: rgba(255,255,255,0.9);
      }

      nav.open .nav-cta {
        color: var(--white);
        font-size: 1.1rem;
        padding: 14px 28px;
      }

      .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 51;
        padding: 6px;
        border: none;
        background: transparent;
      }

      .hamburger span {
        display: block;
        width: 26px;
        height: 2.5px;
        background: var(--white);
        border-radius: 2px;
        transition: 0.3s ease;
      }

      header.scrolled .hamburger span {
        background: var(--green-900);
      }

      .hamburger.open span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
        background: var(--white) !important;
      }

      .hamburger.open span:nth-child(2) {
        opacity: 0;
      }

      .hamburger.open span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
        background: var(--white) !important;
      }

      .hero-grid,
      .contact-box {
        grid-template-columns: 1fr;
      }

      .dif-top {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .dif-header p {
        max-width: 100%;
      }

      .dif-stats {
        padding-left: 20px;
      }

      .diferenciais-section::after {
        width: 720px;
        height: 720px;
        right: -160px;
        top: 52%;
        transform: translateY(-50%);
        opacity: 0.026;
      }

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

      .hero {
        padding: 62px 0;
      }

      .hero-card {
        max-width: 620px;
      }

      .cta-strip-content {
        align-items: flex-start;
        flex-direction: column;
      }

      .services-layout {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .services-photo-col {
        transform: none;
      }

      .services-photo-card img {
        height: 360px;
        object-position: center 18%;
      }
    }

    @media (max-width: 620px) {
      .diferenciais-section::after {
        display: none;
      }

      .navbar {
        min-height: 68px;
      }

      .logo-img {
        height: 68px;
      }

      .hero {
        min-height: auto;
        background-position: center center;
      }

      .eyebrow {
        display: flex;
        width: fit-content;
        font-size: 0.62rem;
        padding: 4px 9px;
        gap: 6px;
        margin-inline: auto;
        margin-top: 16px;
      }

      .hero h1 {
        letter-spacing: -1.4px;
        text-align: center;
        
      }

      .hero-solution {
        font-size: clamp(2.8rem, 9vw, 3.5rem);
        text-align: center;
        padding-left: 0;
        margin-inline: auto;
      }

      .hero-solution::before {
        display: block;
        left: 24%;
        top: auto;
        bottom: -8px;
        width: 52%;
        height: 3px;
        background: linear-gradient(
          to right,
          rgba(0, 232, 154, 0.35),
          #00e89a 40%,
          rgba(0, 232, 154, 0.45) 60%,
          rgba(0, 232, 154, 0.35)
        );
        box-shadow: 0 0 10px rgba(0, 208, 132, 0.18);
        transform-origin: center;
        animation: heroLineRevealH 0.7s ease 0.45s forwards;
      }

      .hero-proof {
        align-items: center;
        width: 100%;
      }

      .hero p {
        font-size: 1.05rem;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
      }

      .hero-proof span {
        min-width: 0;
        width: 100%;
        justify-content: center;
      }

      .services-grid,
      .dif-cards {
        grid-template-columns: 1fr;
      }

      .services-photo-card img {
        height: 260px;
        object-position: center 15%;
      }

      .services-photo-card figcaption {
        padding: 44px 16px 16px;
        gap: 5px;
      }

      .services-photo-badge {
        font-size: 0.58rem;
        padding: 5px 10px;
        letter-spacing: 0.10em;
      }

      .hero-card,
      .contact-box {
        padding: 24px;
        border-radius: 22px;
      }

      .section {
        padding: 68px 0;
      }

      .clientes-section {
        padding: 66px 0;
      }

      .outcome-section {
        padding: 68px 0;
      }

      .outcome-visual img {
        height: 240px;
      }

      .contact-info h3 {
        font-size: 1.25rem;
      }

      .cta-strip h2 {
        font-size: 1.35rem;
      }

      .carousel img {
        height: 76px;
        width: 150px;
      }

      .carousel-track {
        gap: 36px;
      }

      .whatsapp-float {
        right: 16px;
        bottom: 16px;
      }

      #output .outcome-copy > span {
        display: block;
        text-align: center;
      }

      #output .outcome-copy > span::before {
        display: inline-block;
        vertical-align: middle;
        margin-right: 8px;
      }

      #servicos .section-header span,
      .dif-header span {
        display: flex;
        justify-content: center;
      }

      .outcome-copy h2,
      .dif-header h2,
      #servicos .section-header h2 {
        text-align: center;
        margin-inline: auto;
      }
    }
    /* RESPONSIVIDADE-CLIENTES */
    /* TABLET-CLIENTES */
@media (max-width: 1024px) {
  .clientes-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .clientes-wrapper::after {
    display: none;
  }

  .clientes-bloco-operadoras {
    padding-left: 0;
    border-left: none;
  }

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

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

/* MOBILE-CLIENTES */
@media (max-width: 640px) {
  .trust-metrics {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .trust-metric {
    text-align: center;
  }

  .clientes-section {
    padding: 64px 0 72px;
  }

  .clientes-wrapper {
    margin-top: 34px;
    gap: 34px;
  }

  .clientes-grid,
  .clientes-grid-operadoras {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cliente-card,
  .cliente-operacional {
    min-height: 96px;
    padding: 16px;
    border-radius: 14px;
  }

  .cliente-card img,
  .cliente-operacional img {
    max-width: 126px;
    max-height: 58px;
  }

  .cliente-TierA img {
    max-width: 134px;
    max-height: 64px;
  }

  .cliente-card:hover {
    transform: none;
  }

  .cliente-card:hover img {
    transform: none;
  }

  .clientes-footer-phrase {
    font-size: 0.78rem;
    padding-top: 14px;
  }

  .representacao-card {
    margin-top: 38px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .representacao-card img {
    max-width: 180px;
  }
}

/* MOBILE PEQUENO-CLIENTES */
@media (max-width: 390px) {
  .clientes-grid-operadoras {
    grid-template-columns: 1fr;
  }

  .cliente-card,
  .cliente-operacional {
    min-height: 92px;
  }

  .cliente-card img,
  .cliente-operacional img {
    max-width: 150px;
    max-height: 64px;
  }
}

/* RESPONSIVIDADE-OUTCOME */
@media (max-width: 960px) {
  .outcome-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .outcome-visual img {
    height: 360px;
  }

  .outcome-facts {
    grid-template-columns: 1fr;
  }

  .outcome-fact + .outcome-fact {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--line-soft);
    padding-top: 22px;
    margin-top: 6px;
  }
}

/* CSS-CREDITOS */
.dev-credit {
  opacity: 0.35;
  font-size: 0.8rem;
}

.dev-credit a {
  color: inherit;
  text-decoration: none;
}

.dev-credit:hover {
  opacity: 0.85;
}
 /* #endregion */

/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */
/* ---------------------------------------- *//* ---------------------------------------- */
