/* Carbon Aura — tipografia e cores institucionais MVB */
:root {
  --navy: #030624;
  --navy-2: #0a1230;
  --navy-3: #152048;
  --gold: #c7a16a;
  --gold-bright: #f0dfb4;
  --gold-deep: #8a6834;
  --champagne: #ebe6dc;
  --teal: #5a6f88;
  --teal-soft: rgba(90, 111, 136, 0.35);
  --paper: #f5f2ec;
  --cream: #ebe4d8;
  --white: #fffcf7;
  --ink: #12141c;
  --muted: #4a5160;
  --muted-light: rgba(245, 242, 236, 0.9);
  --line: rgba(26, 28, 36, 0.12);
  --line-gold: rgba(199, 161, 106, 0.42);
  --silver: #e8eef4;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --radius-btn: 6px;
  --radius-ui: 12px;
  --nav-h: 80px;
  --page-max: 1160px;
  /* gutter simétrico, depois puxa um pouco à esquerda */
  --page-pad: max(0.85rem, env(safe-area-inset-left, 0px), calc((100% - var(--page-max)) / 2 - 1.35rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 40% at 0% 0%, rgba(199, 161, 106, 0.07), transparent 50%),
    radial-gradient(ellipse 60% 35% at 100% 8%, rgba(90, 111, 136, 0.06), transparent 48%),
    var(--paper);
  line-height: 1.65;
  font-weight: 400;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

/* Brilho nas palavras de destaque — contraste forte em fundos claros e escuros */
.glow {
  font-style: normal;
  font-weight: 700;
  background-image: linear-gradient(
    105deg,
    #8a6834 0%,
    #c7a16a 22%,
    #e8d5a8 42%,
    #f5e6c4 52%,
    #c7a16a 72%,
    #8a6834 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: glowSweep 6s ease-in-out infinite;
  filter: drop-shadow(0 1px 0 rgba(138, 104, 52, 0.22));
}
.glow--soft {
  font-weight: 600;
  animation-duration: 8s;
  filter: drop-shadow(0 1px 0 rgba(138, 104, 52, 0.18));
}
.hero .glow,
.section--navy .glow,
.footer .glow,
.simulador .glow {
  background-image: linear-gradient(
    105deg,
    #c7a16a 0%,
    #f0dfb4 28%,
    #fff8e8 48%,
    #e8d5a8 68%,
    #f0dfb4 88%,
    #c7a16a 100%
  );
  filter: drop-shadow(0 0 14px rgba(240, 223, 180, 0.45));
}
.section--navy .glow,
.footer .glow,
.hero .glow,
.simulador .glow {
  background-image: linear-gradient(
    105deg,
    #b89255 0%,
    #f0dfb4 26%,
    #ffffff 46%,
    #e8d5a8 66%,
    #c7a16a 86%,
    #f5e6c4 100%
  );
  filter: drop-shadow(0 0 16px rgba(240, 223, 180, 0.5));
}
@keyframes glowSweep {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 200; background: var(--gold); color: var(--navy); padding: .5rem .8rem; }

/* Ambient motion ? confined mostly to dark/navy bands, very subtle elsewhere */
.ambient { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(70px);
  animation: floatOrb 16s ease-in-out infinite alternate;
}
.orb--1 { width: 46vw; height: 46vw; top: -16%; left: -10%; background: radial-gradient(circle, rgba(199,161,106,.16), transparent 70%); }
.orb--2 { width: 36vw; height: 36vw; top: 30%; right: -14%; background: radial-gradient(circle, rgba(90,111,136,.18), transparent 70%); animation-delay: -4s; }
.orb--3 { width: 30vw; height: 30vw; bottom: -10%; left: 26%; background: radial-gradient(circle, rgba(212,219,228,.1), transparent 70%); animation-delay: -7s; }
@keyframes floatOrb {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(4%, 6%) scale(1.08); }
}
#sparkCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .22; }

.nav, main, .footer, .fab, .cookie { position: relative; z-index: 1; }

.nav {
  position: sticky; top: 0; z-index: 70;
  background: #fff !important;
  background-color: #fff !important;
  color: #5a6068;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(90, 96, 104, 0.14);
  transition: border-color .3s, box-shadow .3s;
  padding-top: env(safe-area-inset-top, 0px);
}
.nav.scrolled {
  border-color: rgba(90, 96, 104, 0.2);
  background: #fff !important;
  background-color: #fff !important;
  box-shadow: 0 8px 28px rgba(20, 28, 38, 0.08);
}
.nav__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: max(var(--page-pad), env(safe-area-inset-right, 0px));
  padding-left: max(var(--page-pad), env(safe-area-inset-left, 0px));
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--nav-h); gap: 1.25rem;
  box-sizing: border-box;
}

/* Brand lockup tipogr?fico ? marca sem caixa escura */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: inherit;
}
.brand__mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(199, 161, 106, 0.28));
}
.brand__copy {
  display: grid;
  gap: .05rem;
  line-height: 1.05;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.brand__sub {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.brand--nav {
  display: inline-flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  margin-left: 0;
  padding: 0.2rem 0;
}
.brand--nav .brand__logo {
  display: block;
  /* ~65% do tamanho anterior */
  height: clamp(34px, 3.575vw, 47px);
  width: auto;
  max-width: min(221px, 44vw);
  object-fit: contain;
  object-position: left center;
}
.brand--hero {
  margin-bottom: 1.1rem;
  gap: .85rem;
}
.brand--hero .brand__mark {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 18px rgba(232, 213, 168, 0.45));
}
.brand--hero .brand__name {
  font-size: 1.45rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,.15);
}
.brand--hero .brand__sub {
  color: var(--gold-bright);
  letter-spacing: 0.24em;
}
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__sub { color: var(--gold-bright); }
.brand--footer .brand__mark {
  filter: drop-shadow(0 0 14px rgba(199, 161, 106, 0.35));
}

.nav__links { display: flex; align-items: center; gap: 1.35rem; font-size: .95rem; font-weight: 600; }
.nav__links > a:not(.btn) {
  color: #6b7280;
  opacity: 1;
  transition: opacity .2s, color .2s;
}
.nav__links > a:not(.btn):hover,
.nav__links > a.active {
  opacity: 1;
  color: #4b5563;
}
.nav__toggle {
  display: none; background: none; border: 0; width: 42px; height: 42px;
  flex-direction: column; justify-content: center; gap: 7px; cursor: pointer;
}
.nav__toggle span { display: block; height: 1.5px; width: 22px; background: #6b7280; margin-inline: auto; transition: .25s; }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.45rem; font-weight: 600; font-size: .9rem;
  border: 1px solid transparent; border-radius: var(--radius-btn);
  position: relative; overflow: hidden;
  letter-spacing: 0.01em;
  transition: background .2s, color .2s, border-color .2s, opacity .2s;
}
.btn:hover { transform: none; opacity: .92; }
.btn--lg { padding: 1rem 1.7rem; font-size: .95rem; }
.btn--block { width: 100%; }
.btn--ghost {
  border-color: rgba(255,255,255,.45); color: #fff; background: transparent;
}
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); box-shadow: none; opacity: 1; }
.btn--shine,
.btn--shine-strong,
.btn--nav-wa {
  color: #fff;
  background: #c5862f;
  box-shadow: none;
  border-color: transparent;
}
.btn--shine:hover,
.btn--shine-strong:hover,
.btn--nav-wa:hover {
  color: #fff;
  background: #c5862f;
  box-shadow: none;
  opacity: .92;
}
.btn--sm { padding: .65rem 1.15rem; font-size: .86rem; align-self: flex-start; }
.btn--soft {
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(20, 28, 38, 0.12);
  box-shadow: 0 6px 16px rgba(20, 28, 38, 0.06);
}
.btn--soft:hover {
  background: #fff;
  border-color: rgba(199, 161, 106, 0.55);
  box-shadow: 0 10px 22px rgba(20, 28, 38, 0.1);
  opacity: 1;
}
.btn--nav-wa { padding: .55rem 1.25rem; font-size: .9rem; min-height: 42px; box-sizing: border-box; }
.btn--dark {
  color: #fff; border-color: transparent; background: var(--navy); border-radius: var(--radius-btn);
}
.btn--dark:hover { background: var(--navy-2); box-shadow: none; opacity: 1; }

/* ---------- Hero: full-bleed casal (compacto) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 4.75rem 0 3rem;
  color: #fff;
  background: #0d1724;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #030624 url("../assets/img/hero-poster.jpg") center bottom / cover no-repeat;
}
.hero__bg img,
.hero__bg video,
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Âncora inferior: preserva faixa dourada + logos do vídeo */
  object-position: center bottom;
  display: block;
}
.hero__video {
  opacity: 0;
  transition: opacity .35s ease;
  background: transparent;
  /* Evita layer pesada / stutter em GPUs móveis */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.hero__video.is-ready {
  opacity: 1;
}
.hero__video.is-fallback {
  display: none;
}
.hero__bg-wash {
  display: none;
}
.hero__bg-wash::after {
  display: none;
}
@keyframes carbonHeroSheen {
  from { opacity: 0.55; transform: translate3d(0, 0, 0); }
  to   { opacity: 0.95; transform: translate3d(-2%, 1.5%, 0); }
}
.hero__gold-band {
  display: none;
}
.hero__fade {
  display: none; /* removido temporariamente para avaliação */
  position: absolute;
  inset: auto 0 0 0;
  height: 12%;
  z-index: 3;
  background: linear-gradient(to bottom, transparent, var(--paper));
  pointer-events: none;
}
.hero__orbs { display: none; }
.hero__shine { display: none; }
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: clamp(320px, 42vh, 440px);
}
.hero__inner--split {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  min-height: clamp(320px, 42vh, 440px);
}
.hero--split .hero__panel {
  max-width: none;
  display: flex;
  align-items: center;
  padding: 4.25rem clamp(1.25rem, 5vw, 5rem) 3.25rem;
  background:
    radial-gradient(ellipse 70% 55% at 18% 30%, rgba(199, 161, 106, 0.12), transparent 58%),
    linear-gradient(
      90deg,
      #0d1724 0%,
      #152536 28%,
      #1e3750 58%,
      #2a4a68 82%,
      #35587a 100%
    );
}
.hero--split .hero__copy { max-width: 32rem; }
.hero--split .hero__actions { margin-bottom: 0; }
.hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: #1a2430;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
}
.hero__visual-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 23, 36, 0.45) 0%, rgba(26, 47, 69, 0.14) 24%, transparent 50%);
}
.hero__card {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  min-height: 320px;
  border: 0;
  box-shadow: none;
}
.hero__card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: none;
}
.hero__card:hover img { transform: none; }
@media (max-width: 960px) {
  .hero__inner--split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero--split .hero__panel {
    padding: 4.5rem 1.25rem 2rem;
    min-height: auto;
  }
  .hero__visual {
    min-height: 240px;
    max-height: 300px;
  }
  .hero__card { display: none; }
  .hero__bg img,
  .hero__bg video,
  .hero__video {
    object-fit: cover;
    object-position: center bottom;
  }
}
.hero__panel {
  max-width: min(30rem, 48%);
  margin-right: auto;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.hero--compact {
  width: 100%;
  max-width: none;
  aspect-ratio: auto;
  height: min(78vh, 720px);
  min-height: 520px;
  max-height: 720px;
  display: block;
  position: relative;
  padding: 0;
  box-sizing: border-box;
}
.hero--compact .hero__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding:
    calc(var(--nav-h, 80px) + clamp(1.5rem, 6vh, 3.5rem))
    var(--page-pad)
    clamp(5.5rem, 16%, 8rem)
    var(--page-pad);
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  transform: none;
}
.hero--compact .hero__panel {
  max-width: min(24rem, min(42vw, 52%));
  margin: 0;
  transform: none;
  padding-top: clamp(1.25rem, 4.5vh, 3rem);
}
.hero--compact h1 {
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  margin-bottom: 0;
  max-width: 13ch;
}
.hero__line { display: inline; }
@media (max-width: 960px) {
  .hero--compact {
    aspect-ratio: auto;
    height: min(72svh, 640px);
    min-height: 480px;
    max-height: 640px;
  }
  .hero--compact .hero__inner {
    padding:
      calc(var(--nav-h, 72px) + clamp(1.75rem, 6svh, 3.25rem))
      var(--page-pad)
      clamp(5.5rem, 22%, 7.5rem)
      var(--page-pad);
    align-items: flex-start;
  }
  .hero--compact .hero__panel {
    max-width: min(22rem, 72%);
    transform: none;
    padding-top: clamp(0.75rem, 3svh, 1.75rem);
  }
  .hero--compact h1 {
    max-width: 12ch;
  }
  .hero__line { display: block; margin-top: .1em; }
  .hero__bg-wash {
    background:
      linear-gradient(
        115deg,
        rgba(3, 6, 36, 0.05) 0%,
        transparent 45%,
        transparent 100%
      ),
      linear-gradient(
        180deg,
        transparent 0%,
        transparent 70%,
        rgba(3, 6, 36, 0.03) 100%
      );
  }
  .hero__bg img,
  .hero__bg video,
  .hero__video {
    object-fit: cover;
    object-position: center bottom;
  }
  .hero__fade { height: 14%; }
}
.hero__copy { max-width: none; }
.hero__kicker {
  margin: 0 0 .85rem;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: 0 0 14px rgba(240, 223, 180, 0.28);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-size: .8rem; letter-spacing: .04em; color: rgba(255,255,255,.7);
  margin-bottom: 1.1rem;
  font-weight: 500;
  text-transform: none;
}
.pulse-dot { display: none; }
.hero h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  margin-bottom: .9rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.22;
  max-width: 15ch;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 8px 28px rgba(0, 0, 0, 0.35);
}
.hero h1 .glow {
  font-weight: 700;
}
.hero__lead {
  color: rgba(255,255,255,.78); font-size: 1rem; max-width: 34rem; margin: 0 0 1.5rem; line-height: 1.55;
  font-weight: 400;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.5rem; }
