:root {
  --bg: #001324;
  --bg-1: #041a2c;
  --surface: #031C30;
  --surface-2: #0a3549;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --teal: #06C6AA;
  --teal-bright: #4be3cb;
  --teal-soft: #7ce0d2;
  --teal-deep: #063a45;

  --teal-blue: #0D4D83;
  --teal-blue-deep: #063142;

  --ink: #eaf4fb;
  --ink-dim: #A9B7C2;
  --ink-mute: #5c7a8c;

  --highlight-onlight: #009B91;
  --ink-onlight: #061727;
  --bg-onlight: #F4F7F7;

  --btn-highlight: #39DFC4;
  --hero-glow: #073452;
  --hero-depth: #00101E;
  --op-grad-a: #0A877E;
  --op-grad-b: #045165;
  --contrast: #FFFFFF;

  --space: clamp(1rem, 0.6rem + 1.4vw, 2rem);
  --maxw: 1180px;
  --radius: 16px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .marquee-track {
    animation-duration: 32s !important;
    animation-iteration-count: infinite !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  padding-top: 76px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(55% 45% at 88% -5%, rgba(7, 174, 152, 0.09), transparent 60%),
    radial-gradient(45% 35% at 6% 20%, rgba(10, 143, 174, 0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

h1,
h2,
h3,
h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--space);
  padding-right: var(--space);
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--teal-bright);
  display: inline-block;
}

.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
  position: relative;
  z-index: 2;
}

/* ---------- SPINE ---------- */
.spine {
  position: fixed;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
  z-index: 5;
  pointer-events: none;
}

.spine-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--teal), var(--teal-bright));
  box-shadow: 0 0 10px 1px rgba(75, 232, 196, 0.5);
  transition: height .08s linear;
}

@media (max-width: 900px) {
  .spine {
    display: none;
  }
}

/* ---------- NAV ---------- */
header.site {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 19, 36, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}

header.site.hide {
  transform: translateY(-100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.brand-mark-wrap {
  position: relative;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark-wrap::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3, 38, 85, 0.411), transparent 70%);
}

.brand-mark {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  mix-blend-mode: screen;
}

.brand-name {
  color: var(--ink);
}

.brand-name b {
  color: var(--teal-bright);
  font-weight: 700;
}

nav.links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav.links a {
  font-size: 0.9rem;
  color: var(--ink-dim);
  font-weight: 600;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.25s var(--ease);
}

nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--teal-bright);
  transition: width 0.3s var(--ease);
}

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

nav.links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--teal);
  color: var(--ink-onlight) !important;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-weight: 700 !important;
  font-size: 0.86rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.whatsapp-ico {
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--btn-highlight);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(57, 223, 196, 0.55);
}

.ig-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--teal);
  color: var(--ink-onlight);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.ig-btn:hover {
  background: var(--btn-highlight);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(57, 223, 196, 0.55);
}

.mobile-cta-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
}

.mobile-cta-row .nav-cta {
  flex: 1;
  margin-top: 0;
  height: 54px;
  padding: 0 1.3rem;
}

.mobile-cta-row .ig-btn {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  flex-shrink: 0;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  position: relative;
  padding: 0;
}

.burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}

.burger span:nth-child(1) {
  top: 12px;
}

.burger span:nth-child(2) {
  top: 19px;
}

.burger span:nth-child(3) {
  top: 26px;
}

.burger.open span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

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

.burger.open span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 76px 0 0 0;
  z-index: 99;
  background: rgba(0, 19, 36, 0.98);
  backdrop-filter: blur(10px);
  padding: 2rem var(--space);
  flex-direction: column;
  gap: 0.2rem;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}

.mobile-panel.show {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-panel a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-dim);
}

.mobile-panel a.nav-cta {
  text-align: center;
  justify-content: center;
  border-bottom: none;
  color: var(--ink-onlight) !important;
}

.mobile-panel a.ig-btn {
  padding: 0;
  border-bottom: none;
  color: var(--ink-onlight) !important;
}

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

  header.site .nav>.nav-cta,
  header.site .nav>.ig-btn {
    display: none;
  }

  .burger {
    display: block;
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color .25s var(--ease);
}

.btn.primary {
  background: var(--teal);
  color: var(--ink-onlight);
}

.btn.primary:hover {
  background: var(--btn-highlight);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(57, 223, 196, 0.55);
}

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

.btn.ghost:hover {
  border-color: var(--teal-bright);
  color: var(--teal-bright);
  transform: translateY(-2px);
}

/* ---------- HERO ---------- */
.hero {
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
  position: relative;
  background: radial-gradient(120% 90% at 50% -15%, var(--hero-glow) 0%, var(--hero-depth) 55%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.3rem, 2vw + 2rem, 3.6rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--contrast);
}

