/* ============================================================
   BAUEN Invest — Design System
   Paleta: #141414 (ink) · #D9AC4A (gold) · #FEFEFE (paper)
   Tipografia: Sora (display) · Inter (texto)
   ============================================================ */

:root {
  --night: #0d0d0c;
  --ink: #141414;
  --ink-2: #1c1b19;
  --ink-3: #262421;
  --ink-soft: #4a4742;
  --ink-mute: #5f5b55;
  --paper: #fefefe;
  --cream: #f5f6f8;
  --cream-2: #eef0f3;
  --gold: #d9ac4a;
  --gold-deep: #c89933;
  --gold-tint: rgba(217, 172, 74, 0.12);
  --gold-line: rgba(217, 172, 74, 0.35);
  --line: rgba(20, 20, 20, 0.09);
  --line-strong: rgba(20, 20, 20, 0.16);
  --line-dark: rgba(254, 254, 254, 0.12);
  --paper-dark-soft: rgba(254, 254, 254, 0.86);
  --radius: 20px;
  --radius-lg: 28px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow-lg: 0 24px 64px -24px rgba(20, 20, 20, 0.28);
  --shadow-md: 0 14px 40px -18px rgba(20, 20, 20, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --grad: linear-gradient(63.44deg, #f0d48a 12.73%, #d9ac4a 49.25%, #c89933 87.26%);
  --gold-glow: rgba(217, 172, 74, 0.22);
  --header-h: 76px;
  /* gutter lateral obrigatório — logo/CTAs nunca colam na borda */
  --page-gutter-x: max(
    clamp(2rem, 5.5vw, 5rem),
    env(safe-area-inset-left, 0px),
    env(safe-area-inset-right, 0px)
  );
  --page-max: 1120px;
  --page-rail: calc(var(--page-max) + 2 * var(--page-gutter-x));
  /* ritmo vertical padrão entre seções */
  --section-pad-y: clamp(3.2rem, 6.5vw, 5.5rem);
  --section-head-gap: clamp(1.4rem, 2.8vw, 2.2rem);
  /* pretos em degradê — profundidade prateada nas seções escuras */
  --dark-grad-deep:
    radial-gradient(1180px 560px at 12% -5%, rgba(255, 255, 255, 0.05), transparent 55%),
    radial-gradient(980px 520px at 95% 105%, rgba(255, 255, 255, 0.028), transparent 52%),
    linear-gradient(168deg, #1c1b19 0%, #121110 48%, #0d0c0b 100%);
  --dark-grad-soft:
    radial-gradient(1100px 520px at 88% -8%, rgba(255, 255, 255, 0.055), transparent 58%),
    radial-gradient(860px 480px at 8% 110%, rgba(255, 255, 255, 0.03), transparent 50%),
    linear-gradient(192deg, #22201d 0%, #171614 45%, #1a1917 100%);
  --dark-grad-night:
    radial-gradient(1000px 460px at 50% -12%, rgba(255, 255, 255, 0.04), transparent 60%),
    radial-gradient(720px 420px at 100% 80%, rgba(255, 255, 255, 0.02), transparent 55%),
    linear-gradient(180deg, #151413 0%, #0f0e0d 55%, #121110 100%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
  -webkit-text-size-adjust: 100%;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--paper);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

p {
  margin: 0 0 1.1em;
}

::selection {
  background: var(--gold);
  color: var(--paper);
}

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

/* ---------- layout ---------- */

.container {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--page-rail);
  margin-inline: auto;
  padding-inline: var(--page-gutter-x);
}

.section {
  padding-block: var(--section-pad-y);
}

.section--tight {
  padding-block: var(--section-pad-y);
}

.section--cream {
  background: #f4f5f7;
  color: var(--ink);
}

.section--white {
  background: var(--paper);
  color: var(--ink);
}

.section--soft {
  background: #eceef1;
  color: var(--ink);
}

.section--dark {
  background: var(--dark-grad-deep);
  color: var(--paper);
}

.section--graphite {
  background: var(--dark-grad-soft);
  color: var(--paper);
}

/* bloco de marca — cards escuros sobre fundo claro (inspiração IBR) */
.section--brand-panel {
  background: #f0f1f3;
  color: var(--ink);
}

.section--brand-panel .stat {
  background:
    radial-gradient(140% 120% at 20% 0%, rgba(255, 255, 255, 0.06), transparent 55%),
    linear-gradient(165deg, #262421 0%, #1a1917 55%, #141312 100%);
  border-radius: 16px;
  padding: clamp(1.2rem, 2.4vw, 1.7rem) 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section--brand-panel .stat__l {
  color: rgba(254, 254, 254, 0.78);
}

/* camada escura mais profunda — alterna com --dark para separar blocos escuros */
.section--night {
  background: var(--dark-grad-night);
}

/* hairline divisória entre seções escuras adjacentes */
.section--divide {
  border-top: 1px solid rgba(254, 254, 254, 0.07);
}

.section--dark ::selection,
.section--graphite ::selection {
  background: var(--paper);
  color: var(--ink);
}

/* ---------- primitives ---------- */

.kicker {
  display: none;
}

.display {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.h-section {
  font-size: clamp(1.7rem, 2.9vw, 2.4rem);
  max-width: 22ch;
}

.h-section--center {
  margin-inline: auto;
  text-align: center;
}

.h-section--wide {
  max-width: 36ch;
}

@media (max-width: 720px) {
  .h-section--wide {
    white-space: normal;
    max-width: 22ch;
  }
}

.section-head {
  margin-bottom: var(--section-head-gap);
}

#simulador > .container > .section-head {
  margin-bottom: var(--section-head-gap);
}

.accent {
  color: var(--gold);
}

.section--dark .accent {
  color: var(--gold);
}

.lead {
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 58ch;
}

.section--dark .lead,
.section--dark p,
.section--graphite .lead,
.section--graphite p,
.section--night .lead,
.section--night p {
  color: var(--paper-dark-soft);
}

.center {
  text-align: center;
}

.center .lead {
  margin-inline: auto;
}

.section-head--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 3rem;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 4px;
  padding: 0.92rem 1.7rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background-color 0.25s, color 0.25s, border-color 0.25s;
}

.btn svg {
  width: 17px;
  height: 17px;
  flex: none;
  transition: transform 0.35s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 28px -10px rgba(207, 155, 63, 0.55);
}

.btn--gold:hover {
  background: var(--gold-deep);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -12px rgba(169, 123, 40, 0.6);
}

.btn--ink {
  background: var(--ink);
  color: var(--paper);
}

.btn--ink:hover {
  background: var(--ink-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.hero .btn--ghost,
.hub .btn--ghost,
.section--dark .btn--ghost,
.section--graphite .btn--ghost,
.page-hero--dark .btn--ghost,
.cta-panel .btn--ghost {
  border-color: rgba(254, 254, 254, 0.38);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.04);
}

.hero .btn--ghost:hover,
.hub .btn--ghost:hover,
.section--dark .btn--ghost:hover,
.section--graphite .btn--ghost:hover,
.page-hero--dark .btn--ghost:hover,
.cta-panel .btn--ghost:hover {
  border-color: rgba(254, 254, 254, 0.72);
  background: rgba(255, 255, 255, 0.09);
  color: var(--paper);
}

.btn--lg {
  padding: 1.05rem 2rem;
  font-size: 0.95rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: gap 0.3s var(--ease), color 0.2s;
}

.link-arrow:hover {
  gap: 0.85rem;
  color: var(--ink);
}

.section--dark .link-arrow,
.section--graphite .link-arrow,
.section--night .link-arrow {
  color: var(--gold);
}

.section--dark .link-arrow:hover,
.section--graphite .link-arrow:hover,
.section--night .link-arrow:hover {
  color: var(--paper);
}

.link-arrow svg {
  width: 16px;
  height: 16px;
}

/* ---------- chips / tags ---------- */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--gold-tint);
  color: var(--gold-deep);
}

.tag--live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.2s infinite;
}

.tag--soon {
  background: rgba(20, 20, 20, 0.05);
  color: var(--ink-soft);
}

.tag--dark {
  background: rgba(254, 254, 254, 0.08);
  color: var(--paper);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(207, 155, 63, 0.5); }
  60% { box-shadow: 0 0 0 7px rgba(207, 155, 63, 0); }
}

/* ---------- header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  width: 100%;
  box-sizing: border-box;
  /* gutter no próprio header — à prova de override no .container */
  padding-inline: var(--page-gutter-x);
  transition: background-color 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 20, 20, 0.75);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header.is-scrolled {
  background: rgba(20, 20, 20, 0.92);
  border-color: rgba(254, 254, 254, 0.08);
}

/* rail interno: sem padding extra (já veio do .header) */
.header .container,
.header__in.container {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: 0;
}

.header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
  height: var(--header-h);
  min-width: 0;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  min-width: 0;
}

.nav a:not(.btn):not(.nav__login):not(.nav__account) {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--paper-dark-soft);
  text-decoration: none;
  padding-block: 0.4rem;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav a:not(.btn):not(.nav__login):not(.nav__account)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:not(.btn):not(.nav__login):not(.nav__account):hover,
.nav a[aria-current="page"]:not(.btn):not(.nav__login):not(.nav__account) {
  color: var(--paper);
}

.nav a:not(.btn):not(.nav__login):not(.nav__account):hover::after,
.nav a[aria-current="page"]:not(.btn):not(.nav__login):not(.nav__account)::after {
  transform: scaleX(1);
}

.nav .btn {
  padding: 0.68rem 1.25rem;
  font-size: 0.8rem;
  border-radius: 3px;
  white-space: nowrap;
}

.nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: 0.55rem;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(254, 254, 254, 0.12);
  flex-shrink: 0;
}

