
  @font-face { font-family:'Mirador'; src:url('../fonts/Mirador-Bold.otf') format('opentype'); font-weight:700; font-display: swap; }
  @font-face { font-family:'Galano Grotesque'; src:url('../fonts/GalanoGrotesque-Regular.otf') format('opentype'); font-weight:400; font-display: swap; }
  @font-face { font-family:'Galano Grotesque'; src:url('../fonts/GalanoGrotesque-Medium.otf') format('opentype'); font-weight:500; font-display: swap; }
  @font-face { font-family:'Galano Grotesque'; src:url('../fonts/GalanoGrotesque-Bold.otf') format('opentype'); font-weight:700; font-display: swap; }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { background: #000412; }
  body { font-family: 'Galano Grotesque', 'Helvetica Neue', sans-serif; -webkit-font-smoothing: antialiased; color: #fff; overflow-x: hidden; }
  button { font-family: inherit; }
  a { text-decoration: none; }

  :root {
    --navy-950: #00081C;
    --navy-900: #001E61;
    --navy-800: #002880;
    --navy-700: #0D3499;
    --gold-700: #C47C18;
    --gold-600: #E89623;
    --gold-400: #F2BB6A;
    --gold-200: #FAE0BF;
    --red-600:  #E73825;
    --red-500:  #EC5A4A;
    --cream:    #F7F4ED;
    --serif: 'Mirador', Georgia, serif;
    --sans:  'Galano Grotesque', 'Helvetica Neue', sans-serif;
    --container: 1240px;
  }

  /* ─────────── Liquid Glass primitives (dark) ─────────── */
  .lg {
    position: relative;
    border-radius: 16px;
    isolation: isolate;
    overflow: hidden;
  }
  .lg-dark {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 30%, rgba(255,255,255,0.02) 100%),
      rgba(255,255,255,0.025);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow:
      inset 0 1.5px 0 0 rgba(255,255,255,0.28),
      inset 0 -1px 0 0 rgba(255,255,255,0.04),
      0 24px 56px -16px rgba(0,0,0,0.55),
      0 6px 20px -8px rgba(0,0,0,0.35);
  }
  .lg-dark::before {
    content:'';
    position:absolute; inset:0;
    background:
      radial-gradient(120% 60% at 20% 0%, rgba(255,255,255,0.16) 0%, transparent 55%),
      radial-gradient(80% 60% at 90% 100%, rgba(232,150,35,0.08) 0%, transparent 60%);
    pointer-events:none; z-index:0;
  }
  .lg-dark > * { position: relative; z-index: 1; }

  /* Iridescent edge */
  .lg-irid {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
  }
  .lg-irid::after {
    content:'';
    position:absolute; inset:0;
    border-radius:inherit;
    padding:1.5px;
    background: conic-gradient(from 220deg at 50% 50%,
      rgba(232,150,35,0.7),
      rgba(231,56,37,0.4),
      rgba(0,30,97,0.7),
      rgba(255,255,255,0.5),
      rgba(232,150,35,0.7));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    pointer-events: none;
  }

  /* Specular top sliver */
  .spec-top::after {
    content:'';
    position:absolute;
    top:0; left:12%; right:12%; height:1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
    pointer-events:none;
    z-index: 2;
  }

  /* Grain overlay */
  .grain {
    position: absolute; inset: 0;
    pointer-events: none;
    opacity: 0.45;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMDAnIGhlaWdodD0nMTAwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC45JyBudW1PY3RhdmVzPScyJyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PGZlQ29sb3JNYXRyaXggdmFsdWVzPScwIDAgMCAwIDEsIDAgMCAwIDAgMSwgMCAwIDAgMCAxLCAwIDAgMCAwLjE4IDAnLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0nMTAwJyBoZWlnaHQ9JzEwMCcgZmlsdGVyPSd1cmwoI24pJy8+PC9zdmc+");
  }

  /* Page backgrounds */
  .bg-page {
    background:
      radial-gradient(60% 40% at 50% 0%, rgba(232,150,35,0.18) 0%, transparent 55%),
      radial-gradient(80% 60% at 10% 30%, rgba(13,52,153,0.6) 0%, transparent 60%),
      radial-gradient(70% 50% at 95% 70%, rgba(0,40,128,0.5) 0%, transparent 60%),
      linear-gradient(180deg, #00081C 0%, #001036 30%, #001E61 60%, #001036 100%);
  }
  .bg-deep {
    background: linear-gradient(180deg, #00081C 0%, #000412 100%);
  }

  /* Typography */
  .serif { font-family: var(--serif); font-weight: 700; letter-spacing: -0.025em; }
  .sans { font-family: var(--sans); }
  .tnum { font-variant-numeric: tabular-nums; }
  .eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .gold-text {
    background: linear-gradient(135deg, #FAE0BF 0%, #F2BB6A 40%, #E89623 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .white-text {
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.82) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Buttons */
  .btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 24px; border-radius: 999px;
    font-size: 13px; font-weight: 700; font-family: var(--sans);
    color: #2a1500;
    background: linear-gradient(180deg, #F8C97A 0%, #E89623 50%, #C47C18 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.65),
      inset 0 -1px 0 rgba(124,76,0,0.4),
      0 6px 16px -4px rgba(232,150,35,0.45),
      0 1px 2px rgba(0,0,0,0.25);
    border: 1px solid rgba(124,76,0,0.45);
    cursor: pointer;
    transition: transform 160ms cubic-bezier(0.16,1,0.3,1), box-shadow 160ms;
  }
  .btn-gold:hover {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.75),
      inset 0 -1px 0 rgba(124,76,0,0.4),
      0 10px 22px -4px rgba(232,150,35,0.6),
      0 1px 2px rgba(0,0,0,0.25);
  }
  .btn-glass {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: 999px;
    font-size: 13px; font-weight: 600; font-family: var(--sans);
    color: rgba(255,255,255,0.92);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
    cursor: pointer;
    transition: background 160ms, border-color 160ms;
  }
  .btn-glass:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.24);
  }
  .btn-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; font-family: var(--sans);
    color: var(--gold-400);
    background: transparent; border: 0;
    cursor: pointer;
    padding: 4px 0;
    letter-spacing: 0.02em;
  }
  .btn-link:hover { color: var(--gold-200); }

  /* Pills */
  .pill {
    display: inline-flex; align-items: center;
    padding: 6px 12px; border-radius: 999px;
    font-size: 11px; font-weight: 600; font-family: var(--sans);
    color: rgba(255,255,255,0.78);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    letter-spacing: 0.02em;
  }
  .pill-gold {
    color: #2a1500;
    background: linear-gradient(180deg, #FAE0BF 0%, #F2BB6A 100%);
    border: 1px solid rgba(124,76,0,0.35);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  }

  /* Section frame */
  .section { padding: 96px 0; position: relative; }
  .section-tight { padding: 64px 0; position: relative; }
  .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 40px; }

  /* Hairlines */
  .hairline { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent); }
  .vrule { width: 1px; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.16), transparent); align-self: stretch; }

  /* Step number badge */
  .step-num {
    width: 56px; height: 56px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 22px; color: #2a1500;
    background: linear-gradient(135deg, #FAE0BF 0%, #E89623 60%, #C47C18 100%);
    box-shadow:
      inset 0 1.5px 0 rgba(255,255,255,0.7),
      inset 0 -1px 0 rgba(124,76,0,0.4),
      0 8px 20px -4px rgba(232,150,35,0.5),
      0 0 0 6px rgba(232,150,35,0.08);
  }

  /* Footer dividers */
  .footer-link {
    font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,0.60);
    text-decoration: none; display: block; padding: 6px 0; transition: color 160ms;
  }
  .footer-link:hover { color: rgba(255,255,255,0.95); }

  /* Bar chart (perf) */
  .perfbar {
    position: relative;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
  }
  .perfbar > i {
    position: absolute; inset: 0 auto 0 0; display: block;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(232,150,35,0.7), #F2BB6A, #FAE0BF);
    box-shadow: 0 0 12px rgba(232,150,35,0.5);
  }

  /* Marquee-like floating gold motif */
  .motif {
    font-family: var(--serif);
    color: rgba(255,255,255,0.04);
    user-select: none;
    pointer-events: none;
  }

  /* ── Nav: integrated full bar at top → compact centered glass pill on scroll ── */
  .navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: center;
    padding: 15px 20px;
    transition: padding .35s cubic-bezier(.4,0,.2,1);
  }
  .navbar.scrolled { padding-top: 16px; }

  .nav-shell {
    position: relative;
    z-index: 20;
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; max-width: 1200px; gap: 28px;
    height: 62px; padding: 0 6px 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0);
    background: rgba(9,20,45,0);
    backdrop-filter: blur(0px) saturate(100%);
    -webkit-backdrop-filter: blur(0px) saturate(100%);
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: gap .35s cubic-bezier(.4,0,.2,1), padding .35s cubic-bezier(.4,0,.2,1),
      background .3s, border-color .3s, box-shadow .3s, backdrop-filter .3s;
  }
  .navbar.scrolled .nav-shell {
    width: auto; justify-content: flex-start; gap: 12px;
    padding: 0 10px 0 22px;
    background: rgba(9,20,45,0.5);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-color: rgba(255,255,255,0.16);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.28),
      inset 0 -10px 26px -14px rgba(255,255,255,0.06),
      0 20px 44px -16px rgba(0,0,0,0.6);
  }

  /* inline links (top state only) */
  .nav-links { display: flex; align-items: center; gap: 30px; }
  .navbar.scrolled .nav-links { display: none; }
  .nav-links a,
  .nav-link {
    font-family: var(--sans); font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.82); text-decoration: none;
    padding: 6px 0; position: relative; white-space: nowrap;
    cursor: pointer;
    transition: color 160ms;
  }
  .nav-links a:hover,
  .nav-link:hover { color: #fff; }
  .nav-links a:hover::after,
  .nav-link:hover::after {
    content:''; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 1px; background: var(--gold-400);
  }
  .nav-links .is-current,
  .nav-links .current-menu-item > a,
  .nav-links .current-menu-parent > a,
  .nav-links .current_page_item > a,
  .nav-links .current_page_ancestor > a {
    color: #f2bb6a;
  }
  .nav-links .is-current::after,
  .nav-links .current-menu-item > a::after,
  .nav-links .current-menu-parent > a::after,
  .nav-links .current_page_item > a::after,
  .nav-links .current_page_ancestor > a::after {
    content:''; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 1px; background: #f2bb6a;
  }

  .nav-actions { display: flex; align-items: center; gap: 14px; flex: none; }

  /* EN toggle + divider — top state only */
  .nav-en {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--sans); font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.82); text-decoration: none; cursor: pointer;
    transition: color 160ms;
  }
  .nav-en:hover { color: #fff; }
  .nav-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.14); }
  .navbar.scrolled .nav-en,
  .navbar.scrolled .nav-divider { display: none; }

  /* ghost pill (Área cliente) */
  .nav-ghost {
    font-family: var(--sans); font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.92); text-decoration: none; cursor: pointer;
    padding: 9px 16px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.05);
    display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
    transition: background 160ms, border-color 160ms;
  }
  .nav-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }

  /* hamburger — scrolled state only */
  .nav-burger {
    width: 44px; height: 44px; border-radius: 50%; flex: none;
    display: none; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.05); color: #fff; cursor: pointer;
    transition: background 160ms, border-color 160ms;
  }
  .navbar.scrolled .nav-burger { display: inline-flex; }
  .nav-burger:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }

  /* dropdown menu (liquid glass) */
  .nav-menu {
    position: absolute; top: calc(100% + 12px); right: 0;
    width: 306px; padding: 14px; z-index: 20;
    border-radius: 24px;
    background: rgba(9, 20, 45, 0.62);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.24),
      0 28px 64px -20px rgba(0,0,0,0.72);
    display: none;
    flex-direction: column; gap: 2px;
    transform-origin: top right;
    animation: navMenuIn 200ms cubic-bezier(.2,.8,.2,1);
  }
  .nav-menu:not([hidden]) {
    display: flex;
  }
  @keyframes navMenuIn {
    from { opacity: 0; transform: scale(0.96) translateY(-6px); }
    to   { opacity: 1; transform: none; }
  }
  .nav-menu a {
    font-family: var(--sans); font-size: 15px; font-weight: 500;
    color: rgba(255,255,255,0.82); text-decoration: none;
    padding: 12px 14px; border-radius: 13px;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer;
    transition: background 140ms, color 140ms;
  }
  .nav-menu a:hover { background: rgba(255,255,255,0.09); color: #fff; }
  .nav-menu a.is-current,
  .nav-menu .current-menu-item > a,
  .nav-menu .current-menu-parent > a,
  .nav-menu .current_page_item > a,
  .nav-menu .current_page_ancestor > a {
    color: #f2bb6a;
  }
  .nav-menu a svg { flex: none; }
  .nav-menu-foot {
    display: flex; align-items: center; gap: 8px;
    margin-top: 8px; padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-menu-foot .lang {
    font-family: var(--sans); font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.6); text-decoration: none;
    padding: 6px 12px; border-radius: 999px; cursor: pointer;
    transition: background 140ms, color 140ms;
  }
  .nav-menu-foot .lang.on,
  .nav-menu-foot .lang:hover { color: #fff; background: rgba(255,255,255,0.1); }

  /* backdrop to close menu on outside click */
  .nav-scrim { position: fixed; inset: 0; z-index: 10; display: none; }
  .nav-scrim:not([hidden]) { display: block; }

  /* Avatar circle */
  .avatar {
    width: 96px; height: 96px; border-radius: 50%;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 60%),
      linear-gradient(135deg, rgba(13,52,153,0.6), rgba(0,8,28,0.9));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
      inset 0 1.5px 0 rgba(255,255,255,0.22),
      0 12px 28px -8px rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 30px; color: rgba(255,255,255,0.55);
  }

  /* Input */
  .nw-input {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: #fff;
    padding: 14px 22px;
    font-size: 14px;
    font-family: var(--sans);
    outline: none;
    transition: border-color 160ms, background 160ms;
  }
  .nw-input::placeholder { color: rgba(255,255,255,0.42); }
  .nw-input:focus {
    border-color: rgba(232,150,35,0.5);
    background: rgba(255,255,255,0.06);
  }

  /* SVG icon defaults */
  .ic { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }


/* WordPress template integration */
.sd-page { min-height: 100vh; position: relative; overflow: hidden; }
body.sd-theme { background: #000412; }
.wp-site-blocks > header { position: relative; z-index: 100; }

/* ═══════════════════════════════════════════════════════════
   Shared layout utilities
   ═══════════════════════════════════════════════════════════ */
.sd-page--short { min-height: 60vh; }
.sd-nav-spacer { height: 76px; }
.sd-italic { font-style: italic; }
.sd-cta-row { display: flex; gap: 12px; align-items: center; }
.sd-cta-row--center { justify-content: center; }

.sd-motif {
  position: absolute;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.sd-motif__mark {
  font-family: var(--serif);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.08em;
  display: inline-block;
}
.sd-motif--hero { opacity: 0.035; right: -200px; top: -260px; }
.sd-motif--hero .sd-motif__mark { font-size: 1100px; }
.sd-motif--who { opacity: 0.03; left: -180px; top: 80px; }
.sd-motif--who .sd-motif__mark { font-size: 700px; }
.sd-motif--funds { opacity: 0.03; right: -260px; bottom: -160px; }
.sd-motif--funds .sd-motif__mark { font-size: 900px; }
.sd-motif--cta-br { opacity: 0.05; right: -100px; bottom: -180px; }
.sd-motif--cta-br .sd-motif__mark { font-size: 500px; }
.sd-motif--cta-tl { opacity: 0.05; left: -100px; top: -180px; transform: rotate(180deg); }
.sd-motif--cta-tl .sd-motif__mark { font-size: 500px; }
.sd-motif--about-hero { opacity: 0.035; right: -220px; top: -240px; }
.sd-motif--about-hero .sd-motif__mark { font-size: 1000px; }
.sd-motif--about-awards { opacity: 0.03; left: -200px; top: 40px; }
.sd-motif--about-awards .sd-motif__mark { font-size: 800px; }

.sd-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.sd-eyebrow-row--start { align-items: flex-start; margin-bottom: 56px; }
.sd-eyebrow-row__rule {
  width: 28px;
  height: 1px;
  background: var(--gold-400);
  flex-shrink: 0;
}
.sd-eyebrow-row--start .sd-eyebrow-row__rule { margin-top: 10px; }
.sd-eyebrow-row .eyebrow,
.eyebrow--gold { color: var(--gold-400); }
.eyebrow--muted { color: rgba(255,255,255,0.45); }
.eyebrow--faint { color: rgba(255,255,255,0.35); }
.eyebrow--dim { color: rgba(255,255,255,0.30); }
.eyebrow--soft { color: rgba(255,255,255,0.5); }
.eyebrow--ghost { color: rgba(255,255,255,0.40); }
.eyebrow--wide { letter-spacing: 0.25em; }

.sd-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.sd-section-head--funds { margin-bottom: 40px; }
.sd-section-head--how { margin-bottom: 56px; }
.sd-section-title {
  font-size: 48px;
  line-height: 1.0;
  color: #fff;
  letter-spacing: -0.03em;
}
.sd-section-title--wide { max-width: 720px; }
.sd-section-title--spaced { max-width: 720px; margin-bottom: 48px; }
.btn-link--md { font-size: 13px; }
.btn-glass--card { justify-content: center; margin-top: auto; }
.btn-gold--nav { padding: 11px 20px; font-size: 12px; }
.btn-gold--nw { padding: 14px 24px; }
.pill--sm { padding: 4px 10px; font-size: 10px; }
.pill__gap { margin-left: 4px; }
.pill__gap--md { margin-left: 6px; }
.pill-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F2BB6A;
  margin-right: 8px;
  box-shadow: 0 0 8px rgba(242,187,106,0.8);
}
.perfbar > i { right: var(--bar-right, 0%); }

.section--wash {
  background: linear-gradient(180deg, transparent 0%, rgba(0,8,28,0.5) 50%, transparent 100%);
}
.section--wash-soft {
  background: linear-gradient(180deg, transparent 0%, rgba(0,8,28,0.4) 50%, transparent 100%);
}

/* ═══════════════════════════════════════════════════════════
   Hero
   ═══════════════════════════════════════════════════════════ */
.sd-hero { padding-top: 56px; padding-bottom: 72px; position: relative; }
.sd-hero .container { position: relative; }
.sd-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.sd-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.sd-hero__title {
  font-size: 76px;
  line-height: 0.96;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.sd-hero__intro {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 40px;
}
.sd-hero__card-wrap { position: relative; }
.sd-hero__glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,236,200,0.22) 0%, transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.sd-hero__card {
  padding: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-radius: 22px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6), inset 0 1.5px 0 rgba(255,255,255,0.4);
}
.sd-hero__card-head {
  padding: 22px 28px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
}
.sd-hero__card-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sd-hero__fund-eyebrow { color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.sd-hero__fund-name { font-size: 26px; color: #fff; line-height: 1.1; }
.sd-hero__fund-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FAE0BF 0%, #E89623 50%, #C47C18 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 4px 12px rgba(232,150,35,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sd-hero__fund-badge-mark {
  font-family: var(--serif);
  font-size: 22px;
  color: rgba(60,30,0,0.92);
  line-height: 1;
  letter-spacing: -0.04em;
}
.sd-hero__card-perf {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sd-hero__ytd-label { color: rgba(255,255,255,0.45); margin-bottom: 8px; }
.sd-hero__ytd-value {
  font-size: 64px;
  line-height: 1.1;
  filter: drop-shadow(0 4px 16px rgba(232,150,35,0.3));
}
.sd-hero__benchmark {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}
.sd-hero__spark { width: 160px; height: 90px; }
.sd-hero__stats {
  padding: 20px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.sd-hero__stat-label {
  color: rgba(255,255,255,0.40);
  margin-bottom: 4px;
  font-size: 9px;
}
.sd-hero__stat-value {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}
.sd-hero__caption {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════
   Stats bar
   ═══════════════════════════════════════════════════════════ */
.sd-stats { padding-top: 24px; padding-bottom: 24px; }
.sd-stats__panel {
  padding: 36px 48px;
  border-radius: 22px;
}
.sd-stats__grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: 0;
}
.sd-stats__vrule { height: 96px; }
.sd-stats__cell { text-align: center; padding: 0 24px; }
.sd-stats__value {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.sd-stats__title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.sd-stats__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════════════════════════
   Who we are
   ═══════════════════════════════════════════════════════════ */
.sd-who__intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 80px;
}
.sd-who__title {
  font-size: 56px;
  line-height: 0.98;
  color: #fff;
  letter-spacing: -0.03em;
}
.sd-who__body-primary {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.sd-who__body-secondary {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.50);
  max-width: 540px;
}
.sd-who__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sd-who__card {
  padding: 36px 32px 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sd-who__card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.sd-who__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232,150,35,0.18), rgba(232,150,35,0.06));
  border: 1px solid rgba(232,150,35,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.sd-who__card-num { color: rgba(255,255,255,0.30); font-size: 11px; }
.sd-who__card-title {
  font-size: 26px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.sd-who__card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.58);
}
.sd-who__card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════════════════════════
   How it works
   ═══════════════════════════════════════════════════════════ */
.sd-how__aside {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}
.sd-how__steps { position: relative; margin-bottom: 56px; }
.sd-how__line {
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,150,35,0.4), rgba(232,150,35,0.4), rgba(232,150,35,0.4), transparent);
}
.sd-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.sd-how__grid[data-cols="1"] { grid-template-columns: repeat(1, 1fr); }
.sd-how__grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.sd-how__grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.sd-how__grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.sd-how__grid[data-cols="5"] { grid-template-columns: repeat(5, 1fr); }
.sd-how__grid[data-cols="6"] { grid-template-columns: repeat(6, 1fr); }
.sd-how__step { text-align: center; position: relative; }
.sd-how__step-num { display: flex; justify-content: center; margin-bottom: 24px; }
.sd-how__step-title {
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.sd-how__step-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 240px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   Funds + fund card
   ═══════════════════════════════════════════════════════════ */
.sd-funds__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.sd-funds__row--more { margin-bottom: 28px; }
.sd-funds__more {
  padding: 36px 32px;
  background: linear-gradient(135deg, rgba(232,150,35,0.10) 0%, rgba(231,56,37,0.04) 100%);
  backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 260px;
}
.sd-funds__more-eyebrow { color: var(--gold-400); margin-bottom: 16px; }
.sd-funds__more-title {
  font-size: 36px;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 14px;
}
.sd-funds__more-text {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 320px;
}
.sd-funds__legal {
  padding: 14px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(231,56,37,0.04);
  border: 1px solid rgba(231,56,37,0.18);
}
.sd-funds__legal-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(231,56,37,0.18);
  color: var(--red-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
}
.sd-funds__legal-text {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.sd-fund-card {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 260px;
}
.sd-fund-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sd-fund-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.sd-fund-card__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.sd-fund-card__risk {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.sd-fund-card__name {
  font-size: 24px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 4px;
}
.sd-fund-card__category {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.sd-fund-card__perf-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.sd-fund-card__perf-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.sd-fund-card__perf-value {
  font-size: 26px;
  line-height: 1.1;
}
.sd-fund-card__perf-unit { font-size: 16px; }

/* ═══════════════════════════════════════════════════════════
   Trust
   ═══════════════════════════════════════════════════════════ */
.sd-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.sd-trust__badge {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sd-trust__badge-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sd-trust__badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FAE0BF 0%, #E89623 60%, #C47C18 100%);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.6), 0 8px 20px -4px rgba(232,150,35,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a1500;
}
.sd-trust__badge-title {
  font-size: 22px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.sd-trust__badge-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}
.sd-trust__quote {
  padding: 40px 56px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(28px);
  border-radius: 20px;
  position: relative;
}
.sd-trust__quote-mark {
  position: absolute;
  top: 24px;
  left: 32px;
  font-family: var(--serif);
  font-size: 80px;
  color: rgba(232,150,35,0.3);
  line-height: 0.8;
}
.sd-trust__quote-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding-left: 60px;
}
.sd-trust__blockquote {
  font-size: 24px;
  line-height: 1.4;
  color: #fff;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.sd-trust__cite {
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 32px;
}
.sd-trust__name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.sd-trust__meta {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.sd-trust__disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   Team
   ═══════════════════════════════════════════════════════════ */
.sd-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sd-team__grid[data-cols="1"] { grid-template-columns: repeat(1, 1fr); }
.sd-team__grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.sd-team__grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.sd-team__grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.sd-team__grid[data-cols="5"] { grid-template-columns: repeat(5, 1fr); }
.sd-team__grid[data-cols="6"] { grid-template-columns: repeat(6, 1fr); }
.sd-team__member { text-align: center; }
.sd-team__avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.sd-team__name {
  font-size: 16px;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.sd-team__role {
  font-size: 11px;
  color: var(--gold-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   Final CTA
   ═══════════════════════════════════════════════════════════ */
.sd-final-cta__panel {
  padding: 72px 56px;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(232,150,35,0.18) 0%, transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(40px);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sd-final-cta__eyebrow {
  color: var(--gold-400);
  margin-bottom: 20px;
  letter-spacing: 0.25em;
}
.sd-final-cta__title {
  font-size: 64px;
  line-height: 0.98;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0 auto 22px;
  max-width: 820px;
}
.sd-final-cta__text {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  max-width: 540px;
  margin: 0 auto 36px;
}

/* ═══════════════════════════════════════════════════════════
   Newsletter
   ═══════════════════════════════════════════════════════════ */
.sd-newsletter__panel {
  padding: 32px 40px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.sd-newsletter__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.sd-newsletter__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(232,150,35,0.2), rgba(232,150,35,0.06));
  border: 1px solid rgba(232,150,35,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}
.sd-newsletter__title { font-size: 22px; color: #fff; }
.sd-newsletter__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-left: 48px;
}
.sd-newsletter__form { display: flex; gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   Header / Footer / 404
   ═══════════════════════════════════════════════════════════ */
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex: none;
}
.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.sd-footer {
  padding-top: 72px;
  padding-bottom: 48px;
  background: rgba(0,4,18,0.6);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sd-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.sd-footer__logo {
  height: 84px;
  width: auto;
  display: block;
}
.sd-footer__blurb {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 28px;
  max-width: 320px;
}
.sd-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.sd-footer__social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sd-footer__col-title {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.sd-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.sd-footer__copy {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.sd-footer__badges { display: flex; gap: 8px; }
.sd-footer__badge {
  padding: 5px 12px;
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}

.sd-404 { text-align: center; }
.sd-404__title {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 24px;
}
.sd-404__text {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}
.sd-404 .btn-gold { text-decoration: none; }

/* ═══════════════════════════════════════════════════════════
   Sobre Nós
   ═══════════════════════════════════════════════════════════ */
.sd-about-hero { padding-top: 56px; padding-bottom: 56px; position: relative; }
.sd-about-hero .container { position: relative; }
.sd-about-hero__breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 28px;
}
.sd-about-hero__breadcrumb-parent {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.sd-about-hero__breadcrumb-sep { color: rgba(255,255,255,0.3); }
.sd-about-hero__breadcrumb-current {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}
.sd-about-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sd-about-hero__title {
  font-size: 60px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}
.sd-about-hero__intro {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  max-width: 480px;
  margin-bottom: 32px;
}
.sd-about-hero__media {
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.sd-about-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sd-about-hero__media-caption {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 24px;
}

.sd-about-history__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.sd-about-history__title {
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.sd-about-history__body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}
.sd-about-history__paragraph { margin-bottom: 18px; }

.sd-about-milestones__title {
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.sd-about-milestones__helper {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 36px;
}
.sd-about-milestones__scroll {
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-400) transparent;
}
.sd-about-milestones__scroll::-webkit-scrollbar { height: 1px; }
.sd-about-milestones__scroll::-webkit-scrollbar-thumb { background: var(--gold-400); }
.sd-about-milestones__scroll::-webkit-scrollbar-track { background: transparent; }
.sd-about-milestones__row {
  display: flex;
  gap: 14px;
  width: max-content;
}
.sd-about-milestone-card {
  position: relative;
  width: 116px;
  height: 152px;
  flex: 0 0 auto;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
  transition: width 420ms cubic-bezier(.2,.8,.2,1), background 320ms, border-color 320ms, box-shadow 320ms;
  cursor: pointer;
}
.sd-about-milestone-card.is-active,
.sd-about-milestone-card:hover {
  width: 420px;
  align-items: flex-start;
  justify-content: flex-start;
  background: rgba(255,255,255,0.10);
  border-color: rgba(232,150,35,0.4);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.3), 0 30px 60px -20px rgba(0,0,0,0.6);
}
.sd-about-milestone-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 20px 18px;
  text-align: center;
}
.sd-about-milestone-card.is-active .sd-about-milestone-card__inner,
.sd-about-milestone-card:hover .sd-about-milestone-card__inner {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.sd-about-milestone-card__year {
  font-family: 'Mirador', Georgia, serif;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,0.85);
  font-size: 26px;
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
  transition: color 320ms, font-size 320ms, margin 320ms;
}
.sd-about-milestone-card.is-active .sd-about-milestone-card__year,
.sd-about-milestone-card:hover .sd-about-milestone-card__year {
  color: var(--gold-400);
  font-size: 16px;
  margin-bottom: 12px;
}
.sd-about-milestone-card__detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 380ms cubic-bezier(.2,.8,.2,1), opacity 220ms 60ms;
  white-space: normal;
}
.sd-about-milestone-card.is-active .sd-about-milestone-card__detail,
.sd-about-milestone-card:hover .sd-about-milestone-card__detail {
  max-height: 180px;
  opacity: 1;
  margin-top: 2px;
}
.sd-about-milestone-card__title {
  font-size: 19px;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}
.sd-about-milestone-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
}

.sd-about-team { padding-bottom: 56px; }
.sd-about-team__title {
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.sd-about-team__helper {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}
.sd-about-team__tier { margin-bottom: 40px; }
.sd-about-team__tier--leadership { margin-bottom: 72px; }
.sd-about-team__tier--members { margin-bottom: 0; }
.sd-about-team__tier-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.sd-about-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 154px);
  justify-content: start;
  gap: 14px;
}
.sd-about-team__tile {
  position: relative;
  width: 154px;
  height: 154px;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  cursor: pointer;
  padding: 0;
  transition: border-color 180ms, box-shadow 180ms, transform 180ms;
}
.sd-about-team__tile:hover {
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}
.sd-about-team__tile.is-selected {
  border-color: var(--gold-400);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.3), 0 0 0 3px rgba(242,187,106,0.18);
}
.sd-about-team__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sd-about-team__initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Mirador', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.5);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.22), transparent 60%),
    linear-gradient(150deg, rgba(13,52,153,0.55), rgba(0,8,28,0.92));
}
.sd-about-team__detail {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  padding: 28px 32px;
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.10);
}
.sd-about-team__detail-name {
  font-size: 26px;
  margin-bottom: 8px;
}
.sd-about-team__detail-role-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sd-about-team__detail-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  flex-shrink: 0;
}
.sd-about-team__detail-role {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sd-about-team__detail-bio {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
}

.sd-about-awards { position: relative; }
.sd-about-awards__title {
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.sd-about-awards__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
}
.sd-about-awards__list { padding: 8px 28px; }
.sd-about-awards__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sd-about-awards__item:last-child { border-bottom: 0; }
.sd-about-awards__item-main {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 0;
}
.sd-about-awards__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FAE0BF 0%, #E89623 60%, #C47C18 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.sd-about-awards__item-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.sd-about-awards__item-org {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.sd-about-awards__item-year {
  font-size: 20px;
  flex-shrink: 0;
}
.sd-about-awards__summary {
  padding: 32px 30px;
  background: linear-gradient(135deg, rgba(232,150,35,0.12) 0%, rgba(231,56,37,0.04) 100%);
  backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sd-about-awards__summary-count {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 12px;
}
.sd-about-awards__summary-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.sd-about-awards__summary-cta {
  justify-content: center;
  margin-top: 24px;
  text-decoration: none;
}

.sd-about-video__description {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.sd-about-video__player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sd-about-video__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.sd-about-video__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.sd-about-video__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sd-about-video__play {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FAE0BF 0%, #E89623 60%, #C47C18 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.6), 0 12px 32px -6px rgba(232,150,35,0.5);
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: #2a1500;
}
.sd-about-video__caption {
  position: absolute;
  bottom: 24px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   Como Investir
   ═══════════════════════════════════════════════════════════ */
.sd-invest-hero { padding-top: 56px; padding-bottom: 56px; position: relative; }
.sd-invest-hero .container { position: relative; }
.sd-invest-hero__copy { max-width: 640px; }
.sd-invest-hero__pill { margin-bottom: 4px; }
.sd-invest-hero__title {
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 18px 0 26px;
}
.sd-invest-hero__intro {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  margin: 0;
}

.sd-invest-requirements__title {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  max-width: 560px;
}
.sd-invest-requirements__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  margin-top: 32px;
  align-items: start;
}
.sd-invest-docs { padding: 4px 28px; }
.sd-invest-doc {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
}
.sd-invest-doc + .sd-invest-doc { border-top: 1px solid rgba(255,255,255,0.08); }
.sd-invest-doc__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}
.sd-invest-doc__icon--light { color: #fff; }
.sd-invest-doc__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.sd-invest-doc__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.sd-invest-app {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sd-invest-app__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sd-invest-app__title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.sd-invest-app__text {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.sd-invest-qr {
  display: none;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sd-invest-qr__link { display: flex; flex-shrink: 0; }
.sd-invest-qr__image {
  width: 132px;
  height: 132px;
  border-radius: 14px;
  background: #fff;
  padding: 8px;
  flex-shrink: 0;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.4);
}
.sd-invest-qr__image--sm { width: 96px; height: 96px; }
.sd-invest-qr__title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sd-invest-qr__text {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.sd-invest-process__title {
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.sd-invest-process__list { padding: 4px 32px; }
.sd-invest-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px 0;
}
.sd-invest-step + .sd-invest-step { border-top: 1px solid rgba(255,255,255,0.08); }
.sd-invest-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--gold-400);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.sd-invest-step__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.sd-invest-step__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.sd-invest-faq__container { max-width: 860px; }
.sd-invest-faq__title {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.sd-invest-faq__item { border-top: 1px solid rgba(255,255,255,0.08); }
.sd-invest-faq__item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.sd-invest-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #fff;
}
.sd-invest-faq__question { font-size: 15.5px; font-weight: 700; }
.sd-invest-faq__chevron {
  flex-shrink: 0;
  color: var(--gold-400);
  transition: transform 260ms cubic-bezier(.2,.8,.2,1);
  display: inline-flex;
}
.sd-invest-faq__item.is-open .sd-invest-faq__chevron { transform: rotate(180deg); }
.sd-invest-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms cubic-bezier(.2,.8,.2,1);
}
.sd-invest-faq__item.is-open .sd-invest-faq__a { grid-template-rows: 1fr; }
.sd-invest-faq__a-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 4px 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}
.sd-invest-faq__item.is-open .sd-invest-faq__a-inner { padding-bottom: 22px; }

.sd-invest-cta__panel {
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, rgba(232,150,35,0.12) 0%, rgba(231,56,37,0.04) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}
.sd-invest-cta__title {
  font-size: 30px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.sd-invest-cta__text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.sd-invest-cta__qr {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.sd-invest-cta__qr-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  max-width: 220px;
  line-height: 1.35;
}
.sd-invest-cta__qr-text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}

@media (min-width: 900px) {
  .sd-invest-qr { display: flex; }
}

@media (max-width: 899px) {
  .sd-invest-hero__title { font-size: 40px; }
  .sd-invest-requirements__grid { grid-template-columns: 1fr; }
  .sd-invest-process__title { font-size: 32px; }
  .sd-invest-cta__panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }
}

/* ═══════════════════════════════════════════════════════════
   Contactos
   ═══════════════════════════════════════════════════════════ */
.sd-contactos-hero { padding-top: 56px; padding-bottom: 40px; position: relative; }
.sd-contactos-hero .container { position: relative; }
.sd-contactos-hero__copy { max-width: 640px; }
.sd-contactos-hero__title {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.sd-contactos-hero__intro {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  max-width: 560px;
  margin: 0;
}

.sd-contactos-main__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}
.sd-contactos-main__aside,
.sd-contactos-main__form {
  contain: paint layout style;
  isolation: isolate;
  transform: translateZ(0);
}
.sd-contactos-page > .grain {
  z-index: 0;
  mix-blend-mode: normal;
  opacity: 0.3;
}
.sd-contactos-page > .sd-nav-spacer,
.sd-contactos-page > .section,
.sd-contactos-page > .section-tight {
  position: relative;
  z-index: 1;
}
.sd-contactos-main .lg.lg-dark {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
}
.sd-contactos-main .lg.lg-dark::before {
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  background:
    radial-gradient(120% 60% at 20% 0%, rgba(255,255,255,0.16) 0%, transparent 55%),
    radial-gradient(80% 60% at 90% 100%, rgba(232,150,35,0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 30%, rgba(255,255,255,0.02) 100%),
    rgba(255,255,255,0.025);
}
.sd-contactos-main__aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sd-contactos-details { padding: 4px 28px; }
.sd-contactos-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
}
.sd-contactos-row + .sd-contactos-row { border-top: 1px solid rgba(255,255,255,0.08); }
.sd-contactos-row__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}
.sd-contactos-row__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.sd-contactos-row__value {
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
}
a.sd-contactos-row__value { text-decoration: none; }
a.sd-contactos-row__value:hover { color: var(--gold-400); }

.sd-contactos-map {
  flex: 1;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  background: #001863;
}
.sd-contactos-map__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.sd-contactos-map .leaflet-container {
  width: 100%;
  height: 100%;
  background: #1c1c1c;
  font-family: var(--sans);
}
.sd-contactos-map .leaflet-control-zoom a {
  background: rgba(9, 20, 45, 0.78);
  color: #fff;
  border-color: rgba(255,255,255,0.16);
  width: 32px;
  height: 32px;
  line-height: 30px;
}
.sd-contactos-map .leaflet-control-zoom a:hover {
  background: rgba(9, 20, 45, 0.95);
  color: var(--gold-400);
}
.sd-contactos-map .leaflet-bar {
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.55);
}
.sd-contactos-map .leaflet-control-attribution {
  background: rgba(9, 20, 45, 0.72);
  color: rgba(255,255,255,0.45);
  font-size: 10px;
}
.sd-contactos-map .leaflet-control-attribution a {
  color: rgba(255,255,255,0.7);
}

.sd-contactos-form-panel { padding: 40px; }
.sd-contactos-form-panel__eyebrow { margin-bottom: 10px; }
.sd-contactos-form-panel__title {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.sd-contactos-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sd-contactos-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.sd-contactos-form__notice {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 8px;
}
.sd-contactos-form__notice--success {
  background: rgba(232,150,35,0.12);
  border: 1px solid rgba(232,150,35,0.35);
  color: var(--gold-200);
}
.sd-contactos-form__notice--error {
  background: rgba(231,56,37,0.12);
  border: 1px solid rgba(231,56,37,0.35);
  color: #ffb4ab;
}
.sd-contactos-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.sd-contactos-field { display: flex; flex-direction: column; gap: 8px; }
.sd-contactos-field label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}
.sd-contactos-field input,
.sd-contactos-field select,
.sd-contactos-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  color: #fff;
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--sans);
  outline: none;
  transition: border-color 160ms, background 160ms;
  width: 100%;
}
.sd-contactos-field input::placeholder,
.sd-contactos-field textarea::placeholder { color: rgba(255,255,255,0.38); }
.sd-contactos-field input:focus,
.sd-contactos-field select:focus,
.sd-contactos-field textarea:focus {
  border-color: rgba(232,150,35,0.5);
  background: rgba(255,255,255,0.06);
}
.sd-contactos-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23F2BB6A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.sd-contactos-field select option { background: #001036; color: #fff; }
.sd-contactos-field textarea {
  resize: vertical;
  min-height: 110px;
}

.sd-contactos-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.sd-contactos-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--gold-400);
}
.sd-contactos-check__text {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.62);
}
.sd-contactos-check__label {
  cursor: pointer;
}
.sd-contactos-check__link {
  color: var(--gold-400);
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-text-fill-color: currentColor;
  background: none;
}
.sd-contactos-check__link:hover,
.sd-contactos-check__link:focus-visible {
  color: var(--gold-200);
}
.sd-contactos-check__link::before,
.sd-contactos-check__link::after {
  content: none !important;
}