.btn--ghost-panel {
  border-color: transparent;
  background: #fff;
  color: var(--navy);
}
.btn--ghost-panel:hover { background: rgba(255,255,255,.92); box-shadow: none; opacity: 1; }

.hero__ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 1.1rem;
  max-width: 100%;
}
.ticker__track {
  display: flex; gap: 2rem; width: max-content;
  animation: marquee 28s linear infinite;
  color: rgba(255,255,255,.55); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
}
.ticker__track span { white-space: nowrap; opacity: .85; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Label carousel (entre vídeo e Essência) ---------- */
.label-carousel {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-block: 1px solid var(--line-gold);
  padding: 1.35rem 0;
  overflow: hidden;
}
.label-carousel::before,
.label-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2.5rem, 8vw, 5.5rem);
  z-index: 2;
  pointer-events: none;
}
.label-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}
.label-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}
.label-carousel__viewport {
  overflow: hidden;
  width: 100%;
}
.label-carousel__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: labelCarousel 42s linear infinite;
  -webkit-animation: labelCarousel 42s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
/* Pause só com ponteiro fino (desktop); no touch o :hover sticky pausava no Android */
@media (hover: hover) and (pointer: fine) {
  .label-carousel:hover .label-carousel__track {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
  }
}
.label-carousel__group {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
  padding-inline: .5rem;
  list-style: none;
  margin: 0;
  flex-shrink: 0;
}
.label-carousel__tag {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: .4rem;
  flex-shrink: 0;
  white-space: nowrap;
  padding: .68rem 1.35rem .64rem;
  border: 0;
  border-radius: var(--radius-btn);
  background: #c5862f;
  color: rgba(255, 252, 247, 0.92);
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.35;
  box-shadow: none;
}
.label-carousel__tag span {
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em;
}
@keyframes labelCarousel {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@-webkit-keyframes labelCarousel {
  from { -webkit-transform: translate3d(0, 0, 0); }
  to { -webkit-transform: translate3d(-50%, 0, 0); }
}
/* Mantém o marquee também com “reduzir animações” (comum no Android);
   só deixa um pouco mais lento — sem empilhar as etiquetas. */
@media (prefers-reduced-motion: reduce) {
  .label-carousel__track {
    animation: labelCarousel 64s linear infinite;
    -webkit-animation: labelCarousel 64s linear infinite;
    flex-wrap: nowrap;
    width: max-content;
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
    gap: 0;
    will-change: transform;
  }
  .label-carousel__group[aria-hidden="true"] { display: flex; }
  .label-carousel__group {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-inline: .5rem;
    width: auto;
  }
  .label-carousel__tag {
    white-space: nowrap;
    max-width: none;
  }
  .label-carousel::before,
  .label-carousel::after { display: block; }
}

/* ---------- Invest reach (layout tipo BTG) ---------- */
.section--paper {
  background: #f3f4f6;
}
.invest-reach {
  padding-block: clamp(2.75rem, 5vw, 4rem);
}
.invest-reach__head {
  max-width: 40rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.invest-reach__head h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  color: var(--navy);
  margin: 0 0 .85rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.invest-reach__head p {
  margin: 0 0 1.35rem;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 36rem;
  opacity: .88;
}
.invest-reach__head .btn {
  min-height: 48px;
  padding-inline: 1.6rem;
}
.invest-reach__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.invest-card {
  background: #fff;
  border: 1px solid rgba(3, 6, 36, 0.08);
  border-radius: 4px;
  padding: 1.55rem 1.35rem 1.7rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 1px 2px rgba(3, 6, 36, 0.04);
}
.invest-card__icon {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1.15rem;
  color: var(--navy);
}
.invest-card__icon svg {
  width: 100%;
  height: 100%;
}
.invest-card h3 {
  margin: 0 0 .65rem;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.invest-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}
@media (max-width: 980px) {
  .invest-reach__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .invest-reach__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Simulador (Calculadora dos sonhos) ---------- */
section.simulador {
  padding-inline: 0;
  --sim-ink: #f4f1ea;
  --sim-muted: rgba(244, 241, 234, 0.72);
  --sim-gold: #c7a16a;
  --sim-gold-bright: #f0dfb4;
  --sim-gold-deep: #a67c3a;
  --sim-gold-shine: linear-gradient(
    105deg,
    #b89255 0%,
    #f0dfb4 26%,
    #ffffff 46%,
    #e8d5a8 66%,
    #c7a16a 86%,
    #f5e6c4 100%
  );
  --sim-gold-fill: linear-gradient(135deg, #e8d5a8 0%, #c7a16a 48%, #a67c3a 100%);
  --sim-line: rgba(199, 161, 106, 0.28);
  padding-block: clamp(3rem, 6vw, 5rem);
  background-color: #05070d;
  background-image:
    linear-gradient(
      105deg,
      rgba(5, 8, 16, 0.42) 0%,
      rgba(5, 8, 16, 0.18) 32%,
      rgba(5, 8, 16, 0.55) 58%,
      rgba(5, 8, 16, 0.86) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 8, 16, 0.22) 0%,
      transparent 26%,
      transparent 74%,
      rgba(5, 8, 16, 0.35) 100%
    ),
    url("../assets/img/simulador-bg.jpg?v=20260728b");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  color: var(--sim-ink);
  position: relative;
  overflow: hidden;
}
.simulador::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(199, 161, 106, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.22;
  pointer-events: none;
}
.simulador__layout {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}
.simulador__card {
  width: min(100%, 32rem);
  background: linear-gradient(165deg, rgba(20, 26, 38, 0.82), rgba(10, 14, 22, 0.9));
  border: 1px solid var(--sim-line);
  border-radius: 1.15rem;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.simulador__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--sim-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.simulador__intro h2 {
  font-size: clamp(1.95rem, 3.6vw, 2.75rem);
  color: #fff;
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 12ch;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}
.simulador__intro h2 .glow {
  /* mesmo brilho metálico de “realidade.” */
  background-image: var(--sim-gold-shine);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 16px rgba(240, 223, 180, 0.5));
  animation: glowSweep 6s ease-in-out infinite;
}
.simulador__gold-text {
  background-image: var(--sim-gold-shine);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(240, 223, 180, 0.28));
  animation: glowSweep 7s ease-in-out infinite;
}
.simulador__intro > p {
  margin: 0 0 1.75rem;
  color: var(--sim-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 34rem;
}
.simulador__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.simulador__pillars article {
  display: grid;
  gap: 0.35rem;
}
.simulador__pillar-icon {
  display: inline-flex;
  color: var(--sim-gold);
  margin-bottom: 0.15rem;
}
.simulador__pillars strong {
  color: var(--sim-gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.simulador__pillars span {
  color: rgba(244, 241, 234, 0.78);
  font-size: 0.88rem;
  line-height: 1.4;
}
.simulador__card-kicker {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background-image: var(--sim-gold-shine);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(240, 223, 180, 0.3));
  animation: glowSweep 7s ease-in-out infinite;
}
.simulador__card-head h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: #fff;
  letter-spacing: -0.02em;
}
.simulador__card-head p {
  margin: 0 0 1.25rem;
  color: var(--sim-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.simulador__steps {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}
.simulador__step {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(244, 241, 234, 0.55);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.simulador__step.is-active {
  color: #0c1220;
  background: var(--sim-gold-fill);
  border-color: transparent;
}
.simulador__step.is-done {
  color: var(--sim-gold-bright);
  border-color: rgba(240, 223, 180, 0.55);
  background: rgba(199, 161, 106, 0.14);
}
.simulador__step-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.simulador__step-label {
  margin: 0 0 1.1rem;
  color: var(--sim-muted);
  font-size: 0.86rem;
}
.simulador__step-label strong { color: #fff; }
.simulador__fieldset {
  border: 0;
  margin: 0 0 1rem;
  padding: 0;
}
.simulador__fieldset legend {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}
.simulador__chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.simulador__chips--compact {
  gap: 0.5rem;
}
.simulador__chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.simulador__chip-face {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 5.2rem;
  padding: 0.85rem 0.5rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 241, 234, 0.88);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.simulador__chips--compact .simulador__chip-face {
  flex-direction: row;
  min-height: 3rem;
  padding: 0.7rem 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 0.9rem;
}
.simulador__chip input:checked + .simulador__chip-face {
  border-color: var(--sim-gold-bright);
  background: rgba(199, 161, 106, 0.16);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(240, 223, 180, 0.35), 0 0 18px rgba(199, 161, 106, 0.18);
}
.simulador__chip input:focus-visible + .simulador__chip-face {
  outline: 2px solid var(--sim-gold-bright);
  outline-offset: 2px;
}
.simulador__field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.95rem;
}
.simulador__field label {
  color: rgba(244, 241, 234, 0.88);
  font-size: 0.88rem;
  font-weight: 500;
}
.simulador__field input,
.simulador__field select {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.7rem 0.95rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 11, 18, 0.55);
  color: #fff;
  font: inherit;
  font-size: 0.98rem;
}
.simulador__field input::placeholder {
  color: rgba(244, 241, 234, 0.35);
}
.simulador__field input:focus,
.simulador__field select:focus {
  outline: none;
  border-color: var(--sim-gold-bright);
  box-shadow: 0 0 0 3px rgba(240, 223, 180, 0.18);
}
.simulador__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c7a16a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.4rem;
}
.simulador__field select option {
  background: #161b27;
  color: #fff;
}
.simulador__phone {
  display: flex;
  align-items: stretch;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 11, 18, 0.55);
  overflow: hidden;
}
.simulador__phone:focus-within {
  border-color: var(--sim-gold-bright);
  box-shadow: 0 0 0 3px rgba(240, 223, 180, 0.18);
}
.simulador__ddi {
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
  color: var(--sim-muted);
  font-size: 0.88rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}
.simulador__phone input {
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.simulador__phone input:focus {
  box-shadow: none;
}
.simulador__hint {
  margin: 0;
  color: rgba(244, 241, 234, 0.5);
  font-size: 0.78rem;
  line-height: 1.4;
}
.simulador__entrada {
  margin: 0.15rem 0 1.15rem;
  padding: 0.95rem 1rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(199, 161, 106, 0.22);
  background: rgba(8, 11, 18, 0.4);
}
.simulador__entrada[hidden] {
  display: none !important;
}
.simulador__entrada-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.simulador__entrada-head label {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  background-image: var(--sim-gold-shine);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 8px rgba(240, 223, 180, 0.28));
  animation: glowSweep 7s ease-in-out infinite;
}
.simulador__entrada-pct {
  min-width: 5.5rem;
  max-width: 55%;
  padding: 0.28rem 0.6rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(240, 223, 180, 0.4);
  background: rgba(199, 161, 106, 0.14);
  color: var(--sim-gold-bright);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 0 12px rgba(240, 223, 180, 0.35);
}
.simulador__entrada-track {
  --entrada-thumb: 1.15rem;
  --entrada-steps: 10;
  position: relative;
}
.simulador__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 0.35rem;
  margin: 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #e8d5a8 0%,
    var(--sim-gold) calc(var(--entrada-thumb) / 2 + (100% - var(--entrada-thumb)) * var(--entrada-ratio, 0)),
    rgba(255, 255, 255, 0.14) calc(var(--entrada-thumb) / 2 + (100% - var(--entrada-thumb)) * var(--entrada-ratio, 0)),
    rgba(255, 255, 255, 0.14) 100%
  );
  outline: none;
  cursor: pointer;
}
.simulador__slider::-webkit-slider-runnable-track {
  height: 0.35rem;
  border-radius: 999px;
  background: transparent;
}
.simulador__slider::-moz-range-track {
  height: 0.35rem;
  border-radius: 999px;
  background: transparent;
  border: 0;
}
.simulador__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: var(--entrada-thumb);
  height: var(--entrada-thumb);
  margin-top: calc((0.35rem - var(--entrada-thumb)) / 2);
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sim-gold-bright);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.simulador__slider::-moz-range-thumb {
  width: var(--entrada-thumb);
  height: var(--entrada-thumb);
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sim-gold-bright);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}
.simulador__slider:focus-visible {
  box-shadow: 0 0 0 3px rgba(199, 161, 106, 0.22);
}
.simulador__entrada-scale {
  position: relative;
  height: 1.35rem;
  margin: 0.55rem calc(var(--entrada-thumb) / 2) 0;
  color: rgba(244, 241, 234, 0.4);
  font-size: 0.62rem;
  letter-spacing: 0;
}
.simulador__entrada-scale span {
  position: absolute;
  top: 0;
  left: calc(var(--i) / var(--entrada-steps) * 100%);
  transform: translateX(-50%);
  white-space: nowrap;
  transition: color 0.15s ease, font-weight 0.15s ease, transform 0.15s ease;
}
.simulador__entrada-scale span.is-active {
  color: var(--sim-gold-bright);
  font-weight: 700;
  font-size: 0.72rem;
  transform: translateX(-50%) translateY(-1px);
  text-shadow: 0 0 10px rgba(240, 223, 180, 0.45);
}
.simulador__error {
  margin: 0;
  color: #f0a8a8;
  font-size: 0.8rem;
  font-weight: 600;
}
.simulador__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  margin-top: 0.35rem;
  padding: 0.75rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: var(--sim-gold-fill);
  color: #0c1220;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
  box-shadow: 0 8px 24px rgba(199, 161, 106, 0.22);
}
.simulador__btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.simulador__btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}
.simulador__btn--ghost {
  margin-top: 0.55rem;
  background: transparent;
  color: var(--sim-muted);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 600;
}
.simulador__btn--ghost:hover {
  color: #fff;
  border-color: rgba(199, 161, 106, 0.45);
  filter: none;
  transform: none;
}
.simulador__secure {
  display: block;
  margin: 0.9rem 0 0;
  color: rgba(244, 241, 234, 0.48);
  font-size: 0.75rem;
  line-height: 1.45;
  text-align: center;
}
.simulador__success {
  text-align: center;
  padding: 1rem 0.25rem 0.5rem;
}
.simulador__success-title {
  margin: 0 0 0.85rem;
  font-size: 1.25rem;
  font-weight: 700;
  background-image: var(--sim-gold-shine);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 14px rgba(240, 223, 180, 0.4));
  animation: glowSweep 6s ease-in-out infinite;
}
.simulador__success p:last-child {
  margin: 0;
  color: rgba(244, 241, 234, 0.88);
  line-height: 1.55;
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  .simulador__layout {
    justify-items: stretch;
    width: min(100% - 1.5rem, 1160px);
  }
  .simulador__card {
    width: 100%;
    max-width: 36rem;
    margin-inline: auto;
    padding: clamp(1.15rem, 4vw, 1.55rem);
  }
  .simulador__pillars {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}
@media (max-width: 900px) {
  section.simulador {
    padding-block: clamp(2.25rem, 7vw, 3.5rem);
    padding-inline: max(0.75rem, env(safe-area-inset-left, 0px)) max(0.75rem, env(safe-area-inset-right, 0px));
    background-position: 18% center;
    background-image:
      linear-gradient(
        180deg,
        rgba(5, 8, 16, 0.55) 0%,
        rgba(5, 8, 16, 0.35) 28%,
        rgba(5, 8, 16, 0.72) 100%
      ),
      linear-gradient(
        90deg,
        rgba(5, 8, 16, 0.25) 0%,
        rgba(5, 8, 16, 0.55) 100%
      ),
      url("../assets/img/simulador-bg.jpg?v=20260728b");
  }
}
@media (max-width: 560px) {
  .simulador__chip-face {
    min-height: 4.6rem;
    font-size: 0.84rem;
    padding: 0.7rem 0.4rem;
  }
  .simulador__chips--compact .simulador__chip-face {
    min-height: 2.85rem;
    font-size: 0.84rem;
    padding: 0.6rem 0.65rem;
  }
  .simulador__field input,
  .simulador__field select {
    min-height: 48px;
    font-size: 16px; /* evita zoom automático no iOS */
  }
  .simulador__actions .btn,
  .simulador__card .btn {
    min-height: 48px;
    width: 100%;
  }
  .simulador__entrada {
    --entrada-thumb: 1.75rem;
  }
  .simulador__entrada-scale {
    font-size: 0.72rem;
    height: 1.2rem;
  }
  .simulador__entrada-scale span:not([data-pct="0"]):not([data-pct="25"]):not([data-pct="50"]):not(.is-active) {
    opacity: 0;
    pointer-events: none;
  }
  .hero--compact {
    min-height: min(58svh, 420px);
  }
  .footer__partners {
    gap: 0.45rem;
  }
  .footer__partners li {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }
  .footer__wa {
    width: 100%;
    min-height: 48px;
  }
}

/* ---------- Highlight rail ---------- */
.highlight-rail {
  position: relative; z-index: 2;
  background:
    linear-gradient(
      128deg,
      rgba(80, 101, 128, 0.45) 0%,
      rgba(66, 78, 94, 0.2) 38%,
      rgba(13, 18, 24, 0.35) 100%
    ),
    linear-gradient(180deg, #2a3a4c 0%, #1a2532 55%, var(--navy) 100%);
  border-block: 1px solid var(--line-gold);
  box-shadow: 0 18px 40px rgba(20, 28, 38, 0.28);
  padding: 0;
}
.highlight-rail__inner {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.highlight-rail__item {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: 1.55rem 1.4rem 1.65rem;
  border-left: 3px solid var(--gold);
  color: var(--champagne);
  line-height: 1.25;
  transition: background .25s, color .25s, box-shadow .25s;
  scroll-margin-top: 6rem;
}
.highlight-rail__item + .highlight-rail__item {
  box-shadow: inset 1px 0 0 rgba(199,161,106,.18);
}
.highlight-rail__n {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold-bright);
  margin-top: .2rem;
  text-shadow: 0 0 12px rgba(240, 223, 180, 0.28);
}
.highlight-rail__text { display: grid; gap: .35rem; min-width: 0; }
.highlight-rail__label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  font-weight: 600;
}
.highlight-rail__desc {
  display: block;
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255,255,255,.58);
}
.highlight-rail__item:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--gold);
}
.highlight-rail__item:hover .highlight-rail__desc { color: rgba(255,255,255,.75); }

