    /* ── TOKENS ──────────────────────────────────────────────── */
    :root {
      --marrom:    #4D3920;
      --marrom-lt: #826A4D;
      --marrom-dk: #362816;
      --dourado:   #CE9D62;
      --dourado-lt:#E2C29B;
      --dourado-dk:#A57F4F;
      --castanho:  #7E6950;
      --marfim:    #E8E6DF;
      --marfim-lt: #F6F5F3;
      --marfim-dk: #D1CFCB;
      --preto:     #1B1814;
      --preto-lt:  #60594F;

      --serif: 'Source Serif 4', Georgia, serif;
      --sans:  'Albert Sans', system-ui, sans-serif;

      --max: 1200px;
      --gap: clamp(1.5rem, 4vw, 3rem);

      /* iOS-fluid easings — Apple WebKit-style spring physics */
      --ease-out-ios:  cubic-bezier(0.32, 0.72, 0, 1);
      --ease-soft-ios: cubic-bezier(0.4, 0, 0.2, 1);
      --ease-spring:   linear(
        0, 0.0014, 0.0054, 0.0123, 0.0218, 0.0337, 0.0481, 0.0648, 0.0837,
        0.1049, 0.1283, 0.1538, 0.1815, 0.2114, 0.2435, 0.2779, 0.3146, 0.3537,
        0.3953, 0.4395, 0.4863, 0.5358, 0.5881, 0.6432, 0.7011, 0.7619, 0.8255,
        0.8919, 0.9609, 1.0327, 1.0856, 1.1043, 1.0973, 1.0788, 1.0563, 1.0353,
        1.0184, 1.007, 1.0011, 1
      );
    }

    /* ── RESET ───────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      background: var(--marfim-lt);
      color: var(--preto);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
      font-feature-settings: 'kern' 1, 'liga' 1, 'frac' 1, 'ss01' 1;
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    /* Foco acessível dourado (só ao navegar via teclado) */
    a:focus, button:focus { outline: none; }
    a:focus-visible, button:focus-visible {
      outline: 2px solid var(--dourado);
      outline-offset: 3px;
      border-radius: 1px;
    }

    /* ── REFINO TIPOGRÁFICO EDITORIAL ────────────────────────── */
    h1, h2, h3, h4 {
      font-feature-settings: 'kern' 1, 'liga' 1, 'ss01' 1;
    }
    /* Display serif: títulos grandes com opsz e tracking editoriais */
    .planos-header h2,
    .jornada-header h2,
    .dep-header h2,
    .sobre-copy h2,
    .como-left h2,
    .comp-header h2,
    .faq-header h2,
    .cta-title {
      font-variation-settings: 'opsz' 48;
      letter-spacing: -0.018em;
    }
    .planos-header h2 em,
    .jornada-header h2 em,
    .dep-header h2 em,
    .sobre-copy h2 em,
    .como-left h2 em,
    .comp-header h2 em,
    .faq-header h2 em,
    .cta-title em {
      font-style: italic;
      font-weight: 300;
      font-variation-settings: 'opsz' 48;
    }
    /* Drop cap sutil no primeiro parágrafo do Sobre */
    .sobre-copy > p:first-of-type::first-letter {
      font-family: var(--serif);
      font-size: 2.85em;
      float: left;
      line-height: 0.92;
      padding: 0.18em 0.12em 0 0;
      color: var(--dourado-dk);
      font-weight: 300;
      font-variation-settings: 'opsz' 48;
    }

    /* ── UTILITIES ───────────────────────────────────────────── */
    .container {
      width: min(var(--max), 100% - 2 * var(--gap));
      margin-inline: auto;
    }
    .tag {
      display: inline-block;
      font-family: var(--sans);
      font-size: 0.66rem;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--dourado-dk);
      border-top: 1px solid var(--dourado);
      padding-top: 0.5rem;
      margin-bottom: 1.25rem;
      font-feature-settings: 'kern' 1, 'ss01' 1;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--sans);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.85rem 2rem;
      border-radius: 0;
      transition: background 0.45s var(--ease-spring),
                  color 0.35s var(--ease-out-ios),
                  border-color 0.35s var(--ease-out-ios),
                  transform 0.45s var(--ease-spring),
                  box-shadow 0.45s var(--ease-spring);
      cursor: pointer;
      border: none;
      -webkit-tap-highlight-color: transparent;
    }
    .btn:active {
      transition-duration: 0.08s;
      transform: translateY(0) scale(0.97);
    }
    .btn-gold:active { transform: translateY(0) scale(0.97); }
    .btn-outline:active { transform: translateY(0) scale(0.97); }
    .btn-dark:active { transform: translateY(0) scale(0.97); }
    .btn-gold {
      background: var(--dourado);
      color: var(--preto);
    }
    .btn-gold:hover {
      background: var(--dourado-dk);
      color: var(--marfim);
      transform: translateY(-2px);
      box-shadow: 0 14px 32px -16px rgba(206,157,98,0.5);
    }
    .btn-outline {
      background: transparent;
      color: var(--marfim);
      border: 1px solid rgba(232,230,223,0.4);
    }
    .btn-outline:hover {
      background: rgba(232,230,223,0.08);
      border-color: rgba(232,230,223,0.65);
      transform: translateY(-2px);
    }
    .btn-dark {
      background: var(--marrom);
      color: var(--marfim);
    }
    .btn-dark:hover {
      background: var(--marrom-dk);
      transform: translateY(-2px);
      box-shadow: 0 14px 32px -16px rgba(26,23,19,0.5);
    }

    /* ── NAV ─────────────────────────────────────────────────── */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.5rem 0;
      background: transparent;
      transition: background 0.55s var(--ease-out-ios),
                  padding 0.45s var(--ease-out-ios),
                  box-shadow 0.55s var(--ease-out-ios),
                  backdrop-filter 0.55s var(--ease-out-ios);
    }
    #nav.scrolled {
      background: rgba(22, 18, 14, 0.62);
      backdrop-filter: blur(40px) saturate(180%);
      -webkit-backdrop-filter: blur(40px) saturate(180%);
      padding: 0.9rem 0;
      border-bottom: 1px solid rgba(206,157,98,0.10);
      box-shadow: 0 1px 0 rgba(206,157,98,0.06), 0 8px 32px -16px rgba(0,0,0,0.4);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo { height: 30px; width: auto; flex-shrink: 0; }
    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
    }
    .nav-links a {
      position: relative;
      font-size: 0.76rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(232,230,223,0.65);
      transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 1px;
      background: var(--dourado);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .nav-links a:hover { color: var(--dourado); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-links a.active { color: var(--dourado); }
    .nav-links a.active::after { transform: scaleX(1); }

    .nav-actions {
      display: flex;
      gap: 0.75rem;
      align-items: center;
      flex-shrink: 0;
    }
    .nav-login {
      font-size: 0.73rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(232,230,223,0.5);
      border: 1px solid rgba(232,230,223,0.15);
      padding: 0.5rem 1rem;
      border-radius: 0;
      transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                  border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      white-space: nowrap;
    }
    .nav-login:hover { color: var(--dourado); border-color: rgba(206,157,98,0.45); }
    .nav-login:active {
      transition-duration: 0.08s;
      transform: scale(0.97);
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
      flex-shrink: 0;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--marfim);
      transition: transform 0.3s, opacity 0.3s;
    }

    /* ── HERO ────────────────────────────────────────────────── */
    #hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      background: var(--marrom-dk);
      overflow: hidden;
      padding-top: 96px;
      padding-bottom: 5rem;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 65% 45%, rgba(206,157,98,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(77,57,32,0.5) 0%, transparent 60%),
        linear-gradient(180deg, #1B1814 0%, #2a1f12 55%, #362816 100%);
      transform: translate3d(0, var(--py, 0px), 0);
      will-change: transform;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320'%3E%3Cfilter id='l'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.35' numOctaves='3' seed='7' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.808  0 0 0 0 0.616  0 0 0 0 0.384  0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23l)'/%3E%3C/svg%3E");
      background-size: 320px 320px;
      opacity: 0.28;
      mix-blend-mode: overlay;
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      transform: translate3d(0, var(--hero-ty, 0px), 0) scale(var(--hero-scale, 1));
      opacity: var(--hero-opacity, 1);
      transform-origin: left center;
      will-change: transform, opacity;
    }
    .hero-eyebrow {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--dourado);
      margin-bottom: 2.25rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 2rem;
      height: 1px;
      background: var(--dourado);
    }
    .hero-title {
      font-family: var(--serif);
      font-size: clamp(2.9rem, 7vw, 6rem);
      font-weight: 300;
      line-height: 1.06;
      color: var(--marfim);
      letter-spacing: -0.025em;
      margin-bottom: 2rem;
      font-variation-settings: 'opsz' 60;
      font-feature-settings: 'kern' 1, 'liga' 1;
    }
    .hero-title em {
      font-style: italic;
      color: var(--dourado);
      text-shadow: 0 0 80px rgba(206,157,98,0.3);
      font-weight: 300;
      font-variation-settings: 'opsz' 60;
    }
    .hero-subtitle {
      font-size: clamp(1rem, 1.5vw, 1.15rem);
      font-weight: 300;
      color: rgba(232,230,223,0.65);
      max-width: 560px;
      margin-bottom: 3.25rem;
      line-height: 1.8;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

    /* Dois pilares no hero */
    .hero-pillars {
      position: relative;
      z-index: 1;
      display: flex;
      gap: 2rem;
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(206,157,98,0.2);
      flex-wrap: wrap;
    }
    .hero-pillar {
      flex: 1;
      min-width: 160px;
    }
    .hero-pillar .label {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--dourado);
      margin-bottom: 0.4rem;
    }
    .hero-pillar .desc {
      font-size: 0.88rem;
      font-weight: 300;
      color: rgba(232,230,223,0.5);
      line-height: 1.6;
    }

    /* Marca d'água símbolo no hero */
    .hero-watermark {
      position: absolute;
      right: -5%;
      top: 50%;
      transform: translate3d(0, calc(-50% + var(--py, 0px)), 0);
      will-change: transform;
      width: clamp(320px, 45vw, 600px);
      opacity: 0.045;
      pointer-events: none;
      z-index: 0;
      filter: invert(1) sepia(1) saturate(0.5) brightness(1.5);
    }
    .hero-watermark img { width: 100%; height: auto; }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: rgba(232,230,223,0.35);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      pointer-events: none;
      z-index: 0;
    }
    .hero-scroll::after {
      content: '';
      display: block;
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, rgba(206,157,98,0.5), transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }
    @keyframes scrollLine {
      0%, 100% { opacity: 0.3; transform: scaleY(1) translateY(0); }
      50% { opacity: 1; transform: scaleY(1) translateY(6px); }
    }

    /* ── JORNADA ─────────────────────────────────────────────── */
    #jornada {
      padding: clamp(5rem, 10vw, 8rem) 0;
      background: var(--marfim-lt);
      position: relative;
      overflow: hidden;
    }
    #jornada::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.55' numOctaves='2' seed='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.302  0 0 0 0 0.224  0 0 0 0 0.125  0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
      background-size: 320px 320px;
      opacity: 0.55;
      mix-blend-mode: multiply;
      pointer-events: none;
    }
    .step-deco-num {
      position: absolute;
      top: -1rem;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--serif);
      font-size: clamp(5rem, 10vw, 9rem);
      font-weight: 300;
      color: var(--dourado);
      opacity: 0.07;
      line-height: 1;
      pointer-events: none;
      z-index: 0;
      user-select: none;
      letter-spacing: -0.05em;
    }
    .jornada-header {
      text-align: center;
      max-width: 620px;
      margin: 0 auto 4.5rem;
    }
    .jornada-header h2 {
      font-family: var(--serif);
      font-size: clamp(2rem, 3.5vw, 2.9rem);
      font-weight: 300;
      color: var(--marrom-dk);
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 1rem;
    }
    .jornada-header h2 em { font-style: italic; color: var(--castanho); }
    .jornada-header p {
      font-size: 0.96rem;
      font-weight: 300;
      color: var(--preto-lt);
      line-height: 1.8;
    }

    /* Linha de progressão */
    .jornada-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      position: relative;
    }
    .jornada-steps::before {
      content: '';
      position: absolute;
      top: 2.2rem;
      left: calc(100% / 6);
      right: calc(100% / 6);
      height: 1px;
      background: linear-gradient(to right, var(--dourado), var(--castanho), var(--marrom));
      opacity: 0.3;
      pointer-events: none;
    }
    .jornada-step {
      padding: 0 1.5rem;
      text-align: center;
    }
    .step-num {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid var(--dourado);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--serif);
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--dourado);
      margin: 0 auto 1.5rem;
      background: var(--marfim-lt);
      position: relative;
      z-index: 1;
    }
    .jornada-step h3 {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--marrom-dk);
      margin-bottom: 0.75rem;
    }
    .jornada-step p {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--preto-lt);
      line-height: 1.75;
    }

    /* ── PLANOS ──────────────────────────────────────────────── */
    #planos {
      padding: clamp(5rem, 10vw, 9rem) 0;
      background: var(--marrom-dk);
      position: relative;
    }
    #planos::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320'%3E%3Cfilter id='l'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.35' numOctaves='3' seed='14' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.808  0 0 0 0 0.616  0 0 0 0 0.384  0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23l)'/%3E%3C/svg%3E");
      background-size: 320px 320px;
      mix-blend-mode: overlay;
      opacity: 0.28;
      pointer-events: none;
    }
    #planos .container { position: relative; z-index: 1; }
    .planos-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 4rem;
    }
    .planos-header h2 {
      font-family: var(--serif);
      font-size: clamp(2rem, 3.5vw, 2.9rem);
      font-weight: 300;
      color: var(--marfim);
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 1rem;
    }
    .planos-header h2 em { font-style: italic; color: var(--dourado-lt); }
    .planos-header p {
      font-size: 0.96rem;
      font-weight: 300;
      color: rgba(232,230,223,0.55);
      line-height: 1.8;
    }

    .planos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .plano-card {
      background: rgba(26,23,19,0.5);
      border: 1px solid rgba(206,157,98,0.15);
      padding: 2.5rem 2rem;
      display: flex;
      flex-direction: column;
      box-shadow: 0 1px 2px rgba(0,0,0,0.0), 0 12px 32px -20px rgba(0,0,0,0.0);
      transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                  background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                  box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .plano-card:hover {
      border-color: rgba(206,157,98,0.4);
      background: rgba(77,57,32,0.35);
      transform: translateY(-4px);
      box-shadow: 0 1px 2px rgba(0,0,0,0.18), 0 28px 56px -20px rgba(206,157,98,0.22);
    }
    .plano-card:hover .plano-item::before {
      transform: translateX(3px);
    }
    .plano-card.destaque {
      border-color: var(--dourado);
      background: rgba(77,57,32,0.4);
      position: relative;
    }
    .plano-badge {
      position: absolute;
      top: -1px;
      right: 1.75rem;
      background: var(--dourado);
      color: var(--preto);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
    }
    .plano-nome {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--dourado);
      margin-bottom: 0.35rem;
    }
    /* .plano-titulo definido abaixo no bloco de nível badge */
    .plano-subtitulo {
      font-size: 0.82rem;
      font-weight: 300;
      color: rgba(232,230,223,0.45);
      margin-bottom: 1.75rem;
      line-height: 1.6;
      font-style: italic;
    }
    .plano-preco {
      margin-bottom: 1.75rem;
      padding-bottom: 1.75rem;
      border-bottom: 1px solid rgba(206,157,98,0.15);
    }
    .plano-valor {
      font-family: var(--serif);
      font-size: 2rem;
      font-weight: 300;
      color: var(--marfim);
      line-height: 1;
    }
    .plano-valor span {
      font-size: 1rem;
      color: rgba(232,230,223,0.5);
      font-family: var(--sans);
      font-weight: 300;
    }
    .plano-parcelamento {
      font-size: 0.78rem;
      font-weight: 300;
      color: rgba(232,230,223,0.4);
      margin-top: 0.35rem;
    }
    .plano-para-quem {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--dourado);
      margin-bottom: 0.75rem;
    }
    .plano-itens {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 2rem;
      flex: 1;
    }
    .plano-item {
      display: flex;
      gap: 0.6rem;
      align-items: flex-start;
      font-size: 0.86rem;
      font-weight: 300;
      color: rgba(232,230,223,0.65);
      line-height: 1.5;
    }
    .plano-item::before {
      content: '→';
      color: var(--dourado);
      flex-shrink: 0;
      font-size: 0.75rem;
      margin-top: 0.1rem;
      display: inline-block;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .plano-entrega {
      margin-top: 1.25rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(206,157,98,0.1);
      margin-bottom: 1.75rem;
    }
    .plano-entrega-title {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(232,230,223,0.3);
      margin-bottom: 0.6rem;
    }
    .plano-entrega-item {
      font-size: 0.82rem;
      font-weight: 300;
      color: rgba(232,230,223,0.45);
      line-height: 1.55;
      padding: 0.25rem 0;
      border-bottom: 1px solid rgba(232,230,223,0.05);
    }
    .plano-cta {
      display: block;
      width: 100%;
      text-align: center;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.9rem;
      border-radius: 0;
      transition: background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                  color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                  border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      cursor: pointer;
      border: 1px solid rgba(206,157,98,0.35);
      color: var(--dourado);
      background: transparent;
    }
    .plano-card.destaque .plano-cta {
      background: var(--dourado);
      color: var(--preto);
      border-color: var(--dourado);
    }
    .plano-cta:hover {
      transform: translateY(-2px);
      background: var(--dourado);
      color: var(--preto);
      border-color: var(--dourado);
    }
    .plano-cta:active {
      transition-duration: 0.08s;
      transform: translateY(0) scale(0.97);
    }
    .plano-card.destaque .plano-cta:hover {
      background: var(--dourado-dk);
      color: var(--marfim);
      border-color: var(--dourado-dk);
    }

    /* Nível badge */
    .plano-nivel {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 1rem;
    }
    .plano-nivel-num {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(232,230,223,0.3);
    }
    .plano-nivel-tag {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--dourado);
      background: rgba(206,157,98,0.12);
      border: 1px solid rgba(206,157,98,0.25);
      padding: 0.2rem 0.6rem;
      border-radius: 0;
    }
    .plano-titulo {
      font-family: var(--serif);
      font-size: 1rem;
      font-weight: 400;
      font-style: italic;
      color: rgba(232,230,223,0.8);
      line-height: 1.55;
      margin-bottom: 0.5rem;
    }

    /* ── SOBRE ───────────────────────────────────────────────── */
    #sobre {
      padding: clamp(5rem, 10vw, 9rem) 0;
      background: #fff;
      position: relative;
    }
    #sobre::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.55' numOctaves='2' seed='5' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.302  0 0 0 0 0.224  0 0 0 0 0.125  0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
      background-size: 320px 320px;
      mix-blend-mode: multiply;
      opacity: 0.4;
      pointer-events: none;
    }
    #sobre .container { position: relative; z-index: 1; }
    .sobre-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 6vw, 7rem);
      align-items: center;
    }
    .sobre-visual { position: relative; }
    .sobre-img-frame {
      aspect-ratio: 4/5;
      overflow: hidden;
      position: relative;
    }
    .sobre-img-frame::before {
      content: '';
      position: absolute;
      inset: 0;
      border: 1px solid rgba(206,157,98,0.35);
      z-index: 2;
      pointer-events: none;
    }
    .sobre-img-frame::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 35%;
      background: linear-gradient(to top, rgba(26,23,19,0.55) 0%, transparent 100%);
      z-index: 1;
      pointer-events: none;
    }
    .sobre-img-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(145deg, var(--castanho) 0%, var(--marrom) 100%);
      display: flex;
      align-items: flex-end;
      padding: 2.5rem;
    }
    .sobre-img {
      width: 100%;
      height: 112%;
      object-fit: cover;
      object-position: center 22%;
      transform: translate3d(0, var(--py, 0px), 0);
      will-change: transform;
    }
    .sobre-img-quote {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 300;
      font-style: italic;
      color: rgba(232,230,223,0.75);
      line-height: 1.7;
      border-left: 2px solid var(--dourado);
      padding-left: 1.25rem;
    }
    .sobre-accent-box {
      position: absolute;
      bottom: 2rem;
      right: -2rem;
      background: var(--marfim);
      padding: 1.25rem 1.75rem;
      box-shadow:
        0 1px 2px rgba(0,0,0,0.06),
        0 24px 48px -16px rgba(26,23,19,0.18);
    }
    .sobre-accent-box .num {
      font-family: var(--serif);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--marrom);
      line-height: 1.25;
    }
    .sobre-accent-box .lbl {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--castanho);
      margin-top: 0.2rem;
    }

    /* ── DEPOIMENTOS ─────────────────────────────────────────── */
    #depoimentos {
      padding: clamp(4rem, 8vw, 7rem) 0;
      background: var(--marrom-dk);
      position: relative;
    }
    #depoimentos::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320'%3E%3Cfilter id='l'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.35' numOctaves='3' seed='12' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.808  0 0 0 0 0.616  0 0 0 0 0.384  0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23l)'/%3E%3C/svg%3E");
      background-size: 320px 320px;
      mix-blend-mode: overlay;
      opacity: 0.32;
      pointer-events: none;
    }
    #depoimentos .container { position: relative; z-index: 1; }
    .dep-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 3.5rem;
    }
    .dep-header .tag { color: var(--dourado); border-color: rgba(206,157,98,0.4); }
    .dep-header h2 {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 3.5vw, 2.75rem);
      font-weight: 300;
      color: var(--marfim);
      line-height: 1.2;
      letter-spacing: -0.01em;
    }
    .dep-header h2 em { font-style: italic; color: var(--dourado-lt); }
    .dep-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .dep-card {
      background: rgba(26,23,19,0.5);
      border: 1px solid rgba(206,157,98,0.15);
      padding: 2rem 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                  box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .dep-card:hover {
      border-color: rgba(206,157,98,0.4);
      transform: translateY(-4px);
      box-shadow: 0 1px 2px rgba(0,0,0,0.18), 0 28px 56px -20px rgba(206,157,98,0.22);
    }
    .dep-card.dep-featured {
      background: var(--marrom);
      border-color: var(--marrom);
    }
    .dep-quote {
      font-family: var(--serif);
      font-size: 1.0rem;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(232,230,223,0.75);
      font-style: italic;
      flex: 1;
    }
    .dep-card.dep-featured .dep-quote { color: rgba(232,230,223,0.92); }
    .dep-mark {
      font-family: var(--serif);
      font-size: 4.5rem;
      font-weight: 300;
      font-style: italic;
      color: var(--dourado);
      opacity: 0.35;
      line-height: 1;
      height: 1.8rem;
      letter-spacing: -0.05em;
      margin-bottom: 0.25rem;
      display: block;
      pointer-events: none;
      user-select: none;
    }
    .dep-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      border-top: 1px solid rgba(206,157,98,0.15);
      padding-top: 1.25rem;
    }
    .dep-card.dep-featured .dep-author { border-color: rgba(206,157,98,0.35); }
    .dep-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(206,157,98,0.15);
      border: 1px solid rgba(206,157,98,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--sans);
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--dourado);
      flex-shrink: 0;
    }
    .dep-card.dep-featured .dep-avatar {
      background: rgba(206,157,98,0.25);
      color: var(--dourado-lt);
    }
    .dep-name {
      font-family: var(--sans);
      font-size: 0.82rem;
      font-weight: 600;
      color: rgba(232,230,223,0.7);
      letter-spacing: 0.02em;
    }
    .dep-card.dep-featured .dep-name { color: var(--dourado-lt); }

    /* ── WHATSAPP FLUTUANTE ──────────────────────────────────── */
    .wa-float {
      position: fixed;
      bottom: 1.75rem;
      right: 1.75rem;
      z-index: 200;
      width: 54px;
      height: 54px;
      background: var(--marrom-dk);
      color: var(--dourado);
      border: 1px solid rgba(206,157,98,0.28);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 1px 2px rgba(0,0,0,0.18), 0 14px 32px -10px rgba(206,157,98,0.28);
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                  box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                  border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .wa-float:hover {
      transform: translateY(-2px) scale(1.05);
      border-color: rgba(206,157,98,0.55);
      box-shadow: 0 2px 4px rgba(0,0,0,0.22), 0 22px 44px -10px rgba(206,157,98,0.42);
    }
    .wa-float:active {
      transition-duration: 0.08s;
      transform: translateY(0) scale(0.94);
    }
    .wa-float svg { width: 24px; height: 24px; }
    .sobre-copy h2 {
      font-family: var(--serif);
      font-size: clamp(2rem, 3.5vw, 2.9rem);
      font-weight: 300;
      line-height: 1.2;
      color: var(--marrom-dk);
      margin-bottom: 1.5rem;
      letter-spacing: -0.01em;
    }
    .sobre-copy h2 em { font-style: italic; color: var(--castanho); }
    .sobre-copy p {
      font-size: 0.96rem;
      font-weight: 300;
      color: var(--preto-lt);
      line-height: 1.9;
      margin-bottom: 1.25rem;
    }
    .sobre-copy p strong { font-weight: 500; color: var(--marrom); }
    .sobre-pillars {
      display: flex;
      gap: 1.5rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }
    .sobre-pillar {
      flex: 1;
      min-width: 120px;
      border-top: 2px solid var(--dourado);
      padding-top: 0.75rem;
    }
    .sobre-pillar .p-title {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--marrom);
      margin-bottom: 0.4rem;
    }
    .sobre-pillar .p-desc {
      font-size: 0.82rem;
      color: var(--preto-lt);
      line-height: 1.6;
      font-weight: 300;
    }

    /* ── COMO FUNCIONA ───────────────────────────────────────── */
    #como {
      padding: clamp(4rem, 8vw, 7rem) 0;
      background: var(--marrom);
      position: relative;
    }
    #como::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320'%3E%3Cfilter id='l'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.35' numOctaves='3' seed='9' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.808  0 0 0 0 0.616  0 0 0 0 0.384  0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23l)'/%3E%3C/svg%3E");
      background-size: 320px 320px;
      mix-blend-mode: overlay;
      opacity: 0.3;
      pointer-events: none;
    }
    #como .container { position: relative; z-index: 1; }
    .como-inner {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: clamp(3rem, 5vw, 6rem);
      align-items: center;
    }
    .como-left h2 {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 300;
      color: var(--marfim);
      line-height: 1.25;
      margin-bottom: 1.25rem;
    }
    .como-left h2 em { font-style: italic; color: var(--dourado-lt); }
    .como-left p {
      font-size: 0.92rem;
      font-weight: 300;
      color: rgba(232,230,223,0.55);
      line-height: 1.8;
    }
    .como-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .como-step {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 1.25rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid rgba(232,230,223,0.07);
    }
    .como-step:last-child { border-bottom: none; }
    .como-step-num {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 300;
      color: rgba(206,157,98,0.3);
      line-height: 1;
      padding-top: 0.15rem;
    }
    .como-step h4 {
      font-family: var(--sans);
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--marfim);
      margin-bottom: 0.35rem;
      letter-spacing: 0.03em;
    }
    .como-step p {
      font-size: 0.86rem;
      font-weight: 300;
      color: rgba(232,230,223,0.5);
      line-height: 1.7;
    }

    /* ── CREDENCIAIS (Sobre) ─────────────────────────────────── */
    .sobre-creds {
      list-style: none;
      padding: 1.5rem 0 0;
      margin: 1.75rem 0 0;
      border-top: 1px solid rgba(206,157,98,0.25);
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }
    .sobre-creds li {
      position: relative;
      padding-left: 1.5rem;
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.55;
      color: rgba(26,23,19,0.78);
    }
    .sobre-creds li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.55rem;
      width: 0.6rem;
      height: 1px;
      background: var(--dourado);
    }
    .sobre-creds li strong {
      color: var(--marrom-dk);
      font-weight: 600;
      letter-spacing: 0.02em;
    }
    .sobre-creds li em {
      font-style: italic;
      color: var(--castanho);
    }

    /* ── COMPARATIVO (tabela vs Family Office / Private Banking / BPO) ── */
    #comparativo {
      padding: clamp(4rem, 8vw, 7rem) 0;
      background: var(--marfim-lt);
      position: relative;
    }
    #comparativo::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.55' numOctaves='2' seed='18' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.302  0 0 0 0 0.224  0 0 0 0 0.125  0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
      background-size: 320px 320px;
      mix-blend-mode: multiply;
      opacity: 0.35;
      pointer-events: none;
    }
    #comparativo .container { position: relative; z-index: 1; }
    .comp-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 3rem;
    }
    .comp-header .tag { color: var(--dourado-dk); border-color: var(--dourado); }
    .comp-header h2 {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 3.5vw, 2.75rem);
      font-weight: 300;
      line-height: 1.2;
      color: var(--marrom-dk);
      letter-spacing: -0.01em;
      margin-top: 1rem;
    }
    .comp-header h2 em { font-style: italic; color: var(--dourado-dk); }
    .comp-header p {
      font-size: 1rem;
      color: rgba(26,23,19,0.6);
      margin-top: 1rem;
      line-height: 1.7;
    }
    .comp-table-wrap {
      overflow-x: auto;
      border: 1px solid rgba(206,157,98,0.25);
      background: #fff;
    }
    .comp-table {
      width: 100%;
      min-width: 720px;
      border-collapse: collapse;
      font-family: var(--sans);
    }
    .comp-table th,
    .comp-table td {
      padding: 1rem 1.25rem;
      text-align: left;
      vertical-align: top;
      font-size: 0.86rem;
      line-height: 1.55;
      border-bottom: 1px solid rgba(206,157,98,0.12);
    }
    .comp-table th {
      background: var(--marrom-dk);
      color: var(--marfim);
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 0.7rem;
    }
    .comp-table th.comp-cp {
      background: var(--dourado);
      color: var(--preto);
    }
    .comp-table td:first-child {
      font-weight: 600;
      color: var(--marrom-dk);
      background: rgba(206,157,98,0.05);
      width: 28%;
    }
    .comp-table td.comp-cp-cell {
      background: rgba(206,157,98,0.07);
      color: var(--marrom-dk);
      font-weight: 500;
    }
    .comp-table tr:last-child td { border-bottom: none; }

    /* ── FAQ visível ──────────────────────────────────────────── */
    #faq {
      padding: clamp(4rem, 8vw, 7rem) 0;
      background: var(--marrom-dk);
      position: relative;
    }
    #faq::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320'%3E%3Cfilter id='l'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.35' numOctaves='3' seed='21' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.808  0 0 0 0 0.616  0 0 0 0 0.384  0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23l)'/%3E%3C/svg%3E");
      background-size: 320px 320px;
      mix-blend-mode: overlay;
      opacity: 0.32;
      pointer-events: none;
    }
    #faq .container { position: relative; z-index: 1; }
    .faq-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 3rem;
    }
    .faq-header .tag { color: var(--dourado); border-color: rgba(206,157,98,0.4); }
    .faq-header h2 {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 3.5vw, 2.75rem);
      font-weight: 300;
      color: var(--marfim);
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-top: 1rem;
    }
    .faq-header h2 em { font-style: italic; color: var(--dourado-lt); }
    .faq-list {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .faq-item {
      border: 1px solid rgba(206,157,98,0.18);
      background: rgba(26,23,19,0.4);
      transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                  background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .faq-item[open] {
      border-color: rgba(206,157,98,0.4);
      background: rgba(77,57,32,0.32);
    }
    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 1.1rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--marfim);
      line-height: 1.4;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      font-family: var(--sans);
      font-weight: 300;
      font-size: 1.6rem;
      color: var(--dourado);
      line-height: 1;
      flex-shrink: 0;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item .faq-answer {
      padding: 0 1.5rem 1.4rem;
      font-size: 0.93rem;
      font-weight: 300;
      color: rgba(232,230,223,0.78);
      line-height: 1.7;
    }

    /* ── CTA BANNER ──────────────────────────────────────────── */
    #cta {
      padding: clamp(6rem, 10vw, 9rem) 0;
      background: linear-gradient(180deg, #362816 0%, #362816 12%, #2a1f12 45%, var(--marrom-dk) 75%, #1a1208 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
      margin-top: -1px;
    }
    #cta::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(ellipse, rgba(206,157,98,0.15), transparent 65%);
      pointer-events: none;
    }
    .cta-watermark {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate3d(calc(-50% + 0px), calc(-50% + var(--py, 0px)), 0);
      will-change: transform;
      width: clamp(280px, 50vw, 520px);
      opacity: 0.04;
      pointer-events: none;
      filter: invert(1) sepia(1) saturate(0.5) brightness(1.5);
    }
    .cta-watermark img { width: 100%; height: auto; }
    #cta .container { position: relative; z-index: 1; }
    .cta-eyebrow {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--dourado);
      margin-bottom: 1.25rem;
    }
    .cta-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300;
      color: var(--marfim);
      line-height: 1.2;
      letter-spacing: -0.01em;
      max-width: 680px;
      margin: 0 auto 1.5rem;
    }
    .cta-title em { font-style: italic; color: var(--dourado-lt); }
    .cta-sub {
      font-size: 0.96rem;
      font-weight: 300;
      color: rgba(232,230,223,0.55);
      max-width: 520px;
      margin: 0 auto 2.5rem;
      line-height: 1.8;
    }
    .cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
    .cta-note {
      margin-top: 1.25rem;
      font-size: 0.75rem;
      color: rgba(232,230,223,0.25);
      letter-spacing: 0.05em;
    }

    /* ── SEPARADORES (ornamento editorial ──◆──) ─────────────── */
    .sep {
      display: block;
      width: 100%;
      height: 56px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 18' fill='none'%3E%3Cline x1='40' y1='9' x2='160' y2='9' stroke='%23CE9D62' stroke-opacity='0.45' stroke-width='1'/%3E%3Cpath d='M180 3.2 L186.8 9 L180 14.8 L173.2 9 Z' fill='%23CE9D62' fill-opacity='0.7'/%3E%3Cline x1='200' y1='9' x2='320' y2='9' stroke='%23CE9D62' stroke-opacity='0.45' stroke-width='1'/%3E%3C/svg%3E");
      background-position: center;
      background-repeat: no-repeat;
      background-size: 360px 18px;
      pointer-events: none;
    }
    .sep svg { display: none; }

    /* ── FOOTER ──────────────────────────────────────────────── */
    #footer {
      background: var(--preto);
      padding: 4rem 0 2rem;
      border-top: 1px solid rgba(206,157,98,0.12);
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(232,230,223,0.06);
    }
    .footer-brand .foot-logo { height: 28px; margin-bottom: 1.25rem; }
    .footer-brand p {
      font-size: 0.85rem;
      font-weight: 300;
      color: rgba(232,230,223,0.4);
      line-height: 1.8;
      max-width: 280px;
    }
    .footer-col h4 {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--dourado);
      margin-bottom: 1.25rem;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-col ul a {
      font-size: 0.85rem;
      font-weight: 300;
      color: rgba(232,230,223,0.45);
      transition: color 0.2s;
    }
    .footer-col ul a:hover { color: var(--marfim); }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 2rem;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-bottom p {
      font-size: 0.75rem;
      color: rgba(232,230,223,0.25);
      letter-spacing: 0.04em;
    }

    /* ── RESPONSIVE ──────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .planos-grid { grid-template-columns: 1fr; gap: 1.25rem; max-width: 560px; margin: 0 auto; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .como-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .dep-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* Tablet */
    @media (max-width: 768px) {
      .nav-links  { display: none; }
      .nav-actions{ display: none; }
      .hamburger  { display: flex; }
      #nav { background: rgba(22,18,14,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }

      .hero-content { max-width: 100%; }
      .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
      .hero-pillars { gap: 1.25rem; }
      .hero-pillar { min-width: calc(50% - 0.75rem); }

      .sobre-grid { grid-template-columns: 1fr; }
      .sobre-visual { display: block; }
      .sobre-img-frame { aspect-ratio: 4/5; max-height: 480px; }
      .sobre-img { object-position: center 22%; }
      .sobre-accent-box { right: 0; bottom: 1rem; }
      .dep-grid { grid-template-columns: 1fr; }
      .hero-watermark { display: none; }

      .jornada-steps { grid-template-columns: 1fr; gap: 2.5rem; }
      .jornada-steps::before { display: none; }
      .jornada-step { padding: 0 0.5rem; }

      .planos-grid { max-width: 100%; }

      .como-inner { grid-template-columns: 1fr; }

      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }

    /* Mobile */
    @media (max-width: 480px) {
      :root { --gap: 1.25rem; }

      #hero { padding-top: 110px; padding-bottom: 3rem; }
      .hero-scroll { display: none !important; }

      #nav { padding: 1.1rem 0; }

      .hero-title { font-size: 2rem; line-height: 1.18; }
      .hero-subtitle { font-size: 0.93rem; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; justify-content: center; }
      .hero-pillars { flex-direction: column; gap: 1rem; }
      .hero-pillar { min-width: 100%; }

      .jornada-header h2 { font-size: 1.7rem; }
      .jornada-step h3 { font-size: 1.1rem; }

      .planos-grid { gap: 1rem; }
      .plano-card { padding: 1.75rem 1.25rem; }

      .sobre-copy h2 { font-size: 1.7rem; }
      .sobre-pillars { flex-direction: column; gap: 1rem; }
      .dep-grid { grid-template-columns: 1fr; }

      .como-inner { gap: 2rem; }
      .como-left h2 { font-size: 1.7rem; }

      .cta-title { font-size: 1.7rem; }
      .cta-actions { flex-direction: column; align-items: stretch; }
      .cta-actions .btn { text-align: center; justify-content: center; }

      .footer-top { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; }

      /* Esconde colunas menos importantes no mobile footer */
      .footer-col:nth-child(3) { display: none; }
    }

    /* Extra small */
    @media (max-width: 360px) {
      .hero-title { font-size: 1.75rem; }
      .plano-card { padding: 1.5rem 1rem; }
    }

    /* ── MOBILE MENU ─────────────────────────────────────────── */
    #mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(26,23,19,0.97);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }
    #mobile-menu.open { display: flex; }
    #mobile-menu a {
      font-family: var(--serif);
      font-size: 1.75rem;
      font-weight: 300;
      color: var(--marfim);
      transition: color 0.2s;
    }
    #mobile-menu a:hover { color: var(--dourado); }

    /* ── ANIMAÇÕES DE ENTRADA ────────────────────────────────── */

    /* Base: todos os elementos animáveis começam invisíveis */
    .reveal {
      opacity: 0;
      transition-property: opacity, transform;
      transition-timing-function: var(--ease-spring);
      transition-duration: 1.05s;
      will-change: transform, opacity;
    }
    .reveal.visible { opacity: 1; transform: none !important; }

    /* Tipos de animação (throw maior pra sensação iOS-spring) */
    .reveal-up      { transform: translateY(48px); }
    .reveal-down    { transform: translateY(-38px); }
    .reveal-left    { transform: translateX(48px); }
    .reveal-right   { transform: translateX(-48px); }
    .reveal-scale   { transform: scale(0.92); }
    .reveal-fade    { transform: none; }

    /* Delays escalonados — stagger de 80ms entre elementos */
    .reveal-d1  { transition-delay: 0.08s; }
    .reveal-d2  { transition-delay: 0.16s; }
    .reveal-d3  { transition-delay: 0.24s; }
    .reveal-d4  { transition-delay: 0.32s; }
    .reveal-d5  { transition-delay: 0.40s; }
    .reveal-d6  { transition-delay: 0.48s; }

    /* Linha decorativa que "cresce" quando a seção entra */
    .section-line {
      width: 0;
      height: 1px;
      background: linear-gradient(to right, var(--dourado), transparent);
      margin-bottom: 3rem;
      transition: width 1.3s var(--ease-out-ios);
    }
    .section-line.visible { width: 120px; }

    /* Alias para compatibilidade com .fade-up existente */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.95s var(--ease-spring),
                  transform 0.95s var(--ease-spring);
      will-change: transform, opacity;
    }
    .fade-up.visible { opacity: 1; transform: none; }

    /* Respeita preferência de redução de movimento */
    @media (prefers-reduced-motion: reduce) {
      .reveal, .fade-up, .section-line {
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
      }
      .reveal { opacity: 1; transform: none !important; }
      .fade-up { opacity: 1; transform: none; }
    }

    /* ── SUBROTAS — nav escuro fixo e padding pra não cobrir conteúdo ──── */
    body.subroute {
      padding-top: 96px;
    }
    body.subroute #nav {
      background: rgba(22, 18, 14, 0.85);
      backdrop-filter: blur(30px) saturate(180%);
      -webkit-backdrop-filter: blur(30px) saturate(180%);
      border-bottom: 1px solid rgba(206,157,98,0.10);
      box-shadow: 0 1px 0 rgba(206,157,98,0.06), 0 4px 16px -8px rgba(0,0,0,0.3);
    }
    body.subroute #nav.scrolled {
      background: rgba(22, 18, 14, 0.92);
    }
    /* Em mobile o padding-top precisa ser menor */
    @media (max-width: 768px) {
      body.subroute { padding-top: 78px; }
    }

    /* ── VALORES ─────────────────────────────────────────────── */
    #valores {
      padding: clamp(4rem, 8vw, 7rem) 0;
      background: var(--marfim-lt);
      position: relative;
    }
    #valores::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.55' numOctaves='2' seed='22' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.302  0 0 0 0 0.224  0 0 0 0 0.125  0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
      background-size: 320px 320px;
      mix-blend-mode: multiply;
      opacity: 0.35;
      pointer-events: none;
    }
    #valores .container { position: relative; z-index: 1; }

    .valores-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 3rem;
    }
    .valores-title {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 300;
      font-variation-settings: 'opsz' 60;
      letter-spacing: -0.025em;
      line-height: 1.1;
      color: var(--marrom-dk);
      margin-top: 1rem;
      margin-bottom: 1.25rem;
    }
    .valores-title em {
      font-style: italic;
      color: var(--dourado-dk);
      font-weight: 300;
    }
    .valores-sub {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(26,23,19,0.6);
      line-height: 1.75;
    }

    .valores-nucleo {
      max-width: 760px;
      margin: 3rem auto;
      padding: 2.25rem 2rem;
      background: var(--marrom-dk);
      color: var(--marfim);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .valores-nucleo::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320'%3E%3Cfilter id='l'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.35' numOctaves='3' seed='8' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.808  0 0 0 0 0.616  0 0 0 0 0.384  0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23l)'/%3E%3C/svg%3E");
      background-size: 320px 320px;
      mix-blend-mode: overlay;
      opacity: 0.3;
      pointer-events: none;
    }
    .valores-nucleo > * { position: relative; z-index: 1; }
    .nucleo-eyebrow {
      font-family: var(--sans);
      font-size: 0.66rem;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--dourado);
      margin-bottom: 1rem;
    }
    .nucleo-frase {
      font-family: var(--serif);
      font-size: clamp(1.3rem, 2.6vw, 1.8rem);
      font-weight: 300;
      font-variation-settings: 'opsz' 48;
      letter-spacing: -0.015em;
      line-height: 1.4;
    }
    .nucleo-frase em {
      font-style: italic;
      color: var(--dourado-lt);
      font-weight: 300;
    }

    .valores-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .valor-card {
      background: #fff;
      border: 1px solid rgba(206,157,98,0.18);
      padding: 2rem 1.75rem;
      transition: border-color 0.45s var(--ease-spring),
                  transform 0.45s var(--ease-spring),
                  box-shadow 0.45s var(--ease-spring);
    }
    .valor-card:hover {
      border-color: rgba(206,157,98,0.42);
      transform: translateY(-4px);
      box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 24px 48px -20px rgba(77,57,32,0.18);
    }
    .valor-num {
      font-family: var(--serif);
      font-size: 0.85rem;
      font-weight: 400;
      font-style: italic;
      color: var(--dourado);
      letter-spacing: 0.08em;
      margin-bottom: 0.6rem;
    }
    .valor-titulo {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 400;
      font-variation-settings: 'opsz' 32;
      letter-spacing: -0.012em;
      line-height: 1.25;
      color: var(--marrom-dk);
      margin-bottom: 1rem;
    }
    .valor-itens {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }
    .valor-itens li {
      position: relative;
      padding-left: 1.2rem;
      font-size: 0.92rem;
      font-weight: 300;
      line-height: 1.55;
      color: rgba(27,24,20,0.72);
    }
    .valor-itens li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.65rem;
      width: 0.55rem;
      height: 1px;
      background: var(--dourado);
    }

    .valores-crencas {
      max-width: 720px;
      margin: 4rem auto 0;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(206,157,98,0.25);
      text-align: center;
    }
    .crencas-eyebrow {
      font-family: var(--sans);
      font-size: 0.66rem;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--dourado-dk);
      margin-bottom: 1.5rem;
    }
    .crencas-lista {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }
    .crencas-lista li {
      font-family: var(--serif);
      font-size: clamp(1rem, 1.6vw, 1.2rem);
      font-weight: 300;
      font-style: italic;
      font-variation-settings: 'opsz' 32;
      color: var(--marrom-dk);
      letter-spacing: -0.01em;
    }

    /* ── Plano modelo (substituiu plano-valor) ─────────────── */
    .plano-modelo {
      font-family: var(--serif);
      font-size: 0.95rem;
      font-weight: 400;
      font-style: italic;
      color: var(--dourado);
      line-height: 1.45;
      letter-spacing: -0.005em;
    }

    /* ── Alinhamento dos cards de planos (igualar bullets "Para quem é") ─── */
    .plano-itens {
      min-height: 10rem;
    }
    @media (max-width: 768px) {
      .plano-itens { min-height: 0; }
    }

    /* ── CTA interno dourado (links pra outras subrotas) ─── */
    .inner-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 2rem;
      font-family: var(--sans);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--dourado);
      padding: 0.65rem 0;
      border-bottom: 1px solid rgba(206,157,98,0.35);
      transition: color 0.35s var(--ease-out-ios),
                  border-color 0.35s var(--ease-out-ios),
                  gap 0.45s var(--ease-spring);
    }
    .inner-link:hover {
      color: var(--dourado-lt);
      border-color: var(--dourado-lt);
      gap: 0.85rem;
    }
    .inner-link-dark {
      color: var(--dourado-dk);
      border-bottom-color: rgba(165,127,79,0.35);
    }
    .inner-link-dark:hover {
      color: var(--marrom-dk);
      border-bottom-color: var(--dourado-dk);
    }

    /* ── Rodapé de planos ─────────────────────────────────────── */
    .planos-footnote {
      text-align: center;
      margin: 3.5rem auto 0;
      max-width: 560px;
      font-family: var(--sans);
      font-size: 0.86rem;
      font-weight: 300;
      letter-spacing: 0.02em;
      color: rgba(232,230,223,0.78);
      line-height: 1.9;
    }
    .planos-footnote p { margin: 0.3rem 0; color: inherit; }
    .planos-footnote-hl {
      font-family: var(--serif);
      font-style: italic;
      font-size: 1rem;
      color: var(--dourado-lt);
      margin-top: 0.75rem !important;
      letter-spacing: -0.005em;
    }
    @media (max-width: 480px) {
      .planos-footnote { font-size: 0.78rem; padding: 0 1rem; }
      .planos-footnote-hl { font-size: 0.9rem; }
    }
