:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-elevated: #0e0e0e;
  --ink: #f4f4f2;
  --muted: #a8a8a4;
  --muted-2: #6f6f6b;
  --accent: #ffea00;
  --accent-deep: #e7bc00;
  --accent-soft: rgba(255, 234, 0, 0.12);
  --accent-glow: rgba(255, 234, 0, 0.22);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --font-display: "Funnel Display", "Outfit", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1180px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 234, 0, 0.05), transparent 55%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a {
  color: inherit;
}

em {
  font-style: normal;
  color: var(--accent);
}

::selection {
  background: rgba(255, 234, 0, 0.28);
  color: #fff;
}

.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;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--accent);
  color: #0a0a0a;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.page {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
}

/* ——— Header ——— */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.35s var(--ease-soft),
    background 0.35s var(--ease-soft),
    backdrop-filter 0.35s ease;
}

.topbar.is-scrolled,
body.nav-open .topbar {
  border-bottom-color: var(--border);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
}

.topbar__inner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

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

.brand img {
  height: 32px;
  width: auto;
}

.topbar__nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.topbar__nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 450;
  color: var(--muted);
  transition: color 0.2s ease;
}

.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s var(--ease-soft);
}

.topbar__nav a:hover {
  color: var(--ink);
}

.topbar__nav a:hover::after {
  transform: scaleX(1);
}

.topbar__cta {
  display: none;
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 1.1rem;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(2) {
  transform: translateY(0.35rem) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(3) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(4) {
  transform: translateY(-0.35rem) rotate(-45deg);
}

@media (max-width: 899px) {
  body.nav-open .topbar__nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
  }

  body.nav-open .topbar__nav a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  body.nav-open .topbar__nav a::after {
    display: none;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .topbar__nav,
  .topbar__cta {
    display: flex;
  }

  .topbar__nav {
    gap: 0.95rem;
  }

  .topbar__nav a {
    font-size: 0.88rem;
  }
}

@media (min-width: 1100px) {
  .topbar__nav {
    gap: 1.25rem;
  }

  .topbar__nav a {
    font-size: 0.95rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    box-shadow 0.3s var(--ease-soft),
    transform 0.25s var(--ease-soft),
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn--sm {
  padding: 0.65rem 1.2rem;
  font-size: 0.9rem;
}

.btn--primary {
  background: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 0 0 1px rgba(255, 234, 0, 0.15);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.45) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-soft);
  z-index: -1;
}

.btn--primary:hover {
  background: #fff300;
  box-shadow:
    0 0 0 1px rgba(255, 234, 0, 0.35),
    0 12px 40px rgba(255, 234, 0, 0.18);
  transform: translateY(-2px);
}

.btn--primary:hover::before {
  transform: translateX(120%);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: rgba(255, 234, 0, 0.45);
  color: var(--accent);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(96vh, 960px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.25rem 5.5rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("/images/site/bg-topo.webp");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.05);
  animation: hero-drift 24s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.05);
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 234, 0, 0.12), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    72px 72px,
    72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  opacity: 0.55;
  animation: mesh-pulse 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.42) 0%,
      rgba(5, 5, 5, 0.28) 40%,
      rgba(5, 5, 5, 0.88) 78%,
      rgba(5, 5, 5, 1) 100%
    ),
    radial-gradient(
      ellipse 70% 50% at 50% 28%,
      transparent 10%,
      rgba(5, 5, 5, 0.55) 100%
    );
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 54rem;
  width: 100%;
}

.hero__brand {
  display: block;
  height: clamp(2.9rem, 6.2vw, 4rem);
  width: auto;
  margin: 0 auto 1.9rem;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.5));
  animation: hero-rise 0.8s var(--ease-soft) both;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 8.4vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
  color: #fff;
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(1.1rem);
  animation: hero-line 0.85s var(--ease-soft) both;
  animation-delay: calc(0.18s + var(--i) * 0.1s);
}

