/* IPSolutions — Tema claro: papel, branco, cinza e preto (acentos contidos) */

:root {
  /* Superfícies */
  --bg-0: #f3f2ef;
  --bg-1: #e9e7e2;
  --bg-2: #ffffff;
  --inset: #f0efec;
  --inset-2: #e6e4df;

  /* Texto */
  --text: #121211;
  --muted: #5e5d5a;
  --dim: #7b7974;

  /* Hairs & contorno */
  --line: rgba(18, 18, 17, 0.09);
  --line-focus: rgba(18, 18, 17, 0.16);

  /* Acentos: preto e cinzas frios (sem neon) */
  --accent: #141413;
  --accent-2: #3d4a5c;
  --accent-3: #5c6774;
  --on-dark: #fafaf7;
  --on-accent: #fafaf7;

  --ok: #1b5e3a;
  --err: #b42318;
  --warn: #9a6b0a;
  /* Fluxo animado (hero) — verde intencional, só neste bloco */
  --flow-green: #16a34a;
  --flow-green-soft: #dcfce7;

  --font-sans: "IBM Plex Sans", system-ui, sans-serif;
  --font-hero: "Outfit", var(--font-sans);
  --font-display: "Outfit", var(--font-sans);
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 16px 48px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.1);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-0);
  min-height: 100vh;
  overflow-x: hidden;
}

.visually-hidden,
.skip-link:focus {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--text);
  color: var(--on-dark);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
  transform: translateY(-120%);
  transition: transform 0.2s var(--ease);
}

.skip-link:focus {
  position: fixed;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  transform: translateY(0);
}

a {
  color: inherit;
}

::selection {
  background: color-mix(in srgb, var(--accent-2) 22%, var(--inset-2));
  color: var(--text);
}

/* Atmospheric layers */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.028;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow {
  pointer-events: none;
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.45;
}
.glow--1 {
  width: min(50vw, 480px);
  height: min(50vw, 480px);
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, #d4dce6 0%, transparent 70%);
  animation: float 18s var(--ease) infinite alternate;
}
.glow--2 {
  width: min(40vw, 400px);
  height: min(40vw, 400px);
  bottom: 5%;
  left: -5%;
  background: radial-gradient(circle, #c8c4bc 0%, transparent 70%);
  animation: float 22s var(--ease) infinite alternate-reverse;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(20px, 30px) scale(1.05);
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--bg-0) 75%, transparent);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}
.brand__mark {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}
.brand__tag {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-family: var(--font-mono);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav__link {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.nav__link:hover,
.nav__link:focus-visible {
  color: var(--text);
  outline: none;
}
.nav__link--cta {
  color: var(--on-accent);
  background: var(--text);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.nav__link--cta:hover {
  color: var(--on-accent);
  background: #0a0a0a;
  filter: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-toggle {
  display: none;
  background: var(--bg-2);
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  padding: 0;
  position: relative;
  cursor: pointer;
}
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: 0.25s var(--ease);
}
.nav-toggle__bar {
  top: 50%;
  margin-top: -1px;
}
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  left: 0;
  right: 0;
}
.nav-toggle__bar::before {
  top: -7px;
}
.nav-toggle__bar::after {
  top: 7px;
}
.nav--open {
  max-height: 100vh;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    position: fixed;
    inset: 0;
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-0);
    padding: 1.5rem;
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
  }
  .nav--open {
    transform: translateX(0);
  }
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem 3rem;
  align-items: start;
  min-height: min(90vh, 900px);
}

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

.hero__grid {
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000, transparent 75%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 0.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin: 0 0 1.25rem;
}
.eyebrow__dot {
  width: 7px;
  height: 7px;
  background: var(--text);
  border-radius: 50%;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-2) 30%, var(--bg-0));
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.hero__title {
  font-family: var(--font-hero);
  font-size: clamp(2.05rem, 3.8vw, 2.85rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-synthesis: none;
  margin: 0 0 1.25rem;
  max-width: 24ch;
}
.hero__title em {
  font-style: normal;
  font-weight: 600;
  font-family: inherit;
  color: var(--accent-2);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent-2) 40%, var(--line));
  text-underline-offset: 0.12em;
}

