    /* ─── RESET & VARS ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #07131f;
      --navy2:  #0c1e30;
      --navy3:  #112538;
      --gold:   #a8894a;
      --gold2:  #c4a55e;
      --gold-line: #8a7040;
      --cream:  #f2ede4;
      --cream2: #e8e1d4;
      --white:  #ffffff;
      --gray:   #7a8694;
      --text:   #2a3540;
      --ease:   cubic-bezier(.25,0,.1,1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ─── SCROLLBAR ─────────────────────────────────────────── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--navy); }
    ::-webkit-scrollbar-thumb { background: var(--gold-line); border-radius: 0; }

    /* ─── UTILITY ───────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .9s var(--ease), transform .9s var(--ease);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    .reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
    .reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .9s var(--ease), transform .9s var(--ease); }
    .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

    .d1 { transition-delay: .1s; }
    .d2 { transition-delay: .25s; }
    .d3 { transition-delay: .4s; }
    .d4 { transition-delay: .55s; }

        /* ─── HEADER (Container Principal) ─── */
    #header {
      position: relative;
      width: 100%;
      /* Aumentamos a altura: Mínimo 280px, Ideal 45vw, Máximo 480px */
      height: clamp(280px, 45vw, 480px); 
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #header-bg {
      position: absolute; inset: 0;
      background: url('../imagens/cabecalho-uninvest.png') center/cover no-repeat;
      animation: headerZoom 1.8s var(--ease) both;
    }

    @keyframes headerZoom {
      from { transform: scale(1.06); filter: brightness(.7); }
      to   { transform: scale(1.0); filter: brightness(1); }
    }

    /* Refined dark vignette — less colorful, more controlled */
    #header-overlay {
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom, rgba(7,19,31,.72) 0%, rgba(7,19,31,.38) 50%, rgba(7,19,31,.68) 100%);
    }

    /* Thin gold rule at bottom */
    #header::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
    }

/* ─── HEADER CONTENT (Alinhamento Central) ─── */
#header-content {
  position: relative; 
  z-index: 2;
  display: flex;
  flex-direction: column; /* Coloca selo abaixo do logo */
  align-items: center;    /* Centraliza horizontalmente */
  justify-content: center; /* Centraliza verticalmente */
  width: 100%;
  height: 100%;
  gap: 20px; /* Espaço entre o logo e o selo premium */
}

/* ─── LOGO (Tamanho e Efeito) ─── */
#logo-uninvest {
  /* Tamanho robusto: Mínimo 150px, Ideal 28vw, Máximo 320px */
  height: clamp(150px, 28vw, 320px) !important;
  width: auto !important;
  object-fit: contain;
  
  /* Sombra suave para dar profundidade sobre o fundo */
  filter: drop-shadow(0 8px 25px rgba(0,0,0,0.5));
  
  /* Animação centralizada */
  opacity: 0;
  transform: scale(0.9); /* Começa levemente menor */
  animation: logoEntrance 1.2s var(--ease) 0.3s forwards;
}

@keyframes logoEntrance {
  to { 
    opacity: 1; 
    transform: scale(1); 
  }
}

/* --- SELO PREMIUM --- */
#badge-premium {
  height: clamp(60px, 10vw, 110px) !important;
  width: auto !important;
  
  object-fit: contain;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,.5));
  
  /* Animação do selo */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpCentral .9s var(--ease) .6s forwards;
}