.hero h1 em {
  font-style: normal;
  color: var(--teal-soft);
}

.hero p.lede {
  margin-top: 1.4rem;
  font-size: clamp(1.02rem, 0.3vw + 1rem, 1.14rem);
  color: var(--ink-dim);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.signal-tags {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  margin: 2.2rem 0 0;
  padding: 0;
  flex-wrap: wrap;
}

.signal-tags li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.dot-teal {
  background: var(--teal);
  box-shadow: 0 0 8px 1px rgba(31, 207, 168, .6);
}

.dot-amber {
  background: var(--teal-blue);
  box-shadow: 0 0 8px 1px rgba(10, 143, 174, .6);
}

.dot-soft {
  background: var(--teal-soft);
  box-shadow: 0 0 8px 1px rgba(133, 232, 207, .6);
}

/* ---- Hero circuit diagram ---- */
.hero-diagram {
  position: relative;
}

.circuit {
  width: 100%;
  height: auto;
  overflow: visible;
}

.trace {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 1.6;
  stroke-dasharray: 3 7;
  animation: dashflow 1.4s linear infinite;
}

.trace-op {
  stroke: rgba(31, 207, 168, 0.35);
}

.trace-ge {
  stroke: rgba(10, 143, 174, 0.4);
}

.trace-mk {
  stroke: rgba(133, 232, 207, 0.35);
}

@keyframes dashflow {
  to {
    stroke-dashoffset: -20;
  }
}

.pulse {
  filter: drop-shadow(0 0 5px currentColor);
}

.pulse-op {
  fill: var(--teal);
  color: var(--teal);
}

.pulse-ge {
  fill: var(--teal-blue);
  color: var(--teal-blue);
}

.pulse-mk {
  fill: var(--teal-soft);
  color: var(--teal-soft);
}

.node circle {
  fill: var(--surface);
  stroke: var(--line-strong);
  stroke-width: 1.4;
}

.node text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 9px;
  fill: var(--ink-dim);
  letter-spacing: 0.03em;
}

.node-core circle:not(.ring) {
  fill: var(--teal-deep);
  stroke: var(--teal);
  stroke-width: 1.6;
}

.node-core text {
  fill: var(--teal-bright);
  font-weight: 700;
  font-size: 12px;
}

.node-core .ring {
  fill: none;
  stroke: rgba(31, 207, 168, 0.35);
  stroke-width: 1;
  animation: pulsering 2.6s ease-out infinite;
  transform-origin: 300px 230px;
}

@keyframes pulsering {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }

  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

.node-op circle {
  stroke: var(--teal);
}

.node-ge circle {
  stroke: var(--teal-blue);
}

.node-mk circle {
  stroke: var(--teal-soft);
}

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

  .hero-diagram {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ---------- STATEMENT ---------- */
.statement {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  position: relative;
}

.statement-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.statement-content .eyebrow {
  justify-content: center;
}

.statement-content h2 {
  font-size: clamp(1.9rem, 1.6vw + 1.5rem, 2.9rem);
  line-height: 1.2;
  margin: 0.7rem auto 1.3rem;
}

.statement-content h2 .highlight {
  color: var(--teal);
}

.statement-content p {
  color: var(--ink-dim);
  max-width: 58ch;
  margin: 0 auto;
}

.mono-annotation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin: 1.6rem auto 0;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
}

.mono-annotation span {
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-dim);
  background: var(--surface);
}

.mono-annotation b {
  color: var(--teal-bright);
}

#quem-somos.whoweare {
  background: var(--bg-onlight);
}

#quem-somos.whoweare .eyebrow,
#quem-somos.whoweare .eyebrow::before {
  color: var(--highlight-onlight);
}

#quem-somos.whoweare .eyebrow::before {
  background: var(--highlight-onlight);
}

#quem-somos.whoweare h2 {
  color: var(--ink-onlight);
}

#quem-somos.whoweare h2 .highlight {
  color: var(--highlight-onlight);
}

#quem-somos.whoweare p {
  color: var(--ink-onlight);
  opacity: 0.75;
}

/* ---------- MAIS DO QUE INDICAÇÃO (versão anterior: grid 2 colunas, fundo #A9B7C2) ---------- */
section.statement {
  background: #e6e9e9;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.2fr 1px 0.8fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.statement-main {
  border-left: 3px solid var(--ink-onlight);
  padding-left: clamp(1.2rem, 2vw, 1.8rem);
}

.statement-main h2 {
  font-size: clamp(1.7rem, 1.4vw + 1.4rem, 2.5rem);
  line-height: 1.18;
}

.statement-divider {
  align-self: stretch;
  background: rgba(6, 23, 39, 0.15);
}