.hero__lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: min(58ch, 100%);
  margin: 0 0 2rem;
  line-height: 1.58;
}
.hero__lede strong {
  color: color-mix(in srgb, var(--text) 88%, var(--muted));
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn--primary {
  color: var(--on-accent);
  background: var(--text);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.btn--primary:hover {
  transform: translateY(-1px);
  background: #0a0a0a;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
}
.btn--ghost {
  color: var(--text);
  border-color: var(--line-focus);
  background: var(--bg-2);
}
.btn--ghost:hover {
  border-color: var(--text);
  background: var(--inset);
}

.hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
}
@media (max-width: 640px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat__value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--text);
}
.stat__suffix {
  font-size: 0.9em;
  color: var(--accent-2);
}
.stat__label {
  font-size: 0.85rem;
  color: var(--dim);
  line-height: 1.35;
}

.hero__panel {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 100%;
}

/* Diagrama de fluxo (linhas verdes + nós) */
.hero-flow {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1rem 1.25rem;
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.5s var(--ease);
}
@media (min-width: 1025px) {
  .hero-flow:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
  }
}
@media (max-width: 1024px) {
  .hero-flow {
    transform: none;
  }
}
.hero-flow__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  padding: 0 0.2rem 0.45rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.hero-flow__head-title {
  color: var(--text);
  font-weight: 600;
}
.hero-flow__head-badge {
  color: var(--flow-green);
  font-weight: 500;
}
.hero-flow__svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.hero-flow__edge {
  fill: none;
  stroke: var(--flow-green);
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 3 10;
  animation: hero-flow-march 1.15s linear infinite;
  animation-delay: var(--flow-delay, 0s);
  opacity: 0.9;
}
@keyframes hero-flow-march {
  to {
    stroke-dashoffset: -13;
  }
}
.hero-flow__box {
  fill: var(--inset);
  stroke: var(--line);
  stroke-width: 1;
  transition: stroke 0.3s, fill 0.3s, filter 0.3s;
}
.hero-flow__label {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  fill: var(--text);
  pointer-events: none;
}
.hero-flow__caption {
  margin: 0.75rem 0 0;
  padding: 0.6rem 0.7rem 0.55rem;
  font-size: 0.74rem;
  line-height: 1.4;
  color: var(--muted);
  text-align: left;
  background: var(--inset);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.hero-flow__cap-row {
  margin: 0.35rem 0 0;
}
.hero-flow__cap-row:first-child {
  margin-top: 0;
}
.hero-flow__cap-row strong {
  color: var(--text);
  font-weight: 600;
}
@media (prefers-reduced-motion: reduce) {
  .hero-flow__edge {
    animation: none;
    stroke-dasharray: 4 8;
    stroke-dashoffset: 0;
    opacity: 0.5;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal--visible {
  opacity: 1;
  transform: none;
}
/* stagger via JS with delay, optional */

/* Marquee / logos */
.logos {
  position: relative;
  z-index: 1;
  border-y: 1px solid var(--line);
  background: var(--bg-1);
  padding: 1.5rem 1.5rem;
  overflow: hidden;
}
.logos__title {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dim);
  margin: 0 0 1rem;
  font-family: var(--font-mono);
}
.logos__row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin: 0;
  padding: 0;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
}
.logos__row li {
  position: relative;
  padding-left: 1.25rem;
}
.logos__row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--text);
  border-radius: 1px;
  transform: rotate(45deg);
  opacity: 0.65;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}
.section--tint {
  background: color-mix(in srgb, var(--bg-1) 70%, #fff 30%);
  border-y: 1px solid var(--line);
  max-width: none;
  padding: 4.5rem 1.5rem;
}
.section--tint .section__head {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  padding: 0 0.5rem;
}
.section__head--split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem 3rem;
  align-items: start;
}
@media (max-width: 860px) {
  .section__head--split {
    grid-template-columns: 1fr;
  }
}

