:root {
    --bg: #F7F4ED;          /* warm cream */
    --bg-pure: #FFFFFF;
    --bg-soft: #FBF9F3;
    --ink: #0A1E3F;
    --ink-2: #122A52;
    --ink-soft: #2B3A55;
    --muted: #6B7280;
    --line: #E6E0D0;
    --line-soft: #EFEAD9;
    --gold: #C9A24E;
    --gold-2: #B6904A;
    --gold-soft: #E6D6A8;
    --gold-tint: #F4ECD4;
    --r-sm: 14px;
    --r-md: 22px;
    --r-lg: 32px;
    --r-xl: 44px;
    --r-pill: 999px;
    --shadow-sm: 0 2px 8px rgba(10,30,63,0.04), 0 1px 2px rgba(10,30,63,0.04);
    --shadow-md: 0 10px 30px -10px rgba(10,30,63,0.12), 0 4px 12px -6px rgba(10,30,63,0.06);
    --shadow-lg: 0 30px 60px -20px rgba(10,30,63,0.20), 0 14px 30px -16px rgba(10,30,63,0.10);
    --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --easing: cubic-bezier(.2,.7,.2,1);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }

  .container {
    width: min(1280px, 100% - 80px);
    margin: 0 auto;
  }
  .container-wide {
    width: min(1440px, 100% - 64px);
    margin: 0 auto;
  }

  /* ─────── TYPE SYSTEM ─────── */
  .display {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(38px, 5vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.022em;
  }
  .display em { font-style: italic; font-weight: 500; color: var(--ink); }
  .display .gold { color: var(--gold-2); font-style: italic; font-weight: 500; }
  .h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(36px, 4.4vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.014em;
  }
  .h2 em { font-style: italic; font-weight: 500; }
  .h2 .gold { color: var(--gold-2); font-style: italic; font-weight: 500; }
  /* Inline shield icon — matches display line height */
  .shield-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.92em;
    height: 0.92em;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    vertical-align: -0.08em;
    margin: 0 0.06em 0 0.12em;
    box-shadow: 0 6px 18px -6px rgba(201,162,78,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
    flex-shrink: 0;
  }
  .shield-chip svg {
    width: 52%;
    height: 52%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(26px, 2.4vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.008em;
  }
  .eyebrow {
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
  }
  .lede {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 56ch;
  }
  .body-copy { font-size: 16.5px; color: var(--ink-soft); line-height: 1.7; }

  /* ─────── BUTTONS ─────── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 16px 26px;
    border-radius: var(--r-pill);
    transition: all .35s var(--easing);
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
  }
  .btn-primary {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }
  .btn-primary:hover {
    background: var(--ink-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .btn-primary .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(201,162,78,0.18);
    animation: pulse 2.2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(201,162,78,0.18); }
    50%       { box-shadow: 0 0 0 8px rgba(201,162,78,0.06); }
  }
  .btn-gold {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
  }
  .btn-gold:hover {
    background: var(--gold-2);
    border-color: var(--gold-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .btn-ghost {
    color: var(--ink);
    border-color: var(--line);
    background: transparent;
  }
  .btn-ghost:hover { border-color: var(--ink); background: var(--bg-pure); }
  .btn svg { width: 18px; height: 18px; }

  .btn-link {
    font-size: 14px;
    color: var(--ink);
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
  }
  .btn-link::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--gold);
    transform-origin: left center;
    transition: transform .4s var(--easing);
  }
  .btn-link:hover::after { transform: scaleX(1.06); }
  .btn-link .arrow {
    transition: transform .35s var(--easing);
  }
  .btn-link:hover .arrow { transform: translateX(4px); }

  /* ─────── NAV ─────── */
  .nav {
    position: sticky;
    top: 16px;
    z-index: 80;
    width: min(1320px, calc(100% - 40px));
    margin: 16px auto 0;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    border: 1px solid rgba(230, 224, 208, 0.7);
    border-radius: var(--r-pill);
    box-shadow: 0 8px 30px -12px rgba(10,30,63,0.10), 0 2px 8px -2px rgba(10,30,63,0.04);
  }
  .nav-inner {
    height: 64px;
    padding: 0 12px 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  /* keep hero content constrained but responsive */
  .hero-content { max-width: 570px; width: 100%; }
  /* mobile nav toggle (hidden on wide screens) */
  .nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    margin-left: 12px;
    cursor: pointer;
    color: var(--ink);
  }
  .nav-toggle svg { display: block; }
  .brand { display: flex; align-items: baseline; gap: 14px; }
  .brand-mark {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 28px;
    letter-spacing: 0.02em;
    color: var(--ink);
    position: relative;
  }
  .brand-mark::after {
    content: "";
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;
    transform: translateY(-3px);
  }
  .brand-sub {
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .nav-links {
    display: flex;
    gap: 38px;
    font-size: 13.5px;
    color: var(--ink-soft);
  }
  .nav-links a {
    position: relative;
    padding: 6px 0;
    transition: color .25s var(--easing);
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .4s var(--easing);
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { transform: scaleX(1); }

  /* Nav-specific compact CTA */
  .nav .btn {
    padding: 10px 18px;
    font-size: 13px;
    gap: 9px;
  }
  .nav .btn .dot {
    width: 6px; height: 6px;
    box-shadow: 0 0 0 3px rgba(201,162,78,0.18);
  }

  /* ─────── HERO ─────── */
  .hero {
    position: relative;
    padding: 40px 0 56px;
    min-height: 85vh;
    overflow: hidden;
  }
  .hero::before {
    /* subtle gold halo behind portrait */
    content: "";
    position: absolute;
    right: -240px;
    top: 80px;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(201,162,78,0.16), rgba(201,162,78,0) 60%);
    z-index: 0;
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-content > * + * { margin-top: 20px; }
  .hero-content .display { margin-top: 16px; }
  .hero-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .trust-strip {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 12.5px;
    letter-spacing: 0.06em;
  }
  .trust-strip .dot-sep {
    width: 3px; height: 3px; border-radius: 50%;
    background: var(--gold);
  }
  .trust-strip strong {
    color: var(--ink);
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  /* Hero image composition */
  .hero-portrait {
    position: relative;
    aspect-ratio: 4 / 5.2;
    width: 100%;
    max-height: calc(85vh - 96px);
  }
  .hero-portrait .frame {
    position: absolute;
    inset: 0;
    border-radius: 240px 240px 32px 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .hero-portrait .frame image-slot {
    width: 100%;
    height: 100%;
  }
  /* floating cards */
  .float-card {
    position: absolute;
    background: var(--bg-pure);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 18px 22px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    backdrop-filter: blur(10px);
  }
  .float-card.tag-name {
    bottom: 36px;
    left: -36px;
    width: 280px;
  }
  .float-card.tag-name .name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.1;
  }
  .float-card.tag-name .role {
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
  }
  .float-card.tag-name .oab {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-size: 12.5px;
    color: var(--ink-soft);
  }

  .float-card.metric {
    top: 64px;
    right: -52px;
    text-align: left;
    padding: 18px 22px;
    width: 200px;
  }
  .float-card.metric .num {
    font-family: var(--serif);
    font-size: 44px;
    line-height: 1;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .float-card.metric .num .gold { color: var(--gold-2); font-style: italic; }
  .float-card.metric .lbl {
    margin-top: 10px;
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.45;
  }

  /* ─────── AUTHORITY STRIP ─────── */
  .authority {
    background: var(--bg-pure);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
    overflow: hidden;
  }
  .marquee {
    display: flex;
    align-items: center;
    gap: 64px;
    animation: marquee 10s linear infinite;
    white-space: nowrap;
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
    color: var(--ink-soft);
    font-weight: 400;
  }
  .marquee .dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .marquee-mask {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }

  /* ─────── SECTIONS ─────── */
  section { padding: 88px 0; position: relative; }
  .section-head { max-width: 760px; margin-bottom: 44px; }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .section-head.center .lede { margin-left: auto; margin-right: auto; }
  .section-head .eyebrow { margin-bottom: 18px; }
  .section-head .lede { margin-top: 20px; }

  /* ─────── O QUE É ─────── */
  .what {
    background: var(--bg-pure);
  }
  .what-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
  }
  .what-image {
    aspect-ratio: 5 / 6;
    position: relative;
  }
  .what-image .frame {
    width: 100%;
    height: 100%;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .what-image .frame image-slot { width: 100%; height: 100%; }
  .what-image .badge {
    position: absolute;
    left: -28px;
    bottom: 40px;
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-pill);
    padding: 14px 22px;
    font-family: var(--serif);
    font-size: 16px;
    font-style: italic;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .what-image .badge::before {
    content: "";
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
  }
  .what-text > * + * { margin-top: 20px; }
  .pull-quote {
    margin-top: 28px;
    padding: 26px 30px;
    background: var(--bg-soft);
    border-radius: var(--r-md);
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.4;
    font-style: italic;
    color: var(--ink);
    position: relative;
  }
  .pull-quote::before {
    content: "“";
    position: absolute;
    top: -14px;
    left: 22px;
    font-family: var(--serif);
    font-size: 80px;
    line-height: 1;
    color: var(--gold);
    font-style: normal;
  }

  /* ─────── PILLARS / METRICS DARK ─────── */
  .pillars {
    background: var(--ink);
    color: #fff;
    overflow: hidden;
  }
  .pillars::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 12% 30%, rgba(201,162,78,0.18), transparent 40%),
      radial-gradient(circle at 88% 80%, rgba(201,162,78,0.12), transparent 45%);
    pointer-events: none;
  }
  .pillars .container { position: relative; z-index: 1; }
  .pillars .eyebrow { color: var(--gold-soft); }
  .pillars .eyebrow::before { background: var(--gold-soft); }
  .pillars h2 { color: #fff; }
  .pillars .lede { color: rgba(255,255,255,0.72); }
  .pillars-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 8px;
  }
  .pillar-stat {
    padding: 8px 0;
  }
  .pillar-stat .big {
    font-family: var(--serif);
    font-size: clamp(56px, 6vw, 88px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 6px;
  }
  .pillar-stat .big sup {
    font-size: 0.4em;
    color: var(--gold);
    font-style: italic;
    line-height: 1.2;
    font-weight: 400;
    top: 0.4em;
  }
  .pillar-stat .lbl {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.16);
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    line-height: 1.55;
    letter-spacing: 0.02em;
  }

  /* ─────── BENEFITS ─────── */
  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 8px;
  }
  .benefit-card {
    background: var(--bg-pure);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform .5s var(--easing), box-shadow .5s var(--easing), border-color .5s var(--easing);
  }
  .benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-soft);
  }
  .benefit-card::before {
    /* subtle gold corner accent */
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 160px; height: 160px;
    background: radial-gradient(circle at top right, rgba(201,162,78,0.08), transparent 60%);
    pointer-events: none;
  }
  .benefit-image {
    aspect-ratio: 16 / 10;
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 22px;
    position: relative;
  }
  .benefit-image image-slot { width: 100%; height: 100%; }
  .benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-tint);
    color: var(--gold-2);
    padding: 8px 14px;
    border-radius: var(--r-pill);
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .benefit-tag .num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
  }
  .benefit-title {
    font-family: var(--serif);
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 1.1;
    font-weight: 400;
    margin: 18px 0 18px;
    letter-spacing: -0.012em;
  }
  .benefit-title em { font-style: italic; font-weight: 500; }
  .benefit-title .gold { color: var(--gold-2); font-style: italic; font-weight: 500; }
  .benefit-body { color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
  .benefit-metrics {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .benefit-metric .num {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .benefit-metric .num .gold { color: var(--gold-2); font-style: italic; }
  .benefit-metric .lbl {
    margin-top: 8px;
    font-size: 12.5px;
    color: var(--muted);
    letter-spacing: 0.02em;
    line-height: 1.45;
  }

  /* ─────── JOYCE / AUTHORITY ─────── */
  .joyce {
    background: var(--bg-pure);
    overflow: hidden;
  }
  .joyce-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .joyce-portrait {
    position: relative;
    aspect-ratio: 4 / 5;
  }
  .joyce-portrait .frame {
    width: 100%; height: 100%;
    border-radius: 999px 999px 32px 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .joyce-portrait .frame image-slot { width: 100%; height: 100%; }
  .joyce-portrait .credit-chip {
    position: absolute;
    bottom: -22px;
    right: -16px;
    background: var(--gold);
    color: var(--ink);
    border-radius: var(--r-pill);
    padding: 14px 22px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    font-weight: 500;
    box-shadow: var(--shadow-md);
  }
  .joyce-text > * + * { margin-top: 24px; }
  .joyce-bio {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
  }
  .credentials {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .credentials li {
    list-style: none;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 10px 18px;
    border-radius: var(--r-pill);
    font-size: 13px;
    letter-spacing: 0.01em;
  }
  .credentials li.gold {
    background: var(--gold-tint);
    border-color: var(--gold-soft);
    color: var(--gold-2);
    font-weight: 500;
  }

  /* ─────── PARA QUEM ─────── */
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8px;
  }
  .persona {
    background: var(--bg-pure);
    border-radius: var(--r-lg);
    padding: 14px 14px 28px;
    transition: transform .5s var(--easing), box-shadow .5s var(--easing);
    border: 1px solid var(--line);
  }
  .persona:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .persona-image {
    aspect-ratio: 4 / 5;
    border-radius: calc(var(--r-lg) - 8px);
    overflow: hidden;
    margin-bottom: 24px;
  }
  .persona-image image-slot { width: 100%; height: 100%; }
  .persona-content { padding: 0 14px; }
  .persona-num {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold-2);
    font-size: 14px;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
  }
  .persona-title {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.18;
    font-weight: 500;
    margin: 0 0 10px;
    letter-spacing: -0.005em;
  }
  .persona-desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
  }

  /* ─────── PROCESS TIMELINE ─────── */
  .process { background: var(--bg-pure); }
  .timeline {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
  }
  .timeline::before {
    content: "";
    position: absolute;
    left: 39px;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-soft) 50%, transparent 100%);
  }
  .t-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: flex-start;
    padding: 18px 0;
    position: relative;
  }
  .t-step + .t-step { border-top: 1px solid var(--line-soft); }
  .t-node {
    width: 78px; height: 78px;
    border-radius: 50%;
    background: var(--bg-pure);
    border: 1px solid var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 28px;
    font-style: italic;
    color: var(--gold-2);
    font-weight: 500;
    z-index: 2;
    position: relative;
    transition: all .4s var(--easing);
  }
  .t-step:hover .t-node {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 0 8px var(--gold-tint);
  }
  .t-content { padding-top: 10px; max-width: 560px; }
  .t-time {
    display: block;
    margin: 0 0 8px;
    font-size: 11.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-2);
    background: none;
    border: 0;
    padding: 0;
    border-radius: 0;
  }
  .t-title {
    font-family: var(--serif);
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 8px;
    letter-spacing: -0.006em;
  }
  .t-desc {
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0;
  }

  /* ─────── FAQ ─────── */
  .faq-list {
    max-width: 880px;
    margin: 32px auto 0;
    border-top: 1px solid var(--line);
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 28px 8px;
    cursor: pointer;
    list-style: none;
    transition: padding .35s var(--easing);
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-item[open] .faq-q { padding-bottom: 12px; }
  .faq-item:hover .faq-q { padding-left: 20px; }
  .faq-q span {
    font-family: var(--serif);
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.005em;
    color: var(--ink);
  }
  .faq-toggle {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all .35s var(--easing);
    color: var(--gold-2);
  }
  .faq-item:hover .faq-toggle { background: var(--gold-tint); border-color: var(--gold-soft); }
  .faq-item[open] .faq-toggle {
    background: var(--ink);
    color: var(--gold);
    border-color: var(--ink);
    transform: rotate(45deg);
  }
  .faq-toggle svg { width: 14px; height: 14px; }
  .faq-a {
    padding: 0 8px 28px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
    max-width: 70ch;
  }

  /* ─────── CTA ─────── */
  .cta {
    background: var(--ink);
    color: #fff;
    overflow: hidden;
    position: relative;
  }
  .cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 20%, rgba(201,162,78,0.20), transparent 45%),
      radial-gradient(circle at 80% 90%, rgba(201,162,78,0.14), transparent 50%);
    pointer-events: none;
  }
  .cta-inner {
    padding: 88px 0 80px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .cta .eyebrow { color: var(--gold-soft); }
  .cta .eyebrow::before { background: var(--gold-soft); }
  .cta h2 {
    color: #fff;
    margin: 20px auto 18px;
    max-width: 16ch;
  }
  .cta h2 em { color: var(--gold-soft); font-style: italic; font-weight: 500; }
  .cta p {
    color: rgba(255,255,255,0.72);
    font-size: 17px;
    max-width: 56ch;
    margin: 0 auto 32px;
    line-height: 1.65;
  }
  .cta-actions {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .btn-whatsapp {
    background: var(--gold);
    color: var(--ink);
    padding: 20px 36px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border: 1px solid var(--gold);
    border-radius: var(--r-pill);
  }
  .btn-whatsapp:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .cta .secondary-link {
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(230,214,168,0.5);
    padding-bottom: 4px;
    transition: border-color .35s var(--easing);
  }
  .cta .secondary-link:hover { border-color: var(--gold); }
  .cta-info {
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
  }
  .cta-info span { color: rgba(255,255,255,0.92); }

  /* ─────── FOOTER ─────── */
  footer {
    background: var(--bg);
    padding: 64px 0 28px;
    border-top: 1px solid var(--line);
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 44px;
  }
  .foot-brand .brand-mark { font-size: 32px; }
  .foot-brand p {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 36ch;
  }
  .foot-col h4 {
    margin: 0 0 22px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
  .foot-col li { font-size: 14px; color: var(--muted); }
  .foot-col li a { transition: color .25s var(--easing); }
  .foot-col li a:hover { color: var(--gold-2); }
  .foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.02em;
  }
  .foot-bottom .legal { display: flex; gap: 24px; }
  .foot-bottom .legal a:hover { color: var(--gold-2); }

  /* ─────── ÁREAS DE ATUAÇÃO · POR QUE ESCOLHER ─────── */
  .areas { background: var(--bg-pure); }
  .areas-grid, .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8px;
  }
  .area-card, .why-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 30px 28px 32px;
    transition: transform .4s var(--easing), box-shadow .4s var(--easing), border-color .4s var(--easing);
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .why .why-card { background: var(--bg-pure); }
  .area-card:hover, .why-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-soft);
    box-shadow: var(--shadow-md);
  }
  .area-icon, .why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gold-tint);
    color: var(--gold-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid var(--gold-soft);
  }
  .area-icon svg, .why-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .area-title, .why-title {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.22;
    font-weight: 500;
    margin: 0 0 10px;
    letter-spacing: -0.005em;
    color: var(--ink);
  }
  .area-desc, .why-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
  }
  .area-card .area-link {
    margin-top: 18px;
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-2);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  /* image-slot defaults */
  image-slot {
    --slot-bg: #ECE6D5;
    --slot-border: 1px solid var(--line);
    --slot-text: var(--muted);
    --slot-font: 11px var(--sans);
  }

  /* scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--easing), transform .9s var(--easing);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

  /* floating WhatsApp */
  .float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 100;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(37,211,102,0.32), 0 6px 12px rgba(10,30,63,0.15);
    transition: transform .35s var(--easing), box-shadow .35s var(--easing);
  }
  .float-wa:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 36px rgba(37,211,102,0.42); }
  .float-wa svg { width: 28px; height: 28px; color: #fff; }
  .float-wa::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.4);
    animation: pulse-wa 2.2s ease-out infinite;
  }
  @keyframes pulse-wa {
    0%   { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.25); opacity: 0; }
  }

  /* ─────── RESPONSIVE ─────── */
  @media (max-width: 1080px) {
    .float-card.metric { right: 8px; }
    .float-card.tag-name { left: 8px; }
  }
  @media (max-width: 980px) {
    /* show toggle and provide expanded mobile menu */
    .nav-toggle { display: inline-flex; align-items: center; }
    .nav.open .nav-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: absolute;
      left: 12px;
      right: 12px;
      top: calc(100% + 12px);
      background: rgba(255,255,255,0.98);
      border-radius: 12px;
      padding: 12px;
      box-shadow: var(--shadow-md);
      z-index: 90;
    }
    .nav.open .nav-links a { padding: 8px 12px; }
    .nav.open .nav-links a::after { display: none; }
    .container, .container-wide { width: min(1280px, 100% - 40px); }
    .nav-links { display: none; }
    .hero { padding: 28px 0 64px; min-height: unset; }
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-portrait { max-width: 520px; margin: 0 auto; width: 100%; }
    .float-card.metric { right: 0; }
    .float-card.tag-name { left: 0; width: auto; max-width: 80%; }
    section { padding: 64px 0; }
    .what-grid, .joyce-grid { grid-template-columns: 1fr; gap: 40px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .pillars-row { grid-template-columns: repeat(2, 1fr); }
    .areas-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .foot-bottom { flex-direction: column; gap: 14px; }
  }
  @media (max-width: 560px) {
    .audience-grid { grid-template-columns: 1fr; }
    .areas-grid, .why-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; }
    .pillars-row { grid-template-columns: 1fr 1fr; gap: 20px; }
    .marquee { font-size: 18px; gap: 40px; }
    .benefit-card { padding: 28px; }
    .benefit-metrics { grid-template-columns: 1fr; }
    .trust-strip { gap: 12px; font-size: 12px; }
    .t-step { grid-template-columns: 60px 1fr; gap: 20px; }
    .t-node { width: 60px; height: 60px; font-size: 22px; }
    .timeline::before { left: 30px; }
    .cta-info { gap: 20px; text-align: center; }
    .float-wa { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  }

  /* ─────── PAGE HERO (subpages) ─────── */
  .page-hero {
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
    border-radius: var(--r-xl);
    margin: 40px 40px;
    background: var(--ink);
  }
  .page-hero::before {
    content: "";
    position: absolute;
    right: -260px;
    top: -120px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(201,162,78,0.14), rgba(201,162,78,0) 60%);
    z-index: 0;
    pointer-events: none;
  }
  .page-hero .container { position: relative; z-index: 1; }
  .page-hero .eyebrow { margin-bottom: 22px; color: var(--gold-soft); }
  .page-hero .eyebrow::before { background: var(--gold-soft); }
  .page-hero .display-md {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(40px, 5.2vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.018em;
    max-width: 16ch;
    color: #fff;
  }
  .page-hero .display-md em { font-style: italic; font-weight: 500; }
  .page-hero .display-md .gold { color: var(--gold-soft); font-style: italic; font-weight: 500; }
  .page-hero .lede { margin-top: 24px; color: rgba(255,255,255,0.72); }

  /* ─────── SERV-STATS STRIP ─────── */
  .serv-stats {
    margin: 24px 40px 0;
  }
  .serv-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-pure);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
  }
  .serv-stats .pillar-stat {
    padding: 20px 32px;
    border-right: 1px solid var(--line);
  }
  .serv-stats .pillar-stat:last-child { border-right: none; }
  .serv-stats .pillar-stat .big { color: var(--ink); }
  .serv-stats .pillar-stat .big sup {
    color: var(--gold);
    font-size: 0.32em;
    letter-spacing: 0.05em;
    font-style: normal;
  }
  .serv-stats .pillar-stat .lbl {
    border-top-color: var(--line-soft);
    color: var(--ink-soft);
  }

  .nav-links a.current { color: var(--ink); }
  .nav-links a.current::after { transform: scaleX(1); }

  /* ─────── SERVIÇOS: detalhe alternado ─────── */
  .service-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
    padding: 64px 0;
    border-top: 1px solid var(--line);
  }
  .service-block:first-of-type { border-top: 0; }
  .service-block.reverse { grid-template-columns: 0.9fr 1.1fr; }
  .service-block.reverse .service-text { order: 2; }
  .service-block.reverse .service-visual { order: 1; }
  .service-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--gold-2);
    letter-spacing: 0.04em;
    margin-bottom: 10px;
  }
  .service-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(32px, 3.6vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.014em;
    margin: 0 0 18px;
  }
  .service-title em { font-style: italic; font-weight: 500; }
  .service-title .gold { color: var(--gold-2); font-style: italic; font-weight: 500; }
  .service-text > p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin: 0 0 14px; }
  .service-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }
  .service-list li {
    font-size: 14.5px;
    color: var(--ink);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
  }
  .service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 1px;
    background: var(--gold);
  }
  .service-visual {
    aspect-ratio: 4 / 5;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .service-visual image-slot { width: 100%; height: 100%; }
  .service-subsection { margin-top: 28px; }
  .service-subsection:first-child { margin-top: 22px; }
  .service-subtitle {
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .service-subtitle::before {
    content: "";
    width: 14px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
    flex: none;
  }
  .service-subsection .service-list { margin-top: 0; }
  .service-subsection > p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin: 0; }

  /* ─────── EQUIPE ─────── */
  .team-role {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 8px;
  }
  .team-name {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(22px, 1.7vw, 28px);
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.008em;
  }
  .team-bio { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; margin: 0 0 14px; }
  .team-tags {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .team-tags li {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 8px 14px;
    border-radius: var(--r-pill);
    font-size: 12.5px;
  }

  .equipe-split {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 8px;
  }
  .equipe-photo {
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3 / 2;
  }
  .equipe-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .equipe-list { display: flex; flex-direction: column; }
  .equipe-person { padding: 22px 0; border-bottom: 1px solid var(--line); }
  .equipe-person:first-child { padding-top: 0; }
  .equipe-person:last-child { border-bottom: none; }

  .values-section {
    width: 100%;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 96px 0;
    margin-top: 96px;
  }
  .values-strip {
    /* full-bleed background lives on .values-section; content stays in .container */
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
  }
  .value-item .num {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold-2);
    font-size: 16px;
    margin-bottom: 8px;
  }
  .value-item .title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 10px;
    line-height: 1.2;
  }
  .value-item .desc {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
  }

  /* ─────── AGENDAR / FORM ─────── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
  }
  .form-card {
    background: var(--bg-pure);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
  }
  .form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
  .form-row .form-field { margin-bottom: 0; }
  .form-field label {
    font-size: 11.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 500;
  }
  .form-field label .req { color: var(--gold-2); margin-left: 4px; }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-family: var(--sans);
    font-size: 15px;
    color: var(--ink);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 14px 16px;
    outline: none;
    transition: border-color .25s var(--easing), background .25s var(--easing), box-shadow .25s var(--easing);
    width: 100%;
  }
  .form-field textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--gold);
    background: var(--bg-pure);
    box-shadow: 0 0 0 4px rgba(201,162,78,0.12);
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: var(--muted); }
  .form-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
  }
  .form-chip {
    cursor: pointer;
    user-select: none;
  }
  .form-chip input { display: none; }
  .form-chip span {
    display: inline-block;
    padding: 10px 16px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line);
    background: var(--bg-pure);
    color: var(--ink-soft);
    font-size: 13.5px;
    transition: all .25s var(--easing);
  }
  .form-chip:hover span { border-color: var(--gold-soft); color: var(--ink); }
  .form-chip input:checked + span {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }
  .form-submit {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .form-note { font-size: 12.5px; color: var(--muted); max-width: 36ch; line-height: 1.5; }
  .form-error {
    display: none;
    font-size: 13px;
    color: #c45a5a;
    width: 100%;
    margin-top: -4px;
  }
  .form-error.show { display: block; }
  .btn[type="submit"] { border: 1px solid var(--ink); padding: 16px 30px; font-size: 14.5px; }

  .contact-side > * + * { margin-top: 24px; }
  .contact-item {
    background: var(--bg-pure);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 24px 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
  }
  .contact-item .ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gold-tint);
    border: 1px solid var(--gold-soft);
    color: var(--gold-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .contact-item .ico svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
  .contact-item .lbl {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
  }
  .contact-item .val {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.25;
    letter-spacing: -0.005em;
  }
  .contact-item .sub {
    margin-top: 4px;
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  .form-success {
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 36px 40px;
    text-align: center;
    display: none;
  }
  .form-success.show { display: block; }
  .form-success h3 {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 14px;
    color: #fff;
  }
  .form-success h3 em { color: var(--gold-soft); font-style: italic; }
  .form-success p { color: rgba(255,255,255,0.78); font-size: 15px; margin: 0; line-height: 1.6; }

  @media (max-width: 980px) {
    .service-block, .service-block.reverse { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
    .service-block.reverse .service-text { order: 1; }
    .service-block.reverse .service-visual { order: 2; }
    .service-list { grid-template-columns: 1fr; }
    .equipe-split { grid-template-columns: 1fr; gap: 32px; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px; }
    .serv-stats { margin: 24px 0px 0; }
    .serv-stats-row { grid-template-columns: repeat(2, 1fr); }
    .serv-stats .pillar-stat:nth-child(2) { border-right: none; }
    .serv-stats .pillar-stat:nth-child(3) { border-top: 1px solid var(--line); }
    .serv-stats .pillar-stat:nth-child(4) { border-top: 1px solid var(--line); }
    .page-hero { margin: 0 24px; }
  }
  @media (max-width: 560px) {
    .serv-stats { margin: 16px 0px 0; }
    .serv-stats-row { grid-template-columns: 1fr; }
    .serv-stats .pillar-stat { border-right: none; border-top: 1px solid var(--line-soft); }
    .serv-stats .pillar-stat:first-child { border-top: none; }
    .serv-stats .pillar-stat { padding: 16px 20px; }
    .page-hero { margin: 0 16px; border-radius: var(--r-lg); }
  }

  /* ─────── ÁREAS DE ATUAÇÃO · HERO COM IMAGEM + GLASSMORPHISM ─────── */
  /* Troque a URL em --areas-bg-image quando subir a imagem final. */
  .areas {
    /* Sobrescreve o padding-padrão de section (88px 0) */
    padding: 0;
    width: min(1640px, 95%);
    margin: 48px auto;
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    min-height: clamp(560px, 78vh, 820px);
    display: flex;
    align-items: flex-end;       /* ancora o conteúdo na parte de baixo */
    background-color: var(--ink); /* fallback enquanto não há imagem */
    background-image:
      /* sobreposição dourada para destacar o título */
      radial-gradient(ellipse 80% 60% at 18% 92%,
        rgba(201,162,78,0.55) 0%,
        rgba(201,162,78,0.22) 38%,
        rgba(201,162,78,0.00) 72%),
      linear-gradient(180deg,
        rgba(10,30,63,0.22) 0%,
        rgba(10,30,63,0.45) 55%,
        rgba(10,30,63,0.78) 100%),
      var(--areas-bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
  }
  /* Placeholder visível enquanto não há imagem real — pode remover depois */
  .areas::before {
    content: "imagem de fundo • substituir via --areas-bg-image";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "SF Mono", ui-monospace, Menlo, monospace;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    background:
      repeating-linear-gradient(
        135deg,
        rgba(255,255,255,0.03) 0 12px,
        rgba(255,255,255,0.00) 12px 24px);
    pointer-events: none;
    z-index: 0;
  }
  /* Quando você definir --areas-bg-image, basta esconder o placeholder. */
  .areas[style*="--areas-bg-image"]::before { display: none; }

  .areas .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    padding: 0 clamp(28px, 4vw, 64px) clamp(36px, 5vw, 64px);
    margin: 0;
  }
  .areas .section-head {
    margin-bottom: clamp(24px, 3vw, 40px);
    max-width: 760px;
  }
  .areas .section-head .eyebrow { color: rgba(255,255,255,0.78); }
  .areas .section-head .eyebrow::before { background: var(--gold-soft); }
  .areas .h2 { color: #fff; }

  /* Cards com glassmorphism sobre a imagem */
  .areas .area-card {
    background: rgba(255,255,255,0.10);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.18) inset,
      0 18px 40px -18px rgba(0,0,0,0.45);
  }
  .areas .area-card:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.42);
    transform: translateY(-4px);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.24) inset,
      0 26px 50px -16px rgba(0,0,0,0.55);
  }
  .areas .area-icon {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.30);
    color: #fff;
  }
  .areas .area-title { color: #fff; }
  .areas .area-desc  { color: rgba(255,255,255,0.78); }

  @media (max-width: 900px) {
    .areas {
      min-height: clamp(640px, 92vh, 900px);
      border-radius: var(--r-lg);
      margin: 24px auto;
    }
  }

  /* ─────── PROCESSO · HERO COM IMAGEM + 2 COLUNAS ─────── */
  /* Troque a URL em --process-bg-image quando subir a imagem final. */
  .process {
    padding: clamp(56px, 7vw, 96px) 0;
    width: 100%;
    margin: 64px 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background-color: var(--ink); /* fallback */
    background-image:
      /* gradiente para legibilidade do texto à esquerda */
      linear-gradient(90deg,
        rgba(10,30,63,0.85) 0%,
        rgba(10,30,63,0.72) 35%,
        rgba(10,30,63,0.35) 65%,
        rgba(10,30,63,0.10) 100%),
      var(--process-bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
  }
  /* Placeholder visível enquanto não há imagem real */
  .process::before {
    content: "imagem de fundo • substituir via --process-bg-image";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8%;
    font-family: "SF Mono", ui-monospace, Menlo, monospace;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    background:
      repeating-linear-gradient(
        135deg,
        rgba(255,255,255,0.03) 0 12px,
        rgba(255,255,255,0.00) 12px 24px);
    pointer-events: none;
    z-index: 0;
  }
  .process[style*="--process-bg-image"]::before { display: none; }

  .process-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    padding: 0;
    align-items: start;
  }
  .process > .container { position: relative; z-index: 1; }
  .process-content { max-width: 620px; }
  .process-spacer { /* coluna da direita vazia, deixa a imagem respirar */ }

  /* Texto/headings em branco sobre a imagem */
  .process .section-head { margin-bottom: 40px; max-width: none; }
  .process .eyebrow { color: rgba(255,255,255,0.78); }
  .process .eyebrow::before { background: var(--gold-soft); }
  .process .h2 { color: #fff; }
  .process .lede { color: rgba(255,255,255,0.80); }

  /* Timeline reestilizada para fundo escuro */
  .process .timeline { max-width: none; margin: 0; }
  .process .timeline::before {
    background: linear-gradient(180deg,
      var(--gold) 0%,
      rgba(230,214,168,0.6) 50%,
      rgba(255,255,255,0.05) 100%);
  }
  .process .t-step + .t-step { border-top-color: rgba(255,255,255,0.12); }
  .process .t-node {
    background: rgba(255,255,255,0.08);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-color: rgba(230,214,168,0.45);
    color: var(--gold-soft);
  }
  .process .t-step:hover .t-node {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
    box-shadow: 0 0 0 8px rgba(201,162,78,0.18);
  }
  .process .t-title { color: #fff; }
  .process .t-desc  { color: rgba(255,255,255,0.78); }
  .process .t-time {
    background: none;
    color: var(--gold-soft);
    border: 0;
    padding: 0;
  }

  @media (max-width: 900px) {
    .process {
      margin: 32px 0;
    }
    .process-grid {
      grid-template-columns: 1fr;
      gap: 0;
    }
    .process-spacer { display: none; }
  }