.hero__line--accent {
  background: linear-gradient(100deg, #fff 8%, var(--accent) 55%, #fff 92%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation:
    hero-line 0.85s var(--ease-soft) both,
    accent-shift 8s ease-in-out infinite alternate;
  animation-delay:
    calc(0.18s + var(--i) * 0.1s),
    1.2s;
}

.hero__lead {
  margin: 1.55rem auto 2.1rem;
  max-width: 36rem;
  font-size: clamp(1.05rem, 2.1vw, 1.24rem);
  line-height: 1.58;
  color: var(--muted);
  animation: hero-rise 0.9s var(--ease-soft) 0.55s both;
}

.hero__actions {
  display: flex;
  justify-content: center;
  animation: hero-rise 0.9s var(--ease-soft) 0.68s both;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--muted-2);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: hero-rise 1s var(--ease-soft) 1s both;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 2.4rem;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-line {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes accent-shift {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(0, -1.8%, 0);
  }
}

@keyframes mesh-pulse {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 0.7;
  }
}

@keyframes scroll-line {
  0%,
  100% {
    transform: scaleY(0.55);
    opacity: 0.45;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ——— Shared section bits ——— */
.section-head {
  margin-bottom: 2.75rem;
}

.section-head--center {
  text-align: center;
}

.section-head--center h2,
.section-head--center .section__text {
  margin-left: auto;
  margin-right: auto;
}

.section__label {
  margin: 0 0 0.95rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head h2,
.missao__copy h2,
.cta-final h2,
.comecar__intro h1 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.8vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-wrap: balance;
}

.section__text,
.missao__copy p,
.comecar__intro p {
  margin: 0 0 1rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.75rem;
}

/* ——— Outcomes ——— */
.outcomes {
  padding: 0 0 1rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.outcomes__shell {
  padding: 0;
}

.outcomes__rail {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%),
    rgba(255, 255, 255, 0.015);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

@media (min-width: 900px) {
  .outcomes__rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.outcome {
  position: relative;
  padding: 1.35rem 1.3rem 1.45rem;
  border-top: 1px solid var(--border);
  transition: background 0.25s ease;
}

.outcomes__rail > .outcome:first-child {
  border-top: 0;
}

@media (min-width: 900px) {
  .outcome {
    border-top: 0;
    border-left: 1px solid var(--border);
    padding: 1.55rem 1.35rem 1.65rem;
  }

  .outcomes__rail > .outcome:first-child {
    border-left: 0;
  }
}

.outcome:hover {
  background: rgba(255, 234, 0, 0.03);
}

.outcome__index {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.outcome strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.outcome p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

/* ——— Problemas / dores ——— */
.problemas {
  padding: 5rem 0 1rem;
}

.dores {
  display: grid;
  gap: 0;
}

@media (min-width: 900px) {
  .dores {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.5rem;
  }
}

.dor {
  padding: 1.75rem 0 1.85rem;
  border-top: 1px solid var(--border);
  transition: transform 0.3s var(--ease-soft);
}

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

.dor__kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(255, 234, 0, 0.25);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: var(--accent-soft);
}

.dor h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
  max-width: 18ch;
}

.dor p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 36rem;
}

.dor__remedy {
  color: var(--ink) !important;
  font-weight: 500;
  padding-left: 0.9rem;
  border-left: 2px solid var(--accent);
}

/* ——— Soluções por domínio ——— */
.solucoes {
  padding: 5.5rem 0 1rem;
}

.solucao-list {
  display: grid;
  gap: 0;
}

.solucao {
  position: relative;
  display: grid;
  gap: 1.5rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

@media (min-width: 900px) {
  .solucao {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: start;
    padding: 2.75rem 0;
  }
}

.solucao__num {
  position: absolute;
  top: 1.2rem;
  right: 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  transition: color 0.35s ease, transform 0.45s var(--ease-soft);
}

.solucao:hover .solucao__num {
  color: rgba(255, 234, 0, 0.08);
  transform: translateY(-0.25rem);
}

.solucao__kicker {
  margin: 0 0 0.55rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solucao__problem {
  margin: 0 0 0.8rem;
  color: var(--muted-2);
  font-size: 0.95rem;
  font-weight: 500;
}

.solucao h3 {
  margin: 0 0 0.95rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 15ch;
}

.solucao__desc {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 36rem;
}

.solucao__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-content: start;
}

.solucao__features li {
  padding: 0.48rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s var(--ease-soft);
}

.solucao:hover .solucao__features li {
  border-color: rgba(255, 234, 0, 0.22);
}

.solucao__features li:hover {
  border-color: rgba(255, 234, 0, 0.55);
  background: var(--accent-soft);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ——— Missão ——— */
.missao {
  padding: 5.5rem 0 2rem;
}

.missao__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .missao__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.missao__copy h2 {
  max-width: 14ch;
}

.missao__copy strong {
  color: var(--ink);
}

.missao__copy .btn {
  margin-top: 1rem;
}

.missao__visual {
  position: relative;
}

.missao__visual::before {
  content: "";
  position: absolute;
  inset: 12% -8% -8% 12%;
  border-radius: 1.5rem;
  background: radial-gradient(circle at 30% 20%, rgba(255, 234, 0, 0.22), transparent 55%);
  filter: blur(18px);
  z-index: 0;
  animation: mesh-pulse 7s ease-in-out infinite alternate;
}

.missao__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 1.15rem;
  border: 1px solid var(--border-strong);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 234, 0, 0.05);
  transition: transform 0.55s var(--ease-soft);
}

.missao__visual:hover img {
  transform: translateY(-4px) scale(1.01);
}

/* ——— O que fazemos / fluxo ——— */
.fazemos {
  padding: 4rem 0 1rem;
}

.fluxo {
  position: relative;
}

.fluxo__stage {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(ellipse 55% 60% at 18% 40%, rgba(255, 234, 0, 0.12), transparent 55%),
    radial-gradient(ellipse 45% 50% at 88% 70%, rgba(255, 255, 255, 0.05), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 35%),
    #050505;
  min-height: clamp(28rem, 58vw, 38rem);
  padding: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fluxo__glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 234, 0, 0.08), transparent 35%, transparent 65%, rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 50% 100%, rgba(255, 234, 0, 0.1), transparent 45%);
  pointer-events: none;
  animation: fluxo-pulse 8s ease-in-out infinite alternate;
}

