  :root {
    --bg: #F7F4EF;
    --cream: #EFE8DF;
    --taupe: #8A7666;
    --taupe-dark: #6E5D50;
    --brown: #5B4638;
    --gold: #B08D57;
    --gold-light: #C7A876;
    --nude: #D8C7B7;
    --text: #4A4038;
    --text-soft: #5F5044;
    --white: #FFFFFF;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-ui: 'Montserrat', sans-serif;

    --radius: 3px;
    --radius-lg: 6px;
    --shadow: 0 4px 30px rgba(91,70,56,0.07);
    --shadow-hover: 0 14px 50px rgba(91,70,56,0.14);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-ui);
    font-weight: 400;
    line-height: 1.75;
    overflow-x: hidden;
  }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes drawPulse { to { stroke-dashoffset: 0; } }

  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

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

  /* ── PULSE SIGNATURE ── */
  .pulse-divider { width: 100%; max-width: 240px; height: 28px; display: block; }
  .pulse-divider.center { margin: 0 auto; }
  .pulse-divider path {
    fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  }
  .pulse-hero {
    stroke-dasharray: 620; stroke-dashoffset: 620;
    animation: drawPulse 2.2s 0.4s ease forwards;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(247,244,239,0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--nude);
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    height: 76px;
    display: flex; align-items: center; justify-content: space-between;
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: var(--shadow); }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.45rem; font-weight: 600; font-style: italic;
    color: var(--brown); text-decoration: none; letter-spacing: 0.01em;
  }
  .nav-logo span { display: block; font-family: var(--font-ui); font-style: normal; font-size: 0.6rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 0.15rem; }
  .nav-links { display: flex; gap: 2.1rem; align-items: center; list-style: none; }
  .nav-links > li { position: relative; }
  .nav-links a {
    font-size: 0.8rem; font-weight: 500; color: var(--text-soft);
    text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links > li > a:hover, .nav-links > li.dropdown:hover > a { color: var(--gold); }

  .dropdown-panel {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
    background: var(--white); border: 1px solid var(--nude); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover); padding: 0.6rem; min-width: 260px;
    opacity: 0; visibility: hidden; transition: opacity 0.2s, transform 0.2s;
  }
  .dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
  .dropdown-panel a {
    display: block; padding: 0.6rem 0.9rem; font-size: 0.78rem; text-transform: none;
    letter-spacing: 0.01em; color: var(--text); border-radius: var(--radius);
  }
  .dropdown-panel a:hover { background: var(--cream); color: var(--gold); }

  .nav-cta {
    background: var(--taupe) !important; color: var(--white) !important;
    padding: 0.65rem 1.4rem !important; border-radius: var(--radius) !important;
    font-weight: 500 !important; transition: background 0.2s, transform 0.2s !important;
  }
  .nav-cta:hover { background: var(--brown) !important; transform: translateY(-1px); }

  .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--brown); margin: 5px 0; }

  .mobile-menu {
    display: none; position: fixed; top: 76px; left: 0; right: 0; z-index: 99;
    background: rgba(247,244,239,0.98); backdrop-filter: blur(14px);
    padding: 1.5rem clamp(1.5rem, 5vw, 4rem); border-bottom: 1px solid var(--nude);
    flex-direction: column; gap: 0.9rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-size: 0.95rem; color: var(--text-soft); text-decoration: none;
    padding: 0.5rem 0; border-bottom: 1px solid var(--nude);
  }
  .mobile-menu a:last-child { border-bottom: none; }

  /* ── LAYOUT ── */
  section { padding: clamp(4.5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 4rem); }
  .container { max-width: 1120px; margin: 0 auto; }
  .container-narrow { max-width: 740px; margin: 0 auto; }

  .eyebrow {
    display: inline-block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem;
  }
  .eyebrow::before { content: '— '; }

  .h-xl {
    font-family: var(--font-display); font-weight: 500; line-height: 1.15;
    font-size: clamp(2.3rem, 4.8vw, 3.8rem); color: var(--brown);
  }
  .h-lg {
    font-family: var(--font-display); font-weight: 500; line-height: 1.2;
    font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--brown);
  }
  .h-md {
    font-family: var(--font-display); font-weight: 600; line-height: 1.3;
    font-size: clamp(1.3rem, 2vw, 1.6rem); color: var(--brown);
  }
  em { font-style: italic; color: var(--gold); }
  .body-lg { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--text-soft); line-height: 1.85; }
  .body-md { font-size: 0.98rem; color: var(--text-soft); line-height: 1.8; }
  .text-center { text-align: center; }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
    font-family: var(--font-ui); font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    border-radius: var(--radius); padding: 1rem 2.1rem; transition: all 0.25s ease;
  }
  .btn-primary { background: var(--taupe); color: var(--white); }
  .btn-primary:hover { background: var(--brown); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
  .btn-outline { background: transparent; color: var(--brown); border: 1px solid var(--gold); }
  .btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
  .btn-ghost { background: transparent; color: var(--text-soft); border: 1px solid var(--nude); }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 76px; position: relative; overflow: hidden;
  }
  #hero::before {
    content: ''; position: absolute; top: -15%; right: -10%;
    width: 50vw; height: 50vw; max-width: 620px; max-height: 620px; border-radius: 50%;
    background: radial-gradient(circle, var(--nude) 0%, transparent 68%); opacity: 0.5; pointer-events: none;
  }
  .hero-inner {
    display: grid; grid-template-columns: 1.05fr 0.85fr; gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center; position: relative; z-index: 1;
  }
  .hero-title { margin-bottom: 1.6rem; }
  .hero-sub { max-width: 520px; margin-bottom: 2.2rem; }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
  .hero-photo {
    aspect-ratio: 4/5; border-radius: 4px 60px 4px 60px; overflow: hidden;
    box-shadow: var(--shadow-hover); position: relative;
  }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-photo-tag {
    position: absolute; bottom: 1.4rem; left: -1.3rem; background: var(--white);
    border-radius: var(--radius-lg); padding: 0.9rem 1.3rem; box-shadow: var(--shadow-hover);
    font-size: 0.78rem; max-width: 220px;
  }
  .hero-photo-tag strong { display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--brown); }
  .hero-photo-tag span { color: var(--text-soft); }

  /* ── SOBRE (BRAND) ── */
  #sobre-marca { background: var(--cream); }
  #sobre-marca .container-narrow { text-align: center; }
  #sobre-marca .body-lg { margin: 1.6rem auto 0; }

  /* ── COMO POSSO AJUDAR ── */
  #ajudar { background: var(--bg); }
  .ajudar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3.5rem; }
  .ajudar-card {
    background: var(--white); border: 1px solid var(--nude); border-radius: var(--radius-lg);
    padding: 2.4rem 2rem; display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  }
  .ajudar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--gold); }
  .ajudar-mark { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: var(--gold); margin-bottom: 1rem; }
  .ajudar-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--brown); margin-bottom: 0.9rem; }
  .ajudar-card p { font-size: 0.92rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 1.3rem; }
  .ajudar-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.6rem; }
  .ajudar-list li { font-size: 0.85rem; color: var(--text-soft); padding-left: 1.1rem; position: relative; }
  .ajudar-list li::before { content: ''; position: absolute; left: 0; top: 0.55rem; width: 5px; height: 1px; background: var(--gold); }
  .ajudar-card .btn { margin-top: auto; align-self: flex-start; }

  /* ── SOBRE PROFISSIONAL ── */
  #profissional { background: var(--cream); }
  .prof-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
  .prof-photo {
    aspect-ratio: 3/4; border-radius: 60px 4px 60px 4px; overflow: hidden;
    box-shadow: var(--shadow-hover);
  }
  .prof-photo img { width: 100%; height: 100%; object-fit: cover; }
  .prof-cred-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.8rem 0; }
  .prof-cred {
    font-size: 0.76rem; font-weight: 500; letter-spacing: 0.03em; text-transform: uppercase;
    background: var(--white); border: 1px solid var(--nude); color: var(--taupe-dark);
    padding: 0.45rem 1rem; border-radius: 100px;
  }

  /* ── DIFERENCIAL ── */
  #diferencial { background: var(--bg); }
  .dif-list { margin-top: 3.5rem; display: flex; flex-direction: column; }
  .dif-row {
    display: grid; grid-template-columns: 200px 1fr; gap: 2rem; align-items: baseline;
    padding: 1.8rem 0; border-bottom: 1px solid var(--nude);
  }
  .dif-row:first-child { border-top: 1px solid var(--nude); }
  .dif-label { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--gold); }
  .dif-row p { font-size: 0.96rem; color: var(--text-soft); line-height: 1.75; }

  /* ── DEPOIMENTOS ── */
  #depoimentos { background: var(--cream); }
  .dep-categories { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; text-align: left; }
  .dep-category h3 {
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; font-style: italic;
    color: var(--gold); margin-bottom: 1.2rem; text-align: center;
  }
  .dep-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
    box-shadow: var(--shadow); position: relative;
  }
  .dep-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.9rem; letter-spacing: 0.1em; }
  .dep-text {
    font-family: var(--font-display); font-size: 1.02rem; font-style: italic; color: var(--brown);
    line-height: 1.7; margin-bottom: 1.2rem;
  }
  .dep-author { font-size: 0.82rem; color: var(--text-soft); }
  .dep-author strong { color: var(--taupe-dark); font-weight: 600; }
  .dep-placeholder {
    text-align: center; padding: 2.4rem 1.6rem;
    background: var(--white); border: 1px dashed var(--nude); border-radius: var(--radius-lg);
    display: flex; flex-direction: column; justify-content: center; height: 100%;
  }
  .dep-placeholder p { color: var(--text-soft); font-size: 0.9rem; max-width: 380px; margin: 0.6rem auto 0; }
  .dep-scroll {
    background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow);
    padding: 0.4rem; max-height: 480px; overflow-y: auto;
  }
  .dep-mini { padding: 1.15rem 1.4rem; border-bottom: 1px solid var(--cream); }
  .dep-mini:last-child { border-bottom: none; }
  .dep-mini-top { display: flex; justify-content: space-between; align-items: baseline; gap: 0.6rem; margin-bottom: 0.35rem; }
  .dep-mini-name { font-size: 0.85rem; font-weight: 600; color: var(--taupe-dark); }
  .dep-mini-stars { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.08em; white-space: nowrap; }
  .dep-mini-tag {
    display: inline-block; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.04em;
    color: var(--gold); background: var(--cream); padding: 0.15rem 0.55rem; border-radius: 100px; margin-bottom: 0.5rem;
  }
  .dep-mini p.dep-mini-text { font-size: 0.86rem; color: var(--text-soft); line-height: 1.6; font-style: italic; }
  .dep-scroll::-webkit-scrollbar { width: 6px; }
  .dep-scroll::-webkit-scrollbar-thumb { background: var(--nude); border-radius: 100px; }
  @media (max-width: 700px) { .dep-categories { grid-template-columns: 1fr; } }

  /* ── FAQ ── */
  #faq { background: var(--bg); }
  .faq-list { max-width: 780px; margin: 3.5rem auto 0; }
  .faq-item { border-bottom: 1px solid var(--nude); }
  .faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    padding: 1.5rem 0; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
    color: var(--brown); text-align: left;
  }
  .faq-q:hover { color: var(--gold); }
  .faq-icon {
    width: 22px; height: 22px; flex-shrink: 0; color: var(--gold);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    transition: transform 0.3s; font-family: var(--font-ui);
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-a {
    font-size: 0.95rem; color: var(--text-soft); line-height: 1.8;
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
  }
  .faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.5rem; }

  /* ── MATERIAIS ── */
  #materiais { background: var(--cream); }
  .mat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; margin-top: 3.5rem; }
  .mat-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); display: flex; flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .mat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
  .mat-top { padding: 2.2rem 2.2rem 0; }
  .mat-tag {
    display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); border: 1px solid var(--gold); padding: 0.25rem 0.7rem; border-radius: 100px; margin-bottom: 1rem;
  }
  .mat-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--brown); margin-bottom: 0.7rem; }
  .mat-card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.7; }
  .mat-bottom { padding: 1.6rem 2.2rem 2.2rem; margin-top: 1.5rem; }

  /* ── CTA FINAL ── */
  #cta-final {
    background: var(--brown); color: var(--bg); text-align: center; position: relative; overflow: hidden;
  }
  #cta-final::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(176,141,87,0.18) 0%, transparent 65%); pointer-events: none;
  }
  .cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
  #cta-final .h-lg { color: var(--bg); }
  #cta-final .body-lg { color: rgba(247,244,239,0.72); margin: 1.4rem 0 2.4rem; }
  .cta-note { font-size: 0.78rem; letter-spacing: 0.05em; color: rgba(247,244,239,0.45); margin-top: 1.6rem; }

  /* ── FOOTER ── */
  footer { background: var(--brown); border-top: 1px solid rgba(247,244,239,0.1); padding: 3rem clamp(1.5rem, 5vw, 4rem) 2rem; }
  .footer-inner {
    max-width: 1120px; margin: 0 auto; display: flex; justify-content: space-between;
    align-items: flex-start; flex-wrap: wrap; gap: 2rem;
  }
  .footer-brand { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--bg); }
  .footer-brand span { display: block; font-family: var(--font-ui); font-style: normal; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-top: 0.4rem; }
  .footer-col h4 { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
  .footer-col a, .footer-col p { display: block; font-size: 0.85rem; color: rgba(247,244,239,0.6); text-decoration: none; margin-bottom: 0.55rem; }
  .footer-col a:hover { color: var(--bg); }
  .footer-bottom {
    max-width: 1120px; margin: 2.5rem auto 0; padding-top: 1.8rem;
    border-top: 1px solid rgba(247,244,239,0.08); text-align: center;
  }
  .footer-bottom p { font-size: 0.75rem; color: rgba(247,244,239,0.35); }

  /* ── WHATSAPP FLOAT ── */
  .whatsapp-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
    display: flex; align-items: center; gap: 0.7rem;
    background: var(--taupe); color: var(--white); padding: 0.85rem 1.4rem;
    border-radius: 100px; text-decoration: none; font-size: 0.82rem; font-weight: 500;
    box-shadow: var(--shadow-hover); transition: transform 0.2s, background 0.2s;
    animation: fadeUp 1s 1.5s ease both;
  }
  .whatsapp-float:hover { transform: translateY(-3px); background: var(--brown); }

  /* ── RESPONSIVE ── */
  @media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-photo { max-width: 420px; margin: 0 auto; }
    .ajudar-grid { grid-template-columns: 1fr; }
    .prof-grid { grid-template-columns: 1fr; }
    .prof-photo { max-width: 380px; margin: 0 auto; }
    .mat-grid { grid-template-columns: 1fr; }
    .dif-row { grid-template-columns: 1fr; gap: 0.4rem; }
    .nav-links { display: none; }
    .hamburger { display: block; }
  }
  @media (max-width: 560px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 0.9rem; border-radius: 50%; width: 54px; height: 54px; }
  }