/* Diferenciais: lead + cards */
.dif-head {
  align-items: stretch;
}
.dif-head__lede {
  min-width: 0;
}
.section__title--dif {
  max-width: 22ch;
  margin-bottom: 1.1rem;
}
.dif-head__intro {
  max-width: 40ch;
  font-size: 1.01rem;
  line-height: 1.6;
  margin: 0;
}
.dif-head__intro strong {
  font-weight: 600;
  color: var(--text);
}
.dif-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
  align-content: start;
  min-width: 0;
}
@media (max-width: 700px) {
  .dif-grid {
    grid-template-columns: 1fr;
  }
}
.dif-card {
  margin: 0;
  padding: 1.05rem 1.1rem 1.1rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.dif-card:hover {
  border-color: var(--line-focus);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}
.dif-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--text);
}
.dif-card__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
}
.dif-card__text strong {
  color: var(--text);
  font-weight: 600;
}
.quote-block--dif {
  padding-top: 0.25rem;
}
.quote-block--dif blockquote {
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.2;
  max-width: 18ch;
}
.section__title--center {
  text-align: center;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  max-width: 22ch;
}
.section__title--wide {
  max-width: 40ch;
}
.line-accent {
  color: var(--accent-2);
}
.section__intro {
  color: var(--muted);
  margin: 0;
  max-width: 44ch;
}
.section__intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.25rem;
  max-width: 60ch;
}