.fluxo__product {
  position: relative;
  z-index: 1;
  width: min(92%, 58rem);
  margin: 2.5rem auto 6.5rem;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 234, 0, 0.06);
  transform: perspective(1200px) rotateX(4deg);
  animation: fluxo-float 7s ease-in-out infinite alternate;
}

.fluxo__product img {
  width: 100%;
  display: block;
}

/* Funil UI mock — outra fatia do produto (Missão já usa o dashboard) */
.ui-funil {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  min-height: 22rem;
  background: #eef0f3;
  color: #1a1a1a;
}

.ui-funil__side {
  background: #111;
  color: #f5f5f5;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ui-funil__logo {
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.ui-funil__side nav {
  display: grid;
  gap: 0.55rem;
}

.ui-funil__side nav span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.ui-funil__side nav .is-active {
  color: var(--accent);
  font-weight: 600;
}

.ui-funil__main {
  padding: 0.9rem 1rem 1rem;
  min-width: 0;
}

.ui-funil__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 0.9rem;
}

.ui-funil__top p {
  margin: 0;
  font-size: 0.72rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ui-funil__top strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 550;
  letter-spacing: -0.03em;
}

.ui-funil__meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ui-funil__meta span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dde1e6;
  color: #374151;
}

.ui-funil__board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  min-height: 15rem;
}

.ui-col {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #dde1e6;
  border-radius: 0.7rem;
  padding: 0.55rem;
  display: grid;
  align-content: start;
  gap: 0.45rem;
  min-width: 0;
}

.ui-col__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.15rem 0.2rem 0.35rem;
  font-size: 0.75rem;
  font-weight: 650;
  color: #374151;
}

.ui-col__head em {
  font-style: normal;
  font-size: 0.68rem;
  color: #6b7280;
  background: #e5e7eb;
  border-radius: 999px;
  padding: 0.1rem 0.4rem;
}

.ui-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.55rem;
  padding: 0.55rem 0.6rem;
  display: grid;
  gap: 0.18rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.ui-card strong {
  font-size: 0.8rem;
  letter-spacing: -0.01em;
}