.statement-side {
  padding-top: 0.2rem;
}

.statement-side p {
  max-width: 42ch;
}

.statement-grid .mono-annotation {
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 1.4rem;
}

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

  .statement-divider {
    display: none;
  }
}

section.statement .eyebrow,
section.statement .eyebrow::before {
  color: var(--ink-onlight);
}

section.statement .eyebrow::before {
  background: var(--ink-onlight);
}

section.statement h2 {
  color: var(--ink-onlight);
}

section.statement h2 .highlight {
  color: var(--highlight-onlight);
}

section.statement p {
  color: var(--ink-onlight);
  opacity: 0.72;
}

section.statement .mono-annotation span {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(6, 23, 39, 0.15);
  color: var(--ink-onlight);
}

section.statement .mono-annotation b {
  color: var(--highlight-onlight);
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-head h2 {
  font-size: clamp(1.7rem, 1.4vw + 1.4rem, 2.5rem);
  line-height: 1.16;
}

.section-head p {
  color: var(--ink-dim);
  margin-top: 1rem;
}

/* ---------- PROCESS / TIMELINE ---------- */
.process {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.timeline {
  position: relative;
  padding-top: 1rem;
}

.timeline-line {
  position: absolute;
  left: 0;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: var(--line);
}

@media (min-width:901px) {
  .timeline-line {
    left: 50%;
    transform: translateX(-1px);
  }
}

.timeline-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--teal), var(--teal-bright));
  transition: height .1s linear;
}

.tstep {
  position: relative;
  padding: 1.6rem 0 1.6rem 2.4rem;
  max-width: 640px;
}

.tstep .tnum {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--teal-bright);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.5rem;
}

.tstep h4 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.tstep p {
  color: var(--ink-dim);
}

@media (min-width:901px) {
  .tstep {
    width: calc(50% - 2.4rem);
    padding-left: 0;
    padding-right: 2.4rem;
    text-align: right;
  }

  .tstep:nth-child(even) {
    margin-left: calc(50% + 2.4rem);
    padding-right: 0;
    padding-left: 2.4rem;
    text-align: left;
  }
}

/* ---------- NÚCLEOS ---------- */
.nucleos {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.nuc-tabs {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.nuctab {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-dim);
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}

.ntag {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}

.nuctab:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}

.nuctab.active {
  color: var(--ink);
  border-color: var(--teal);
  background: var(--teal-deep);
}

.nuctab.active .ntag {
  color: var(--teal-bright);
}

.nuctab[data-nuc="operacoes"].active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--op-grad-a), var(--op-grad-b));
}

.nuctab[data-nuc="operacoes"].active .ntag {
  color: var(--contrast);
}

.nuctab[data-nuc="gestao"].active {
  border-color: var(--teal-blue);
  background: rgba(13, 77, 131, 0.16);
}

.nuctab[data-nuc="gestao"].active .ntag {
  color: var(--teal-blue);
}

.nuctab[data-nuc="marketing"].active {
  border-color: var(--teal-soft);
  background: rgba(133, 232, 207, 0.08);
}

.nuctab[data-nuc="marketing"].active .ntag {
  color: var(--teal-soft);
}

.nucpanel {
  display: none;
}

.nucpanel.active {
  display: block;
  animation: fadein .4s var(--ease);
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chips span {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--ink-dim);
  background: var(--surface);
  transition: transform .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}

.chips span:hover {
  transform: translateY(-2px);
  border-color: var(--teal-bright);
  color: var(--ink);
}

/* ---------- NÚCLEOS: variante de fundo claro (mesmo padrão de #quem-somos) ---------- */
#solucoes.nucleos {
  background: var(--bg-onlight);
}

#solucoes.nucleos .eyebrow,
#solucoes.nucleos .eyebrow::before {
  color: var(--highlight-onlight);
}

#solucoes.nucleos .eyebrow::before {
  background: var(--highlight-onlight);
}

#solucoes.nucleos h2 {
  color: var(--ink-onlight);
}

#solucoes.nucleos .section-head p {
  color: var(--ink-onlight);
  opacity: 0.75;
}

#solucoes.nucleos .nuctab {
  background: #FFFFFF;
  border-color: rgba(6, 23, 39, 0.12);
  color: var(--ink-onlight);
  opacity: 0.7;
}

#solucoes.nucleos .ntag {
  color: rgba(6, 23, 39, 0.55);
}

#solucoes.nucleos .nuctab:hover {
  opacity: 1;
  border-color: rgba(6, 23, 39, 0.28);
  color: var(--ink-onlight);
}

#solucoes.nucleos .nuctab.active {
  opacity: 1;
}