/* Perspectivas ? autoridade por conte?do */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.edu-card {
  padding: 1.6rem 1.45rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(3, 6, 36, 0.08);
  border-radius: var(--radius-ui);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  min-height: 100%;
}
.edu-card__tag {
  margin: 0;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.edu-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.edu-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
  flex: 1;
}
.edu-card__link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
  padding-bottom: .15rem;
}
.edu-card__link:hover { color: var(--gold-deep); }
@media (max-width: 900px) {
  .edu-grid { grid-template-columns: 1fr; }
}

/* ---------- Section base + light rhythm utilities ---------- */
.section {
  width: 100%;
  padding-block: 6.5rem;
  padding-inline: max(1rem, calc((100% - 1160px) / 2));
}
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--light { background: var(--paper); }
.section--warm {
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(90, 111, 136, 0.07), transparent 55%),
    linear-gradient(180deg, #e8ebf0, var(--paper));
}
.section--navy {
  position: relative; overflow: hidden; color: var(--champagne);
  background:
    linear-gradient(
      128deg,
      rgba(90, 111, 136, 0.32) 0%,
      transparent 40%,
      rgba(13, 18, 24, 0.35) 100%
    ),
    linear-gradient(155deg, #2f4156 0%, var(--navy-2) 45%, var(--navy) 78%, #0d1218 100%);
}
.section--navy::before {
  content: "";
  position: absolute;
  inset: -15%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, transparent 30%, rgba(212, 219, 228, 0.07) 48%, transparent 66%);
  animation: carbonHeroSheen 22s ease-in-out infinite alternate;
}
.section--navy > * { position: relative; z-index: 1; }
.section--navy .orb { opacity: .7; }

.section__head { max-width: 44rem; margin-bottom: 3rem; }
.eyebrow {
  color: var(--gold-deep); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  margin: 0 0 1rem; font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: .65rem;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 2.8rem; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
}
.section--navy .eyebrow { color: var(--gold-bright); }
.section__head h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  margin-bottom: .9rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.22;
}
.section--navy .section__head h2 { color: #fff; }
.lede { color: var(--muted); margin: 0; font-size: 1.08rem; line-height: 1.65; }
.section--navy .lede { color: var(--muted-light); }

/* ---------- Media utilities: mosaic / split / frame ---------- */
.img-cover { position: relative; overflow: hidden; }
.img-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame {
  position: relative; overflow: hidden;
  box-shadow: 0 24px 60px rgba(23,24,44,.16);
}
.ken-burns img { transition: transform 1.4s cubic-bezier(.22,1,.36,1); }
.ken-burns:hover img { transform: scale(1.06); }

.media-mosaic {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.media-mosaic__item {
  position: relative; aspect-ratio: 4 / 5; border-radius: 8px;
}
.media-mosaic__item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.35rem 1.1rem 1rem;
  background: linear-gradient(to top, rgba(20,28,38,.92) 0%, rgba(36,51,68,.55) 55%, transparent);
  color: #fff; font-size: .92rem; font-weight: 700; letter-spacing: .03em;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}

.split-media {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.8rem; align-items: center;
}
.split-media--flip .split-media__media { order: 2; }
.split-media__media { border-radius: 6px; aspect-ratio: 4 / 5; }
.split-media__copy .eyebrow { margin-bottom: .8rem; }
.split-media__copy h2 { font-size: clamp(1.65rem, 2.8vw, 2.2rem); color: var(--navy); margin-bottom: 1rem; }
.split-media__copy p { color: var(--muted); margin-bottom: 1rem; max-width: 34rem; }

/* ---------- Story office (sofá / história) ---------- */
.story-office {
  position: relative;
  width: 100%;
  padding: 0;
  background: #050505;
  overflow: hidden;
}
.story-office__stage {
  position: relative;
  min-height: clamp(28rem, 62vw, 38rem);
  display: grid;
  align-items: center;
}
.story-office__stage > picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.story-office__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.story-office__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(3, 6, 20, 0.92) 0%,
      rgba(3, 6, 20, 0.78) 28%,
      rgba(3, 6, 20, 0.35) 52%,
      rgba(3, 6, 20, 0.08) 72%,
      transparent 88%),
    linear-gradient(180deg, rgba(3, 6, 20, 0.18) 0%, transparent 22%, transparent 78%, rgba(3, 6, 20, 0.35) 100%);
}
.story-office__copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  margin-inline: max(1.25rem, calc((100% - 1160px) / 2));
  padding: 2.25rem 2rem;
  border-radius: 1.15rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.story-office__copy::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(240, 223, 180, 0.95) 0%,
    rgba(199, 161, 106, 0.7) 10%,
    rgba(199, 161, 106, 0.18) 22%,
    transparent 38%,
    transparent 62%,
    rgba(199, 161, 106, 0.18) 78%,
    rgba(199, 161, 106, 0.7) 90%,
    rgba(240, 223, 180, 0.92) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}