.nav__login {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(254, 254, 254, 0.82);
  text-decoration: none;
  padding: 0.45rem 0.35rem;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav__login svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex: none;
  transition: transform 0.3s var(--ease);
}

.nav__login:hover {
  color: var(--paper);
}

.nav__login:hover svg {
  transform: translateX(3px);
}

.nav__account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--paper);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.62rem 1.15rem;
  border-radius: 3px;
  border: 1px solid rgba(207, 155, 63, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 22px -16px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s var(--ease);
}

.nav__account:hover {
  border-color: rgba(207, 155, 63, 0.72);
  color: var(--gold);
  background:
    linear-gradient(180deg, rgba(207, 155, 63, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 26px -14px rgba(207, 155, 63, 0.35);
  transform: translateY(-1px);
}

.nav__cta {
  margin-left: 0.1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px -12px rgba(207, 155, 63, 0.55);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: var(--ink-2);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.8px;
  background: var(--paper);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.8px) rotate(45deg);
}

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

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.8px) rotate(-45deg);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    gap: 1.1rem;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }

  body.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
  }

  .nav a:not(.btn):not(.nav__login):not(.nav__account) {
    color: var(--paper-dark-soft);
    font-size: 1.25rem;
  }

  .nav a:not(.btn):not(.nav__login):not(.nav__account):hover,
  .nav a[aria-current="page"]:not(.btn):not(.nav__login):not(.nav__account) {
    color: var(--paper);
  }

  .nav__actions {
    flex-direction: column;
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    gap: 0.85rem;
    margin-top: 0.8rem;
    width: min(280px, 80vw);
  }

  .nav__login {
    font-size: 1.1rem;
    justify-content: center;
  }

  .nav__login svg {
    width: 16px;
    height: 16px;
  }

  .nav__account {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
  }

  .nav .btn {
    margin-top: 0;
    font-size: 1rem;
    padding: 1rem 2rem;
    width: 100%;
    justify-content: center;
  }

  .nav__cta {
    margin-left: 0;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  padding-top: calc(var(--header-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(4rem, 6.5vw, 7rem);
  overflow: clip;
  background: #0d0c0b;
}

.hero--luxe {
  min-height: 100svh;
  max-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.hero--luxe > .container {
  /* mesmo rail do header: gutter + max alinhados */
  width: 100%;
  max-width: var(--page-rail);
  margin-inline: auto;
  padding-inline: var(--page-gutter-x);
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + clamp(1.2rem, 2.5vh, 2rem));
  padding-bottom: clamp(1.4rem, 3vh, 2.4rem);
}

/* Foto full-bleed: cards flutuam nas bordas, sem tapar a mulher */
.hero--luxe .hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(58vw, 780px);
  z-index: 1;
  pointer-events: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.hero .accent {
  color: var(--gold);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__photo {
  position: absolute;
  inset: 0;
  background-image: var(--hero-photo);
  background-size: cover;
  background-position: 68% center;
  filter: blur(18px) saturate(0.85) brightness(0.55);
  transform: scale(1.12);
  opacity: 0.7;
}

/* Banner 1920×1080 — estático; o movimento fica só nas camadas de fundo */
.hero--luxe .hero__photo {
  filter: none;
  transform: none;
  opacity: 1;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: none;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  will-change: transform, opacity;
}

.hero__glow--a {
  width: min(48vw, 560px);
  height: min(48vw, 560px);
  top: -18%;
  left: -8%;
  background: rgba(207, 155, 63, 0.14);
  animation: hero-glow-drift 16s ease-in-out infinite alternate;
}

.hero__glow--b {
  width: min(38vw, 420px);
  height: min(38vw, 420px);
  bottom: -12%;
  left: 8%;
  background: rgba(200, 204, 212, 0.08);
  animation: hero-glow-drift 22s ease-in-out infinite alternate-reverse;
}

.hero__glow--c {
  width: min(28vw, 320px);
  height: min(28vw, 320px);
  top: 28%;
  left: 32%;
  background: rgba(232, 194, 114, 0.07);
  animation: hero-glow-pulse 12s ease-in-out infinite;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #0d0c0b 0%, #0d0c0b 42%, rgba(13, 12, 11, 0.55) 62%, rgba(13, 12, 11, 0.15) 82%, transparent 100%),
    linear-gradient(180deg, transparent 0%, transparent 72%, rgba(13, 12, 11, 0.55) 100%),
    radial-gradient(700px 420px at 78% 42%, rgba(207, 155, 63, 0.1), transparent 60%);
}

/* Véu + sombra suave perto da mulher (cores do fundo do site) */
.hero--luxe .hero__veil {
  background:
    linear-gradient(
      90deg,
      #0d0c0b 0%,
      #0d0c0b 34%,
      rgba(13, 12, 11, 0.94) 46%,
      rgba(13, 12, 11, 0.55) 58%,
      rgba(13, 12, 11, 0.18) 70%,
      transparent 82%
    ),
    linear-gradient(
      180deg,
      rgba(13, 12, 11, 0.35) 0%,
      transparent 18%,
      transparent 72%,
      rgba(13, 12, 11, 0.55) 100%
    );
}

.hero__shadow {
  display: none;
}

.hero--luxe .hero__shadow {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      92deg,
      #0d0c0b 0%,
      #0d0c0b 36%,
      rgba(13, 12, 11, 0.88) 48%,
      rgba(13, 12, 11, 0.45) 58%,
      rgba(13, 12, 11, 0.12) 68%,
      transparent 78%
    ),
    radial-gradient(
      55% 85% at 58% 55%,
      rgba(13, 12, 11, 0.4) 0%,
      rgba(13, 12, 11, 0.12) 42%,
      transparent 70%
    );
}

.hero__arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  z-index: 3;
  overflow: visible;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 52%, transparent 76%);
  mask-image: linear-gradient(90deg, #000 0%, #000 52%, transparent 76%);
}

.hero__arc {
  stroke-linecap: round;
  opacity: 0.65;
}

.hero__arc--1 {
  animation: hero-arc-drift 20s ease-in-out infinite alternate;
}

.hero__arc--2 {
  opacity: 0.45;
  animation: hero-arc-drift 26s ease-in-out infinite alternate-reverse;
}

.hero__arc--3 {
  opacity: 0.35;
  animation: hero-arc-drift 32s ease-in-out infinite alternate;
}

.hero__scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 40%,
    rgba(207, 155, 63, 0.045) 48%,
    rgba(223, 227, 234, 0.04) 52%,
    transparent 60%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: hero-scan 14s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 48%, transparent 72%);
  mask-image: linear-gradient(90deg, #000 0%, #000 48%, transparent 72%);
}

@keyframes hero-glow-drift {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.75; }
  to { transform: translate3d(6%, 5%, 0) scale(1.12); opacity: 1; }
}

@keyframes hero-glow-pulse {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.45; }
  50% { transform: translate3d(-3%, 4%, 0) scale(1.18); opacity: 0.85; }
}

@keyframes hero-arc-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(4.5%, -2.5%, 0); }
}

@keyframes hero-scan {
  0%, 100% { background-position: 130% 0; opacity: 0.25; }
  50% { background-position: -30% 0; opacity: 0.7; }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero--luxe .hero__pill {
  margin-bottom: 0.75rem;
}

.hero--luxe .display {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  margin-bottom: 0.55em;
}

.hero__content .lead {
  max-width: 54ch;
  color: rgba(254, 254, 254, 0.88);
}

.hero--luxe .hero__content .lead {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  margin-bottom: 0;
}

.hero__content .display {
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  max-width: 14ch;
}

.hero--luxe .hero__actions {
  margin-top: 1.25rem;
  gap: 0.7rem;
}

.hero--luxe .hero__actions .btn--lg {
  padding: 0.9rem 1.55rem;
  font-size: 0.9rem;
}

@media (min-width: 960px) {
  .hero--luxe .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .hero--luxe .hero__content {
    max-width: min(34rem, 48%);
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero__media {
  position: relative;
  z-index: 2;
}

.hero__stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 70vw, 520px);
  overflow: visible;
  border: 0;
  border-radius: 0;
}

.hero--luxe .hero__stage {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.hero__float {
  position: absolute;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 14px;
  overflow: hidden;
  z-index: 3;
  pointer-events: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.48));
  animation: floaty 6.2s ease-in-out infinite;
  will-change: transform;
  /* temporário: ocultos até reposicionar */
  display: none;
}

/* cantos inferiores da foto — fora do rosto/tronco */
.hero__float--pro1 {
  left: 0.75rem;
  top: auto;
  bottom: 1.25rem;
  width: 148px;
  animation-delay: -1.2s;
}

.hero__float--pro2 {
  right: 0.75rem;
  left: auto;
  top: auto;
  bottom: 1.25rem;
  width: 142px;
  animation-delay: -2.8s;
  animation-duration: 7s;
}

.offer-float {
  background:
    radial-gradient(120% 80% at 50% 0%, #141210 0%, #050505 62%);
  border: 1px solid rgba(214, 168, 84, 0.5);
}

.offer-float__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.offer-float__media {
  position: relative;
  height: 78px;
  overflow: hidden;
}

.offer-float__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.offer-float__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, transparent 40%, rgba(8, 8, 8, 0.92) 100%);
}

.offer-float__badges {
  position: absolute;
  inset: 0.4rem 0.4rem auto;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 0.25rem;
}

.offer-float__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.2rem 0.38rem 0.18rem;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1;
  height: 1.1rem;
  box-sizing: border-box;
}