/* ── PAGE HERO (subpáginas) ── */
.page-hero { padding-top: 76px; background: var(--cream); position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; top: -20%; right: -8%;
  width: 40vw; height: 40vw; max-width: 480px; max-height: 480px; border-radius: 50%;
  background: radial-gradient(circle, var(--nude) 0%, transparent 68%); opacity: 0.5; pointer-events: none;
}
.page-hero-inner { max-width: 780px; margin: 0 auto; padding: 4.5rem 0 4rem; text-align: center; position: relative; z-index: 1; }
.breadcrumb { font-size: 0.76rem; color: var(--text-soft); margin-bottom: 1.6rem; letter-spacing: 0.02em; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--nude); margin: 0 0.4rem; }

/* ── STEPS (como funciona) ── */
.steps-list { display: flex; flex-direction: column; gap: 1.3rem; margin-top: 3rem; }
.step-row {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--nude); border-radius: var(--radius-lg);
  padding: 1.7rem 1.9rem; transition: transform 0.3s, box-shadow 0.3s;
}
.step-row:hover { transform: translateX(6px); box-shadow: var(--shadow-hover); }
.step-num {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  background: var(--taupe); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
}
.step-row h4 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--brown); margin-bottom: 0.4rem; }
.step-row p { font-size: 0.92rem; color: var(--text-soft); line-height: 1.75; }

/* ── COMPATIBILIDADE (para quem é) ── */
.compat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.compat-box { border-radius: var(--radius-lg); padding: 2.2rem; }
.compat-box.sim { background: var(--white); border: 1px solid var(--gold); }
.compat-box.nao { background: var(--cream); border: 1px solid var(--nude); }
.compat-box h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 1.3rem; }
.compat-box.sim h3 { color: var(--taupe-dark); }
.compat-box.nao h3 { color: var(--text-soft); }
.compat-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.compat-list li { font-size: 0.92rem; color: var(--text-soft); padding-left: 1.1rem; position: relative; line-height: 1.65; }
.compat-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
@media (max-width: 700px) { .compat-grid { grid-template-columns: 1fr; } }

/* ── INVESTIMENTO ── */
.invest-box {
  margin-top: 3rem; text-align: center; padding: 2.6rem 2rem;
  background: var(--white); border: 1px solid var(--nude); border-radius: var(--radius-lg);
}
.invest-box p { color: var(--text-soft); font-size: 0.95rem; max-width: 480px; margin: 0.6rem auto 1.6rem; }

/* ── NAV ACTIVE STATE ── */
.nav-links a.active, .dropdown-panel a.active { color: var(--gold) !important; font-weight: 600; }