.story-office__copy::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(240, 223, 180, 0.35) 0%,
    transparent 28%,
    transparent 72%,
    rgba(199, 161, 106, 0.28) 100%
  );
  filter: blur(10px);
  opacity: 0.85;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 6px;
}
.story-office .eyebrow--on-dark {
  color: var(--gold-bright);
  margin-bottom: .85rem;
}
.story-office .eyebrow--on-dark::after {
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), transparent);
  width: 3.4rem;
  height: 3px;
}
.story-office__copy h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  color: #f7f3ea;
  margin: 0 0 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.18;
  text-wrap: balance;
}
.story-office__copy p {
  color: rgba(245, 242, 236, 0.86);
  margin: 0 0 1rem;
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.65;
  max-width: 32rem;
}
.story-office__copy p:last-child { margin-bottom: 0; }
.story-office .glow {
  background-image: linear-gradient(
    105deg,
    #c7a16a 0%,
    #f0dfb4 28%,
    #fff8e8 48%,
    #e8d5a8 68%,
    #f0dfb4 88%,
    #c7a16a 100%
  );
  filter: drop-shadow(0 0 12px rgba(240, 223, 180, 0.28));
}
.office-photo {
  width: 100%;
  padding: 0;
  background: #050505;
  overflow: hidden;
}
.office-photo__img {
  display: block;
  width: 100%;
  height: clamp(22rem, 52vw, 36rem);
  object-fit: cover;
  object-position: right center;
}
@media (max-width: 900px) {
  .story-office {
    background: #070b16;
    padding-bottom: 1.5rem;
  }
  .story-office__stage {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .story-office__stage > picture {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    overflow: hidden;
  }
  .story-office__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 28%;
  }
  .story-office__veil {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    background: linear-gradient(
      180deg,
      transparent 0%,
      transparent 72%,
      rgba(7, 11, 22, 0.35) 88%,
      #070b16 100%
    );
  }
  .story-office__copy {
    position: relative;
    z-index: 2;
    margin: 0;
    max-width: none;
    padding-block: 1.35rem 0.35rem;
    padding-inline: max(1.2rem, env(safe-area-inset-left, 0px)) max(1.2rem, env(safe-area-inset-right, 0px));
    border-radius: 0;
    background: #070b16;
    box-shadow: none;
    border-left: 3px solid rgba(199, 161, 106, 0.85);
  }
  .story-office__copy::before,
  .story-office__copy::after {
    display: none;
  }
  .story-office__copy h2 {
    font-size: clamp(1.35rem, 5.4vw, 1.7rem);
    margin-bottom: 0.8rem;
    line-height: 1.22;
  }
  .story-office__copy p {
    font-size: 0.94rem;
    line-height: 1.62;
    margin-bottom: 0.75rem;
    color: rgba(245, 242, 236, 0.9);
  }
  .office-photo__img {
    height: clamp(16rem, 62vw, 24rem);
    object-position: 78% center;
  }
}
@media (max-width: 560px) {
  .story-office {
    padding-bottom: 1.25rem;
  }
  .story-office__stage > picture,
  .story-office__veil {
    aspect-ratio: 1 / 1;
  }
  .story-office__photo {
    object-position: center 30%;
  }
  .story-office__copy {
    padding-block: 1.2rem 0.2rem;
    padding-inline: max(1.05rem, env(safe-area-inset-left, 0px)) max(1.05rem, env(safe-area-inset-right, 0px));
  }
  .story-office__copy h2 {
    font-size: clamp(1.28rem, 6vw, 1.5rem);
  }
  .story-office__copy p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* ---------- Gallery / momentos ---------- */
.momentos .section__head { margin-bottom: 2.75rem; }

/* ---------- Ess?ncia / proposta (light split) ---------- */
.proposta__layout {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 3rem; align-items: center; margin-bottom: 3rem;
}
.proposta__media { border-radius: 6px; aspect-ratio: 4 / 5; }
.pillars {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem;
}
.glass-card {
  position: relative;
  padding: 1.6rem 1.35rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.9), rgba(255,255,255,.65));
  box-shadow: 0 16px 40px rgba(23,24,44,.06);
  transition: transform .35s, border-color .35s, box-shadow .35s;
  overflow: hidden;
}
.glass-card::after {
  content: ""; position: absolute; inset: -40% auto auto -20%; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(199,161,106,.18), transparent 70%);
  opacity: 0; transition: opacity .35s;
}
.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199,161,106,.55);
  box-shadow: 0 24px 50px rgba(23,24,44,.12);
}
.glass-card:hover::after { opacity: 1; }
.glass-card__icon {
  color: var(--gold-deep); font-size: 1.1rem; margin-bottom: .9rem;
}
.glass-card h3 { font-size: 1.5rem; margin-bottom: .55rem; color: var(--navy); }
.glass-card p { color: var(--muted); margin: 0; }

/* ---------- Solu??es ---------- */
.solutions {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.25rem;
}
.sol-card {
  position: relative; overflow: hidden;
  padding: 1.9rem 1.6rem 1.65rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23,24,44,.06);
  transition: transform .35s, border-color .35s, box-shadow .35s;
  display: flex; flex-direction: column;
  scroll-margin-top: 7rem;
}
.sol-card__strip {
  margin: -1.9rem -1.6rem 1.15rem;
  height: 7.5rem;
  overflow: hidden;
  position: relative;
}
.sol-card__strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.sol-card:hover .sol-card__strip img { transform: scale(1.07); }
.sol-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-bright), var(--gold));
}
.sol-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199,161,106,.65);
  box-shadow: 0 28px 56px rgba(23,24,44,.14), 0 0 0 1px rgba(199,161,106,.15);
}
.sol-card__glow {
  position: absolute; width: 180px; height: 180px; right: -40px; top: -50px;
  background: radial-gradient(circle, rgba(31,155,138,.14), transparent 70%);
  transition: transform .5s;
}
.sol-card:hover .sol-card__glow { transform: scale(1.35) translate(-10px, 10px); }
.sol-card__n {
  display: inline-grid; place-items: center;
  width: 2.5rem; height: 2.5rem;
  margin-bottom: .85rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 6px 18px rgba(199,161,106,.35);
}
.sol-card__tag {
  display: inline-block; margin: 0 0 .7rem;
  color: var(--teal); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}
.sol-card h3 { font-size: 1.95rem; margin-bottom: .65rem; color: var(--navy); letter-spacing: -0.01em; }
.sol-card > p { color: var(--muted); margin: 0 0 1rem; flex-grow: 1; }
.sol-card ul { display: grid; gap: .35rem; margin-bottom: 1.35rem; }
.sol-card li {
  color: var(--muted); font-size: .9rem; padding-left: .9rem; position: relative;
}
.sol-card li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .35rem; height: .35rem; border-radius: 50%; background: var(--gold);
}
.sol-card .btn { margin-top: auto; }
.text-link {
  color: var(--gold-deep); font-weight: 600; font-size: .92rem;
  transition: letter-spacing .25s, color .25s;
}
.text-link:hover { letter-spacing: .03em; color: var(--navy); }
.text-link--onphoto { color: var(--gold-bright); }
.text-link--onphoto:hover { color: #fff; }

.sol-card--feature {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 0; padding: 0;
  align-items: stretch;
  border-width: 2px;
  border-color: rgba(199,161,106,.35);
  box-shadow: 0 24px 60px rgba(23,24,44,.1);
}
.sol-card--feature::before { height: 6px; }
.sol-card--feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(23,24,44,.16), 0 0 0 2px rgba(199,161,106,.2);
}
.sol-card--feature .sol-card__media { position: relative; min-height: 18rem; }
.sol-card--feature .sol-card__body { padding: 2.2rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.sol-card--feature .sol-card__body h3 { font-size: 2.15rem; }
.sol-card--feature .sol-card__glow { display: none; }

/* ---------- Life strip (photo cards inside parceiro) ---------- */
.life-strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
@media (prefers-reduced-motion: reduce) {
  .hero__bg-wash::after,
  .section--navy::before {
    animation: none !important;
    transform: none;
  }
  .hero__video {
    display: none;
  }
  .hero__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #030624 url("../assets/img/hero-poster.jpg") center / cover no-repeat;
  }
}

.life-card { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 16 / 10; box-shadow: 0 16px 40px rgba(20,28,38,.18); }
.life-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.life-card:hover img { transform: scale(1.06); }
.life-card figcaption {
  position: absolute; inset: auto 0 0 0; padding: .8rem .75rem .65rem;
  background: linear-gradient(to top, rgba(20,28,38,.78), transparent);
  color: #fff; font-size: .8rem; font-weight: 700;
}
@media (max-width: 780px) {
  .life-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* ---------- Jornada (light) ---------- */
.jornada { background: var(--white); }
.jornada__layout {
  width: 100%;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.5rem; align-items: start;
}
.timeline { display: grid; gap: 0; }
.timeline li {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  padding: 1.15rem 0; border-bottom: 1px solid var(--line);
}
.timeline span {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-deep);
}
.timeline strong { display: block; font-family: var(--font-display); font-size: 1.4rem; margin-bottom: .2rem; color: var(--navy); }
.timeline p { margin: 0; color: var(--muted); }

/* Jornada — 4 etapas + foto (sugestão cliente 8) */
.jornada--etapas {
  padding-block: 3.25rem;
  background:
    radial-gradient(ellipse 60% 40% at 0% 0%, rgba(199, 161, 106, 0.08), transparent 55%),
    var(--white);
}
.socio-profile.jornada--etapas {
  background: #f3f4f6;
}