.offer-float__pill--gold {
  color: #231a08;
  background: linear-gradient(135deg, #e9c87a 0%, #c79a3c 100%);
}

.offer-float__pill--dark {
  color: #fff;
  background: rgba(10, 12, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.offer-float__body {
  padding: 0.5rem 0.65rem 0.65rem;
}

.offer-float__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
}

.offer-float__local {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  margin: 0.22rem 0 0;
  font-size: 0.48rem;
  line-height: 1.3;
  color: #8e8e94;
}

.offer-float__local svg {
  width: 8px;
  height: 8px;
  flex: none;
  margin-top: 0.06rem;
}

.offer-float__prog {
  margin-top: 0.35rem;
  padding-top: 0.32rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.offer-float__prog-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.48rem;
  color: #8e8e94;
}

.offer-float__prog-top strong {
  color: #d9ac50;
  font-weight: 700;
}

.offer-float__track {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  margin-top: 0.25rem;
  overflow: hidden;
}

.offer-float__track span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #c79a3c 0%, #efd08c 100%);
  box-shadow: 0 0 10px rgba(224, 178, 88, 0.45);
}

.offer-float__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem;
  margin-top: 0.35rem;
}

.offer-float__stats span {
  display: block;
  font-size: 0.44rem;
  color: #8e8e94;
  margin-bottom: 0.1rem;
}

.offer-float__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.offer-float__stats div:first-child strong {
  color: #e0b258;
}

.offer-float__stats em {
  font-style: normal;
  font-size: 0.46rem;
  font-weight: 600;
}

@media (max-width: 959px) {
  .hero--luxe {
    padding-top: 0;
    flex-direction: column;
    align-items: stretch;
    max-height: none;
    min-height: 0;
  }

  .hero--luxe .hero__photo {
    background-position: 72% 22%;
  }

  .hero--luxe .hero__veil {
    background:
      linear-gradient(
        180deg,
        rgba(13, 12, 11, 0.55) 0%,
        rgba(13, 12, 11, 0.2) 28%,
        transparent 48%
      ),
      linear-gradient(
        90deg,
        #0d0c0b 0%,
        rgba(13, 12, 11, 0.75) 35%,
        rgba(13, 12, 11, 0.25) 58%,
        transparent 78%
      ),
      linear-gradient(
        180deg,
        transparent 55%,
        rgba(13, 12, 11, 0.7) 82%,
        #0d0c0b 100%
      );
  }

  .hero--luxe .hero__shadow {
    background:
      linear-gradient(
        180deg,
        transparent 40%,
        rgba(13, 12, 11, 0.45) 70%,
        #0d0c0b 100%
      );
  }

  .hero--luxe .hero__media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: clamp(320px, 72vw, 480px);
    order: -1;
  }

  .hero--luxe .hero__stage {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .hero--luxe > .container {
    padding-top: clamp(1.4rem, 4vw, 2rem);
    margin-top: -4.5rem;
    z-index: 3;
  }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__float,
  .hero__glow,
  .hero__arc,
  .hero__scan {
    animation: none;
  }
}

/* hero interno (páginas) */

.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.2rem, 4.8vw, 3.6rem));
  padding-bottom: clamp(2.2rem, 4.8vw, 3.6rem);
  overflow: hidden;
}

.page-hero--dark {
  background: var(--dark-grad-deep);
  color: var(--paper);
}

.page-hero--dark .lead {
  color: var(--paper-dark-soft);
}

.page-hero--dark::after {
  content: "";
  position: absolute;
  top: -260px;
  right: -200px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.07), transparent 70%);
  pointer-events: none;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-hero__grid img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ---------- home: hero pill + portrait floats ---------- */

.hero__pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.2rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(207, 155, 63, 0.5);
  background: rgba(207, 155, 63, 0.12);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- reasons (seção clara) + metrics (escura) ---------- */

.reasons {
  background: #f7f8fa;
  color: var(--ink);
  padding-block: var(--section-pad-y);
}

.reasons__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: stretch;
}

.reasons__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(320px, 42vw, 420px);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  border-radius: 24px;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(255, 255, 255, 0.08), transparent 50%),
    linear-gradient(165deg, #262421 0%, #141312 55%, #0f0e0d 100%);
  box-shadow: 0 28px 60px -32px rgba(20, 20, 20, 0.45);
}

.reasons__panel::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -28%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 155, 63, 0.12), transparent 68%);
  pointer-events: none;
}

.reasons__panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.reasons__panel img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.reasons__rule {
  display: block;
  width: 48px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.reasons__panel h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  margin-top: auto;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  line-height: 1.18;
  max-width: 12ch;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.reasons__panel h2 em {
  font-style: normal;
  color: var(--gold);
}

.reasons__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  align-content: stretch;
}

.reasons__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
  padding: clamp(1.35rem, 2.4vw, 1.7rem) 0.2rem;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  transition: transform 0.3s var(--ease);
}

.reasons__item:first-child {
  padding-top: 0.2rem;
}

.reasons__item:last-child {
  border-bottom: 0;
  padding-bottom: 0.2rem;
}

.reasons__item:hover {
  transform: translateX(4px);
}

.reasons__idx {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  padding-top: 0.25rem;
}

.reasons__item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  color: var(--ink);
}

.reasons__item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 38ch;
}

.metrics {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  padding-block: var(--section-pad-y);
  background: var(--dark-grad-deep);
}

.metrics__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.metrics__glow {
  position: absolute;
  width: min(560px, 60vw);
  height: min(560px, 60vw);
  left: 50%;
  top: 50%;
  margin: calc(min(560px, 60vw) / -2) 0 0 calc(min(560px, 60vw) / -2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  filter: blur(50px);
  animation: metrics-glow 16s ease-in-out infinite alternate;
}

.metrics__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 58%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: metrics-sheen 12s ease-in-out infinite;
}

.metrics__in {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metrics__head {
  margin-bottom: var(--section-head-gap);
  width: 100%;
  text-align: center;
}

.metrics__head .h-section {
  color: var(--paper);
  max-width: 12ch;
  margin-inline: auto;
  text-align: center;
}

.metrics .accent {
  color: var(--gold);
}

.metrics .stats.stats--metrics {
  width: min(100%, 1040px);
  margin-inline: auto;
  justify-content: center;
  justify-items: stretch;
}

.stats--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 920px);
  margin-inline: auto;
  justify-content: center;
}

.stats--metrics .stat {
  padding: clamp(1.2rem, 2.2vw, 1.55rem) 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255, 255, 255, 0.05), transparent 55%),
    rgba(255, 255, 255, 0.03);
}

.stats--metrics .stat__i {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(207, 155, 63, 0.12);
  color: var(--gold);
}

.stats--metrics .stat__i svg {
  width: 22px;
  height: 22px;
}

.stats--metrics .stat__n {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--paper);
}

.stats--metrics .stat__l {
  color: rgba(254, 254, 254, 0.78);
  font-size: 0.88rem;
}

@keyframes metrics-glow {
  from { transform: scale(1); opacity: 0.7; }
  to { transform: scale(1.08); opacity: 1; }
}

@keyframes metrics-sheen {
  0%, 100% { background-position: 120% 0; opacity: 0.35; }
  50% { background-position: -20% 0; opacity: 0.8; }
}

@media (prefers-reduced-motion: reduce) {
  .metrics__glow,
  .metrics__sheen {
    animation: none;
  }
}

/* ---------- sobre nós (abas) ---------- */

.about {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--ink);
  padding-block: var(--section-pad-y);
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(207, 155, 63, 0.08), transparent 55%),
    radial-gradient(800px 380px at 92% 110%, rgba(207, 155, 63, 0.05), transparent 50%),
    linear-gradient(180deg, #f7f8fa 0%, #eef0f3 100%);
}

.about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.about__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.about__glow--a {
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  left: -8%;
  top: 10%;
  background: rgba(207, 155, 63, 0.1);
  animation: about-glow 14s ease-in-out infinite alternate;
}

.about__glow--b {
  width: min(460px, 48vw);
  height: min(460px, 48vw);
  right: -6%;
  bottom: 5%;
  background: rgba(20, 20, 20, 0.03);
  animation: about-glow 18s ease-in-out infinite alternate-reverse;
}

.about__grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(20, 20, 20, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 20, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}

@keyframes about-glow {
  from { transform: scale(1) translateY(0); opacity: 0.7; }
  to { transform: scale(1.12) translateY(12px); opacity: 1; }
}

.about__in {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about .accent {
  color: var(--gold);
}

.about__tabs {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.35rem;
  margin-bottom: var(--section-head-gap);
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px -22px rgba(20, 20, 20, 0.28);
}

.about__tab {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.78rem, 1.25vw, 0.92rem);
  padding: 0.72rem clamp(0.85rem, 1.5vw, 1.2rem);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.35s var(--ease);
  white-space: nowrap;
}

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

.about__tab[aria-selected="true"] {
  color: var(--ink);
}

.about__tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.about__tab-ink {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  border-radius: 999px;
  background: var(--grad);
  box-shadow: 0 8px 24px -10px rgba(207, 155, 63, 0.55);
  transition: transform 0.45s var(--ease-out), width 0.45s var(--ease-out), height 0.45s var(--ease-out);
  z-index: 0;
  pointer-events: none;
}

.about__stage {
  width: 100%;
  max-width: 100%;
  position: relative;
  align-self: stretch;
}

.about__pane {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.4rem, 3.5vw, 2.8rem);
  align-items: center;
  min-height: 0;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 24px 64px -36px rgba(20, 20, 20, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.about__pane[hidden] {
  display: none;
}

.about__pane.is-active {
  animation: about-pane-in 0.55s var(--ease-out) both;
}

.about__pane--how {
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}

.about__title--how {
  margin: 0;
  max-width: none;
}

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

.about-how__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1rem 0.9rem 1.05rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 246, 248, 0.72));
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.about-how__col:hover {
  border-color: var(--gold-line);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -22px rgba(20, 20, 20, 0.35);
}

.about-how__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.85rem;
  border-radius: 11px;
  background: var(--gold-tint);
  color: var(--gold-deep);
  border: 1px solid var(--gold-line);
}