/* Nova animação para o modo centralizado */
@keyframes fadeUpCentral {
  to { opacity: 1; transform: translateY(0); }
}
#badge-premium {
  height: clamp(60px, 10vw, 120px) !important;
  width: auto !important;
  opacity: 0;
  animation: logoEntrance 1.2s var(--ease) 0.6s forwards;
} 
    /* ─── NAVBAR ────────────────────────────────────────────── */
    nav {
      position: sticky; top: 0; z-index: 1000;
      background: var(--navy);
      border-bottom: 1px solid rgba(168,137,74,.25);
      animation: navDrop .7s var(--ease) 1s both;
    }

    @keyframes navDrop {
      from { opacity: 0; transform: translateY(-100%); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .nav-inner {
      max-width: 1240px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 28px;
    }

    .nav-logo-small {
      height: 32px;
      object-fit: contain;
      opacity: .6;
    }

    .hamburger {
      display: none;
      flex-direction: column; gap: 5px;
      cursor: pointer; padding: 8px; background: none; border: none;
    }

    .hamburger span {
      display: block; width: 24px; height: 1px;
      background: var(--gold);
      transition: .3s;
    }

    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

    .nav-links {
      list-style: none; display: flex; gap: 0;
    }

    .nav-links li {
      opacity: 0;
      animation: navFadeIn .5s var(--ease) forwards;
    }

    .nav-links li:nth-child(1) { animation-delay: 1.1s; }
    .nav-links li:nth-child(2) { animation-delay: 1.2s; }
    .nav-links li:nth-child(3) { animation-delay: 1.3s; }
    .nav-links li:nth-child(4) { animation-delay: 1.4s; }
    .nav-links li:nth-child(5) { animation-delay: 1.5s; }

    @keyframes navFadeIn {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .nav-links a {
      display: block;
      padding: 20px 18px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.55);
      text-decoration: none;
      position: relative;
      transition: color .3s;
    }

    .nav-links a::after {
      content: '';
      position: absolute; bottom: 0; left: 18px; right: 18px;
      height: 1px; background: var(--gold-line);
      transform: scaleX(0); transform-origin: left;
      transition: transform .4s var(--ease);
    }

    .nav-links a:hover { color: rgba(255,255,255,.9); }
    .nav-links a:hover::after { transform: scaleX(1); }

    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .nav-links {
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--navy2);
        flex-direction: column; gap: 0;
        max-height: 0; overflow: hidden;
        transition: max-height .4s var(--ease);
      }
      .nav-links.open { max-height: 400px; }
      .nav-links li { animation: none !important; opacity: 1 !important; }
      .nav-links a { padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,.05); }
    }

    /* ─── SECTION BASE ───────────────────────────────────────── */
    section { padding: clamp(70px,9vw,130px) clamp(24px,5vw,80px); }

    .section-tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .68rem; font-weight: 600;
      letter-spacing: .28em; text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
      display: block;
    }

    h2.section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4.5vw, 3.8rem);
      font-weight: 300;
      line-height: 1.12;
      color: var(--navy);
      margin-bottom: 28px;
      letter-spacing: -.01em;
    }

    h2.section-title span { color: var(--gold); font-weight: 600; }

    /* ─── HERO ───────────────────────────────────────────────── */
    #hero {
      min-height: 100svh;
      background: var(--navy);
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      padding: clamp(60px,10vw,120px) clamp(24px,7vw,100px);
    }

    /* Subtle texture overlay */
    #hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 55% 55% at 85% 25%, rgba(168,137,74,.09) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 8%  80%, rgba(168,137,74,.05) 0%, transparent 55%);
    }

    /* Vertical rule — architectural detail */
    #hero::after {
      content: '';
      position: absolute; top: 0; bottom: 0; left: clamp(22px,6.5vw,98px);
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(168,137,74,.3) 20%, rgba(168,137,74,.3) 80%, transparent);
    }

    .hero-inner {
      position: relative; z-index: 2;
      max-width: 800px;
      padding-left: clamp(28px,4vw,52px);
    }

    .hero-tag {
      display: inline-block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .66rem; font-weight: 600;
      letter-spacing: .3em; text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 36px;
      animation: fadeUp .8s var(--ease) .2s both;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 6vw, 6rem);
      font-weight: 300; line-height: 1.06;
      color: var(--white);
      margin-bottom: 32px;
      letter-spacing: -.02em;
      animation: fadeUp .9s var(--ease) .4s both;
    }

    .hero-title strong {
      font-weight: 600; color: var(--gold);
      font-style: italic;
    }

    .hero-sub {
      font-size: clamp(.9rem, 1.7vw, 1.1rem);
      font-weight: 300;
      color: rgba(255,255,255,.55);
      line-height: 1.8;
      max-width: 560px;
      margin-bottom: 24px;
      animation: fadeUp .9s var(--ease) .6s both;
    }

    /* Formal blockquote-style highlight */
    .hero-highlight {
      font-size: clamp(.85rem, 1.4vw, 1rem);
      color: rgba(255,255,255,.65);
      border-left: 1px solid var(--gold-line);
      padding: 16px 24px;
      margin-bottom: 48px;
      line-height: 1.7;
      animation: fadeUp .9s var(--ease) .75s both;
      font-weight: 300;
    }

    .hero-highlight strong {
      color: rgba(255,255,255,.88);
      font-weight: 500;
    }

    .hero-cta {
      display: inline-flex; align-items: center; gap: 14px;
      background: transparent;
      border: 1px solid var(--gold-line);
      color: var(--gold2);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600; font-size: .8rem;
      letter-spacing: .2em; text-transform: uppercase;
      padding: 16px 36px; border-radius: 0;
      text-decoration: none;
      transition: background .35s, color .35s, border-color .35s;
      animation: fadeUp .9s var(--ease) .9s both;
    }

    .hero-cta:hover {
      background: var(--gold);
      color: var(--navy);
      border-color: var(--gold);
    }

    .hero-cta svg { width: 16px; height: 16px; transition: transform .3s; }
    .hero-cta:hover svg { transform: translateX(5px); }

    .scroll-hint {
      position: absolute; bottom: 40px; left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      animation: fadeUp 1s var(--ease) 1.4s both;
    }

    .scroll-hint span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .58rem; letter-spacing: .22em;
      text-transform: uppercase; color: rgba(255,255,255,.28);
    }

    .scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, rgba(168,137,74,.5), transparent);
      animation: lineDown 2s ease-in-out infinite;
    }

    @keyframes lineDown {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      51% { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── ATUAÇÃO ─────────────────────────────────────────────── */
    #atuacao {
      background: var(--cream);
    }

    .atuacao-grid {
      max-width: 1140px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 100px);
      align-items: center;
    }

    @media (max-width: 768px) {
      .atuacao-grid { grid-template-columns: 1fr; }
    }

    .atuacao-body {
      font-size: clamp(.9rem,1.5vw,1rem);
      font-weight: 300;
      line-height: 1.9;
      color: var(--gray);
      margin-bottom: 24px;
    }

    .atuacao-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1rem,1.8vw,1.22rem);
      font-style: italic;
      font-weight: 300;
      color: var(--text);
      border-left: 1px solid var(--gold-line);
      padding: 14px 24px;
      margin: 24px 0 36px;
      line-height: 1.75;
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--navy);
      color: rgba(255,255,255,.75);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600; font-size: .75rem;
      letter-spacing: .18em; text-transform: uppercase;
      padding: 14px 32px; border-radius: 0;
      text-decoration: none; border: none; cursor: pointer;
      transition: background .3s, color .3s;
    }

    .btn-primary:hover {
      background: var(--gold);
      color: var(--navy);
    }

    .map-container {
      position: relative; overflow: hidden;
      box-shadow: 0 24px 60px rgba(7,19,31,.14);
      cursor: pointer;
    }

    .map-container img {
      width: 100%; display: block;
      transition: transform .6s var(--ease);
      filter: grayscale(15%) contrast(1.05);
    }

    .map-container:hover img { transform: scale(1.025); }

    .map-overlay {
      position: absolute; inset: 0;
      background: rgba(7,19,31,.55);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity .3s;
    }

    .map-container:hover .map-overlay { opacity: 1; }

    .map-overlay span {
      font-family: 'Barlow Condensed', sans-serif;
      color: var(--white); font-size: .78rem;
      font-weight: 600; letter-spacing: .18em;
      text-transform: uppercase;
      border: 1px solid rgba(255,255,255,.4);
      padding: 12px 28px;
    }

    /* Modal */
    .modal-backdrop {
      display: none; position: fixed; inset: 0; z-index: 9999;
      background: rgba(7,19,31,.94);
      justify-content: center; align-items: center;
      padding: 20px;
    }

    .modal-backdrop.open { display: flex; animation: backdropIn .3s ease; }

    @keyframes backdropIn {
      from { opacity: 0; } to { opacity: 1; }
    }

    .modal-img { max-width: 96vw; max-height: 90vh; }
    .modal-close {
      position: absolute; top: 24px; right: 28px;
      background: none; border: none; cursor: pointer;
      color: rgba(255,255,255,.5); font-size: 1.5rem; line-height: 1;
      font-family: 'Barlow Condensed', sans-serif;
      letter-spacing: .1em; font-weight: 300;
      transition: color .2s;
    }
    .modal-close:hover { color: var(--gold); }

    /* ─── EMPREENDIMENTOS ─────────────────────────────────────── */
    #empreendimentos {
      background: var(--navy2);
    }

    #empreendimentos .section-tag { color: rgba(168,137,74,.7); }
    #empreendimentos h2.section-title { color: var(--white); }

    .slide-wrapper {
      max-width: 1140px; margin: 0 auto;
      position: relative;
    }

    /* Thin gold rule above title */
    .slide-rule {
      width: 40px; height: 1px;
      background: var(--gold-line);
      margin-bottom: 16px;
    }

    .slide {
      display: none;
      width: 100%;
      grid-template-columns: 1fr 1fr;
      gap: clamp(32px,5vw,72px);
      align-items: center;
      animation: slideFade .7s var(--ease);
    }

    .slide.active { display: grid; }

    @keyframes slideFade {
      from { opacity: 0; transform: translateX(20px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    @media (max-width: 700px) {
      .slide.active { grid-template-columns: 1fr; }
    }

    .slide-img-wrap {
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,.45);
      aspect-ratio: 4/3;
    }

    .slide-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .7s var(--ease);
      filter: grayscale(10%) contrast(1.04);
    }

    .slide:hover .slide-img-wrap img { transform: scale(1.04); }

    .slide-content { color: var(--white); }

    .slide-number {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .62rem; letter-spacing: .25em;
      color: rgba(168,137,74,.5); text-transform: uppercase;
      margin-bottom: 14px;
    }

    .slide-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem,3.2vw,2.6rem);
      font-weight: 400; line-height: 1.18;
      color: rgba(255,255,255,.92);
      margin-bottom: 18px;
      letter-spacing: -.01em;
    }

    .slide-text {
      font-size: clamp(.85rem,1.4vw,.96rem);
      font-weight: 300;
      line-height: 1.85;
      color: rgba(255,255,255,.5);
      margin-bottom: 32px;
    }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 10px;
      color: rgba(255,255,255,.6);
      border: 1px solid rgba(255,255,255,.2);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .72rem; font-weight: 600;
      letter-spacing: .18em; text-transform: uppercase;
      padding: 12px 28px; border-radius: 0;
      text-decoration: none;
      transition: background .3s, color .3s, border-color .3s;
    }

    .btn-outline:hover {
      background: var(--gold);
      color: var(--navy);
      border-color: var(--gold);
    }

    .slide-controls {
      display: flex; align-items: center; gap: 20px;
      margin-top: 48px;
    }

    .dot-nav { display: flex; gap: 12px; }

    .dot {
      width: 24px; height: 1px; border-radius: 0;
      background: rgba(255,255,255,.2);
      cursor: pointer; transition: background .3s, width .3s;
      border: none;
    }

    .dot.active {
      background: var(--gold);
      width: 40px;
    }

    .slide-arrow {
      background: none; border: 1px solid rgba(255,255,255,.15);
      color: rgba(255,255,255,.4); width: 38px; height: 38px;
      border-radius: 0; cursor: pointer; font-size: .9rem;
      display: flex; align-items: center; justify-content: center;
      transition: background .3s, color .3s, border-color .3s;
      font-family: 'Barlow Condensed', sans-serif;
    }

    .slide-arrow:hover {
      background: var(--gold); color: var(--navy);
      border-color: var(--gold);
    }

    .slide-progress {
      height: 1px; background: rgba(255,255,255,.08);
      margin-bottom: 40px;
      overflow: hidden;
    }

    .slide-progress-bar {
      height: 100%; background: var(--gold-line);
      animation: progressAnim 4s linear;
    }

    @keyframes progressAnim {
      from { width: 0%; } to { width: 100%; }
    }

    /* ─── QUEM SOMOS ──────────────────────────────────────────── */
    #quem-somos {
      background: var(--cream2);
    }

    /* Thin decorative top line */
    #quem-somos::before {
      content: '';
      display: block;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(168,137,74,.3), transparent);
    }

    .qs-grid {
      max-width: 1140px; margin: 0 auto;
      display: grid; grid-template-columns: .4fr 1fr;
      gap: clamp(40px,5vw,90px);
      align-items: start;
    }

    @media (max-width: 768px) {
      .qs-grid { grid-template-columns: 1fr; }
    }

    .qs-side {
      position: sticky; top: 100px;
    }

    .qs-year {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(5rem,10vw,9rem);
      font-weight: 700; line-height: .9;
      color: rgba(7,19,31,.06);
      margin-bottom: -10px;
      letter-spacing: -.04em;
    }

    .qs-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.3rem,2.4vw,1.7rem);
      font-weight: 400; line-height: 1.3;
      color: var(--navy);
      margin-bottom: 24px;
      letter-spacing: -.01em;
    }

    .qs-tagline span { color: var(--gold); font-style: italic; }

    .qs-stats {
      display: flex; flex-direction: column; gap: 22px;
      margin-top: 28px;
    }

    .stat-item {
      border-top: 1px solid rgba(7,19,31,.1);
      padding-top: 16px;
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem; font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }

    .stat-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .68rem; letter-spacing: .14em;
      color: var(--gray); text-transform: uppercase;
      margin-top: 4px;
    }

    .qs-body p {
      font-size: clamp(.88rem,1.5vw,1rem);
      font-weight: 300;
      line-height: 1.95; color: #4a5a6a;
      margin-bottom: 22px;
    }

    .qs-body p:last-child { margin-bottom: 0; }
    .qs-body strong { font-weight: 500; color: var(--navy); }

    /* ─── CONTATO ─────────────────────────────────────────────── */
    #contato {
      background: var(--navy);
      border-top: 1px solid rgba(168,137,74,.2);
    }

    .contato-inner {
      max-width: 640px; margin: 0 auto; text-align: center;
    }

    .contato-inner h2.section-title { color: var(--white); }

    .contato-inner p {
      color: rgba(255,255,255,.45);
      font-size: clamp(.88rem,1.5vw,1rem);
      font-weight: 300;
      line-height: 1.8; margin-bottom: 44px;
    }

    .contact-items {
      display: flex; flex-wrap: wrap; gap: 14px;
      justify-content: center;
    }

    .contact-card {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(168,137,74,.18);
      padding: 18px 28px;
      color: rgba(255,255,255,.65);
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .78rem; font-weight: 600;
      letter-spacing: .16em; text-transform: uppercase;
      display: flex; align-items: center; gap: 10px;
      transition: background .3s, border-color .3s, color .3s;
    }

    .contact-card:hover {
      background: rgba(168,137,74,.1);
      border-color: var(--gold-line);
      color: var(--white);
    }

    .contact-card svg { width: 18px; height: 18px; flex-shrink: 0; }

    /* ─── FOOTER ─────────────────────────────────────────────── */
    footer {
      background: #040e18;
      padding: 36px clamp(20px,5vw,80px);
      text-align: center;
      border-top: 1px solid rgba(168,137,74,.12);
    }

    footer img {
      height: 44px; object-fit: contain;
      opacity: .35; margin-bottom: 14px;
      filter: grayscale(1);
    }

    footer p {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .68rem; color: rgba(255,255,255,.22);
      letter-spacing: .1em; text-transform: uppercase;
    }

    /* ─── WHATSAPP FAB ────────────────────────────────────────── */
    .whatsapp-fab {
      position: fixed; bottom: 28px; right: 24px; z-index: 900;
      background: #1a9d50;
      width: 52px; height: 52px; border-radius: 0;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 24px rgba(26,157,80,.3);
      text-decoration: none;
      transition: transform .3s, background .3s;
    }

    .whatsapp-fab:hover { transform: scale(1.08); background: #16863f; }

    .whatsapp-fab svg { width: 26px; height: 26px; fill: white; }

    /* ─── ANCHOR ──────────────────────────────────────────────── */
    .page-anchor { scroll-margin-top: 62px; }