/* Carrossel de sócios (Cris / Marcus) */
.socio-carousel {
  padding-block: clamp(2.5rem, 5vw, 3.5rem) clamp(2rem, 4vw, 2.75rem);
  background:
    radial-gradient(ellipse 50% 55% at 50% 40%, rgba(199, 161, 106, 0.07), transparent 62%),
    #f3f4f6;
}
.socio-carousel__viewport {
  position: relative;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  overflow: hidden;
}
.socio-carousel__track {
  position: relative;
  min-height: clamp(22rem, 48vw, 32rem);
}
.socio-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}
.socio-carousel__slide.is-leaving {
  position: absolute;
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  z-index: 1;
  animation: socioSlideOut 0.42s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.socio-carousel__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
.socio-carousel__slide.is-active .socio-profile__copy {
  animation: socioCopyRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.socio-carousel__slide.is-active .eyebrow {
  animation: socioFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}
.socio-carousel__slide.is-active .socio-profile__copy h2 {
  animation: socioNameIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}
.socio-carousel__slide.is-active .socio-profile__bio {
  animation: socioFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}
.socio-carousel__slide.is-active .socio-profile__photo {
  animation: socioPortraitIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.socio-carousel__slide--flip.is-active .socio-profile__copy {
  animation-name: socioCopyRiseFlip;
}
.socio-carousel__slide--flip.is-active .socio-profile__photo {
  animation-name: socioPortraitInFlip;
}
.socio-carousel__slide.is-active .socio-profile__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(240, 223, 180, 0.35),
    0 0 0 0 rgba(199, 161, 106, 0);
  animation: socioGoldBloom 1s ease-out both;
}
.socio-carousel__slide .jornada-etapas {
  width: 100%;
  margin: 0;
}
.socio-carousel__slide .socio-profile__photo {
  position: relative;
  overflow: hidden;
}
.socio-carousel__slide .socio-profile__photo img {
  will-change: transform, filter;
}
.socio-carousel__slide.is-active .socio-profile__photo img {
  animation: socioImgReveal 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes socioSlideOut {
  from {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: scale(0.985) translateY(8px);
    filter: blur(2px);
  }
}
@keyframes socioCopyRise {
  from {
    opacity: 0;
    transform: translateX(-1.4rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes socioCopyRiseFlip {
  from {
    opacity: 0;
    transform: translateX(1.4rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes socioFadeUp {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes socioNameIn {
  from {
    opacity: 0;
    transform: translateY(1.15rem);
    letter-spacing: 0.04em;
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: -0.02em;
    filter: blur(0);
  }
}
@keyframes socioPortraitIn {
  from {
    opacity: 0;
    transform: translateX(1.6rem) scale(1.04);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes socioPortraitInFlip {
  from {
    opacity: 0;
    transform: translateX(-1.6rem) scale(1.04);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes socioImgReveal {
  from {
    transform: scale(1.1);
    filter: brightness(0.82) saturate(0.9);
  }
  to {
    transform: scale(1);
    filter: brightness(1) saturate(1);
  }
}
@keyframes socioGoldBloom {
  0% {
    box-shadow:
      inset 0 0 0 1px rgba(240, 223, 180, 0.15),
      0 0 0 0 rgba(199, 161, 106, 0);
  }
  35% {
    box-shadow:
      inset 0 0 0 1.5px rgba(240, 223, 180, 0.65),
      0 0 28px 2px rgba(199, 161, 106, 0.28);
  }
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(240, 223, 180, 0.28),
      0 12px 28px rgba(3, 6, 36, 0.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  .socio-carousel__slide,
  .socio-carousel__slide.is-leaving,
  .socio-carousel__slide.is-active .socio-profile__copy,
  .socio-carousel__slide.is-active .eyebrow,
  .socio-carousel__slide.is-active .socio-profile__copy h2,
  .socio-carousel__slide.is-active .socio-profile__bio,
  .socio-carousel__slide.is-active .socio-profile__photo,
  .socio-carousel__slide.is-active .socio-profile__photo img,
  .socio-carousel__slide.is-active .socio-profile__photo::after {
    animation: none !important;
    transition: none !important;
    filter: none !important;
    transform: none !important;
    opacity: 1;
  }
}
.socio-carousel__slide--flip .socio-profile__copy {
  padding-right: 0;
  padding-left: .5rem;
  grid-column: 2;
  grid-row: 1;
}
.socio-carousel__slide--flip .socio-profile__photo {
  grid-column: 1;
  grid-row: 1;
}
.socio-carousel__slide--flip .jornada-etapas {
  grid-template-columns: 0.85fr 1.15fr;
}
.socio-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: clamp(1.35rem, 3vw, 1.85rem);
}
.socio-carousel__dot {
  position: relative;
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c5c9d1;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.socio-carousel__dot::before {
  content: "";
  position: absolute;
  inset: -0.85rem;
}
.socio-carousel__dot:hover {
  background: #9aa1ad;
  transform: scale(1.12);
}
.socio-carousel__dot.is-active {
  background: var(--gold, #c7a16a);
  box-shadow: 0 0 0 3px rgba(199, 161, 106, 0.28);
  transform: scale(1.15);
}
.socio-carousel__dot:focus-visible {
  outline: 2px solid var(--gold, #c7a16a);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .socio-carousel__slide {
    transition: none;
    transform: none;
  }
}
.jornada-etapas {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
.jornada-etapas__copy .section__head { margin-bottom: 1.5rem; }
.etapas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.etapa-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: start;
  padding: 1.15rem 1.1rem;
  border: 1px solid rgba(199, 161, 106, 0.28);
  border-radius: var(--radius-ui);
  background: linear-gradient(160deg, #fff 0%, #f7f3ea 100%);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.etapa-card:hover {
  border-color: rgba(199, 161, 106, 0.65);
  box-shadow: 0 14px 32px rgba(3, 6, 36, 0.08);
  transform: translateY(-3px);
}
.etapa-card__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.etapa-card__mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.etapa-card h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.etapa-card p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--muted);
}
.jornada-etapas__photo {
  margin: 0;
  border-radius: var(--radius-ui);
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(3, 6, 36, 0.18);
  background: #030624;
  aspect-ratio: 4 / 5;
}
.jornada-etapas__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.socio-profile__copy {
  max-width: 34rem;
  padding-right: .5rem;
}
.socio-profile__copy .eyebrow { margin-bottom: .85rem; }
.socio-profile__copy h2 {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  color: var(--navy);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.socio-profile__bio {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.18rem, 2vw, 1.35rem);
  line-height: 1.75;
  max-width: 32rem;
}
.socio-profile__photo {
  background: #000;
}
.socio-profile__photo img {
  object-position: center center;
}
.socio-profile--flip .socio-profile__copy {
  padding-right: 0;
  padding-left: .5rem;
  grid-column: 2;
  grid-row: 1;
}
.socio-profile--flip .socio-profile__photo {
  grid-column: 1;
  grid-row: 1;
}
.socio-profile--flip .jornada-etapas {
  grid-template-columns: 0.85fr 1.15fr;
}

/* Soluções — cards com foto (sugestão cliente 9) */
.solucoes-grid {
  padding-block: 3.25rem 2.75rem;
}
.sol-media-grid {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}
.sol-media {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-ui);
  overflow: hidden;
  min-height: 22rem;
  box-shadow: 0 16px 40px rgba(3, 6, 36, 0.12);
  background: #030624;
  transition: transform .28s ease, box-shadow .28s ease;
}
.sol-media:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(3, 6, 36, 0.2);
}
.sol-media__photo {
  margin: 0;
  position: absolute;
  inset: 0;
}
.sol-media__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sol-media__body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 1.35rem 1.15rem 1.25rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(3, 6, 36, 0.55) 28%,
    rgba(90, 70, 40, 0.88) 100%
  );
  display: grid;
  gap: .9rem;
  justify-items: start;
}
.sol-media__body h3 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.sol-media__body .btn--soft {
  background: #fff;
  border-color: transparent;
  color: #030624;
}

/* Faixa representantes (sugestão cliente 7) */
.authorized-strip {
  width: min(1160px, calc(100% - 2rem));
  margin: 1.25rem auto 0;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-ui);
  border: 1px solid rgba(199, 161, 106, 0.35);
  background: #030624;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
}
.authorized-strip__label {
  margin: 0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  white-space: nowrap;
}
.authorized-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.authorized-strip__list li {
  display: grid;
  gap: .1rem;
  min-width: 7rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(199, 161, 106, 0.35);
}
.authorized-strip__list strong {
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
}
.authorized-strip__list span {
  color: rgba(240, 223, 180, 0.75);
  font-size: .78rem;
}

/* ---------- Parceiro (navy accent band) ---------- */
.partner-banner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; align-items: end;
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--line-gold);
  background:
    linear-gradient(120deg, rgba(199,161,106,.14), transparent 40%),
    linear-gradient(300deg, rgba(31,155,138,.12), transparent 45%),
    rgba(255,255,255,.04);
  position: relative; overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(3,6,36,.08);
}
.partner-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.55) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: sheen 7s ease-in-out infinite;
}
@keyframes sheen {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}
.partner-banner--media {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
  overflow: hidden;
}
.partner-banner__photo {
  margin: 0;
  min-height: 260px;
  overflow: hidden;
}
.partner-banner__photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.22,1,.36,1);
}
.partner-banner--media:hover .partner-banner__photo img { transform: scale(1.05); }
.partner-banner__copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  padding: 2rem 1.7rem;
}
@media (max-width: 960px) {
  .partner-banner--media { grid-template-columns: 1fr; }
}
.partner-banner h2 { font-size: clamp(1.6rem, 2.6vw, 2.15rem); margin-bottom: .85rem; max-width: 20ch; color: var(--navy); }
.partner-banner > div > p:last-of-type { color: var(--muted); max-width: 38rem; margin: 0; }
.partner-banner__meta {
  border-left: 2px solid var(--gold); padding-left: 1rem; position: relative; z-index: 1;
}
.partner-banner__meta p { margin: 0; font-weight: 600; color: var(--navy); }
.partner-banner__meta span { color: var(--muted); font-size: .88rem; }

/* ---------- Contato (light) ---------- */
.contato__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 2rem 3.25rem;
  align-items: stretch;
}
.contato__lead {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.35rem;
  min-height: 100%;
  padding-right: .25rem;
}
.contato__intro { max-width: 36rem; margin-bottom: 0; }
.contato__intro h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: .85rem; }
.contato__intro .lede { margin-bottom: 0; }
.contact-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-bottom: 1.6rem;
}
.contact-item {
  border: 1px solid var(--line); padding: 1.2rem 1.1rem; min-height: 8.2rem;
  background: var(--white); box-shadow: 0 10px 28px rgba(23,24,44,.05);
  transition: border-color .25s, box-shadow .25s;
}
.contact-item:hover { border-color: rgba(199,161,106,.5); box-shadow: 0 14px 34px rgba(23,24,44,.09); }
.contact-item--wide { grid-column: 1 / -1; min-height: auto; }
.contact-item__label { margin: 0 0 .5rem; color: var(--gold-deep); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.contact-item__value { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--navy); }
.contact-item__value:hover { color: var(--gold-deep); }
.contact-item__value--placeholder, a.contact-item__value--placeholder {
  color: rgba(23,24,44,.42); border-bottom: 1px dashed rgba(199,161,106,.45); font-style: italic; font-size: 1.05rem;
}
.contact-item__hint { margin: .5rem 0 0; color: var(--muted); font-size: .8rem; }