.sd-contactos-form .btn-gold { margin-top: 8px; align-self: flex-start; }

.sd-contactos-form .wpcf7-form p { margin: 0; }
.sd-contactos-form .wpcf7-form-control-wrap { display: block; }
.sd-contactos-form .wpcf7-text,
.sd-contactos-form .wpcf7-email,
.sd-contactos-form .wpcf7-tel,
.sd-contactos-form .wpcf7-select,
.sd-contactos-form .wpcf7-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  color: #fff;
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--sans);
  width: 100%;
}

@media (max-width: 899px) {
  .sd-contactos-hero__title { font-size: 40px; }
  .sd-contactos-main__grid { grid-template-columns: 1fr; }
  .sd-contactos-form__row { grid-template-columns: 1fr; }
  .sd-contactos-form-panel { padding: 28px 22px; }
  .sd-contactos-map { min-height: 240px; }
}

/* ═══════════════════════════════════════════════════════════
   Notícias
   ═══════════════════════════════════════════════════════════ */
.sd-noticias-hero { padding-top: 56px; padding-bottom: 40px; position: relative; }
.sd-noticias-hero .container { position: relative; }
.sd-noticias-hero__copy { max-width: 640px; }
.sd-noticias-hero__title {
  font-size: 52px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  padding-right: 0.2em;
  overflow: visible;
}
.sd-noticias-hero__title .white-text,
.sd-noticias-hero__title .gold-text {
  padding-right: 0.16em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.sd-noticias-hero__intro {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  max-width: 560px;
  margin: 0;
}

.sd-noticias-page > .grain {
  z-index: 0;
  mix-blend-mode: normal;
  opacity: 0.3;
}
.sd-noticias-page > .sd-nav-spacer,
.sd-noticias-page > .section,
.sd-noticias-page > .section-tight {
  position: relative;
  z-index: 1;
}

.sd-noticias-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.sd-noticias-filters .btn-glass {
  text-decoration: none;
  padding: 9px 18px;
  font-size: 12.5px;
}
.sd-noticias-filters .btn-glass.is-active,
.sd-noticias-filters .btn-glass.active {
  color: #2a1500;
  background: linear-gradient(180deg, #FAE0BF 0%, #F2BB6A 100%);
  border-color: rgba(124,76,0,0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.sd-news-grid,
.sd-news-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sd-news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 200ms cubic-bezier(.2,.8,.2,1), border-color 200ms;
}
.sd-news-card[hidden] { display: none; }
.sd-news-card:hover { transform: translateY(-4px); }
.sd-news-card__thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, rgba(13,52,153,0.55), rgba(0,8,28,0.92));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sd-news-card__thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 15% 0%, rgba(255,255,255,0.14), transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.sd-news-card__image,
.sd-news-article__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}
.sd-news-card__placeholder {
  position: relative;
  z-index: 1;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sd-news-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.sd-news-card__tag {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2a1500;
  background: linear-gradient(180deg, #FAE0BF 0%, #F2BB6A 100%);
  padding: 5px 11px;
  border-radius: 999px;
}
.sd-news-card__title {
  font-size: 18px;
  line-height: 1.3;
}
.sd-news-card__date,
.sd-news-article__date {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.sd-news-article__date {
  font-size: 13px;
  margin: 0 0 32px;
}

.sd-noticias-empty {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin: 8px 0 0;
}

.sd-noticias-pagination { margin-top: 40px; }
.sd-noticias-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sd-noticias-pagination .page-numbers a,
.sd-noticias-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--sans);
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}
.sd-noticias-pagination .page-numbers .current,
.sd-noticias-pagination .page-numbers a:hover {
  color: #2a1500;
  background: linear-gradient(180deg, #FAE0BF 0%, #F2BB6A 100%);
  border-color: rgba(124,76,0,0.35);
}

.sd-news-article__container { max-width: 860px; }
.sd-news-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 28px;
  width: fit-content;
}
.sd-news-back svg { transform: rotate(180deg); flex-shrink: 0; }
.sd-news-back:hover { color: #fff; }
.sd-news-article .sd-news-card__tag { display: inline-flex; }
.sd-news-back svg { transform: rotate(180deg); flex-shrink: 0; }
.sd-news-back:hover { color: #fff; }
.sd-news-article__title {
  font-size: 38px;
  line-height: 1.15;
  margin: 18px 0 12px;
}
.sd-news-article__hero {
  margin-bottom: 32px;
}
.sd-news-article__hero-inner {
  width: 100%;
  height: 100%;
  aspect-ratio: 21 / 9;
}
.sd-news-article__excerpt,
.sd-news-article__body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}
.sd-news-article__excerpt { margin: 0 0 20px; }
.sd-news-article__body > *:first-child { margin-top: 0; }
.sd-news-article__body > *:last-child { margin-bottom: 0; }
.sd-news-article__body p { margin: 0 0 20px; }
.sd-news-article__body h2,
.sd-news-article__body h3 {
  font-family: var(--serif);
  color: #fff;
  letter-spacing: -0.03em;
  margin: 32px 0 14px;
}
.sd-news-article__body h2 { font-size: 28px; }
.sd-news-article__body h3 { font-size: 22px; }
.sd-news-article__body a { color: var(--gold-400); }
.sd-news-article__body a:hover { color: var(--gold-200); }
.sd-news-article__body ul,
.sd-news-article__body ol {
  margin: 0 0 20px;
  padding-left: 22px;
}
.sd-news-article__body li { margin-bottom: 8px; }
.sd-news-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.sd-news-article__body blockquote {
  margin: 0 0 20px;
  padding: 4px 0 4px 18px;
  border-left: 2px solid var(--gold-400);
  color: rgba(255,255,255,0.82);
}

.sd-news-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  margin: 12px 0 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sd-news-share__label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sd-news-share__actions { display: flex; gap: 10px; }
.sd-news-share__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 160ms, border-color 160ms, color 160ms;
}
.sd-news-share__btn:hover,
.sd-news-share__btn.is-copied {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}

.sd-news-related__eyebrow {
  color: var(--gold-400);
  margin-bottom: 20px;
}

@media (max-width: 899px) {
  .sd-noticias-hero__title { font-size: 40px; }
  .sd-news-grid,
  .sd-news-related__grid { grid-template-columns: 1fr 1fr; }
  .sd-news-article__title { font-size: 32px; }
  .sd-news-article__hero-inner { aspect-ratio: 4 / 3; }
}
@media (max-width: 640px) {
  .sd-news-grid,
  .sd-news-related__grid { grid-template-columns: 1fr; }
  .sd-news-share { flex-direction: column; align-items: flex-start; }
}