/* Serviços — bloco com mais destaque */
.section--servicos {
  max-width: none;
  margin: 0;
  padding: 0;
  background: linear-gradient(185deg, var(--bg-1) 0%, var(--bg-0) 28%, #faf9f6 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.section--servicos__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.75rem 1.5rem 5.5rem;
}
.section__title--heroish {
  max-width: 28ch;
  font-size: clamp(1.8rem, 2.7vw, 2.45rem);
  line-height: 1.12;
  margin-bottom: 1.15rem;
}
.title-you {
  color: #15803d;
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(
    180deg,
    transparent 58%,
    color-mix(in srgb, #16a34a 22%, transparent) 58%
  );
  padding: 0 0.04em 0.02em;
  border-radius: 0.02em;
}
.section__intro--servicos {
  max-width: 52ch;
  font-size: 1.04rem;
  line-height: 1.58;
}
.section--partners {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4.5rem;
  border-bottom: 1px solid var(--line);
}

/* Faixa de logos (parcerias) — loop contínuo, P → L */
.partners-marquee {
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}
.partners-marquee__viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 1.25rem 0;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
.partners-marquee__track {
  display: flex;
  width: max-content;
  animation: partners-marquee 55s linear infinite;
  will-change: transform;
}
.partners-marquee:hover .partners-marquee__track {
  animation-play-state: paused;
}
.partners-marquee__set {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.partners-marquee__logo {
  height: 32px;
  width: auto;
  max-width: min(140px, 28vw);
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.78;
  flex-shrink: 0;
  transition: opacity 0.25s var(--ease);
}
.partners-marquee__logo:hover {
  opacity: 1;
}
@keyframes partners-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Cards (seção serviços) */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.85rem;
}
@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.card {
  position: relative;
  padding: 1.55rem 1.4rem 1.55rem;
  background: var(--bg-2);
  border: 1px solid color-mix(in srgb, var(--line) 85%, var(--text) 15%);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.35s var(--ease), transform 0.3s var(--ease);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 12px 32px rgba(0, 0, 0, 0.06);
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: calc(var(--radius) + 2px) calc(var(--radius) + 2px) 0 0;
  background: linear-gradient(90deg, #15803d, var(--text));
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}
.card:hover::before,
.card:focus-within::before {
  opacity: 1;
}
.card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--inset-2) 50%, #fff) 0%,
    transparent 65%
  );
  pointer-events: none;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.card:hover::after {
  opacity: 0.2;
}
.card:hover {
  border-color: var(--line-focus);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.card__icon {
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--inset);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.card:hover .card__icon,
.card:focus-within .card__icon {
  border-color: color-mix(in srgb, #16a34a 38%, var(--line));
  background: var(--bg-2);
  box-shadow: 0 4px 16px color-mix(in srgb, #16a34a 14%, transparent);
}
.card__svg {
  width: 26px;
  height: 26px;
  display: block;
  flex-shrink: 0;
}
.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
  line-height: 1.22;
}
.card__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.58;
  position: relative;
  z-index: 1;
}

/* Pills & quote */
.pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pills__item {
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg-2);
}
.quote-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 1rem;
}
.quote-block blockquote {
  margin: 0;
  padding: 1.75rem 2rem;
  border-left: 3px solid var(--text);
  background: linear-gradient(90deg, var(--inset) 0%, var(--bg-2) 100%);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.5;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--line);
  border-left-width: 3px;
}
.quote-block blockquote strong {
  color: var(--accent-2);
  font-weight: 600;
}
.quote-block footer {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--dim);
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: s;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step:last-child {
  border-bottom: 0;
}
.step__n {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--on-dark);
  background: var(--text);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px 12px 12px 4px;
  flex-shrink: 0;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.step__t {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Processo: intro + cards */
.section--process {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.process-head {
  max-width: 720px;
  margin: 0 auto 2.75rem;
}
.process-head .section__title--center {
  margin-bottom: 1.1rem;
}
.process-head__intro {
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 auto;
}
.process-head__intro strong {
  font-weight: 600;
  color: var(--text);
}
.steps--process {
  max-width: 1100px;
  gap: 0;
}
.steps--process .step {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  padding: 1.35rem 1.2rem 1.4rem;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.steps--process .step:last-child {
  margin-bottom: 0;
}
.steps--process .step:hover {
  border-color: var(--line-focus);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
@media (min-width: 900px) {
  .steps--process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    align-items: stretch;
  }
  .steps--process .step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
    min-height: 100%;
  }
  .steps--process .step__n {
    margin-bottom: 0.35rem;
  }
}
.step__body {
  min-width: 0;
}
.steps--process .step p {
  line-height: 1.57;
}
.steps--process .step p em {
  font-style: italic;
  color: var(--dim);
}

/* CTA & form */
.cta {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 0 1.5rem 4.5rem;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  padding: 2.5rem 2.25rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(160deg, #ffffff 0%, var(--inset) 100%);
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .cta__inner {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.25rem;
  }
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.22;
}
.cta__text {
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 42ch;
}
.cta__email {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.link-fancy {
  color: var(--accent-2);
  text-decoration: none;
  background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat;
  transition: color 0.2s, background-size 0.25s;
}
.link-fancy:hover {
  color: var(--text);
  background-size: 0% 1px;
}
.cta__domain {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--dim);
  margin: 0 0 0.5rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.5rem 1.35rem;
  background: var(--inset);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.form__head {
  font-weight: 600;
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.form__field input,
.form__field textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--line-focus);
  box-shadow: 0 0 0 3px rgba(18, 18, 17, 0.08);
}
.form__btn {
  margin-top: 0.2rem;
  border: 0;
  width: 100%;
  cursor: pointer;
}
.form__field--hp {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.form__step--captcha {
  padding-top: 0.25rem;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
}

.captcha-question {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.35rem;
  font-family: var(--font-mono);
}
.captcha-question--sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--dim);
  font-family: var(--font-sans);
  margin-bottom: 0.9rem;
}

.form__captcha-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.form__feedback {
  min-height: 1.2em;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0.5rem 0 0;
}
.form__feedback--ok {
  color: var(--ok);
}
.form__feedback--err {
  color: var(--err);
}

.form__btn[aria-busy="true"] {
  opacity: 0.7;
  pointer-events: none;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-1);
  padding: 2rem 1.5rem 2.5rem;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__brand strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
}
.footer__brand p {
  margin: 0;
  color: var(--dim);
  font-size: 0.85rem;
  max-width: 280px;
}
.footer__legal {
  margin: 0;
  font-size: 0.8rem;
  color: var(--dim);
  font-family: var(--font-mono);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .glow--1,
  .glow--2,
  .eyebrow__dot,
  .nav {
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .partners-marquee__track {
    animation: none;
  }
  .partners-marquee__viewport {
    mask-image: none;
    -webkit-mask-image: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