.social { border-top: 1px solid var(--line); padding-top: 1.4rem; margin-bottom: 2rem; }
.social__label { margin: 0 0 .8rem; color: var(--gold-deep); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.social__list { display: flex; flex-wrap: wrap; gap: .6rem; }
.social__link {
  min-width: 7.4rem; padding: .7rem 1rem; border: 1px solid var(--line);
  display: inline-flex; justify-content: center; font-size: .86rem; font-weight: 500;
  color: var(--navy);
  transition: .25s;
}
.social__link:hover { border-color: var(--gold); color: var(--gold-deep); box-shadow: 0 0 20px rgba(199,161,106,.15); }
.social__link--placeholder { color: rgba(23,24,44,.4); border-style: dashed; }
.contato__cta { text-align: center; }
.contato__cta .btn--ghost { border-color: rgba(23,24,44,.2); color: var(--navy); background: rgba(23,24,44,.03); }
.contato__cta .btn--ghost:hover { border-color: var(--gold); box-shadow: 0 0 24px rgba(199,161,106,.16); }

/* ---------- Footer (navy band) ---------- */
.footer {
  padding: 2.5rem 0 5.8rem;
  background:
    linear-gradient(128deg, rgba(90, 111, 136, 0.22) 0%, transparent 45%),
    linear-gradient(180deg, #0a1230, #030624);
  color: rgba(255, 255, 255, 0.88);
}
.footer__inner--grid {
  width: min(1160px, calc(100% - 2rem)); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1.6rem 2rem; align-items: start;
}
.footer img,
.footer__logo {
  height: 42px;
  width: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 18px rgba(199, 161, 106, 0.28));
}
.footer__brand { display: grid; gap: .7rem; }
.footer__tag { margin: 0; color: var(--muted-light); font-size: .9rem; max-width: 18rem; }
.footer__col { display: grid; gap: .4rem; }
.footer__heading { margin: 0 0 .3rem; color: var(--gold-bright); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.footer__col a, .footer__col span { color: var(--muted-light); font-size: .88rem; }
.footer__col a:hover { color: var(--gold-bright); }
.footer__placeholder { color: rgba(247,242,234,.4) !important; font-style: italic; }
.footer__meta {
  grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: .8rem 1.2rem;
  color: var(--muted-light); font-size: .85rem; padding-top: 1rem; border-top: 1px solid var(--line-gold);
}
.footer__meta a:hover { color: var(--gold-bright); }

.fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: #1fad5b; color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.fab__ring {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(31,173,91,.55);
  animation: ring 2s ease-out infinite;
}

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

.wa-name {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.wa-name[hidden] { display: none !important; }
body.wa-name-open { overflow: hidden; }

.wa-name__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 6, 36, 0.72);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.wa-name__dialog {
  position: relative;
  z-index: 1;
  width: min(400px, 100%);
  padding: 1.45rem 1.4rem 1.5rem;
  border-radius: var(--radius-ui);
  background: linear-gradient(180deg, #fffcf7, #f5f2ec);
  border: 1px solid var(--line-gold);
  box-shadow: 0 28px 60px rgba(3, 6, 36, 0.35);
}

.wa-name__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.wa-name__dialog h3 {
  margin: 0 0 1.1rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
  max-width: 22ch;
}

.wa-name__field {
  display: block;
  margin-bottom: 1.15rem;
}

.wa-name__field input {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-btn);
  border: 1.5px solid rgba(199, 161, 106, 0.45);
  background: #fff;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
}

.wa-name__field input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.wa-name__field input[aria-invalid="true"] {
  border-color: #c0392b;
}

.wa-name__error {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #c0392b;
}
.wa-name__error[hidden] { display: none !important; }

.wa-name__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.wa-name__cancel,
.wa-name__go {
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-btn);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.wa-name__cancel {
  border: 1.5px solid rgba(26, 28, 36, 0.18);
  background: transparent;
  color: var(--ink);
}

.wa-name__go {
  border: 0;
  background: #25d366;
  color: #fff;
}

.wa-name__go:hover {
  background: #128c7e;
}
@keyframes ring {
  from { transform: scale(.85); opacity: 1; }
  to { transform: scale(1.35); opacity: 0; }
}

.cookie {
  position: fixed; left: 1rem; right: auto; bottom: 1rem; z-index: 90; max-width: 480px;
  background: #030624; border: 1px solid var(--line-gold); padding: 1rem 1.1rem;
  display: flex; gap: .9rem; align-items: center; font-size: .92rem; color: #fff;
  border-radius: var(--radius-btn);
}
.cookie[hidden] { display: none !important; }
.cookie button { flex-shrink: 0; border: 0; cursor: pointer; background: var(--gold); color: #030624; font-weight: 700; padding: .55rem .85rem; border-radius: var(--radius-btn); }

.reveal {
  opacity: 0; transform: translateY(28px) scale(.98);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .highlight-rail__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .highlight-rail__item:nth-child(odd) { border-left-color: var(--gold); }
  .highlight-rail__item:nth-child(even) { box-shadow: inset 1px 0 0 rgba(199,161,106,.18); }
  .pillars, .solutions, .jornada__layout, .contact-grid, .footer__inner--grid,
  .split-media, .proposta__layout, .media-mosaic,
  .jornada-etapas,
  .socio-profile--flip .jornada-etapas,
  .socio-carousel__slide--flip .jornada-etapas { grid-template-columns: 1fr; }
  .sol-media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jornada-etapas__photo {
    max-width: 28rem;
    margin-inline: auto;
    aspect-ratio: 5 / 4;
  }
  /* Sócios: foto full-width no tablet/celular (evita coluna estreita no flip do Marcus) */
  .socio-profile .jornada-etapas__photo,
  .socio-carousel .jornada-etapas__photo {
    max-width: none;
    width: 100%;
    aspect-ratio: 4 / 5;
  }
  /* Mobile: DOM order (texto → foto) em Android e iOS; reseta grid do desktop */
  .socio-profile--flip .socio-profile__copy,
  .socio-profile--flip .socio-profile__photo,
  .socio-carousel__slide--flip .socio-profile__copy,
  .socio-carousel__slide--flip .socio-profile__photo {
    grid-column: auto;
    grid-row: auto;
  }
  .socio-profile--flip .socio-profile__copy,
  .socio-carousel__slide--flip .socio-profile__copy {
    padding-left: 0;
    padding-right: 0;
  }
  .socio-carousel__track {
    min-height: 0;
  }
  .sol-card--feature { grid-template-columns: 1fr; }
  .sol-card--feature .sol-card__media { min-height: 12rem; }
  .split-media--flip .split-media__media { order: 0; }
}
@media (max-width: 1100px) {
  :root { --nav-h: 72px; }
  .nav,
  .nav.scrolled {
    background: #fff !important;
    background-color: #fff !important;
  }
  .nav__toggle { display: flex; }
  .nav__toggle span {
    background: #6b7280 !important;
  }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch;
    padding: 1.1rem 1.25rem 1.5rem;
    background: #fff !important;
    background-color: #fff !important;
    border-bottom: 1px solid rgba(90, 96, 104, 0.14);
    transform: translateY(-120%); opacity: 0; pointer-events: none; transition: .3s;
    max-height: calc(100svh - var(--nav-h)); overflow: auto;
    gap: .35rem;
    -webkit-overflow-scrolling: touch;
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links > a:not(.btn) {
    padding: .95rem .35rem;
    border-bottom: 1px solid rgba(90, 96, 104, 0.12);
    font-size: 1.05rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    color: #6b7280;
  }
  .nav__links .access-gate,
  .nav__links .access-links,
  .nav__links .btn--nav-wa {
    margin-top: .55rem;
    width: 100%;
    justify-content: center;
  }
  .nav__links .access-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .nav__links .access-link {
    width: 100%;
    min-height: 48px;
  }
  .nav__links .btn--nav-wa {
    min-height: 48px;
  }
  .access-gate__summary {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
  }
  .access-gate__panel {
    position: static;
    width: 100%;
    margin-top: .55rem;
    right: auto;
    top: auto;
    box-shadow: 0 12px 28px rgba(3, 6, 36, 0.35);
  }
  body.nav-open { overflow: hidden; }
  .brand--nav .brand__logo {
    height: clamp(33px, 5.5vw, 42px);
    max-width: min(176px, 44vw);
  }
  main section[id] {
    scroll-margin-top: calc(var(--nav-h) + 12px);
  }
}
@media (max-width: 780px) {
  :root { --nav-h: 68px; }
  .nav { top: 0; }
  .nav__inner {
    min-height: var(--nav-h);
    gap: .75rem;
  }
  .brand--nav .brand__logo {
    height: 34px;
    max-width: min(150px, 46vw);
  }
  .hero__panel {
    padding: 0;
  }
  .hero--compact {
    aspect-ratio: auto;
    height: min(70svh, 580px);
    min-height: 440px;
    max-height: 580px;
  }
  .hero--compact .hero__inner {
    padding:
      calc(var(--nav-h) + clamp(1.35rem, 5svh, 2.5rem))
      var(--page-pad)
      clamp(5.25rem, 24%, 7rem)
      var(--page-pad);
  }
  .hero--compact .hero__panel {
    max-width: min(20rem, 88%);
    transform: none;
    padding-top: 0.35rem;
  }
  .hero h1,
  .hero--compact h1 {
    font-size: clamp(1.55rem, 6.8vw, 1.95rem);
    max-width: 12ch;
    line-height: 1.15;
    letter-spacing: -0.03em;
  }
  .hero__bg img,
  .hero__bg video,
  .hero__video {
    object-fit: cover;
    object-position: center bottom;
  }
  .hero__bg-wash {
    background:
      linear-gradient(
        120deg,
        rgba(3, 6, 36, 0.06) 0%,
        transparent 42%,
        transparent 100%
      ),
      linear-gradient(
        180deg,
        transparent 0%,
        transparent 70%,
        rgba(3, 6, 36, 0.03) 100%
      );
  }
  .hero__fade { height: 16%; }
  .hero__logo { height: 42px; }
  .highlight-rail__inner { grid-template-columns: 1fr; }
  .highlight-rail__item { padding: 1.1rem 1.25rem; }
  .section__head {
    margin-bottom: 1.5rem;
    max-width: none;
  }
  .section__head h2 {
    font-size: clamp(1.4rem, 6.5vw, 1.85rem);
  }
  .lede { font-size: 1rem; }
  .essencia-compact,
  .faq-compact,
  .parceiro-compact,
  .jornada--compact,
  .jornada--etapas,
  .solucoes-grid,
  .split-media--compact,
  .contato--compact,
  .socio-carousel,
  .invest-reach {
    padding-block: 2.25rem;
  }
  .socio-carousel {
    padding-block: 2.1rem 1.85rem;
  }
  .socio-profile__bio,
  .socio-carousel .socio-profile__bio {
    font-size: clamp(1.02rem, 3.8vw, 1.12rem);
    line-height: 1.7;
  }
  .socio-carousel__copy h2,
  .socio-carousel .socio-profile__copy h2 {
    font-size: clamp(1.65rem, 6.5vw, 2.1rem);
    margin-bottom: 0.95rem;
  }
  .socio-carousel .jornada-etapas__photo {
    aspect-ratio: 4 / 5;
    max-height: min(58vh, 28rem);
  }
  .footer__blurb {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .footer__meta {
    gap: 1.1rem;
  }
  .footer__office-title {
    font-size: 0.95rem;
  }
  .footer__office-line,
  .footer__cnpj-name {
    font-size: 0.88rem;
  }
  .footer__cnpj-num {
    font-size: 0.88rem;
  }
  .faq-item summary {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.4;
  }
  .faq-item summary::after {
    float: none;
    flex-shrink: 0;
  }
  .faq-item p {
    font-size: 0.96rem;
    line-height: 1.65;
  }
  .contato__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contato__lead {
    gap: 1.1rem;
    padding-right: 0;
  }
  .access-doors {
    padding-left: 0;
    border-left: none;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(199, 161, 106, 0.28);
    gap: .85rem;
  }
  .contato__row--split {
    flex-direction: column;
    align-items: stretch;
  }
  .contato__row--split .btn {
    width: 100%;
    min-height: 48px;
  }
  .etapas-grid,
  .sol-media-grid,
  .pillars--compact,
  .access-doors__grid {
    grid-template-columns: 1fr;
  }
  .sol-media { min-height: 16.5rem; }
  .sol-media__body { padding: 1.15rem 1rem 1.1rem; }
  .sol-media__body .btn--soft { min-height: 42px; }
  .jornada-etapas { gap: 1.5rem; }
  .jornada-etapas__photo {
    max-width: none;
    width: 100%;
    aspect-ratio: 4 / 3;
  }
  .socio-profile .jornada-etapas__photo {
    aspect-ratio: 4 / 5;
  }
  .etapa-card { padding: 1rem .95rem; }
  .authorized-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.1rem;
  }
  .authorized-strip__label { white-space: normal; }
  .authorized-strip__list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .authorized-strip__list li {
    border-left: 0;
    padding-left: 0;
    min-width: 0;
    padding-bottom: .65rem;
    border-bottom: 1px solid rgba(199, 161, 106, 0.22);
  }
  .authorized-strip__list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .cookie {
    left: .75rem;
    right: .75rem;
    bottom: calc(5.1rem + env(safe-area-inset-bottom, 0px));
    max-width: none;
    flex-wrap: wrap;
    gap: .75rem;
    padding: .9rem 1rem;
    font-size: .88rem;
  }
  .cookie button {
    min-height: 42px;
    padding: .55rem 1rem;
  }
  .fab {
    right: calc(.9rem + env(safe-area-inset-right, 0px));
    bottom: calc(.9rem + env(safe-area-inset-bottom, 0px));
    width: 54px;
    height: 54px;
  }
  .footer--slim,
  .footer--site {
    padding: 1.5rem 0 calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }
  .footer--site {
    padding-top: 2.25rem;
  }
  .footer__inner--slim {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn { min-height: 44px; }
  .nav__toggle {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 420px) {
  :root { --nav-h: 64px; }
  .brand--nav .brand__logo {
    height: 31px;
    max-width: min(137px, 47vw);
  }
  .hero--compact {
    aspect-ratio: auto;
    height: min(58svh, 460px);
    min-height: 360px;
    max-height: 460px;
  }
  .hero--compact .hero__inner {
    padding:
      calc(var(--nav-h) + 1.1rem)
      var(--page-pad)
      clamp(5rem, 26%, 6.5rem)
      var(--page-pad);
  }
  .hero h1,
  .hero--compact h1 {
    font-size: 1.48rem;
    max-width: 11ch;
  }
  .hero--compact .hero__panel {
    max-width: 96%;
    padding-top: 0.2rem;
  }
  .hero__bg img,
  .hero__bg video,
  .hero__video {
    object-fit: cover;
    object-position: center bottom;
  }
  .sol-media { min-height: 15rem; }
  .glass-card {
    padding: 1.25rem 1.1rem;
  }
}

/* ---- Access links (nav) — Cliente / Colaborador ---- */
.access-links {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.access-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  min-height: 42px;
  box-sizing: border-box;
  border-radius: var(--radius-btn);
  font-weight: 650;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
}
.access-link--client {
  color: var(--navy);
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(240, 223, 180, 0.35));
  border: 1px solid rgba(199, 161, 106, 0.55);
}
.access-link--client:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(138, 104, 52, 0.16);
  transform: translateY(-1px);
  color: var(--navy);
}
.access-link--staff {
  color: #fffcf7;
  background: linear-gradient(135deg, #0a1230, #152048);
  border: 1px solid rgba(199, 161, 106, 0.35);
}
.access-link--staff:hover {
  border-color: var(--gold-bright);
  box-shadow: 0 6px 18px rgba(3, 6, 36, 0.28);
  transform: translateY(-1px);
  color: #fff;
}

.footer__access-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 0 0 0.85rem;
}
.footer__access-links a {
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--gold);
  text-decoration: none;
}
.footer__access-links a:hover {
  text-decoration: underline;
  color: var(--gold-bright);
}

/* ---- Access gate (nav) — legado ---- */
.access-gate {
  position: relative;
  font-size: .9rem;
}
.access-gate__summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .55rem 1.25rem;
  min-height: 42px;
  box-sizing: border-box;
  border: 1px solid rgba(107, 114, 128, 0.45);
  border-radius: var(--radius-btn);
  color: #6b7280;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  background: #fff;
  user-select: none;
  transition: border-color .2s, background .2s, box-shadow .2s, color .2s;
}
.access-gate__summary::-webkit-details-marker { display: none; }
.access-gate__summary:hover,
.access-gate[open] .access-gate__summary {
  border-color: rgba(75, 85, 99, 0.7);
  box-shadow: 0 6px 18px rgba(20, 28, 38, 0.08);
  background: #f3f4f6;
  color: #4b5563;
}
.access-gate__chev {
  width: 0; height: 0;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(2px);
  opacity: .55;
  transition: transform .2s;
}
.access-gate[open] .access-gate__chev {
  transform: translateY(-1px) rotate(180deg);
}
.access-gate__panel {
  position: absolute;
  top: calc(100% + .55rem);
  right: 0;
  width: min(22rem, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(199, 161, 106, 0.28);
  background:
    linear-gradient(155deg, rgba(255,255,255,.98), rgba(241,240,237,.96)),
    linear-gradient(128deg, rgba(90,111,136,.08), transparent 55%);
  box-shadow: 0 24px 56px rgba(20, 28, 38, 0.16);
  z-index: 90;
  display: grid;
  gap: .45rem;
  animation: accessRise .28s cubic-bezier(.22,1,.36,1);
}
@keyframes accessRise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.access-gate__eyebrow {
  margin: 0 0 .35rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.access-gate__option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .85rem;
  padding: .85rem .9rem;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.access-gate__option--client {
  background: linear-gradient(135deg, #f7efe0, #f1e4cc);
  border-color: rgba(199, 161, 106, 0.35);
  color: var(--navy);
}
.access-gate__option--staff {
  background: linear-gradient(135deg, #1a2532, #141c26);
  border-color: rgba(90, 111, 136, 0.35);
  color: #f2f4f7;
}
.access-gate__option:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(20, 28, 38, 0.12);
}
.access-gate__option--client:hover { border-color: rgba(199, 161, 106, 0.7); }
.access-gate__option--staff:hover { border-color: rgba(199, 161, 106, 0.45); }
.access-gate__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.access-gate__option--client .access-gate__icon {
  background: rgba(20, 28, 38, 0.08);
  color: var(--navy);
}
.access-gate__option--staff .access-gate__icon {
  background: rgba(199, 161, 106, 0.16);
  color: var(--gold-bright);
}
.access-gate__icon svg { width: 1.1rem; height: 1.1rem; display: block; }
.access-gate__copy {
  display: grid;
  gap: .15rem;
  min-width: 0;
}
.access-gate__copy strong {
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.access-gate__copy span {
  font-size: .75rem;
  line-height: 1.35;
  opacity: .72;
}
.access-gate__arrow {
  font-size: 1rem;
  opacity: .55;
  transition: transform .2s, opacity .2s;
}
.access-gate__option:hover .access-gate__arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ---- Access doors (contato) ---- */
.access-doors {
  margin-top: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-height: 100%;
  padding-left: 2rem;
  border-left: 1px solid rgba(199, 161, 106, 0.28);
}
.access-doors__head { margin-bottom: 0; }
.access-doors__eyebrow {
  margin: 0 0 .4rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.access-doors__title {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.access-doors__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
  flex: 1;
  align-content: end;
}
.access-door {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  gap: .3rem;
  padding: .85rem .8rem .9rem;
  border-radius: 10px;
  min-height: 6rem;
  height: 100%;
  text-decoration: none;
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s;
}
.access-door--client {
  color: var(--navy);
  border: 1px solid rgba(199, 161, 106, 0.4);
  background:
    linear-gradient(145deg, #fbf6ec, #edd9b0 58%, #d9b87a);
  box-shadow: 0 8px 18px rgba(154, 118, 64, 0.12);
}
.access-door--staff {
  color: #eef1f5;
  border: 1px solid rgba(90, 111, 136, 0.4);
  background:
    linear-gradient(128deg, rgba(90, 111, 136, 0.35) 0%, transparent 48%),
    linear-gradient(155deg, #2f4156, #1a2532 55%, #121820);
  box-shadow: 0 9px 20px rgba(20, 28, 38, 0.18);
}
.access-door__glow {
  position: absolute;
  inset: -30% auto auto -20%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(255,255,255,.28), transparent 68%);
  opacity: .55;
}
.access-door--staff .access-door__glow {
  background: radial-gradient(circle, rgba(199,161,106,.22), transparent 68%);
}
.access-door > *:not(.access-door__glow) { position: relative; z-index: 1; }
.access-door:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(20, 28, 38, 0.16);
}
.access-door__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .4rem;
}
.access-door__role {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
}
.access-door__go {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .7rem;
  background: rgba(20, 28, 38, 0.1);
  transition: transform .25s, background .25s;
}
.access-door--staff .access-door__go {
  background: rgba(255, 255, 255, 0.1);
}
.access-door:hover .access-door__go { transform: translateX(2px); }
.access-door__name {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.access-door__desc {
  font-size: .68rem;
  line-height: 1.35;
  opacity: .78;
  max-width: 22ch;
}

@media (max-width: 900px) {
  .contato__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contato__lead {
    padding-right: 0;
  }
  .access-doors {
    padding-left: 0;
    border-left: none;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(199, 161, 106, 0.28);
  }
}

@media (max-width: 780px) {
  .access-gate { width: 100%; }
  .access-gate__summary { width: 100%; justify-content: space-between; }
  .access-gate__panel {
    position: static;
    width: 100%;
    margin-top: .55rem;
    box-shadow: none;
  }
  .access-doors__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .access-gate__panel { animation: none; }
  .hero__bg-wash::after,
  .section--navy::before {
    animation: none !important;
    transform: none;
  }
  .glow { animation: none !important; background-position: 40% 50%; }
  .ken-burns img { transition: none !important; }
  .ken-burns:hover img { transform: none !important; }
}

/* ---- Product grid (cart?es) ---- */
.prod-grid {
  position: relative;
  z-index: 2;
  margin-top: -1.5rem;
  padding: 0 0 2.75rem;
  background: linear-gradient(180deg, transparent 0%, var(--paper) 18%);
}
.prod-grid__head {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto 1.35rem;
}
.prod-grid__head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--navy);
}
.prod-grid__list {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.prod-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0;
  align-content: start;
  padding: 1.55rem 1.4rem 1.45rem;
  border-radius: 18px;
  border: 1px solid rgba(199, 161, 106, 0.22);
  background: linear-gradient(168deg, #ffffff 0%, #faf7f1 100%);
  box-shadow: 0 12px 32px rgba(20, 28, 38, 0.05);
  min-height: 16.5rem;
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}
.prod-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 161, 106, 0.65);
  box-shadow:
    0 20px 44px rgba(20, 28, 38, 0.12),
    0 0 0 1px rgba(199, 161, 106, 0.18);
}
.prod-card--accent {
  background:
    linear-gradient(128deg, rgba(90, 111, 136, 0.22) 0%, transparent 48%),
    linear-gradient(155deg, #2a3a4c, #141c26);
  border-color: rgba(90, 111, 136, 0.4);
  color: #eef1f5;
}
.prod-card--accent:hover {
  border-color: rgba(199, 161, 106, 0.55);
  box-shadow:
    0 18px 40px rgba(10, 14, 20, 0.35),
    0 0 0 1px rgba(199, 161, 106, 0.25);
}
.prod-card h3 {
  margin: 0 0 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(199, 161, 106, 0.28);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: var(--navy);
}
.prod-card--accent h3 {
  color: #fff;
  border-bottom-color: rgba(199, 161, 106, 0.35);
}
.prod-card p {
  margin: 0 0 1.35rem;
  font-size: .9rem;
  line-height: 1.6;
  color: var(--muted);
}
.prod-card--accent p { color: rgba(238, 241, 245, 0.78); }
.prod-card .btn {
  margin-top: auto;
  justify-self: start;
  opacity: .95;
  transition: opacity .22s ease, transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.prod-card--accent .btn--soft {
  color: var(--navy);
  background: #fff;
  border-color: transparent;
}
.prod-card:hover .btn {
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .prod-grid__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .prod-grid__list { grid-template-columns: 1fr; }
  .prod-card { min-height: 0; }
}
.split-media--compact {
  padding-block: 3rem;
}
.contato--compact { padding-block: 3rem 3.5rem; }
.contato__row { margin: 0; }
.contato__row--split {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: stretch;
}
.contato__lead .contato__row--split .btn {
  flex: 1 1 auto;
  min-width: 8.5rem;
}
.contato__row--split .btn {
  min-height: 52px;
  padding-block: .9rem;
  padding-inline: 1.7rem;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn--ghost-ink {
  border-color: rgba(3, 6, 36, .28);
  color: var(--navy);
  background: #fff;
  box-shadow: 0 4px 14px rgba(3, 6, 36, 0.06);
}
.btn--ghost-ink:hover {
  border-color: var(--gold);
  background: rgba(199, 161, 106, .12);
  box-shadow: none;
  opacity: 1;
}
.hero__actions .btn .ico-inline,
.contato__row .btn .ico-inline {
  margin-right: .45rem;
}

.footer--slim { padding: 1.75rem 0 5.5rem; }
.footer__inner--slim {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.footer__slim-links {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.25rem;
  font-size: .88rem;
}
.footer__slim-links a { color: rgba(255, 255, 255, 0.82); }
.footer__slim-links a:hover { color: var(--gold-bright); }
.footer__slim-meta {
  margin: 0;
  width: 100%;
  font-size: .82rem;
  color: rgba(240, 223, 180, 0.72);
  border-top: 1px solid var(--line-gold);
  padding-top: .9rem;
}
.footer__credit {
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 161, 106, 0.45);
  transition: color .2s ease, border-color .2s ease;
}
.footer__credit:hover,
.footer__credit:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

/* ---------- Footer site (padrão institucional) ---------- */
.footer--site {
  padding: clamp(2.75rem, 5vw, 3.75rem) 0 calc(5.75rem + env(safe-area-inset-bottom, 0px));
  background:
    linear-gradient(180deg, #f7f8fb 0%, #eef1f6 100%);
  color: #2c3340;
  border-top: 1px solid rgba(3, 6, 36, 0.06);
}
.footer__inner--site {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-bottom: clamp(1.75rem, 3.5vw, 2.35rem);
}
.footer__label {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1c2433;
  letter-spacing: -0.01em;
}
.footer__label--inline {
  display: block;
  margin-bottom: 0.25rem;
}
.footer__partners {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.footer__partners li {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(3, 6, 36, 0.08);
  box-shadow: 0 6px 18px rgba(3, 6, 36, 0.04);
  font-size: 0.84rem;
  font-weight: 700;
  color: #0b1019;
}
.footer__partners span {
  font-weight: 500;
  color: #6b7280;
  font-size: 0.78rem;
}
.footer__blurb {
  margin: 0 0 1.15rem;
  max-width: 38rem;
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.65;
}
.footer__site-line {
  margin: 0;
}
.footer__site-line a {
  color: #0b1019;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 161, 106, 0.55);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer__site-line a:hover,
.footer__site-line a:focus-visible {
  color: #8a6a3a;
  border-bottom-color: #c7a16a;
}
.footer__aside {
  display: grid;
  gap: 1.6rem;
}
.footer__contact-block {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}
.footer__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid #1c2433;
  background: #fff;
  color: #1c2433;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(3, 6, 36, 0.06);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.footer__wa:hover,
.footer__wa:focus-visible {
  background: #1c2433;
  color: #fff;
  transform: translateY(-1px);
}
.footer__legal-links {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.15rem;
}
.footer__legal-links a {
  color: #1c2433;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.35;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer__legal-links a:hover,
.footer__legal-links a:focus-visible {
  color: #8a6a3a;
  border-bottom-color: rgba(199, 161, 106, 0.55);
}
.footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer__social-link {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  color: #1c2433;
  background: #fff;
  border: 1px solid rgba(3, 6, 36, 0.1);
  box-shadow: 0 6px 16px rgba(3, 6, 36, 0.05);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.footer__social-link:hover,
.footer__social-link:focus-visible {
  color: #fff;
  background: linear-gradient(145deg, #c7a16a, #a67c3a);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(166, 124, 58, 0.28);
  transform: translateY(-2px);
}
.footer__bottom {
  padding-top: clamp(1.45rem, 3vw, 1.9rem);
  border-top: 1px solid rgba(3, 6, 36, 0.1);
  display: grid;
  gap: 1.25rem;
}
.footer__copy {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(3, 6, 36, 0.08);
  color: #6b7280;
  font-size: 0.86rem;
  line-height: 1.5;
}
.footer--site .footer__credit {
  color: #8a6a3a;
  border-bottom-color: rgba(199, 161, 106, 0.45);
}
.footer--site .footer__credit:hover,
.footer--site .footer__credit:focus-visible {
  color: #1c2433;
  border-bottom-color: #1c2433;
}
.footer__meta {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: 1.35rem 2.5rem;
  align-items: start;
}
.footer__office {
  display: grid;
  gap: 0.28rem;
}
.footer__office-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a67c3a;
}
.footer__office-title {
  margin: 0 0 0.35rem;
  color: #1c2433;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.footer__office-line {
  margin: 0;
  color: #5b6472;
  font-size: 0.9rem;
  line-height: 1.55;
}
.footer__cnpj {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.footer__cnpj li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.55rem;
  row-gap: 0.15rem;
  align-items: baseline;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(3, 6, 36, 0.06);
}
.footer__cnpj-label {
  grid-column: 1;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a67c3a;
}
.footer__cnpj-num {
  grid-column: 2;
  color: #1c2433;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}
.footer__cnpj-name {
  grid-column: 1 / -1;
  color: #5b6472;
  font-size: 0.84rem;
  line-height: 1.45;
  font-weight: 500;
}
@media (max-width: 820px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .footer__meta {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
}

/* ---------- Brindes (antes do FAQ) ---------- */
section.brindes {
  padding-block: clamp(0.35rem, 1vw, 0.7rem);
  padding-inline: 0 !important;
  background: #fff;
}
.brindes__stage {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  background: #fff;
}
.brindes__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  line-height: 0;
}
.brindes__photo {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  background: #fff;
}
/* Texto à direita — um pouco mais à direita e para baixo */
.brindes__copy {
  position: absolute;
  left: auto;
  right: clamp(3.5rem, 10vw, 8.5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: min(29rem, 40%);
  max-width: none;
  padding: 0;
  border-radius: 1.15rem;
  color: #0b1019;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.brindes__frame {
  position: absolute;
  inset: 0;
  border-radius: 1.15rem;
  pointer-events: none;
  z-index: 2;
}
.brindes__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    #fff8e8 0%,
    #f0dfb4 8%,
    #c7a16a 16%,
    rgba(199, 161, 106, 0.28) 28%,
    transparent 40%,
    transparent 60%,
    rgba(199, 161, 106, 0.28) 72%,
    #c7a16a 84%,
    #f0dfb4 92%,
    #fff8e8 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}
.brindes__frame::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 6px;
  background: linear-gradient(
    135deg,
    rgba(240, 223, 180, 0.4) 0%,
    transparent 30%,
    transparent 70%,
    rgba(199, 161, 106, 0.32) 100%
  );
  filter: blur(8px);
  opacity: 0.8;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}
.brindes__copy-inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.55rem, 3.2vw, 2.35rem) clamp(1.45rem, 3vw, 2.15rem);
}
.brindes__title {
  display: grid;
  gap: 0.14rem;
  margin: 0 0 1.25rem;
  font-size: clamp(1.2rem, 2.15vw, 1.62rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.18;
  text-transform: uppercase;
  color: #0b1019;
}
.brindes__title .glow {
  background-image: linear-gradient(
    105deg,
    #8a6834 0%,
    #c7a16a 26%,
    #f0dfb4 46%,
    #c7a16a 66%,
    #a67c3a 86%,
    #c7a16a 100%
  );
  filter: drop-shadow(0 0 8px rgba(199, 161, 106, 0.28));
}
.brindes__perks {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(199, 161, 106, 0.4);
}
.brindes__perks li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(199, 161, 106, 0.32);
}
.brindes__perks li:last-child {
  border-bottom: 0;
  padding-bottom: 0.15rem;
}
.brindes__icon {
  flex: 0 0 2.55rem;
  width: 2.55rem;
  height: 2.55rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0dfb4, #c7a16a 52%, #a67c3a);
  color: #0b1019;
  box-shadow: 0 8px 18px rgba(199, 161, 106, 0.28);
}
.brindes__perk-text {
  display: grid;
  gap: 0.14rem;
}
.brindes__perk-text strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.brindes__perk-text span {
  color: rgba(11, 16, 25, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  section.brindes {
    padding-block: 1.35rem 1.75rem;
    padding-inline: 0 !important;
    background: #fff;
  }
  .brindes__stage {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-inline: max(0.95rem, env(safe-area-inset-left, 0px)) max(0.95rem, env(safe-area-inset-right, 0px));
    padding-inline: 0;
    border-radius: 1.15rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(199, 161, 106, 0.42);
    box-shadow: 0 16px 36px rgba(3, 6, 36, 0.07);
  }
  .brindes__media {
    order: 1;
    width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: none;
    line-height: 0;
    padding: 1.1rem 1.1rem 0.35rem;
  }
  .brindes__media picture,
  .brindes__photo {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(58vw, 22rem);
    margin-inline: auto;
    transform: none;
    object-fit: contain;
    object-position: center;
  }
  .brindes__copy {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: none;
    order: 2;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid rgba(199, 161, 106, 0.28);
  }
  .brindes__frame {
    display: none;
  }
  .brindes__copy-inner {
    padding: 1.2rem 1.15rem 1.35rem;
  }
  .brindes__title {
    font-size: clamp(1.02rem, 4.4vw, 1.18rem);
    gap: 0.08rem;
    margin-bottom: 0.85rem;
    line-height: 1.26;
  }
  .brindes__perks li {
    gap: 0.75rem;
    padding: 0.75rem 0;
  }
  .brindes__icon {
    flex-basis: 2.2rem;
    width: 2.2rem;
    height: 2.2rem;
  }
  .brindes__perk-text strong {
    font-size: 0.95rem;
  }
  .brindes__perk-text span {
    font-size: 0.78rem;
  }
}
@media (max-width: 560px) {
  section.brindes {
    padding-block: 1.1rem 1.4rem;
  }
  .brindes__stage {
    margin-inline: 0.75rem;
    border-radius: 1rem;
  }
  .brindes__media {
    padding: 0.85rem 0.85rem 0.2rem;
  }
  .brindes__media picture,
  .brindes__photo {
    max-height: min(72vw, 20rem);
  }
  .brindes__copy-inner {
    padding: 1.05rem 1rem 1.2rem;
  }
  .brindes__title {
    font-size: 1.02rem;
  }
}

/* ---- Conteúdo compacto extra ---- */
.essencia-compact,
.faq-compact,
.parceiro-compact {
  padding-block: 3rem;
}
.pillars--compact {
  margin-top: 0;
}
.compact-list {
  display: grid;
  gap: .45rem;
  margin: 1rem 0 1.25rem;
}
.compact-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .95rem;
  color: var(--muted);
}
.compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  background: var(--gold);
}
.jornada--compact {
  padding-block: 3rem;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(199, 161, 106, 0.08), transparent 55%),
    var(--white);
}
.partner-strip {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  align-items: end;
  padding: 1.6rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(199, 161, 106, 0.3);
  background:
    linear-gradient(128deg, rgba(90, 111, 136, 0.1), transparent 45%),
    linear-gradient(160deg, #fffefb, #f3ebe0);
}
.partner-strip h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  margin: 0 0 .55rem;
  color: var(--navy);
  max-width: 16ch;
}
.partner-strip > div > p:last-of-type {
  margin: 0;
  color: var(--muted);
  max-width: 38rem;
  font-size: .95rem;
}
.partner-strip__meta {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}
.partner-strip__meta p {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
}
.partner-strip__meta span {
  font-size: .85rem;
  color: var(--muted);
}
.faq-list {
  width: min(760px, 100%);
  display: grid;
  gap: .65rem;
}
.faq-item {
  border: 1px solid rgba(20, 28, 38, 0.1);
  border-radius: 12px;
  background: #fff;
  padding: .15rem 1rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: .98rem;
  color: var(--navy);
  padding: .95rem 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold-deep);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
}
@media (max-width: 700px) {
  .partner-strip { align-items: start; }
  .partner-strip__meta { border-left: 0; border-top: 2px solid var(--gold); padding: .85rem 0 0; }
}