.about-how__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.about-how__col h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.25vw, 1.02rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}

.about-how__sub {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
  line-height: 1.35;
}

.about-how__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.about-how__col li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.about-how__col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background:
    radial-gradient(circle at center, var(--gold) 0 35%, transparent 36%),
    transparent;
  box-sizing: border-box;
}

@keyframes about-pane-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(0.4rem, 1.2vw, 0.8rem);
}

.about__title {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  max-width: 14ch;
}

.about__body {
  display: grid;
  gap: 0.85rem;
}

.about__body p {
  margin: 0;
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 52ch;
}

.about__body strong {
  color: var(--ink);
  font-weight: 600;
}

.about__highlights {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
}

.about__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.about__highlights strong {
  color: var(--ink);
  font-weight: 600;
}

.about__hi {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold-deep);
  background: rgba(207, 155, 63, 0.1);
}

.about__hi svg {
  width: 14px;
  height: 14px;
}

.about__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.2rem 0.9rem;
}

.about__list li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.2rem;
  border-bottom: 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.about__list li:last-child {
  border-bottom: 0;
}

.about__list li:hover {
  color: var(--ink);
  transform: translateX(2px);
}

.about__list strong {
  color: var(--ink);
  font-weight: 600;
}

.about__li {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  background: rgba(207, 155, 63, 0.1);
  border: 1px solid rgba(207, 155, 63, 0.22);
}

.about__li svg {
  width: 15px;
  height: 15px;
}

.about__cta {
  margin-top: 1.35rem;
  align-self: flex-start;
  min-width: min(100%, 220px);
  justify-content: center;
}

.about__media {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__shot {
  position: relative;
  margin: 0;
  width: min(100%, clamp(280px, 32vw, 440px));
  aspect-ratio: 1;
  flex: none;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: #e8eaee;
  box-shadow: 0 18px 48px -28px rgba(20, 20, 20, 0.45);
}

.about__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.about__pane.is-active .about__shot img {
  animation: about-shot-in 0.7s var(--ease-out) both;
}

.about__shot:hover img {
  transform: scale(1.04);
}

.about__shot-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.4rem 1.1rem 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(254, 254, 254, 0.92);
  background: linear-gradient(180deg, transparent, rgba(13, 12, 11, 0.72));
}

@keyframes about-shot-in {
  from { transform: scale(1.06); opacity: 0.7; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes about-ph-sheen {
  0%, 100% { background-position: 120% 0; opacity: 0.35; }
  50% { background-position: -20% 0; opacity: 0.9; }
}

@media (max-width: 1100px) {
  .about-how {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about__pane {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about__shot {
    width: min(100%, 360px);
  }

  .about__list {
    grid-template-columns: 1fr;
  }

  .about__title {
    max-width: none;
  }

  .about-how {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .about__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 28rem;
    margin-inline: auto;
    border-radius: 16px;
    gap: 0.3rem;
    padding: 0.4rem;
  }

  .about__tab {
    width: 100%;
    text-align: center;
    padding: 0.7rem 0.45rem;
    font-size: 0.74rem;
    border-radius: 12px;
    white-space: normal;
    line-height: 1.25;
  }

  .about__tab-ink {
    border-radius: 12px;
  }

  .about__pane {
    padding: 1.1rem;
  }

  .about__in {
    align-items: stretch;
  }

  .about__media {
    justify-content: center;
  }

  .about__shot {
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .about__title {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }
}

@media (max-width: 640px) {
  .about__tabs {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about__glow,
  .about__pane.is-active .about__shot img {
    animation: none;
  }

  .about__pane.is-active,
  .about__tab-ink,
  .about__list li,
  .about__shot img {
    animation: none;
    transition: none;
  }
}

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

  .reasons__panel {
    min-height: 260px;
  }

  .reasons__panel h2 {
    max-width: 16ch;
  }
}

/* ---------- oportunidades ---------- */

.opp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}

.opp-item {
  padding: clamp(1.35rem, 2.4vw, 1.7rem);
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.opp-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.opp-item__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(207, 155, 63, 0.12);
  color: var(--gold-deep);
}

.opp-item__mark svg {
  width: 20px;
  height: 20px;
}

.opp-item h3 {
  margin: 1rem 0 0.45rem;
  font-size: 1.08rem;
  color: var(--ink);
}

.opp-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- hub como funciona (logo + cards) ---------- */

.hub {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  padding-block: var(--section-pad-y);
  background: #0d0c0b;
  min-height: 0;
  display: flex;
  align-items: center;
}

.hub .accent {
  color: var(--gold);
}

.hub__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hub__photo {
  position: absolute;
  inset: 0;
  background-image: var(--hub-photo);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: saturate(0.85) brightness(0.45);
}

.hub__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 12, 11, 0.78) 0%, rgba(13, 12, 11, 0.72) 45%, rgba(13, 12, 11, 0.88) 100%),
    radial-gradient(700px 420px at 50% 45%, rgba(13, 12, 11, 0.2), rgba(13, 12, 11, 0.75) 70%);
}

.hub__mesh {
  position: absolute;
  inset: -25%;
  opacity: 0.12;
  background-image:
    repeating-linear-gradient(
      -32deg,
      rgba(255, 255, 255, 0.045) 0 1px,
      transparent 1px 18px
    );
  animation: hub-mesh 26s linear infinite;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, #000 10%, transparent 75%);
}

.hub__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hub__orb--a {
  width: min(480px, 50vw);
  height: min(480px, 50vw);
  top: 10%;
  left: 50%;
  margin-left: calc(min(480px, 50vw) / -2);
  background: rgba(255, 255, 255, 0.045);
  animation: hub-orb-a 18s ease-in-out infinite alternate;
}

.hub__orb--b {
  width: min(360px, 40vw);
  height: min(360px, 40vw);
  bottom: -8%;
  right: 8%;
  background: rgba(255, 255, 255, 0.03);
  animation: hub-orb-b 22s ease-in-out infinite alternate-reverse;
}

.hub__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.028) 50%,
    transparent 58%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: hub-sheen 12s ease-in-out infinite;
}

.hub__in {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hub .section-head {
  margin-bottom: var(--section-head-gap);
  text-align: center;
}

.hub .h-section {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  margin-inline: auto;
  text-align: center;
}

.hub__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(0.9rem, 2.2vh, 1.35rem) clamp(1.1rem, 2.6vw, 1.8rem);
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
}

.hub__card {
  position: relative;
  padding: clamp(1.25rem, 2.4vh, 1.7rem) clamp(1.25rem, 2.2vw, 1.7rem);
  padding-right: 3.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(255, 255, 255, 0.07), transparent 55%),
    rgba(16, 15, 14, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.65);
  min-height: 100%;
  transition: transform 0.35s var(--ease), border-color 0.25s;
}

.hub__card:hover {
  transform: translateY(-4px);
  border-color: rgba(207, 155, 63, 0.35);
}

.hub__card--1 { grid-area: 1 / 1; }
.hub__card--2 { grid-area: 1 / 3; }
.hub__card--3 { grid-area: 2 / 1; }
.hub__card--4 { grid-area: 2 / 3; }

.hub__n {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px -8px rgba(207, 155, 63, 0.7);
}

.hub__card h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.12rem, 1.5vw, 1.28rem);
  color: var(--paper);
  padding-right: 0.5rem;
}

.hub__card p {
  margin: 0;
  font-size: clamp(0.92rem, 1.15vw, 1.02rem);
  line-height: 1.5;
  color: var(--paper-dark-soft);
}

.hub__core {
  grid-area: 1 / 2 / 3 / 3;
  position: relative;
  width: min(230px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.hub__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.hub__ring--a {
  inset: 4%;
  animation: hub-ring-pulse 4.5s ease-in-out infinite;
}

.hub__ring--b {
  inset: -12%;
  border-color: rgba(255, 255, 255, 0.1);
  animation: hub-ring-pulse 6s ease-in-out infinite;
  animation-delay: -1.5s;
}

.hub__ring--c {
  inset: -28%;
  border-color: rgba(207, 155, 63, 0.28);
  animation: hub-ring-pulse 7.5s ease-in-out infinite;
  animation-delay: -3s;
}

.hub__logo {
  position: relative;
  z-index: 1;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(165deg, #2a2825 0%, #141312 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 20px 50px -20px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hub__logo img {
  width: 58%;
  height: auto;
  display: block;
}

.hub__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: clamp(1.6rem, 3.2vh, 2.4rem);
}

.hub__cta .btn--lg {
  padding: 1.05rem 2.1rem;
  font-size: 0.98rem;
}

@keyframes hub-mesh {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-40px, 28px, 0); }
}

@keyframes hub-orb-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(3%, 4%, 0) scale(1.08); }
}

@keyframes hub-orb-b {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-4%, -3%, 0) scale(1.1); }
}

@keyframes hub-sheen {
  0%, 100% { background-position: 120% 0; opacity: 0.35; }
  50% { background-position: -20% 0; opacity: 0.8; }
}

@keyframes hub-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hub > .container {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .hub__mesh,
  .hub__orb,
  .hub__sheen,
  .hub__ring {
    animation: none;
  }
}

@media (max-width: 880px) {
  .hub__stage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    max-width: 480px;
  }

  .hub__card--1,
  .hub__card--2,
  .hub__card--3,
  .hub__card--4,
  .hub__core {
    grid-area: auto;
  }

  .hub__core {
    order: -1;
    width: min(210px, 56vw);
    margin-bottom: 0.6rem;
  }
}

/* ---------- diferenciais (corte diagonal) ---------- */

.diffs {
  position: relative;
  overflow: hidden;
  background: #f7f8fa;
  color: var(--ink);
}

