/* Figueira Serviços — Wireframe v5
   Referência: Insight Lancer Digital Marketing Agency (Behance)
   Marca: Manual de Identidade Visual Figueira */

:root {
  --green-light: #A9BF45;
  --green-light-soft: #e8f0cc;
  --green-light-mid: #dce8b8;
  --green-dark: #5D934A;
  --nucleo-accent: #b0bc00;
  --nucleo-accent-soft: #eceec4;
  --nucleo-accent-mid: #d4d980;
  --nucleo-accent-dark: #8a9400;
  --navy: #253354;
  --navy-soft: #2f4268;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #1f2937;
  --text-muted: #5b6475;
  --border: #e4e9f0;
  --shadow: 0 18px 50px rgba(37, 51, 84, 0.08);
  --shadow-sm: 0 8px 24px rgba(37, 51, 84, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-h: 78px;
}

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

html {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--nucleo-accent);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section--alt {
  background: var(--surface);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(169, 191, 69, 0.14);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section__title {
  margin: 1rem 0 0.75rem;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.15;
  color: var(--navy);
  font-weight: 800;
}

.section__lead {
  max-width: 62ch;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.wire-note {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.35rem 0.65rem;
  border: 1px dashed #94a3b8;
  border-radius: 8px;
  color: #64748b;
  font-size: 0.75rem;
  background: #f8fafc;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand__logo {
  display: block;
  height: 46px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
}

.brand__tagline {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  max-width: 11ch;
}

.brand--footer {
  display: inline-flex;
}

.brand__logo--footer {
  height: 42px;
  max-width: 200px;
}

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

.nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(93, 147, 74, 0.28);
}

.btn--secondary {
  background: var(--navy);
  color: #fff;
}

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

/* CTA interativo — gradiente (modelo adaptado Figueira) */
.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  background: rgba(37, 51, 84, 0.95);
  box-shadow:
    0 0 0 1px rgba(169, 191, 69, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(169, 191, 69, 0.55),
    0 24px 48px rgba(93, 147, 74, 0.22);
}

.btn-cta--sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
}

.btn-cta--block {
  width: 100%;
}

.btn-cta__label,
.btn-cta__icon {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn-cta:hover .btn-cta__label {
  transform: translateX(2px);
}

.btn-cta:hover .btn-cta__icon {
  transform: translateX(4px);
}

.btn-cta__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.btn-cta__layer {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.btn-cta__layer--hover {
  opacity: 0;
  background: linear-gradient(
    45deg,
    rgba(169, 191, 69, 0.85) 0%,
    rgba(93, 147, 74, 0.85) 50%,
    rgba(176, 188, 0, 0.85) 100%
  );
  transition: opacity 0.3s ease;
}

.btn-cta:hover .btn-cta__layer--hover {
  opacity: 1;
}

.btn-cta__layer--ring {
  box-shadow:
    0 0 0 1px rgba(169, 191, 69, 0.4),
    0 16px 40px rgba(93, 147, 74, 0.25);
  background: radial-gradient(
    140% 160% at 50% -20%,
    rgba(169, 191, 69, 0.22) 0%,
    rgba(169, 191, 69, 0.08) 35%,
    transparent 60%
  );
}

.btn-cta__layer--shine {
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.05) 55%, transparent 60%),
    radial-gradient(90% 80% at 50% 120%, rgba(169, 191, 69, 0.16) 0%, transparent 60%);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

/* Menu mobile */
.mobile-nav[hidden] {
  display: none;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(37, 51, 84, 0.45);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  padding: 1.25rem 1.25rem 2rem;
  background: #fff;
  box-shadow: -12px 0 40px rgba(37, 51, 84, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: slide-in 0.28s ease;
}

@keyframes slide-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-nav__close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}

.mobile-nav__links {
  display: grid;
  gap: 0.35rem;
}

.mobile-nav__links a {
  padding: 0.75rem 0.5rem;
  border-radius: 10px;
  font-weight: 600;
  color: var(--navy);
}

.mobile-nav__links a:hover {
  background: rgba(169, 191, 69, 0.12);
}

body.nav-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4.5rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(169, 191, 69, 0.18), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(37, 51, 84, 0.12), transparent 32%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(37, 51, 84, 0.06);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  line-height: 1.05;
  color: var(--navy);
  font-weight: 800;
}

.hero h1 span {
  color: var(--green-dark);
}

.hero__text {
  margin: 0 0 1.75rem;
  max-width: 54ch;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero__stats,
.quem-somos__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.quem-somos__stats {
  margin-top: 1.75rem;
}

.stat--wide {
  grid-column: 1 / -1;
}

.stat {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
}

.stat span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.quem-somos .split {
  align-items: start;
}

.quem-somos__media {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  align-self: start;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 1;
}

.quem-somos__bg {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center center;
  background: #e8eef5;
}

.quem-somos__stats .stat {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1.3rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.22) 0%, transparent 42%),
    linear-gradient(145deg, #4a6188 0%, #5f789c 48%, #7a90b4 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 12px 32px rgba(37, 51, 84, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.quem-somos__stats .stat::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.quem-somos__stats .stat strong {
  display: block;
  position: relative;
  z-index: 1;
}

.quem-somos__stats .stat__value {
  color: #ffffff;
  font-size: clamp(2.15rem, 4.2vw, 2.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.quem-somos__stats .stat > span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 0.35rem;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero__image {
  display: block;
  width: min(100%, 540px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.section--white {
  background: #ffffff;
}

/* Scroll drive — troca de itens vinculada à rolagem */
.scroll-drive {
  --scroll-steps: 3;
  position: relative;
  height: calc(var(--scroll-steps) * 100vh);
  padding: 0;
}

.scroll-drive--4 {
  --scroll-steps: 4;
}

.scroll-drive__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Núcleos de Mídia — verde escuro com degradês circulares */
.nucleo-section {
  padding: 0;
  overflow: clip;
  background:
    radial-gradient(circle at 12% 18%, rgba(169, 191, 69, 0.28), transparent 38%),
    radial-gradient(circle at 88% 22%, rgba(169, 191, 69, 0.18), transparent 34%),
    radial-gradient(circle at 72% 78%, rgba(176, 188, 0, 0.14), transparent 40%),
    radial-gradient(circle at 28% 82%, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(165deg, #3f6f35 0%, var(--green-dark) 42%, #4a7f3e 100%);
}

.nucleo-section .section__eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #e8f5d8;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.nucleo-container {
  width: min(1360px, calc(100% - 3rem));
  margin-inline: auto;
}

.nucleo-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.nucleo-content .section__title {
  margin-top: 0.5rem;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  max-width: 18ch;
  color: #fff;
}

.nucleo-content .section__lead,
.nucleo-panel p {
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.82);
}

.nucleo-panels {
  display: grid;
}

.nucleo-panel {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.45s;
}

.nucleo-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.nucleo-list {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.nucleo-list li {
  color: rgba(255, 255, 255, 0.9);
}

.nucleo-list li + li {
  margin-top: 0.45rem;
}

.nucleo-list li::marker {
  color: rgba(169, 191, 69, 0.95);
}


.integ-diagram {
  --integ-navy: #253354;
  --integ-green: #5d934a;
  --integ-lime: #a9bf45;
  --integ-mint: #c5d96a;
  position: relative;
  overflow: clip;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  min-height: 480px;
  padding: 1rem 0;
}

.integ-diagram__axis {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.integ-diagram__axis--h {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateY(-50%);
}

.integ-diagram__axis--v {
  left: 50%;
  top: -8%;
  bottom: -8%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-50%);
}

.integ-hub {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 220px;
  height: 220px;
  opacity: calc(0.35 + 0.65 * var(--hub-in, 0));
  transform: translate(-50%, -50%) scale(calc(0.82 + 0.18 * var(--hub-in, 0)));
}

.integ-hub__circle {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: integ-pulse 5s linear infinite;
}

.integ-hub__circle--1 {
  width: 72px;
  height: 72px;
  background: rgba(93, 147, 74, 0.45);
}

.integ-hub__circle--2 {
  width: 120px;
  height: 120px;
  background: rgba(93, 147, 74, 0.22);
  animation-delay: -1.6s;
}

.integ-hub__circle--3 {
  width: 170px;
  height: 170px;
  background: rgba(169, 191, 69, 0.14);
  animation-delay: -3.3s;
}

@keyframes integ-pulse {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.65); }
  15% { opacity: 0.9; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2.1); }
}

.integ-hub__ray {
  position: absolute;
  inset: 50%;
}

.integ-hub__ray--l,
.integ-hub__ray--r {
  width: 56px;
  height: 2px;
  margin-top: -1px;
}

.integ-hub__ray--l {
  background: linear-gradient(270deg, rgba(169, 191, 69, 0.85), transparent);
  transform: translate(-100%, -50%);
}

.integ-hub__ray--r {
  background: linear-gradient(90deg, rgba(169, 191, 69, 0.85), transparent);
  transform: translate(0, -50%);
}

.integ-hub__ray--t,
.integ-hub__ray--b {
  width: 2px;
  height: 56px;
  margin-left: -1px;
}

.integ-hub__ray--t {
  background: linear-gradient(0deg, rgba(37, 51, 84, 0.65), transparent);
  transform: translate(-50%, -100%);
}

.integ-hub__ray--b {
  background: linear-gradient(180deg, rgba(37, 51, 84, 0.65), transparent);
  transform: translate(-50%, 0);
}

.integ-hub__core {
  position: absolute;
  inset: 50%;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: #fff;
  background: linear-gradient(145deg, var(--integ-navy), #1a2740);
  box-shadow: 0 0 0 8px rgba(63, 111, 53, 0.55), 0 0 36px rgba(169, 191, 69, 0.45);
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0.4rem;
}

.integ-hub__core svg {
  width: 22px;
  height: 22px;
}

.integ-hub__core span {
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.15;
  max-width: 9ch;
}

.integ-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(4rem, 8vw, 6rem);
  align-items: center;
}

.integ-item {
  --item-in: 0;
  --from-x: 0px;
  --from-y: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-self: center;
  max-width: 220px;
  margin-inline: auto;
  opacity: calc(0.08 + 0.92 * var(--item-in));
  transform: translate3d(
    calc(var(--from-x) * (1 - var(--item-in))),
    calc(var(--from-y) * (1 - var(--item-in))),
    0
  );
  will-change: transform, opacity;
}

.integ-item--tl {
  --from-x: -72px;
  --from-y: -64px;
}

.integ-item--tr {
  --from-x: 72px;
  --from-y: -64px;
}

.integ-item--bl {
  --from-x: -72px;
  --from-y: 64px;
}

.integ-item--br {
  --from-x: 72px;
  --from-y: 64px;
}

.integ-item.is-settled {
  transition: transform 0.25s ease;
}

.integ-item.is-settled:hover {
  transform: translate3d(0, -4px, 0);
}

.integ-diagram__axis {
  opacity: calc(0.25 + 0.75 * var(--hub-in, 0));
}

.integ-item__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.integ-item:hover .integ-item__icon {
  border-color: rgba(169, 191, 69, 0.65);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 24px rgba(169, 191, 69, 0.3);
}

.integ-item__icon svg {
  width: 28px;
  height: 28px;
}

.integ-item__icon--navy { color: #e8eef8; }
.integ-item__icon--green { color: #d7efc3; }
.integ-item__icon--lime { color: #e8f5a8; }
.integ-item__icon--mint { color: #c5d96a; }

.integ-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 0.95rem;
}

.integ-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  line-height: 1.45;
  max-width: 24ch;
}

.gestao-preview__body {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.gestao-preview__body.is-leaving {
  opacity: 0;
  transform: translateX(-22px);
}

.gestao-preview__body.is-entering {
  animation: gestao-enter 0.34s ease forwards;
}

@keyframes gestao-enter {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Reveal on scroll (entrada + reverso) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.diferenciais-bento .reveal {
  transform: translateY(24px) scale(0.985);
}

.diferenciais-bento .reveal.is-visible {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .gestao-preview__body,
  .integ-hub__circle {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .integ-hub {
    opacity: 1 !important;
    transform: translate(-50%, -50%) !important;
  }

  .integ-item {
    opacity: 1 !important;
    transform: none !important;
  }

  .integ-diagram__axis {
    opacity: 1 !important;
  }

  .quem-somos__media {
    position: relative;
    top: auto;
  }
}

.nucleo-diagram-wrap {
  display: none;
}

.nucleo-diagram-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 28px;
  overflow: hidden;
  opacity: 0.72;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 70% at 50% 45%, rgba(176, 188, 0, 0.25), transparent 70%),
    linear-gradient(145deg, rgba(37, 51, 84, 0.06), rgba(176, 188, 0, 0.1));
}

.nucleo-diagram-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nucleo-diagram-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 28px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.nucleo-diagram {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
}

.nucleo-diagram__ring {
  position: absolute;
  border-radius: 20px;
  border: 1px dashed rgba(176, 188, 0, 0.38);
  pointer-events: none;
}

.nucleo-diagram__ring--outer {
  inset: 0;
  animation: nucleo-pulse 3s ease-in-out infinite;
}

.nucleo-diagram__ring--inner {
  inset: 1.5rem;
  border-color: rgba(37, 51, 84, 0.14);
  animation: nucleo-pulse 3s ease-in-out infinite 0.6s;
}

@keyframes nucleo-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.nucleo-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease;
}

.nucleo-node:hover {
  transform: scale(1.05);
}

.nucleo-node--center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.nucleo-node--center:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.nucleo-node--top {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.nucleo-node--top:hover {
  transform: translateX(-50%) scale(1.05);
}

.nucleo-node--left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nucleo-node--left:hover {
  transform: translateY(-50%) scale(1.05);
}

.nucleo-node--right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nucleo-node--right:hover {
  transform: translateY(-50%) scale(1.05);
}

.nucleo-node--bottom {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.nucleo-node--bottom:hover {
  transform: translateX(-50%) scale(1.05);
}

.nucleo-node__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.nucleo-node--center .nucleo-node__icon {
  width: 84px;
  height: 84px;
  background: linear-gradient(145deg, rgba(176, 188, 0, 0.16), rgba(176, 188, 0, 0.08));
  border-color: rgba(176, 188, 0, 0.45);
  color: var(--nucleo-accent-dark);
}

.nucleo-node:hover .nucleo-node__icon {
  border-color: rgba(176, 188, 0, 0.55);
  color: var(--nucleo-accent-dark);
  box-shadow: 0 12px 32px rgba(176, 188, 0, 0.2);
}

.nucleo-node__icon svg {
  width: 30px;
  height: 30px;
}

.nucleo-node--center .nucleo-node__icon svg {
  width: 34px;
  height: 34px;
}

.nucleo-node__label {
  margin: 0.65rem 0 0;
  max-width: 10.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.88);
}

.nucleo-node:hover .nucleo-node__label {
  color: #fff;
}

.nucleo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.15rem 0 1.5rem;
  justify-content: flex-start;
}

.nucleo-tab {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nucleo-tab:hover {
  border-color: rgba(169, 191, 69, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nucleo-tab.is-active {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(169, 191, 69, 0.65);
  color: var(--green-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.nucleo-panel p {
  margin: 0 0 1rem;
}

.nucleo-panel p:last-child {
  margin-bottom: 0;
}

.nucleo-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-top: 2rem;
}

.nucleo-highlight {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 22px rgba(37, 51, 84, 0.06);
}

.nucleo-highlight__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(176, 188, 0, 0.14);
  color: var(--nucleo-accent-dark);
}

.nucleo-highlight__icon svg {
  width: 20px;
  height: 20px;
}

.nucleo-highlight strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.1;
}

.nucleo-highlight span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nucleo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.75rem;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  transition: all 0.2s ease;
  box-shadow: 0 6px 18px rgba(37, 51, 84, 0.06);
}

.nucleo-cta:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(93, 147, 74, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(93, 147, 74, 0.12);
}

.nucleo-cta svg {
  width: 18px;
  height: 18px;
  color: var(--green-dark);
}

/* Split blocks */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.media-box {
  min-height: 320px;
  border-radius: var(--radius);
  border: 1px dashed #b7c3d6;
  background:
    linear-gradient(135deg, rgba(37, 51, 84, 0.04), rgba(169, 191, 69, 0.08));
  display: grid;
  place-items: center;
  color: #7b879a;
  text-align: center;
  padding: 1.5rem;
}

.copy p + p {
  margin-top: 1rem;
}

/* Cards */
.cards {
  display: grid;
  gap: 1.25rem;
}

.cards--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(169, 191, 69, 0.16);
  color: var(--green-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Partners */
.partners-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 0;
  background: transparent;
  border: 0;
}

.partner-logo {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.partner-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.partner-logo--mint img {
  max-height: 72px;
}

.partner-logo--bb {
  background: #ffcc29;
  border-color: rgba(0, 51, 160, 0.12);
}

.partner-logo--bb img {
  max-height: 48px;
  width: min(100%, 240px);
}

@media (max-width: 900px) {
  .partners-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .partners-logos {
    grid-template-columns: 1fr;
  }
}

.partners {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.partner {
  min-height: 88px;
  border-radius: var(--radius-sm);
  border: 1px dashed #c5ceda;
  background: #fff;
  display: grid;
  place-items: center;
  color: #8b95a7;
  font-size: 0.82rem;
  text-align: center;
  padding: 0.75rem;
}

/* Docs */
.doc-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.doc-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
  min-height: 150px;
}

.doc-item--full {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  min-height: auto;
}

.doc-item strong {
  color: var(--navy);
}

.doc-item p {
  margin: 0.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.link-btn {
  white-space: nowrap;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .doc-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .doc-list {
    grid-template-columns: 1fr;
  }

  .doc-item--full {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* CTA band */
.cta-band {
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band p {
  margin: 0.35rem 0 0;
  opacity: 0.85;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact-visual {
  display: grid;
  gap: 1.25rem;
}

.contact-visual__image {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(93, 147, 74, 0.12), rgba(37, 51, 84, 0.08));
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.contact-visual__image img {
  max-width: min(280px, 80%);
  margin-inline: auto;
  opacity: 0.9;
}

.contact-visual__image p {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 28ch;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.12);
}

.btn-whatsapp svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #25d366;
}

.btn-whatsapp span {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}

.btn-whatsapp small {
  display: block;
  margin-top: 0.15rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 400;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
}

.info-card strong {
  color: var(--navy);
}

.info-card span {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.form {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font: inherit;
  background: #fbfcfe;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

/* Gestão de Núcleos — modelo rotator (tema claro) */
.gestao-section {
  background: var(--bg);
  padding: 0;
}

.gestao-container,
.diferenciais-container {
  width: min(1280px, calc(100% - 2rem));
  margin-inline: auto;
}

.gestao-header {
  max-width: 58ch;
  margin-bottom: 1.1rem;
}

.gestao-header .section__title {
  margin-bottom: 0.45rem;
}

.gestao-header .section__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.gestao-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.gestao-bullets {
  display: grid;
  gap: 1.15rem;
}

.gestao-bullet {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.gestao-bullet:hover {
  color: var(--navy);
}

.gestao-bullet.is-active {
  color: var(--navy);
}

.gestao-bullet__bar {
  flex-shrink: 0;
  width: 4px;
  height: 1.5rem;
  border-radius: 999px;
  background: #d1d5db;
  transition: background 0.2s ease;
}

.gestao-bullet.is-active .gestao-bullet__bar {
  background: var(--nucleo-accent);
}

.gestao-bullet span:last-child {
  font-size: 1rem;
  font-weight: 600;
}

.gestao-preview {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.gestao-preview__chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0 1.1rem;
  border-bottom: 1px solid var(--border);
  background: #f8fafc;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.gestao-preview__chrome svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.gestao-preview__sep {
  opacity: 0.45;
}

.gestao-preview__active-tab {
  color: var(--navy);
  font-weight: 600;
}

.gestao-preview__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  background: rgba(176, 188, 0, 0.12);
  color: var(--nucleo-accent-dark);
}

.gestao-preview__icon svg {
  width: 24px;
  height: 24px;
}

.gestao-preview__title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.25;
  color: var(--navy);
}

.gestao-preview__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: 10px;
  background: rgba(176, 188, 0, 0.14);
  color: var(--nucleo-accent-dark);
  box-shadow: inset 0 0 0 1px rgba(176, 188, 0, 0.35);
}

.gestao-preview__text {
  margin: 1rem 0 0;
  max-width: 48ch;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* Diferenciais — bento grid (tema claro) */
.diferenciais-section .section__lead {
  max-width: 58ch;
  margin-bottom: 2.5rem;
}

.diferenciais-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.bento-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0b2421;
  box-shadow: 0 10px 40px rgba(11, 36, 33, 0.25);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.45s ease;
}

.bento-card:hover {
  border-color: rgba(163, 230, 53, 0.3);
  background: #0d2825;
}

.bento-card--third {
  grid-column: span 1;
}

.bento-card--full {
  grid-column: 1 / -1;
}

.bento-card--sm {
  grid-column: span 1;
}

.bento-card--lg {
  grid-column: 1 / -1;
}

.bento-card__bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
}

.bento-card--lg .bento-card__bg {
  opacity: 0.09;
}

.bento-card__bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bento-card__icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(132, 204, 22, 0.1);
  color: #a3e635;
  box-shadow: inset 0 0 0 1px rgba(163, 230, 53, 0.3);
}

.bento-card__icon svg {
  width: 22px;
  height: 22px;
}

.bento-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.3;
  color: #f1f5f9;
}

.bento-accent {
  color: #a3e635;
}

.bento-card p {
  position: relative;
  z-index: 1;
  margin: 0.75rem 0 0;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.bento-pills {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.bento-pills span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 600;
  transition: border-color 0.2s ease;
}

.bento-pills span:hover {
  border-color: rgba(163, 230, 53, 0.3);
}

.bento-pills span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a3e635;
  flex-shrink: 0;
}

/* Desktop — ajustes gestão */
@media (min-width: 1025px) {
  .gestao-grid {
    align-items: start;
  }

  .gestao-preview {
    margin-top: -188px;
  }
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer h4 {
  margin: 0 0 0.85rem;
  color: #fff;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid,
  .split,
  .nucleo-grid,
  .gestao-grid,
  .contact-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .quem-somos__media {
    position: relative;
    top: auto;
  }

  .bento-card--third,
  .bento-card--full,
  .bento-card--sm,
  .bento-card--lg {
    grid-column: 1 / -1;
  }

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

  .gestao-section.scroll-drive {
    height: calc(4 * 72dvh);
    min-height: calc(4 * 72vh);
    padding: 0;
  }

  .gestao-section .scroll-drive__sticky {
    position: sticky;
    top: 0;
    height: 100dvh;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    padding: calc(var(--header-h) + 0.45rem) 0 0.85rem;
    box-sizing: border-box;
  }

  .gestao-header {
    margin-bottom: 0.7rem;
  }

  .gestao-header .section__title {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  }

  .gestao-header .section__lead {
    font-size: 0.92rem;
  }

  .gestao-grid {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    align-items: stretch;
  }

  .gestao-bullets-viewport {
    width: 100%;
    overflow: hidden;
    padding: 0.1rem 0 0.2rem;
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  }

  .gestao-bullets {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.55rem;
    width: max-content;
    max-width: none;
    overflow: visible;
    padding: 0.15rem 0.35rem 0.35rem;
    transform: translate3d(var(--gestao-track-x, 0px), 0, 0);
    transition: none;
    will-change: transform;
    mask-image: none;
  }

  .gestao-bullet {
    flex: 0 0 10.75rem;
    width: 10.75rem;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    min-width: 0;
    max-width: none;
    padding: 0.7rem 0.85rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-sm);
    color: var(--text-muted);
    white-space: normal;
  }

  .gestao-bullet.is-active {
    color: var(--navy);
    border-color: rgba(176, 188, 0, 0.55);
    box-shadow: 0 10px 24px rgba(37, 51, 84, 0.1);
  }

  .gestao-bullet__bar {
    width: 100%;
    height: 3px;
    border-radius: 999px;
  }

  .gestao-bullet span:last-child {
    font-size: 0.88rem;
    line-height: 1.25;
    font-weight: 700;
  }

  .gestao-preview {
    margin-top: 0;
  }

  .gestao-preview__body {
    padding: 1.15rem 1.1rem 1.25rem;
  }

  .gestao-preview__title {
    font-size: clamp(1.15rem, 4.8vw, 1.4rem);
  }

  .gestao-preview__text {
    font-size: 0.92rem;
    margin-top: 0.75rem;
  }

  .gestao-preview__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 0.75rem;
  }

  .nucleo-section.scroll-drive {
    height: calc(3 * 100dvh);
    min-height: calc(3 * 100vh);
    padding: 0;
  }

  .nucleo-section .scroll-drive__sticky {
    position: sticky;
    top: 0;
    height: 100dvh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
    padding: calc(var(--header-h) + 0.65rem) 0 0.85rem;
    box-sizing: border-box;
  }

  .nucleo-section {
    padding: 0;
  }

  .nucleo-container {
    width: min(1360px, calc(100% - 1.25rem));
    max-height: none;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .nucleo-grid {
    gap: 0.75rem;
    align-items: stretch;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .nucleo-content {
    padding-inline: clamp(0.85rem, 3.5vw, 1.35rem);
    flex: 0 0 auto;
  }

  .nucleo-tabs {
    justify-content: center;
    flex-wrap: nowrap;
    position: relative;
    top: auto;
    z-index: 10;
    margin: 0.45rem 0 0.65rem;
    padding: 0.35rem;
    background: rgba(0, 0, 0, 0.16);
    border-radius: 999px;
    box-shadow: none;
    gap: 0.25rem;
  }

  .nucleo-content .section__eyebrow {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin-inline: auto;
  }

  .nucleo-content {
    text-align: left;
  }

  .nucleo-content .section__title {
    max-width: none;
    font-size: clamp(1.28rem, 5.4vw, 1.7rem);
    padding-top: 0;
    margin-top: 0.25rem;
    margin-bottom: 0.45rem;
    line-height: 1.2;
  }

  .nucleo-panels {
    min-height: 7.5rem;
  }

  .nucleo-panel p {
    font-size: 0.88rem;
    line-height: 1.45;
    max-width: none;
    margin: 0;
  }

  .nucleo-panel p + p {
    display: none;
  }

  .nucleo-list {
    font-size: 0.84rem;
    margin: 0.55rem 0 0;
  }

  .nucleo-list li + li {
    margin-top: 0.28rem;
  }

  .nucleo-highlights {
    display: none;
  }

  .integ-diagram {
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 1;
    width: min(100%, 280px);
    max-width: 280px;
    margin-inline: auto;
    margin-top: auto;
    margin-bottom: 0.15rem;
    padding: 0.15rem 0.4rem 0.35rem;
    overflow: visible;
    transform: none;
    flex: 0 0 auto;
  }

  .integ-grid {
    gap: 0.25rem 0.35rem;
    padding: 0.1rem;
    overflow: visible;
  }

  .integ-hub {
    width: 112px;
    height: 112px;
  }

  .integ-hub__core {
    width: 56px;
    height: 56px;
  }

  .integ-hub__core span {
    font-size: 0.5rem;
  }

  .integ-hub__circle--3 {
    width: 100px;
    height: 100px;
  }

  .integ-hub__circle--2 {
    width: 82px;
    height: 82px;
  }

  .integ-hub__ray--l,
  .integ-hub__ray--r {
    width: 28px;
  }

  .integ-hub__ray--t,
  .integ-hub__ray--b {
    height: 28px;
  }

  .integ-item {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    padding-inline: 0.1rem;
  }

  .integ-item--tl {
    --from-x: -42px;
    --from-y: -34px;
  }

  .integ-item--tr {
    --from-x: 42px;
    --from-y: -34px;
  }

  .integ-item--bl {
    --from-x: -42px;
    --from-y: 34px;
  }

  .integ-item--br {
    --from-x: 42px;
    --from-y: 34px;
  }

  .integ-item strong {
    font-size: 0.7rem;
    line-height: 1.15;
    max-width: 11ch;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .integ-item p {
    display: none;
  }

  .integ-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 0.35rem;
  }

  .integ-item__icon svg {
    width: 20px;
    height: 20px;
  }

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

  .cards--3,
  .partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__visual {
    min-height: auto;
    margin-top: 1rem;
  }

  .hero__image {
    width: min(100%, 420px);
  }
}

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

  .brand__tagline {
    display: none;
  }

  .brand__logo {
    height: 38px;
    max-width: 160px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nucleo-section .scroll-drive__sticky {
    padding: calc(var(--header-h) + 0.5rem) 0 0.65rem;
  }

  .nucleo-container {
    width: min(1360px, calc(100% - 1rem));
  }

  .nucleo-content {
    padding-inline: 0.75rem;
  }

  .nucleo-tabs {
    justify-content: center;
    width: 100%;
    padding: 0.3rem;
  }

  .nucleo-tab {
    flex: 1 1 auto;
    padding: 0.45rem 0.5rem;
    font-size: 0.76rem;
    text-align: center;
  }

  .integ-diagram {
    width: min(100%, 248px);
    max-width: 248px;
    aspect-ratio: 1 / 1;
    padding: 0.1rem 0.25rem 0.25rem;
  }

  .integ-grid {
    gap: 0.2rem 0.25rem;
  }

  .integ-item strong {
    font-size: 0.66rem;
    max-width: 10ch;
  }

  .integ-item__icon {
    width: 38px;
    height: 38px;
  }

  .integ-hub {
    width: 96px;
    height: 96px;
  }

  .integ-hub__core {
    width: 50px;
    height: 50px;
  }

  .integ-item--tl {
    --from-x: -36px;
    --from-y: -28px;
  }

  .integ-item--tr {
    --from-x: 36px;
    --from-y: -28px;
  }

  .integ-item--bl {
    --from-x: -36px;
    --from-y: 28px;
  }

  .integ-item--br {
    --from-x: 36px;
    --from-y: 28px;
  }

  .quem-somos__media {
    position: relative;
    top: auto;
    width: 100%;
  }

  .quem-somos__bg {
    aspect-ratio: 3 / 2;
    object-fit: contain;
  }

  .cards--4,
  .cards--3,
  .partners,
  .form-grid,
  .nucleo-highlights {
    grid-template-columns: 1fr;
  }

  .diferenciais-bento {
    grid-template-columns: 1fr;
  }

  .bento-card--third,
  .bento-card--full,
  .bento-card--sm,
  .bento-card--lg {
    grid-column: auto;
  }

  /* .bento-pills { grid-template-columns: 1fr; } — mantém 2 colunas do breakpoint 1024px */

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

  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 390px) {
  .header__inner {
    gap: 0.5rem;
  }

  .brand__logo {
    height: 34px;
    max-width: 132px;
  }

  .header .btn-cta--sm {
    min-width: 44px;
    padding-inline: 0.75rem;
  }

  .header .btn-cta--sm .btn-cta__label {
    display: none;
  }
}