.ui-card span {
  font-size: 0.7rem;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-card b {
  font-size: 0.78rem;
  color: #111827;
  font-variant-numeric: tabular-nums;
}

.ui-card.is-hot {
  border-color: rgba(255, 234, 0, 0.7);
  box-shadow: inset 3px 0 0 var(--accent);
}

.ui-card.is-won {
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: inset 3px 0 0 #22c55e;
}

@media (max-width: 720px) {
  .ui-funil {
    grid-template-columns: 1fr;
  }

  .ui-funil__side {
    display: none;
  }

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

.fluxo__nodes {
  list-style: none;
  margin: 0;
  padding: 0 0.25rem 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 900px) {
  .fluxo__stage {
    padding: 1.75rem 1.75rem 1.5rem;
  }

  .fluxo__product {
    margin: 3rem auto 2.5rem;
  }

  .fluxo__nodes {
    position: absolute;
    inset: 0;
    display: block;
    padding: 0;
    pointer-events: none;
  }

  .fluxo__node {
    position: absolute;
    width: min(14.5rem, 22vw);
    pointer-events: auto;
  }

  .fluxo__node--comercial {
    top: 12%;
    left: 3.5%;
  }

  .fluxo__node--contratos {
    top: 14%;
    right: 3.5%;
  }

  .fluxo__node--financeiro {
    bottom: 18%;
    left: 3.5%;
  }

  .fluxo__node--entrega {
    bottom: 16%;
    right: 3.5%;
  }
}

.fluxo__node {
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 234, 0, 0.22);
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition:
    border-color 0.25s ease,
    transform 0.25s var(--ease-out),
    background 0.25s ease;
}

.fluxo__node:hover {
  border-color: rgba(255, 234, 0, 0.55);
  background: rgba(16, 16, 16, 0.9);
  transform: translateY(-2px);
}

.fluxo__node-kicker {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.fluxo__node strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.fluxo__node span:last-child {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.fluxo__rail {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

.fluxo__rail li {
  position: relative;
  padding: 0.4rem 0.9rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 550;
  letter-spacing: -0.01em;
}

.fluxo__rail li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -0.3rem;
  color: rgba(255, 234, 0, 0.55);
}

@keyframes fluxo-float {
  from {
    transform: perspective(1200px) rotateX(4deg) translateY(0);
  }
  to {
    transform: perspective(1200px) rotateX(4deg) translateY(-0.55rem);
  }
}

@keyframes fluxo-pulse {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

/* ——— Diferenciais ——— */
.diferenciais {
  padding: 5rem 0 2rem;
}

.diff-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.diff {
  padding: 1.45rem 0 1.55rem;
  border-top: 1px solid var(--border);
  transition:
    transform 0.3s var(--ease-soft),
    border-color 0.25s ease;
}

.diff:hover {
  transform: translateY(-4px);
  border-top-color: rgba(255, 234, 0, 0.35);
}

.diff__icon {
  position: relative;
  width: 3.35rem;
  height: 3.35rem;
  margin-bottom: 1.05rem;
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  place-items: center;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.diff:hover .diff__icon {
  border-color: rgba(255, 234, 0, 0.35);
  background: var(--accent-soft);
  box-shadow: 0 0 24px rgba(255, 234, 0, 0.08);
}

.diff__icon img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.85rem;
  height: 1.85rem;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.diff__icon-hover {
  opacity: 0;
}

.diff:hover .diff__icon-base {
  opacity: 0;
}

.diff:hover .diff__icon-hover {
  opacity: 1;
}

.diff h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.diff p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ——— Jornada ——— */
.jornada {
  padding: 5rem 0 2rem;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 234, 0, 0.06), transparent 70%);
}

.jornada__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .jornada__list {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    position: relative;
  }

  .jornada__list::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 234, 0, 0.4) 15%,
      rgba(255, 234, 0, 0.4) 85%,
      transparent
    );
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1s var(--ease-out) 0.15s;
  }

  .jornada .reveal.is-visible ~ .jornada__list::before,
  .jornada:has(.reveal.is-visible) .jornada__list::before {
    transform: scaleX(1);
  }
}

.jornada__list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  text-align: left;
}

.jornada__list img {
  width: 3rem;
  height: 3rem;
  position: relative;
  z-index: 1;
}

.jornada__list strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.jornada__list span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* ——— Parcerias / quotes ——— */
.parcerias {
  padding: 5rem 0 2rem;
}

.quotes {
  max-width: 46rem;
  margin: 0 auto;
}

.quotes__track {
  position: relative;
  min-height: 22rem;
}

.quote {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.45s var(--ease-out),
    visibility 0.45s;
  position: absolute;
  inset: 0;
}

.quote.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  position: relative;
}

.quote blockquote {
  margin: 0 0 1.75rem;
}

.quote blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #ececec;
  text-wrap: pretty;
}