.diffs__media {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(34%, 420px);
  background-image: var(--diffs-photo);
  background-size: cover;
  background-position: 55% 20%;
  clip-path: polygon(0 0, 100% 0, 58% 100%, 0 100%);
  filter: brightness(1.08) saturate(0.9) contrast(1.02);
}

.diffs__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(247, 248, 250, 0.92) 0%, rgba(247, 248, 250, 0.78) 42%, rgba(247, 248, 250, 0.35) 72%, rgba(247, 248, 250, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 50%, rgba(247, 248, 250, 0.3));
}

.diffs__body {
  position: relative;
  z-index: 1;
  padding-block: var(--section-pad-y);
}

.diffs__body > .container {
  padding-inline: var(--page-gutter-x);
}

.diffs__in {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.55fr);
  gap: clamp(2.2rem, 4.5vw, 4rem);
  align-items: center;
}

.diffs__intro {
  position: relative;
  padding: 0.35rem 0.5rem 0.35rem 0;
}

.diffs__label {
  display: inline-block;
  margin-bottom: 1.15rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.diffs__intro h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.9vw, 2.45rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  max-width: 14ch;
  font-weight: 700;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.diffs__intro h2 em {
  font-style: normal;
  color: var(--gold);
}

.diffs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.8rem, 3.4vw, 2.6rem) clamp(1.4rem, 2.6vw, 2.2rem);
}

.diffs__item h3 {
  margin: 0.85rem 0 0.45rem;
  font-size: 1.02rem;
  color: var(--ink);
}

.diffs__item p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.58;
  color: #4a4742;
}

.diffs__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(207, 155, 63, 0.45);
  color: var(--gold-deep);
  display: inline-grid;
  place-items: center;
  background: rgba(207, 155, 63, 0.06);
}

.diffs__icon svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 960px) {
  .diffs__media {
    width: min(42%, 280px);
  }

  .diffs__in {
    grid-template-columns: 1fr;
  }

  .diffs__intro h2 {
    max-width: 18ch;
  }

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

@media (max-width: 640px) {
  .diffs__media {
    position: relative;
    width: 100%;
    height: 180px;
    clip-path: none;
  }

  .diffs__body > .container {
    padding-inline: var(--page-gutter-x);
  }

  .diffs__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- lead band ---------- */

.lead-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
}

.lead-band__copy .h-section {
  max-width: 18ch;
}

.lead-band__copy .lead {
  margin-top: 1rem;
  max-width: 42ch;
}

.lead-form {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  position: relative;
}

.lead-form .field label {
  color: rgba(254, 254, 254, 0.82);
}

.lead-form .field input {
  background: #fff;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  padding: 0.95rem 1.1rem;
  box-shadow: none;
}

.lead-form .field input::placeholder {
  color: rgba(20, 20, 20, 0.38);
}

.lead-form .field input:focus {
  border-color: transparent;
  outline: none;
  box-shadow: 0 0 0 3px rgba(207, 155, 63, 0.28);
}

.lead-form .btn {
  width: 100%;
  margin-top: 0.2rem;
  border-radius: 10px;
}

.lead-form__risk {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(254, 254, 254, 0.7);
  cursor: pointer;
}

.lead-form__risk input {
  flex: none;
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  accent-color: var(--gold);
}

.lead-form__aside {
  margin: 0.15rem 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(254, 254, 254, 0.62);
  text-align: center;
}

.lead-form__aside a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-form__aside a:hover {
  color: #e0b96a;
}

.lead-form__hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lead-form__status {
  margin: 0.35rem 0 0;
  min-height: 1.35em;
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.72);
}

.lead-form__status.is-pending {
  color: rgba(254, 254, 254, 0.72);
}

.lead-form__status.is-success {
  color: #d9ac50;
}

.lead-form__status.is-error {
  color: #f0a8a8;
}

@media (max-width: 960px) {
  .lead-band {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 600px) {
  .opp-grid,
  .stats--metrics,
  .stats.stats--3,
  .stats--metrics.stats--3 {
    grid-template-columns: 1fr;
  }
}

/* ---------- stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.6vw, 2rem);
  text-align: center;
}

.stats.stats--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 920px);
  margin-inline: auto;
}

.stat {
  padding: clamp(0.5rem, 1.5vw, 1rem);
}

@media (min-width: 881px) {
  /* removed border to create negative space and cleaner look */
}

.stat__i {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.stat__i svg {
  width: 30px;
  height: 30px;
}

.stat__n {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.2vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--paper);
  line-height: 1;
}

.stat__n em {
  font-style: normal;
  color: var(--gold);
}

.stat__l {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  color: var(--paper-dark-soft);
}

/* ---------- cards ---------- */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.9rem, 1.8vw, 1.3rem);
}

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.6vw, 2rem);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  color: var(--ink);
}

.section--cream .card {
  background: var(--paper);
  box-shadow: 0 8px 30px -20px rgba(20, 20, 20, 0.14);
}

.section--white .card {
  background: var(--paper);
  border-color: rgba(28, 27, 25, 0.1);
  box-shadow: 0 8px 30px -20px rgba(20, 20, 20, 0.08);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  font-size: 1.18rem;
  margin: 1.3rem 0 0.5rem;
  color: var(--ink);
}

.card p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  margin: 0;
}

.card .link-arrow {
  margin-top: 1.1rem;
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-tint);
  color: var(--gold-deep);
}

.icon-badge svg {
  width: 22px;
  height: 22px;
}

.section--dark .card {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(255, 255, 255, 0.05), transparent 55%),
    linear-gradient(160deg, #252320 0%, #1a1917 100%);
  border-color: rgba(254, 254, 254, 0.08);
  box-shadow: none;
  color: var(--paper);
}

.section--dark .card h3 {
  color: var(--paper);
}

.section--dark .card p,
.section--graphite .card p {
  color: var(--paper-dark-soft);
}

.section--dark .card:hover {
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8);
}

.section--dark .icon-badge {
  background: rgba(207, 155, 63, 0.12);
  color: var(--gold);
}

/* ---------- oferta cards ---------- */

.offer-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 14px 44px -26px rgba(20, 20, 20, 0.22);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.offer-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.offer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.offer-card:hover .offer-card__media img {
  transform: scale(1.045);
}

.offer-card__media .tag {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  background: rgba(254, 254, 254, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.offer-card__body {
  padding: 1.7rem 1.8rem 1.9rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-card__code {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}

.offer-card__body h3 {
  font-size: 1.35rem;
  margin: 0 0 0.55rem;
}

.offer-card__body p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin: 0 0 1.2rem;
  flex: 1;
}

.offer-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
  color: var(--ink-soft);
}

.offer-card__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.86rem;
  color: var(--ink);
  font-weight: 600;
}

.offer-card__meta .link-arrow {
  font-size: 0.88rem;
}

/* ---------- timeline ---------- */

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.4rem;
  padding-bottom: 2.4rem;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 8px;
  width: 0;
  border-left: 1.5px dashed var(--gold-line);
}

.timeline li:last-child::before {
  display: none;
}

.timeline__n {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.section--dark .timeline__n {
  background: var(--gold);
  color: var(--ink);
}

.timeline__n svg {
  width: 22px;
  height: 22px;
}

.timeline h3 {
  font-size: 1.15rem;
  margin: 0.35rem 0 0.4rem;
}

.timeline p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 52ch;
}

.section--dark .timeline p,
.section--graphite .timeline p {
  color: var(--paper-dark-soft);
}

.section--dark .timeline li::before {
  border-color: rgba(207, 155, 63, 0.4);
}

/* ---------- camadas (como investimos) ---------- */

.layers {
  counter-reset: layer;
  display: grid;
  gap: 1rem;
}

.layer {
  counter-increment: layer;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
  background: var(--cream);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.layer:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.layer::before {
  content: "0" counter(layer);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
  padding-top: 0.2rem;
}

.layer h3 {
  font-size: 1.25rem;
  margin: 0 0 0.45rem;
}

.layer p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 62ch;
}

/* ---------- checklist ---------- */

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

.checklist li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--ink-soft);
}

.checklist svg {
  width: 21px;
  height: 21px;
  color: var(--gold-deep);
  flex: none;
  margin-top: 0.2rem;
}

.section--dark .checklist li,
.section--graphite .checklist li,
.section--night .checklist li {
  color: rgba(254, 254, 254, 0.88);
}

.section--dark .checklist svg,
.section--graphite .checklist svg,
.section--night .checklist svg {
  color: var(--gold);
}

/* ---------- split ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  filter: grayscale(85%) contrast(1.15) brightness(0.9);
  transition: filter 0.8s var(--ease);
}

.split__media img:hover {
  filter: grayscale(0%) contrast(1) brightness(1);
}

.split__media--framed {
  position: relative;
}

/* ---------- plataforma (dark app showcase) ---------- */

.platform__shots {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  align-items: start;
}

.platform__shots img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.85);
}

.platform__shots img:nth-child(2) {
  margin-top: 2.8rem;
}

/* ---------- tabela comparativa ---------- */

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 30px -20px rgba(20, 20, 20, 0.14);
}

.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: 0.94rem;
}

.compare th,
.compare td {
  text-align: left;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare thead th {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream);
}

.compare tbody tr:last-child td {
  border-bottom: none;
}

.compare td:first-child {
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.compare td {
  color: var(--ink-soft);
}

/* ---------- accordion / FAQ ---------- */

.faq__group {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--gold-deep);
}

.section-head .faq__group {
  margin-bottom: 0.55rem;
}

.faq {
  display: grid;
  gap: 0.8rem;
}

.faq details {
  background: var(--cream);
  border-radius: 16px;
  transition: box-shadow 0.3s, background-color 0.25s;
}

.section--cream .faq details {
  background: var(--paper);
  box-shadow: 0 8px 30px -20px rgba(20, 20, 20, 0.14);
}