#solucoes.nucleos .chips span {
  background: #FFFFFF;
  border-color: rgba(6, 23, 39, 0.12);
  color: var(--ink-onlight);
  opacity: 0.75;
}

#solucoes.nucleos .chips span:hover {
  opacity: 1;
  border-color: var(--highlight-onlight);
  color: var(--ink-onlight);
}

/* ---------- GESTÃO DE FORNECEDORES (accordion) ---------- */
.gestao-fornecedores {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.accordion {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.4rem;
  max-width: none;
  align-items: stretch;
}

.acc-item {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 27.5rem;
}

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: none;
  padding: 1.3rem 1.5rem;
  text-align: left;
  font-family: 'Sora', sans-serif;
  cursor: default;
  flex-shrink: 0;
}

.acc-num {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--teal-bright);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.acc-title {
  flex: 1;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
}

.acc-body {
  display: flex;
  flex: 1;
}

.acc-body-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.acc-body-inner>* {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.acc-body-inner p {
  color: var(--ink-dim);
  margin: 0 0 1rem;
}

.acc-body-inner p:first-child {
  padding-top: 0.2rem;
}

.acc-close {
  font-size: 0.92rem;
  color: var(--ink-mute) !important;
  padding-bottom: 1.4rem !important;
  margin-top: auto !important;
}

@media (max-width: 780px) {
  .accordion {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .acc-item {
    min-height: 0;
  }
}

.checklist {
  list-style: none;
  margin: 0 0 1rem;
  padding-left: 1.5rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink-dim);
  font-size: 0.94rem;
}

.checklist li::before {
  content: "✓";
  color: var(--teal-bright);
  font-weight: 700;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  background: rgba(7, 174, 152, 0.1);
  margin-top: 0.1rem;
}

/* ---------- WHY ---------- */
.why {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  background: linear-gradient(180deg, var(--hero-glow) 0%, var(--bg-1) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.wcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.wcard-big {
  grid-column: span 1;
  background: linear-gradient(160deg, var(--teal-deep), var(--surface));
  border-color: var(--line-strong);
}

.wnum {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--teal-bright);
  font-size: 0.85rem;
}

.wcard h4 {
  font-size: 1.2rem;
  margin: 0.8rem 0 0.5rem;
}

.wcard p {
  color: var(--ink-dim);
  font-size: 0.94rem;
}

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

/* ---------- MARQUEE ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  background: var(--bg-1);
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  gap: 0.6rem;
  white-space: nowrap;
  width: max-content;
  animation: scroll-left 64s linear infinite;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink-mute);
}

.marquee-track span:nth-child(odd) {
  color: var(--ink-dim);
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}

/* ---------- CLOSER (parceiros + cta unificados) ---------- */
.closer {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(75% 75% at 50% 50%, var(--hero-glow) 0%, var(--hero-depth) 55%, var(--bg-1) 100%);
}

.closer-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(circle, rgba(6, 198, 170, 0.07), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.closer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: clamp(1.6rem, 3vw, 2.8rem);
}

.closer-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.closer-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(6, 198, 170, 0.25);
}

.closer-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--contrast);
  color: var(--ink-onlight);
  border: 1px solid var(--line-strong);
  margin-bottom: 1.3rem;
}

.closer-card h2 {
  font-size: clamp(1.5rem, 1.1vw + 1.2rem, 2.05rem);
  line-height: 1.2;
  margin: 0 0 0.9rem;
}

.closer-card p {
  color: var(--ink-dim);
  max-width: 38ch;
  margin: 0 0 1.6rem;
}

.closer-card .btn {
  margin-top: auto;
}

.closer-divider {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.closer-divider span {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
}

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

  .closer-divider {
    display: none;
  }
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- FOOTER ---------- */
.site-footer {
  position: relative;
  padding-top: 3.5rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--teal-blue), transparent);
  opacity: 0.6;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 2.6rem;
}

.foot-brand .brand {
  margin-bottom: 0.9rem;
}

.foot-tag {
  color: var(--ink-mute);
  font-size: 0.9rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  max-width: 30ch;
}

.foot-heading {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}

.foot-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.foot-col a {
  color: var(--ink-dim);
  font-size: 0.94rem;
  transition: color .2s var(--ease);
}

.foot-col a.foot-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.foot-col a.foot-social .instagram-ico {
  flex-shrink: 0;
}

.foot-col a:hover {
  color: var(--teal-bright);
}

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  border-top: 1px solid var(--line);
  padding: 1.6rem 0;
  font-size: 0.82rem;
  color: var(--ink-mute);
}

.foot-bottom-tag {
  color: var(--ink-mute);
}

@media (max-width:780px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
  }

  .foot-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width:520px) {
  .foot-top {
    grid-template-columns: 1fr;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}