.quote figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: center;
}

.quote__photo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.quote figcaption strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.quote figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.quote__logo {
  grid-column: 1 / -1;
  width: auto;
  height: 2rem;
  object-fit: contain;
  object-position: left center;
  opacity: 0.9;
}

.quotes__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.quotes__dots button {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.quotes__dots button.is-active {
  background: var(--accent);
  transform: scale(1.25);
}

/* ——— FAQ ——— */
.faq {
  padding: 5rem 0 2rem;
}

.faq__list {
  display: grid;
  gap: 0.85rem;
  max-width: 48rem;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.35rem 1.15rem 0.55rem;
  background: rgba(255, 255, 255, 0.015);
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.faq__item[open],
.faq__item:hover {
  border-color: rgba(255, 234, 0, 0.22);
  background: rgba(255, 234, 0, 0.02);
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 0 0.55rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: var(--ink);
  position: relative;
  padding-right: 2rem;
}

.faq__item summary h3::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}

.faq__item[open] summary h3::after {
  content: "–";
}

.faq__item p {
  margin: 0.85rem 0 0.5rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 42rem;
}

/* ——— CTA final ——— */
.cta-final {
  position: relative;
  margin-top: 4rem;
  padding: 7rem 0;
  overflow: hidden;
  text-align: center;
}

.cta-final__media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(255, 234, 0, 0.16), transparent 60%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(180deg, transparent, rgba(255, 234, 0, 0.03)),
    url("/images/site/bg-topo.webp") center / cover no-repeat;
  opacity: 0.5;
  filter: saturate(0.95);
  transform: scale(1.04);
  animation: hero-drift 20s ease-in-out infinite alternate;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
}

.cta-final h2 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__lead {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.calc-wrap {
  padding: 0 0 4rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

/* ——— Form embed modal (HTML/JS alinhados ao view-source do WP) ——— */
.form-modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem;
}

.form-modal[hidden] {
  display: none !important;
}

.form-modal__panel {
  position: relative;
  background: #000;
  width: 90%;
  max-width: 500px;
  height: 80vh;
  border-radius: 6px;
  padding: 20px;
  border: 1px solid #ffea00;
  display: flex;
  flex-direction: column;
}

.form-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  border: none;
  background: none;
  font-size: 25px;
  cursor: pointer;
  color: white;
  line-height: 1;
}

.form-modal__loading {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}

.form-modal__loading[hidden] {
  display: none !important;
}

.form-modal__spinner {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 234, 0, 0.25);
  border-top-color: #ffea00;
  animation: form-spin 0.7s linear infinite;
}

.form-modal__body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}

.form-modal__success {
  color: white;
  text-align: center;
  margin: auto;
  padding: 1rem;
}

.form-modal__success h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #ffea00;
}

.form-modal__success p {
  margin: 0;
  color: #b7b7b7;
  line-height: 1.55;
}

.footer__meta--muted {
  opacity: 0.75;
}

@keyframes form-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ——— Footer ——— */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2.75rem;
}

.footer__inner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  gap: 1.35rem;
}

.footer nav,
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.footer a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--accent);
}

.footer__meta {
  margin: 0.5rem 0 0;
  color: var(--muted-2);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ——— Começar page ——— */
.page-comecar {
  background:
    radial-gradient(ellipse 70% 40% at 50% -10%, rgba(255, 234, 0, 0.08), transparent 55%),
    var(--bg);
}

.comecar {
  padding: 2rem 0 4rem;
}

.comecar__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.comecar__intro h1 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.comecar__intro p {
  margin-left: auto;
  margin-right: auto;
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  filter: blur(6px);
  transition:
    opacity 0.8s var(--ease-soft),
    transform 0.8s var(--ease-soft),
    filter 0.8s var(--ease-soft);
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero__media,
  .hero__mesh,
  .fluxo__product,
  .fluxo__glow,
  .cta-final__media,
  .missao__visual::before,
  .hero__scroll::after,
  .hero__line--accent {
    animation: none;
  }

  .hero__brand,
  .hero__lead,
  .hero__actions,
  .hero__scroll,
  .hero__line,
  .reveal,
  .quote {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
    visibility: visible;
    filter: none;
  }

  .jornada__list::before {
    transform: none !important;
  }

  .noise {
    display: none;
  }
}