.faq details[open] {
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}

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

.faq summary::after {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--gold-deep);
  border-bottom: 2px solid var(--gold-deep);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
  margin-top: -4px;
}

.faq details[open] summary::after {
  transform: rotate(225deg);
  margin-top: 6px;
}

.faq .faq__a {
  padding: 0 1.5rem 1.4rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 72ch;
}

.faq .faq__a p {
  margin: 0;
}

/* ---------- glossário ---------- */

.gloss {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.gloss dl {
  margin: 0;
  background: var(--cream);
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  height: auto;
  min-height: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.gloss dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  overflow-wrap: anywhere;
}

.gloss dt::before {
  content: "— ";
  color: var(--gold);
}

.gloss dd {
  margin: 0;
  font-size: 0.93rem;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
  word-break: break-word;
  flex: 1;
}

/* ---------- formulário ---------- */

.form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
}

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

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

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

.field label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s, background-color 0.2s;
  width: 100%;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: var(--paper);
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-top: 1rem;
}

/* ---------- canais de contato ---------- */

.channel {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.channel small {
  color: var(--ink-mute);
  font-size: 0.82rem;
  margin-top: auto;
  padding-top: 0.8rem;
}

/* ---------- CTA final ---------- */

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  background:
    radial-gradient(620px 420px at 0% 100%, rgba(255, 255, 255, 0.05), transparent 55%),
    linear-gradient(135deg, #1f1e1c 0%, #141312 48%, #0f0e0d 100%);
  color: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-panel__body {
  position: relative;
  z-index: 1;
  padding: clamp(2.4rem, 5vw, 4.5rem);
  align-self: center;
}

.cta-panel::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -200px;
  bottom: -300px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-panel h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  max-width: 20ch;
}

.cta-panel .lead {
  color: var(--paper-dark-soft);
  max-width: 46ch;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.cta-panel__media {
  position: relative;
  min-height: 300px;
}

.cta-panel__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-panel__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #141312 0%, rgba(20, 20, 20, 0) 34%);
}

@media (max-width: 880px) {
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel__media {
    order: -1;
    min-height: 220px;
  }

  .cta-panel__media::before {
    background: linear-gradient(0deg, var(--ink) 0%, rgba(20, 20, 20, 0) 45%);
  }
}

/* ---------- footer ---------- */

.footer {
  background: #0d0c0b;
  color: rgba(254, 254, 254, 0.78);
  padding: clamp(2.6rem, 5vw, 3.8rem) 0 clamp(1.8rem, 3vw, 2.4rem);
  border-top: 1px solid rgba(254, 254, 254, 0.18);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) repeat(2, minmax(0, 1fr)) minmax(180px, 1.35fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
  padding-bottom: clamp(2rem, 3.5vw, 2.8rem);
}

.footer__logo {
  width: min(148px, 100%);
  height: auto;
  display: block;
}

.footer__brand .wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--paper);
  text-decoration: none;
  display: inline-block;
  line-height: 1.1;
}

.footer__brand .wordmark em {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.34em;
  color: var(--gold);
  text-transform: lowercase;
}

.footer__brand p {
  font-size: 0.92rem;
  margin-top: 1.2rem;
  max-width: 34ch;
}

.footer h4 {
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

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

.footer a {
  color: rgba(254, 254, 254, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer__meta {
  display: grid;
  gap: 1.1rem;
  justify-items: start;
}

.footer__company {
  display: grid;
  gap: 0.25rem;
  max-width: 36ch;
}

.footer__company p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(254, 254, 254, 0.72);
}

.footer__company strong {
  color: rgba(254, 254, 254, 0.88);
  font-weight: 600;
}

.footer__address {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(254, 254, 254, 0.72);
  max-width: 36ch;
}

.footer__social {
  display: flex;
  gap: 0.55rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(254, 254, 254, 0.22);
  border-radius: 6px;
  color: var(--paper);
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(207, 155, 63, 0.08);
}

.footer__social svg {
  width: 15px;
  height: 15px;
}

.footer__contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.94rem;
}

.footer__contact svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex: none;
  margin-top: 0.25rem;
}

.footer__legal {
  margin-top: 0;
  padding-top: clamp(1.4rem, 2.8vw, 2rem);
  border-top: 1px solid rgba(254, 254, 254, 0.12);
  display: grid;
  gap: 1rem;
  font-size: 0.72rem;
  line-height: 1.65;
  color: rgba(254, 254, 254, 0.48);
  text-align: center;
}

.footer__legal p {
  margin: 0 auto;
  max-width: 92ch;
}

.footer__legal .footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 2rem;
}

/* ---------- disclaimer ---------- */

.note {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: rgba(217, 172, 74, 0.08);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.note svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: none;
  margin-top: 0.2rem;
}

/* ---------- reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--scale {
  transform: scale(0.94);
}

.reveal--fade {
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- whatsapp flutuante ---------- */

.wa-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 55;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -10px rgba(37, 211, 102, 0.55);
  transition: transform 0.3s var(--ease), background-color 0.25s, box-shadow 0.25s;
}

.wa-fab:hover {
  transform: translateY(-3px) scale(1.05);
  background: #1ebe57;
  color: #fff;
  box-shadow: 0 16px 32px -10px rgba(37, 211, 102, 0.65);
}

.wa-fab svg {
  width: 26px;
  height: 26px;
}

/* ---------- 404 ---------- */

.page-404 {
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: var(--header-h);
}

.page-404 .display em {
  font-style: normal;
  color: var(--gold);
}

/* ---------- responsivo ---------- */

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand,
  .footer__meta {
    grid-column: 1 / -1;
  }

  .footer__address {
    max-width: 48ch;
  }
}

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

@media (max-width: 880px) {
  .hero__grid,
  .page-hero__grid,
  .split {
    grid-template-columns: 1fr;
  }

  .split--media-first .split__media {
    order: -1;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .gloss {
    grid-template-columns: 1fr;
  }

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

  .layer {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .platform__shots img:nth-child(2) {
    margin-top: 0;
  }
}

/* ============================================================
   Componentes estilo Zuvia (adaptados à paleta BAUEN)
   ============================================================ */

/* ---------- step cards (Como funciona) ---------- */

/* home: como-funciona usa .section--graphite; páginas internas podem overlayar */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
}

.step-card {
  position: relative;
  border-top: 1px solid rgba(254, 254, 254, 0.08);
  padding: clamp(1.7rem, 3vw, 2.2rem) 0;
  transition: transform 0.6s var(--ease), opacity 0.4s;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-card__n {
  position: absolute;
  top: 1.1rem;
  right: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--paper-dark-soft);
}

.step-card h3 {
  font-size: 1.16rem;
  margin: 1.3rem 0 0.5rem;
  color: var(--paper);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--paper-dark-soft);
  margin: 0;
}

.step-card .icon-badge {
  background: rgba(254, 254, 254, 0.05);
  color: var(--paper);
  border-radius: 12px;
}

/* ---------- Soluções (Grid aberto, sem cards) ---------- */

.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.5rem, 4vw, 4rem) clamp(2rem, 3.5vw, 3rem);
}

@media (max-width: 960px) {
  .sol-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.sol-item {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.sol-item h3 {
  font-size: 1.2rem;
  margin: 1.4rem 0 0.8rem;
  color: var(--paper);
}

.sol-item p {
  font-size: 0.98rem;
  color: var(--paper-dark-soft);
  margin-bottom: 1.2rem;
}

.sol-item .icon-badge {
  background: rgba(254, 254, 254, 0.05);
  color: var(--paper);
  border-radius: 12px;
}

.section--cream .sol-item h3,
.section--white .sol-item h3,
.section--soft .sol-item h3 {
  color: var(--ink);
}

.section--cream .sol-item p,
.section--white .sol-item p,
.section--soft .sol-item p {
  color: var(--ink-soft);
}

.section--cream .sol-item .icon-badge,
.section--white .sol-item .icon-badge,
.section--soft .sol-item .icon-badge {
  background: var(--gold-tint);
  color: var(--gold-deep);
}

.sol-item .link-arrow {
  margin-top: auto;
}

.sol-item--soon h3,
.sol-item--soon p {
  color: var(--ink-soft);
}
.sol-item--soon .icon-badge {
  color: var(--ink-soft);
  background: rgba(254, 254, 254, 0.02);
}

/* ---------- tabs (Seja Consultor) ---------- */

.tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.35rem;
  border: 1.5px solid transparent;
  border-radius: 6px;
  background: linear-gradient(var(--ink-2), var(--ink-2)) padding-box, var(--grad) border-box;
}

.tabs button {
  border: 0;
  background: transparent;
  color: var(--paper-dark-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.68rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.2s, background-color 0.3s;
}

.tabs button:hover {
  color: var(--paper);
}

.tabs button[aria-selected="true"] {
  background: var(--grad);
  color: var(--ink);
}

.tabs-head {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
  animation: panel-in 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .tab-panel.is-active {
    animation: none;
  }
}

/* passos numerados (Seja Consultor) */

.partner-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}

.partner-steps li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.partner-steps .icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: none;
  border: 1.5px solid transparent;
  background: linear-gradient(var(--ink), var(--ink)) padding-box, var(--grad) border-box;
  color: var(--gold);
}

.partner-steps h3 {
  font-size: 1.08rem;
  margin: 0.35rem 0 0.3rem;
  color: var(--paper);
}

.partner-steps p {
  font-size: 0.95rem;
  color: var(--paper-dark-soft);
  margin: 0;
  max-width: 52ch;
}

/* ---------- newsletter ---------- */

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

.newsletter h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--paper);
  max-width: 22ch;
}

.newsletter p {
  color: var(--paper-dark-soft);
  margin: 0;
  max-width: 48ch;
}

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

