﻿    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --cream:        #F5F2EC;
      --cream2:       #EAE6DC;
      --ink:          #151210;
      --ink2:         #2A2520;
      --muted:        #6B6460;
      --sage:         #5F7161;
      --sage-light:   #C8D4C9;
      --sage-dark:    #3D4E3F;
      --terra:        #C4875A;
      --terra-light:  #EDD5C0;
      --white:        #FAFAF8;
      --border:       rgba(21,18,16,0.10);
      --border-light: rgba(21,18,16,0.06);
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      background: var(--cream);
      color: var(--ink);
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    ::selection { background: var(--sage); color: var(--cream); }

    /* ── TYPOGRAPHY ─────────────────────────────────────── */
    .serif { font-family: 'Playfair Display', serif; }
    .mono  { font-family: 'JetBrains Mono', monospace; }

    /* ── TOP BAR ────────────────────────────────────────── */
    #topbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: var(--ink);
      padding: 9px 48px;
      display: flex; align-items: center; justify-content: space-between;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    #topbar .crp {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px; letter-spacing: .12em;
      color: rgba(255,255,255,0.38);
    }
    #topbar .crp span { color: var(--sage-light); }
    #topbar .right {
      display: flex; align-items: center; gap: 24px;
      font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }
    #topbar a.cta-top {
      font-size: 10px; font-weight: 600; letter-spacing: .15em;
      text-transform: uppercase; text-decoration: none;
      color: var(--ink); background: var(--terra);
      padding: 6px 16px; border-radius: 2px;
      transition: background .2s;
    }
    #topbar a.cta-top:hover { background: #b57348; }

    /* ── NAV ────────────────────────────────────────────── */
    #navbar {
      position: fixed; top: 36px; left: 0; right: 0; z-index: 90;
      padding: 20px 48px;
      display: flex; align-items: center; justify-content: space-between;
      transition: background .3s, backdrop-filter .3s, box-shadow .3s, padding .3s;
    }
    #navbar.scrolled {
      background: rgba(245,242,236,0.95);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 var(--border);
      padding: 14px 48px;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 14px; text-decoration: none;
    }
    .nav-logo-img {
      width: 58px; height: 58px; object-fit: contain;
    }
    .nav-logo-text { display: flex; flex-direction: column; gap: 2px; }
    .nav-logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 18px; font-weight: 700;
      color: var(--ink); line-height: 1;
      text-shadow: 0 1px 4px rgba(245,242,236,0.6);
    }
    .nav-logo-tag {
      font-family: 'JetBrains Mono', monospace;
      font-size: 9px; color: var(--sage); letter-spacing: .1em;
    }
    .nav-links {
      display: flex; align-items: center; gap: 36px;
    }
    .nav-links a {
      text-decoration: none;
      font-size: 12px; font-weight: 600; letter-spacing: .06em;
      color: #fff;
      text-shadow: 0 1px 6px rgba(0,0,0,0.55), 0 0 20px rgba(0,0,0,0.35);
      transition: color .2s, text-shadow .2s;
    }
    .nav-links a:hover { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.8); }
    #navbar.scrolled .nav-links a {
      color: var(--muted); text-shadow: none;
    }
    #navbar.scrolled .nav-links a:hover { color: var(--ink); }
    .nav-cta {
      text-decoration: none;
      font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
      color: var(--white); background: var(--sage);
      padding: 12px 28px; border-radius: 2px;
      transition: background .2s, transform .15s;
    }
    .nav-cta:hover { background: var(--sage-dark); transform: translateY(-1px); }
    .mobile-menu-btn {
      display: none; background: none; border: none; cursor: pointer;
      color: var(--ink); padding: 4px;
    }
    .mobile-menu-btn svg { display: block; }

    /* ── HERO ───────────────────────────────────────────── */
    #hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 36px; /* topbar height */
      overflow: hidden;
    }
    .hero-left {
      display: flex; flex-direction: column; justify-content: flex-start;
      padding: 148px 64px 80px 64px;
      position: relative; z-index: 2;
    }
    .hero-eyebrow {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 28px;
    }
    .hero-eyebrow-line {
      width: 32px; height: 1px; background: var(--terra);
    }
    .hero-eyebrow span {
      font-size: 11px; font-weight: 600; letter-spacing: .18em;
      text-transform: uppercase; color: var(--terra);
    }
    .hero-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(48px, 5vw, 76px);
      font-weight: 700; line-height: 1.08;
      color: var(--ink); margin-bottom: 24px;
      letter-spacing: -.02em;
    }
    .hero-h1 em {
      font-style: italic; color: var(--sage);
    }
    .hero-sub {
      font-size: 16px; line-height: 1.7; color: var(--muted);
      max-width: 420px; margin-bottom: 48px; font-weight: 300;
    }
    .hero-actions {
      display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
      margin-bottom: 64px;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      text-decoration: none;
      font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
      color: var(--white); background: var(--ink);
      padding: 16px 36px; border-radius: 2px;
      transition: background .2s, transform .15s, box-shadow .15s;
    }
    .btn-primary:hover { background: var(--ink2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,18,16,.18); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none;
      font-size: 12px; font-weight: 500; letter-spacing: .1em;
      color: var(--muted); border-bottom: 1px solid var(--border);
      padding-bottom: 2px; transition: color .2s, border-color .2s;
    }
    .btn-secondary:hover { color: var(--ink); border-color: var(--ink); }
    .hero-credentials {
      display: flex; flex-direction: column; gap: 16px;
    }
    .hero-cred-row {
      display: flex; align-items: center; gap: 10px;
      font-size: 13px; color: var(--muted);
    }
    .hero-cred-row svg { color: var(--sage); flex-shrink: 0; }
    .hero-cred-row strong { color: var(--ink); font-weight: 500; }
    .hero-right {
      position: relative; overflow: hidden;
    }
    .hero-img {
      width: 100%; height: 100%; object-fit: cover; object-position: center 8%;
      filter: grayscale(20%) contrast(1.05);
      display: block;
    }
    .hero-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, var(--cream) 0%, transparent 30%);
    }
    .hero-img-overlay-bottom {
      position: absolute; inset: 0;
      background: linear-gradient(to top, var(--cream) 0%, transparent 20%);
    }
    .hero-divider {
      position: absolute; left: 0; top: 0; bottom: 0; width: 1px;
      background: var(--border);
    }
    .hero-social {
      position: absolute; bottom: 48px; right: 40px;
      display: flex; flex-direction: column; align-items: center; gap: 16px;
      z-index: 3;
    }
    .hero-social-label {
      font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
      color: rgba(21,18,16,.35); writing-mode: vertical-rl;
      transform: rotate(180deg);
    }
    .hero-social a {
      color: var(--muted); transition: color .2s; text-decoration: none;
    }
    .hero-social a:hover { color: var(--ink); }
    .hero-crp-badge {
      position: absolute; bottom: 48px; left: 64px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px; letter-spacing: .1em;
      color: var(--muted);
      display: flex; align-items: center; gap: 8px;
    }
    .hero-crp-badge::before {
      content: ''; display: block;
      width: 24px; height: 1px; background: var(--sage);
    }

    /* ── SECTION CRP BADGE ─────────────────────────────── */
    .section-crp-badge {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px; letter-spacing: .1em;
      color: var(--muted);
      display: flex; align-items: center; gap: 8px;
      margin-top: 40px; padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.07);
    }
    .section-crp-badge::before {
      content: ''; display: block;
      width: 24px; height: 1px; background: var(--sage);
      flex-shrink: 0;
    }

    /* ── MARQUEE ────────────────────────────────────────── */
    .marquee-wrap {
      background: var(--ink); color: var(--cream);
      padding: 14px 0; overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .marquee-track {
      display: flex; gap: 0;
      animation: marquee 28s linear infinite;
      white-space: nowrap;
      will-change: transform;
    }
    .marquee-track span {
      font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
      padding: 0 32px; color: rgba(255,255,255,0.5);
    }
    .marquee-track span.accent { color: var(--terra); }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── SECTION BASICS ─────────────────────────────────── */
    section { padding: 100px 64px; }
    .max-w { max-width: 1240px; margin: 0 auto; }
    .section-label {
      font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
      color: var(--sage); margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
    }
    .section-label::before {
      content: ''; display: block; width: 24px; height: 1px; background: var(--sage);
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 3.5vw, 52px);
      font-weight: 700; line-height: 1.15; color: var(--ink);
      letter-spacing: -.02em;
    }
    .section-title em { font-style: italic; color: var(--sage); }

    /* ── PILLARS ─────────────────────────────────────────── */
    #pillars { background: var(--cream2); }
    .pillars-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
      background: var(--border); border: 1px solid var(--border);
      margin-top: 64px;
    }
    .pillar {
      background: var(--cream2); padding: 40px 32px;
      transition: background .2s;
    }
    .pillar:hover { background: var(--cream); }
    .pillar-num {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px; color: var(--sage); letter-spacing: .08em;
      margin-bottom: 24px;
    }
    .pillar-icon {
      width: 40px; height: 40px; margin-bottom: 20px;
      color: var(--sage);
    }
    .pillar h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-weight: 700;
      color: var(--ink); margin-bottom: 12px; line-height: 1.2;
    }
    .pillar p {
      font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300;
    }

    /* ── ABOUT ───────────────────────────────────────────── */
    #about { background: var(--cream); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
      align-items: center;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img {
      width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 15%;
      display: block; border-radius: 4px;
    }
    .about-img-caption {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--ink); color: var(--cream);
      padding: 20px 24px; border-radius: 2px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px; line-height: 1.8;
    }
    .about-img-caption strong { color: var(--terra); display: block; font-size: 12px; margin-bottom: 4px; }
    .about-text { display: flex; flex-direction: column; gap: 24px; }
    .about-text p {
      font-size: 16px; color: var(--muted); line-height: 1.8; font-weight: 300;
    }
    .about-text p strong { color: var(--ink); font-weight: 500; }
    .about-subtitle {
      font-size: 15px !important; color: var(--sage) !important;
      font-weight: 400 !important; letter-spacing: .01em;
      margin-top: 10px !important; line-height: 1.6 !important;
    }
    .about-closing {
      border-left: 2px solid var(--sage);
      padding-left: 16px;
      font-style: italic;
      color: var(--ink) !important;
      opacity: .8;
    }
    .about-tags {
      display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px;
    }
    .about-tag {
      font-size: 11px; font-weight: 500; letter-spacing: .08em;
      background: var(--cream2); color: var(--muted);
      padding: 6px 14px; border-radius: 2px;
      border: 1px solid var(--border);
      text-decoration: none;
      transition: background .18s, color .18s, border-color .18s;
      cursor: pointer;
    }
    a.about-tag:hover {
      background: var(--sage); color: var(--cream);
      border-color: var(--sage);
    }
    .about-podcast {
      background: var(--ink); color: var(--cream);
      padding: 20px 24px; border-radius: 4px;
      display: flex; align-items: center; gap: 16px;
      text-decoration: none; transition: background .2s;
      margin-top: 8px;
    }
    .about-podcast:hover { background: var(--ink2); }
    .about-podcast-icon { color: var(--terra); flex-shrink: 0; }
    .about-podcast-text .label {
      font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
      color: rgba(255,255,255,0.4); margin-bottom: 4px;
    }
    .about-podcast-text .name {
      font-family: 'Playfair Display', serif;
      font-size: 18px; font-style: italic; color: var(--cream);
    }

    /* ── SPECIALTIES ─────────────────────────────────────── */
    #specialties { background: var(--ink); }
    #specialties .section-label { color: var(--terra); }
    #specialties .section-label::before { background: var(--terra); }
    #specialties .section-title { color: var(--cream); }
    .spec-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.06);
      margin-top: 64px;
    }
    .spec-card {
      background: var(--ink2); padding: 40px 36px;
      transition: background .25s, transform .25s, box-shadow .25s;
      text-decoration: none; display: block;
      position: relative; overflow: hidden;
    }
    a.spec-card-link,
    a.spec-card-link:link,
    a.spec-card-link:visited,
    a.spec-card-link:hover,
    a.spec-card-link:active { text-decoration: none !important; }
    a.spec-card-link h3 { color: var(--cream) !important; }
    a.spec-card-link p  { color: #ffffff !important; }
    a.spec-card-link li { color: #ffffff !important; }
    .spec-card-link:hover {
      background: #302B27;
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,0,0,.35);
    }
    .spec-card-link::after {
      content: 'Saiba mais →';
      position: absolute; bottom: 20px; right: 24px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px; letter-spacing: .1em;
      color: var(--terra); opacity: 0;
      transition: opacity .25s, transform .25s;
      transform: translateX(-6px);
    }
    .spec-card-link:hover::after {
      opacity: 1;
      transform: translateX(0);
    }
    .spec-card-icon {
      width: 36px; height: 36px; color: var(--terra);
      margin-bottom: 24px;
    }
    .spec-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px; font-weight: 700; color: var(--cream);
      margin-bottom: 12px;
    }
    .spec-card p {
      font-size: 13px; color: #ffffff !important;
      line-height: 1.7; margin-bottom: 20px; font-weight: 300;
    }
    .spec-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .spec-card li {
      font-size: 13px; color: #ffffff !important;
      display: flex; align-items: flex-start; gap: 8px;
    }
    .spec-card li::before {
      content: '–'; color: var(--terra); flex-shrink: 0; font-weight: 500;
    }

    /* ── FOR WHO ─────────────────────────────────────────── */
    #for-who { background: var(--cream2); }
    .for-who-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
      background: var(--border); border: 1px solid var(--border);
      margin-top: 64px; max-width: 800px; margin-left: auto; margin-right: auto;
    }
    .for-who-item {
      background: var(--cream2); padding: 32px 36px;
      display: flex; gap: 20px; align-items: flex-start;
      transition: background .2s;
    }
    .for-who-item:hover { background: var(--cream); }
    .for-who-num {
      font-family: 'JetBrains Mono', monospace;
      font-size: 28px; color: var(--border); font-weight: 400;
      line-height: 1; flex-shrink: 0; margin-top: 2px;
    }
    .for-who-item p {
      font-size: 15px; color: var(--muted); line-height: 1.65; font-weight: 300;
    }
    .for-who-item p strong { color: var(--ink); font-weight: 500; }
    .for-who-note {
      max-width: 620px; margin: 48px auto 0;
      background: var(--white); border: 1px solid var(--border);
      padding: 28px 36px; border-radius: 4px; text-align: center;
    }
    .for-who-note p { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }
    .for-who-note p strong { color: var(--ink); font-weight: 500; }

    /* ── HOW IT WORKS ────────────────────────────────────── */
    #how { background: var(--cream); }
    /* ── COMO FUNCIONA — visual redesign ────────────────── */
    .how-steps {
      display: grid; grid-template-columns: repeat(5, 1fr);
      gap: 0; position: relative; margin-top: 56px; align-items: start;
    }
    .how-line { display: none; }
    .how-step {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; position: relative; padding: 0 8px;
    }
    /* arrow connector between steps */
    .how-step:not(:last-child)::after {
      content: '→';
      position: absolute; top: 28px; right: -14px;
      font-size: 18px; color: var(--sage-light); z-index: 2;
      line-height: 1;
    }
    .how-step-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 8px; padding: 28px 20px 24px;
      width: 100%; transition: box-shadow .2s, border-color .2s;
    }
    .how-step-card:hover {
      box-shadow: 0 8px 32px rgba(21,18,16,.08);
      border-color: var(--sage-light);
    }
    .how-step-top {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 16px;
    }
    .how-step-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: var(--sage-light); color: var(--sage-dark);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .how-step-num {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px; font-weight: 500; letter-spacing: .08em;
      color: var(--muted); background: var(--cream2);
      padding: 3px 8px; border-radius: 20px;
    }
    .how-step h4 {
      font-family: 'Playfair Display', serif;
      font-size: 15px; font-weight: 700; color: var(--ink);
      margin-bottom: 8px; text-align: left;
    }
    .how-step p {
      font-size: 12px; color: var(--muted); line-height: 1.6;
      font-weight: 300; text-align: left;
    }
    .how-step-tag {
      margin-top: 14px; display: inline-block;
      font-size: 10px; font-weight: 500; letter-spacing: .1em;
      text-transform: uppercase; color: var(--sage);
      background: rgba(95,113,97,.08); padding: 3px 10px;
      border-radius: 20px;
    }
    /* highlight first step */
    .how-step:first-child .how-step-card {
      border-color: var(--sage-light);
      background: linear-gradient(135deg, var(--white) 0%, rgba(200,212,201,.15) 100%);
    }
    .how-step:first-child .how-step-icon {
      background: var(--sage); color: var(--white);
    }

    /* ── FAQ ─────────────────────────────────────────────── */
    #faq { background: var(--cream2); }
    .faq-wrap { max-width: 720px; margin: 64px auto 0; }
    .faq-item {
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-btn {
      width: 100%; background: none; border: none; cursor: pointer;
      padding: 24px 0; display: flex; justify-content: space-between;
      align-items: center; gap: 20px; text-align: left;
    }
    .faq-q {
      font-family: 'Playfair Display', serif;
      font-size: 18px; font-weight: 500; color: var(--ink);
    }
    .faq-icon {
      width: 24px; height: 24px; flex-shrink: 0;
      color: var(--sage); transition: transform .3s;
    }
    .faq-icon.open { transform: rotate(45deg); }
    .faq-body {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, opacity .25s ease;
      opacity: 0;
    }
    .faq-body.open { max-height: 400px; opacity: 1; }
    .faq-body p {
      font-size: 15px; color: var(--muted); line-height: 1.75;
      padding-bottom: 24px; font-weight: 300;
    }

    /* ── CTA FINAL ───────────────────────────────────────── */
    #cta-section {
      background: var(--ink); padding: 120px 64px;
      text-align: center;
    }
    #cta-section .section-label { color: var(--terra); justify-content: center; }
    #cta-section .section-label::before { display: none; }
    #cta-section .section-title { color: var(--cream); }
    #cta-section .section-title em { color: var(--terra); }
    #cta-section p {
      font-size: 16px; color: rgba(245,242,236,.55);
      max-width: 520px; margin: 24px auto 48px; font-weight: 300; line-height: 1.7;
    }
    .btn-cta-final {
      display: inline-flex; align-items: center; gap: 12px;
      text-decoration: none;
      font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
      color: var(--ink); background: var(--terra);
      padding: 20px 52px; border-radius: 2px;
      transition: background .2s, transform .15s;
    }
    .btn-cta-final:hover { background: #b57348; transform: translateY(-2px); }

    /* ── FOOTER ──────────────────────────────────────────── */
    footer {
      background: #0D0B09; color: rgba(245,242,236,.45);
      padding: 60px 64px 32px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 48px; padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      margin-bottom: 32px;
    }
    .footer-brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 22px; font-weight: 700; color: var(--cream);
      margin-bottom: 4px;
    }
    .footer-brand-crp {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px; color: var(--sage-light); letter-spacing: .1em;
      margin-bottom: 16px;
    }
    .footer-brand-desc {
      font-size: 13px; line-height: 1.7; font-weight: 300;
      max-width: 260px;
    }
    .footer-col h4 {
      font-size: 11px; font-weight: 600; letter-spacing: .16em;
      text-transform: uppercase; color: rgba(245,242,236,.7);
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col li a, .footer-col li {
      font-size: 13px; color: rgba(245,242,236,.4);
      text-decoration: none; transition: color .2s;
    }
    .footer-col li a:hover { color: var(--cream); }
    .footer-lgpd {
      background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
      border-radius: 4px; padding: 20px;
    }
    .footer-lgpd p { font-size: 12px; line-height: 1.65; margin-bottom: 16px; }
    .footer-lgpd a {
      display: block; text-align: center;
      font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
      text-decoration: none;
      color: var(--ink); background: var(--sage);
      padding: 12px; border-radius: 2px;
      transition: background .2s;
    }
    .footer-lgpd a:hover { background: var(--sage-dark); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
      font-size: 11px;
    }

    /* ── WHATSAPP FLOAT ──────────────────────────────────── */
    #wa-float {
      position: fixed; bottom: 28px; right: 28px; z-index: 200;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25D366; color: white;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      text-decoration: none;
      animation: float-pulse 4s ease-in-out infinite;
      transition: transform .2s;
    }
    #wa-float:hover { transform: scale(1.1); }
    @keyframes float-pulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
      50%       { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
    }
    #wa-float { will-change: transform; }

    /* ── MOBILE MENU ─────────────────────────────────────── */
    #mobile-nav {
      display: none; position: fixed; inset: 0; z-index: 85;
      background: var(--cream); padding: 120px 48px 48px;
      flex-direction: column; gap: 32px;
    }
    #mobile-nav.open { display: flex; }
    #mobile-nav a {
      font-family: 'Playfair Display', serif;
      font-size: 32px; font-weight: 700; color: var(--ink);
      text-decoration: none; border-bottom: 1px solid var(--border);
      padding-bottom: 20px;
    }
    #mobile-nav .mobile-cta {
      font-family: 'Inter', sans-serif;
      font-size: 13px; font-weight: 600; letter-spacing: .14em;
      text-transform: uppercase; color: var(--white);
      background: var(--sage); text-align: center;
      padding: 18px; border-radius: 2px; border: none;
      margin-top: 8px;
    }

    /* ── RESPONSIVE ──────────────────────────────────────── */
    @media (max-width: 1024px) {
      #hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 140px 32px 60px; }
      .hero-right { height: 420px; }
      .hero-divider { display: none; }
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-img-caption { right: 0; }
      .spec-grid { grid-template-columns: 1fr 1fr; }
      .pillars-grid { grid-template-columns: 1fr 1fr; }
      .how-steps { grid-template-columns: 1fr; gap: 20px; }
      .how-line { display: none; }
      .how-step::after { display: none; }
      .how-step-card { padding: 24px 20px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      section { padding: 72px 24px; }

      /* ── topbar mobile ── */
      #topbar {
        padding: 8px 16px;
        gap: 8px;
      }
      #topbar .crp { display: none; }
      .hidden-mobile { display: none !important; }
      #topbar .right { gap: 12px; }
      #topbar a.cta-top { padding: 5px 12px; font-size: 9px; }

      /* ── navbar mobile ── */
      #navbar { top: 36px; padding: 12px 20px; }
      #navbar.scrolled { padding: 10px 20px; }
      .nav-links { display: none; }
      .mobile-menu-btn { display: block; }
      .nav-logo-img { width: 44px; height: 44px; }

      /* ── hero mobile ── */
      .hero-left { padding: 120px 24px 48px; }
      .hero-h1 { font-size: 38px; }
      .btn-primary {
        width: 100%;
        justify-content: center;
        font-size: 11px;
        padding: 14px 24px;
      }
      .hero-actions { flex-direction: column; align-items: flex-start; }

      /* ── grids mobile ── */
      .spec-grid { grid-template-columns: 1fr; }
      .pillars-grid { grid-template-columns: 1fr; }
      .for-who-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }

      /* ── misc mobile ── */
      #cta-section { padding: 80px 24px; }
      footer { padding: 48px 24px 24px; }
      .hero-social { display: none; }
      .hero-crp-badge { display: none; }
      .about-img-caption { position: static; margin-top: -12px; border-radius: 2px; }

      /* ── whatsapp float ── */
      #wa-float { bottom: 20px; right: 16px; width: 48px; height: 48px; }
    }

    /* ── TOPBAR SOCIALS ──────────────────────────────────── */
    .topbar-socials {
      display: flex; align-items: center; gap: 6px;
    }
    .tsoc {
      display: flex; align-items: center; justify-content: center;
      width: 26px; height: 26px; border-radius: 6px;
      text-decoration: none; transition: transform .15s, opacity .15s;
      opacity: .85;
    }
    .tsoc:hover { transform: scale(1.12); opacity: 1; }
    .tsoc-ig {
      background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
      color: #fff;
    }
    .tsoc-sp {
      background: #1DB954;
      color: #fff;
    }
    .tsoc-yt {
      background: #FF0000;
      color: #fff;
    }

    /* ═══════════════════════════════════════════════════════════
       ARTICLE / TOPIC SUBPAGES
    ═══════════════════════════════════════════════════════════ */

    /* ── Article page body ─────────────────────────────────── */
    body.article-page {
      background: var(--cream);
    }

    /* ── Article hero ──────────────────────────────────────── */
    .article-hero {
      background: var(--ink);
      padding: 148px 64px 64px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .article-hero-inner {
      max-width: 760px;
    }
    .article-back {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--sage-light); text-decoration: none;
      font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
      font-family: 'JetBrains Mono', monospace;
      margin-bottom: 32px;
      transition: color .2s, gap .15s;
    }
    .article-back:hover { color: var(--cream); gap: 12px; }
    .article-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
      color: var(--terra); margin-bottom: 16px;
    }
    .article-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 5vw, 54px); font-weight: 700;
      color: var(--cream); line-height: 1.18;
      margin-bottom: 16px;
    }
    .article-subtitle {
      font-size: 17px; font-weight: 300; line-height: 1.6;
      color: rgba(245,242,236,.55);
      max-width: 600px;
    }

    /* ── Article body ───────────────────────────────────────── */
    .article-body {
      max-width: 760px;
      padding: 72px 64px 80px;
    }
    .article-content {
      display: flex; flex-direction: column; gap: 0;
    }

    /* ── Article section ────────────────────────────────────── */
    .article-section {
      padding: 40px 0;
      border-bottom: 1px solid var(--border-light);
    }
    .article-section:last-of-type {
      border-bottom: none;
    }
    .article-section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 2.5vw, 26px); font-weight: 700;
      color: var(--ink2); margin-bottom: 16px; line-height: 1.3;
    }
    .article-section-text {
      font-size: 16px; font-weight: 300; line-height: 1.8;
      color: var(--ink2);
    }
    .article-section-text + .article-section-text {
      margin-top: 16px;
    }
    .article-list {
      margin: 20px 0 20px 0; padding: 0;
      list-style: none; display: flex; flex-direction: column; gap: 14px;
    }
    .article-list li {
      font-size: 16px; font-weight: 300; line-height: 1.7;
      color: var(--ink2); padding-left: 24px; position: relative;
    }
    .article-list li::before {
      content: ''; position: absolute; left: 0; top: 11px;
      width: 10px; height: 1px; background: var(--sage);
    }
    .article-list li strong { color: var(--ink); font-weight: 500; }
    .article-closing-quote {
      margin-top: 24px !important;
      border-left: 2px solid var(--sage);
      padding-left: 16px;
      font-style: italic;
      color: var(--ink) !important;
    }

    /* ── CFP compliance note ────────────────────────────────── */
    .article-cfp-note {
      display: flex; align-items: flex-start; gap: 16px;
      background: var(--cream2); border: 1px solid var(--border);
      border-left: 3px solid var(--sage);
      border-radius: 6px; padding: 20px 24px;
      margin: 40px 0 32px;
    }
    .article-cfp-note svg {
      flex-shrink: 0; margin-top: 2px;
      color: var(--sage);
    }
    .article-cfp-note p {
      font-size: 13px; line-height: 1.7; color: var(--muted);
    }

    /* ── Related links ──────────────────────────────────────── */
    .article-related {
      margin-top: 8px; padding-top: 32px;
      border-top: 1px solid var(--border-light);
    }
    .article-related-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
      color: var(--sage); margin-bottom: 16px;
    }
    .article-related-links {
      display: flex; flex-wrap: wrap; gap: 10px;
    }
    .article-related-link {
      display: inline-block; text-decoration: none;
      font-size: 12px; font-weight: 500; letter-spacing: .06em;
      color: var(--sage-dark);
      background: rgba(95,113,97,.08);
      border: 1px solid var(--sage-light);
      padding: 8px 18px; border-radius: 20px;
      transition: background .18s, color .18s, transform .15s;
    }
    .article-related-link:hover {
      background: var(--sage); color: var(--cream);
      transform: translateY(-1px);
    }

    /* ── Responsive — article pages ────────────────────────── */
    @media (max-width: 768px) {
      .article-hero { padding: 120px 24px 48px; }
      .article-body { padding: 40px 24px 60px; }
    }