.newsletter__form input {
  flex: 1;
  min-width: 220px;
  font: inherit;
  font-size: 0.96rem;
  color: var(--paper);
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1.5px solid var(--line-dark);
  background: rgba(254, 254, 254, 0.05);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter__form input::placeholder {
  color: rgba(254, 254, 254, 0.38);
}

.newsletter__form input:focus {
  border-color: var(--gold);
}

.newsletter__form input:disabled,
.newsletter__form .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.newsletter__form .btn {
  border: 0;
}

.newsletter__note {
  width: 100%;
  font-size: 0.82rem;
  color: rgba(254, 254, 254, 0.42);
  margin-top: 0.4rem;
}

/* ---------- simulador ---------- */

.section--sim {
  padding-block: var(--section-pad-y);
}

.section-head--sim {
  margin-bottom: var(--section-head-gap);
}

.section-head--sim .kicker {
  margin-bottom: 0.7rem;
}

.sim-stack {
  display: grid;
  gap: 0.85rem;
}

.sim-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.4rem, 2.5vw, 2rem);
}

.sim-panel.form-card {
  margin-bottom: 0;
  padding: clamp(1rem, 1.8vw, 1.35rem) clamp(1.1rem, 2vw, 1.5rem);
  border-radius: 16px;
}

.sim-controls--row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: end;
}

.sim-oferta .tabs {
  width: max-content;
}

/* simulador na home: fundo claro — tabs claras (não o estilo dark de Seja Consultor) */
.section--sim .tabs {
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 20px -16px rgba(20, 20, 20, 0.28);
}

.section--sim .tabs button {
  color: var(--ink-soft);
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
}

.section--sim .tabs button:hover {
  color: var(--ink);
  background: rgba(20, 20, 20, 0.04);
}

.section--sim .tabs button[aria-selected="true"] {
  background: var(--grad);
  color: var(--ink);
  box-shadow: 0 6px 16px -10px rgba(207, 155, 63, 0.55);
}

.section--sim .tabs button[aria-selected="true"]:hover {
  color: var(--ink);
  background: var(--grad);
}

.sim-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.sim-label small {
  font-weight: 500;
  color: var(--ink-soft);
}

.sim-slider__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.sim-value {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--gold-deep);
}

.sim-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) var(--fill, 0%), var(--cream-2) var(--fill, 0%));
  outline: none;
  cursor: pointer;
  margin-top: 0.25rem;
}

.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--gold);
  box-shadow: 0 2px 10px rgba(207, 155, 63, 0.45);
}

.sim-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--gold);
}

.sim-range:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.sim-slider__minmax {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 0.35rem;
}

.sim-meta {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0.85rem 0 0;
  padding: 0.75rem 0 0;
  border-top: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: thin;
}

.sim-meta .tag {
  flex: none;
  white-space: nowrap;
  font-size: 0.58rem;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  color: #7a5f1f;
  background: rgba(217, 172, 74, 0.18);
}

.sim-cards--3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.sim-cards--3 .card {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  min-width: 0;
}

.sim-cards__highlight {
  border-color: var(--gold-line);
  box-shadow: 0 0 0 1px rgba(207, 155, 63, 0.12);
}

.sim-card__l {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.sim-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0.4rem 0 0.25rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}

.sim-num--gold {
  color: var(--gold-deep);
}

.sim-cards small {
  font-size: 0.72rem;
  color: var(--ink-soft);
  line-height: 1.35;
  display: block;
}

.sim-chart {
  padding: 1rem 1.1rem 1.1rem;
  border-radius: 16px;
  margin: 0;
}

.sim-chart__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.2rem;
  margin-bottom: 0.7rem;
}

.sim-chart h3 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}

.sim-chart__legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  margin: 0;
  padding: 0;
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.sim-chart__legend .dot {
  display: inline-block;
  width: 10px;
  height: 3px;
  border-radius: 2px;
  margin-right: 0.4rem;
  vertical-align: middle;
}

.dot--bauen { background: var(--gold); height: 3px; width: 14px; }
.dot--cdb { background: rgba(85, 82, 76, 0.55); }
.dot--poupanca { background: rgba(133, 129, 122, 0.55); }

.sim-chart__area {
  position: relative;
  height: clamp(200px, 26vh, 280px);
}

.note--compact {
  margin: 0;
  padding: 0.75rem 0.95rem;
  font-size: 0.8rem;
  line-height: 1.45;
}

@media (max-height: 900px) {
  .section--sim {
    padding-block: clamp(1.4rem, 3vh, 2.2rem);
  }

  .section-head--sim {
    margin-bottom: 0.7rem;
  }

  .section-head--sim .h-section {
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  }

  .sim-stack {
    gap: 0.7rem;
  }

  .sim-chart__area {
    height: clamp(160px, 22vh, 230px);
  }

  .sim-meta {
    margin-top: 0.65rem;
    padding-top: 0.55rem;
  }
}

@media (max-width: 880px) {
  .sim-controls--row {
    grid-template-columns: 1fr;
  }

  .section--sim .sim-oferta .tabs,
  .section--sim .tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .section--sim .tabs button {
    width: 100%;
    text-align: center;
    padding-inline: 0.75rem;
  }

  .sim-cards--3 {
    grid-template-columns: 1fr;
  }

  .sim-meta {
    flex-wrap: wrap;
  }

  .sim-chart__area {
    height: 220px;
  }
}

/* ---------- responsivo (novos componentes) ---------- */

@media (max-width: 1100px) and (min-width: 961px) {
  .nav {
    gap: 0.55rem;
  }
  .nav a:not(.btn):not(.nav__login):not(.nav__account) {
    font-size: 0.78rem;
  }
  .nav__actions {
    gap: 0.45rem;
    margin-left: 0.35rem;
    padding-left: 0.6rem;
  }
  .nav__login {
    font-size: 0.74rem;
  }
  .nav__account {
    padding: 0.55rem 0.9rem;
    font-size: 0.72rem;
  }
  .nav .btn {
    padding: 0.55rem 0.95rem;
    font-size: 0.74rem;
  }
}

@media (max-width: 1024px) {
  .sol-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (max-width: 640px) {
  .sol-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .tabs {
    border-radius: 6px;
    width: 100%;
  }

  .tabs button {
    flex: 1;
    padding-inline: 1rem;
  }
}

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

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero__actions .btn,
  .cta-panel__actions .btn {
    width: 100%;
  }

  .hero__float--pro1 {
    left: 0.5rem;
    top: auto;
    bottom: 0.75rem;
    width: 132px;
  }

  .hero__float--pro2 {
    right: 0.5rem;
    top: auto;
    bottom: 0.75rem;
    width: 126px;
  }
}

/* =========================================
   BLOG V2 (ELEGANCE / EDITORIAL)
   ========================================= */

/* Hero Banner */
.blog-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 13rem 0 6rem;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
}
.blog-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,12,12,0.95) 0%, rgba(13,12,12,0.4) 100%);
}
.blog-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.blog-hero__content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
}

/* Navigation Pills */
.blog-nav-pills {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.blog-nav-pills a {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: all var(--ease);
}
.blog-nav-pills a:hover {
  color: var(--paper);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
.blog-nav-pills a.is-active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
  font-weight: 600;
}

/* Destaque (Fundo Escuro) */
.blog-lead {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  background: var(--ink-3);
  padding: 3.5rem;
  border-radius: 24px;
  border: 1px solid rgba(254,254,254,0.06);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.blog-lead:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
@media (max-width: 900px) {
  .blog-lead {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}
.blog-lead__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.blog-tag {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.blog-lead__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.blog-lead__excerpt {
  font-size: 1.05rem;
  color: var(--paper-dark-soft);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.blog-author-minimal {
  font-size: 0.85rem;
  color: var(--paper-dark-soft);
}
.blog-lead__media {
  overflow: hidden;
  border-radius: 16px;
}
.blog-lead__media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 1.2s var(--ease);
}
.blog-lead:hover .blog-lead__media img {
  transform: scale(1.03);
}

/* Grid de Artigos (Fundo Branco Limpo) */
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}
.blog-list--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 992px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
}

.blog-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  padding: 1.25rem;
  border: 1px solid rgba(20, 20, 20, 0.05);
  box-shadow: 0 4px 20px rgba(20, 20, 20, 0.02);
}
.blog-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(20, 20, 20, 0.08);
  border-color: rgba(207, 155, 63, 0.25);
}
.blog-item__img {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.blog-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.blog-item:hover .blog-item__img img {
  transform: scale(1.03);
}
.blog-item__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-meta-minimal {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.blog-item__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.35;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.blog-item__title a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--ease);
}
.blog-item:hover .blog-item__title a {
  color: var(--gold-deep);
}
.blog-item__date {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-top: auto;
}

/* Utils and Header Adjustments */
.header--transparent:not(.is-scrolled) {
  position: fixed;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

.header--transparent:not(.is-scrolled) .nav a:not(.btn):not(.nav__login):not(.nav__account) {
  color: rgba(254, 254, 254, 0.88);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.header--dark-text:not(.is-scrolled) {
  position: absolute;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}
.header--dark-text.is-scrolled {
  background: rgba(254, 254, 254, 0.96);
  border-color: rgba(20, 20, 20, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.header--dark-text .header__logo img {
  filter: none;
}
.header--dark-text .nav a:not(.btn):not(.nav__login):not(.nav__account) {
  color: var(--ink);
}
.header--dark-text .nav a:not(.btn):not(.nav__login):not(.nav__account):hover {
  color: var(--gold-deep);
}
.header--dark-text .nav__actions {
  border-left-color: rgba(20, 20, 20, 0.12);
}
.header--dark-text .nav__login {
  color: rgba(20, 20, 20, 0.72);
}
.header--dark-text .nav__login:hover {
  color: var(--ink);
}
.header--dark-text .nav__login svg {
  color: var(--gold-deep);
}
.header--dark-text .nav__account {
  border-color: rgba(169, 123, 40, 0.4);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.header--dark-text .nav__account:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  background: rgba(207, 155, 63, 0.08);
}

/* Article Individual Page V2 */
.article-page-v2 {
  background: #fafaf9; /* Warm editorial background */
  color: var(--ink);
}
.container--article-v2 {
  max-width: 780px;
  padding-inline: 1.5rem;
}
.article-v2__header {
  padding-top: 13rem;
  padding-bottom: 3.5rem;
  text-align: center;
}
.article-v2__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.article-v2__author-line {
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.article-v2__author-line strong {
  color: var(--ink);
}
.article-v2__cover {
  margin: 0 0 4rem;
}
.article-v2__cover img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.article-v2__content {
  font-size: 1.2rem;
  line-height: 1.85;
  color: rgba(20,20,20,0.85); /* Highly readable ink soft */
  margin: 0 auto;
}
.article-v2__content p {
  margin-bottom: 1.85rem;
}
.article-v2__content p.lead {
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 3rem;
  line-height: 1.7;
  font-family: var(--font-body);
}
.article-v2__content h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--ink);
  margin: 3.5rem 0 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.article-v2__content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
  font-weight: 700;
}
.article-v2__content blockquote {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.6;
  color: var(--gold-deep);
  margin: 3.5rem 0;
  padding-left: 2rem;
  border-left: 3px solid var(--gold);
  font-style: italic;
  font-weight: 500;
}
.article-v2__content figure {
  margin: 3.5rem 0;
}
.article-v2__content figure img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.article-v2__content figcaption {
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 0.75rem;
}

.is-white {
  background: #fafaf9 !important;
}

/* ---------- Header minimal (LP) ---------- */
.header--minimal .nav {
  display: flex !important;
  position: static !important;
  inset: auto !important;
  height: auto !important;
  width: auto !important;
  padding: 0 !important;
  background: transparent !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  opacity: 1 !important;
  pointer-events: auto !important;
  z-index: 1 !important;
  transform: none !important;
  box-shadow: none !important;
}

.header--minimal .nav__actions {
  margin: 0 !important;
  padding: 0 !important;
  border-left: none !important;
  width: auto !important;
  flex-direction: row !important;
  gap: 0;
}

.header--minimal .nav .btn {
  width: auto !important;
  margin: 0 !important;
}

.header--minimal .nav-toggle {
  display: none !important;
}

.header--minimal .header__in {
  justify-content: space-between;
}

@media (max-width: 520px) {
  .header--minimal .nav__cta {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }
}

/* ---------- Landing page (/lp) ---------- */
.lp-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem)) 0 clamp(3.5rem, 7vw, 5.5rem);
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 88% 12%, rgba(217, 172, 74, 0.12), transparent 55%),
    radial-gradient(700px 420px at 8% 88%, rgba(20, 20, 20, 0.04), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 55%, var(--cream-2) 100%);
}

.lp-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 20, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 20, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
  pointer-events: none;
}

.lp-hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.lp-hero__brand {
  display: block;
  margin-bottom: 1.35rem;
  line-height: 0;
}

.lp-hero__brand img {
  height: clamp(40px, 5vw, 52px);
  width: auto;
}

.lp-hero .display {
  max-width: 12ch;
}

.lp-hero .lead {
  margin-top: 1.15rem;
  max-width: 36ch;
}

.lp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.lp-mock {
  position: relative;
}

.lp-mock__glow {
  position: absolute;
  inset: 12% -6% -8%;
  background: radial-gradient(ellipse at center, var(--gold-glow), transparent 65%);
  filter: blur(36px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.lp-mock__frame {
  position: relative;
  z-index: 1;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.1rem;
  animation: lp-float 7s ease-in-out infinite;
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.lp-mock__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.lp-mock__dots {
  display: flex;
  gap: 6px;
}

.lp-mock__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-2);
}

.lp-mock__dots span:nth-child(1) { background: #c4a35a; }
.lp-mock__dots span:nth-child(2) { background: #d9ac4a; }
.lp-mock__dots span:nth-child(3) { background: #e8c272; }

.lp-mock__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
}

.lp-mock__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.lp-mock__kpi {
  background: linear-gradient(160deg, var(--cream), var(--paper));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
}

.lp-mock__kpi small {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.25rem;
}

.lp-mock__kpi strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.lp-mock__kpi em {
  display: block;
  margin-top: 0.15rem;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  color: #2f8f6b;
}

.lp-mock__body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.6rem;
}

.lp-mock__chart {
  background: var(--dark-grad-deep);
  border-radius: 14px;
  padding: 1rem;
  color: var(--paper);
  min-height: 150px;
  position: relative;
  overflow: hidden;
}

.lp-mock__chart small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.65;
}

.lp-mock__chart strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-top: 0.15rem;
  letter-spacing: -0.02em;
}

.lp-mock__chart svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 68%;
}

.lp-mock__side {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.lp-mock__mini {
  flex: 1;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem;
}

.lp-mock__mini-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.lp-mock__bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
}

.lp-mock__bars span {
  flex: 1;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, var(--gold), rgba(217, 172, 74, 0.35));
}

.lp-mock__table {
  margin-top: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.lp-mock__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  font-size: 0.72rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.lp-mock__row:last-child { border-bottom: none; }

.lp-mock__row--head {
  background: var(--cream);
  font-weight: 600;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.62rem;
}

.lp-mock__status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: #2f8f6b;
}

.lp-mock__status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.lp-mock__float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(254, 254, 254, 0.94);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem 0.95rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  animation: lp-float 6s ease-in-out infinite;
}

.lp-mock__float--a { top: -0.75rem; left: -1rem; animation-delay: -1s; }
.lp-mock__float--b { bottom: 2rem; right: -1rem; animation-delay: -3s; }

.lp-mock__float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--gold-tint);
  color: var(--gold-deep);
  flex: none;
}

.lp-mock__float-icon svg { width: 18px; height: 18px; }

.lp-mock__float small {
  display: block;
  font-size: 0.65rem;
  color: var(--ink-mute);
  font-weight: 500;
}

.lp-mock__float strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.lp-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--cream), var(--paper));
  border: 1px solid var(--line);
  color: var(--ink);
  margin-bottom: 1.15rem;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.lp-icon svg { width: 22px; height: 22px; }

.card:hover .lp-icon {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold);
}

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

.lp-platform__screen {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.lp-platform__bar {
  display: flex;
  align-items: center;
  padding: 0.85rem 1.1rem;
  background: var(--ink);
}

.lp-platform__bar img {
  height: 26px;
  width: auto;
}

.lp-platform__body { padding: 1.15rem; }

.lp-platform__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.lp-platform__stat {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem;
}

.lp-platform__stat span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

.lp-platform__stat strong {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.lp-platform__graph {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem;
  height: 130px;
  background: linear-gradient(180deg, rgba(217, 172, 74, 0.1), transparent);
}

.lp-platform__graph svg {
  width: 100%;
  height: 100%;
}

.lp-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.lp-feature {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s var(--ease);
}

.lp-feature:hover {
  background: var(--paper);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.lp-feature__n {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-deep);
  width: 28px;
  flex: none;
  padding-top: 0.15rem;
}

.lp-feature h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 0.3rem;
}

.lp-feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.lp-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.lp-steps__line {
  position: absolute;
  top: 28px;
  left: calc(16.66% + 14px);
  right: calc(16.66% + 14px);
  height: 2px;
  background: linear-gradient(90deg, var(--cream-2), var(--gold), var(--cream-2));
  z-index: 0;
}

.lp-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.lp-step__node {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 16px;
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.lp-step:hover .lp-step__node {
  transform: scale(1.05);
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold);
}

.lp-step__node svg { width: 22px; height: 22px; }

.lp-step__label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.45rem;
}

.lp-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.45rem;
}

.lp-step p {
  margin: 0 auto;
  max-width: 28ch;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.lp-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
}

.lp-benefit .lp-icon {
  margin-bottom: 0;
  background: linear-gradient(145deg, var(--ink), var(--ink-2));
  border-color: var(--ink);
  color: var(--gold);
}

.lp-benefit h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
}

.lp-benefit p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.lp-diff .lp-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  margin-bottom: 1rem;
}

.lp-diff .lp-icon svg { width: 18px; height: 18px; }

.lp-diff h3 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  letter-spacing: -0.015em;
}

.lp-diff p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.lp-quote {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lp-quote__stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.lp-quote__stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.lp-quote__text {
  flex: 1;
  margin: 0 0 1.35rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(254, 254, 254, 0.78);
}

.lp-quote__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-quote__avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--ink-2), var(--ink-3));
  border: 1px solid rgba(254, 254, 254, 0.12);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
}

.lp-quote__author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.lp-quote__author small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  color: rgba(254, 254, 254, 0.45);
}

.lp-faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 1024px) {
  .lp-hero__layout,
  .lp-platform,
  .lp-faq-layout {
    grid-template-columns: 1fr;
  }

  .lp-mock__float { display: none; }
}

@media (max-width: 768px) {
  .lp-hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-hero__ctas .btn { width: 100%; justify-content: center; }

  .lp-mock__kpis,
  .lp-mock__body {
    grid-template-columns: 1fr;
  }

  .lp-steps {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .lp-steps__line {
    top: 0;
    bottom: 0;
    left: 27px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--cream-2), var(--gold), var(--cream-2));
  }

  .lp-step {
    text-align: left;
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 1.1rem;
  }

  .lp-step__node {
    margin: 0;
    grid-row: 1 / 4;
  }

  .lp-step p { margin: 0; max-width: none; }
}
