    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --void:    #0e001c;
      --deep:    #160025;
      --nebula:  #200035;
      --veil:    #2a0048;
      --gold:    #d4a017;
      --gold-dim: #a87b10;
      --gold-pale: rgba(212,160,23,.12);
      --white:   #f2ead8;
      --muted:   rgba(242,234,216,.55);
      --divider: rgba(212,160,23,.18);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--deep);
      color: var(--white);
      font-family: 'Cambria', 'Georgia', serif;
      font-weight: 400;
      font-size: 17px;
      line-height: 1.85;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: .025;
      pointer-events: none;
      z-index: 9999;
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 clamp(1.5rem, 5vw, 4rem);
      height: 68px;
      background: rgba(14,0,28,.72);
      backdrop-filter: blur(18px) saturate(1.4);
      -webkit-backdrop-filter: blur(18px) saturate(1.4);
      border-bottom: 1px solid var(--divider);
    }

    .nav-logo {
      display: flex; align-items: center; gap: .65rem;
      text-decoration: none;
    }
    .nav-logo svg { width: 32px; height: 32px; flex-shrink: 0; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .nav-logo-name {
      font-family: 'Playfair Display', serif;
      font-size: .95rem; font-weight: 500;
      color: var(--gold); letter-spacing: .04em;
    }
    .nav-logo-sub {
      font-family: 'Cambria', Georgia, serif;
      font-size: .62rem; font-weight: 300;
      color: var(--muted); letter-spacing: .18em; text-transform: uppercase;
    }

    .nav-links {
      display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.2rem);
      list-style: none;
    }
    .nav-links a {
      font-size: .82rem; font-weight: 300;
      color: var(--muted); text-decoration: none;
      letter-spacing: .1em; text-transform: uppercase;
      transition: color .3s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--white); }
    .nav-links a.active {
      color: var(--gold);
      border-bottom: 1px solid var(--gold);
      padding-bottom: 2px;
    }

    .nav-links a.nav-cta {
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: .38rem 1rem;
      transition: background .3s, color .3s;
    }
    .nav-links a.nav-cta:hover { background: var(--gold); color: var(--void); }

.nav-hamburger { 
    display: none; 
    cursor: pointer; 
    flex-direction: column; 
    gap: 5px; 
    background: none; /* ← Remove o fundo branco/cinza padrão do botão */
    border: none;     /* ← Remove bordas padrão */
    padding: 4px;
}

.nav-hamburger span { 
    display: block; 
    width: 22px; 
    height: 1px; 
    background: var(--gold); 
    transition: transform .3s, opacity .3s; /* ← ISSO faz a animação suave acontecer! */
}
    /* ── HERO ── */
    .hero {
      min-height: 520px;
      padding-top: calc(64px + clamp(4rem, 8vw, 7rem));
      padding-bottom: clamp(4rem, 8vw, 7rem);
      padding-left: clamp(1.5rem, 8vw, 9rem);
      padding-right: clamp(1.5rem, 8vw, 9rem);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 72% 40%, rgba(212,160,23,.10) 0%, transparent 65%),
        radial-gradient(ellipse 55% 55% at 20% 80%, rgba(49,0,104,.55) 0%, transparent 70%),
        radial-gradient(ellipse 80% 80% at 50% 50%, #1a0030 0%, var(--void) 100%);
    }

    /* stars */
    .hero-stars {
      position: absolute; inset: 0; overflow: hidden;
    }
    .star {
      position: absolute; border-radius: 50%;
      background: var(--white);
      animation: twinkle var(--d, 4s) ease-in-out infinite var(--delay, 0s);
    }
    @keyframes twinkle {
      0%,100% { opacity: var(--min, .15); transform: scale(1); }
      50%      { opacity: var(--max, .7);  transform: scale(1.3); }
    }

    .hero-content { position: relative; z-index: 2; max-width: 720px; text-align: center; }

    .hero-eyebrow {
      font-size: .72rem; font-weight: 300;
      color: var(--gold); letter-spacing: .28em; text-transform: uppercase;
      margin-bottom: 1.8rem;
      display: flex; align-items: center; justify-content: center; gap: .9rem;
    }
    .hero-eyebrow::before {
      content: '';
      display: block; width: 36px; height: 1px;
      background: var(--gold); opacity: .5;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 6.5vw, 5.2rem);
      font-weight: 400; line-height: 1.12;
      color: var(--white);
      margin-bottom: 2.4rem;
    }
    .hero-title em {
      font-style: italic; color: var(--gold);
    }

    .hero-body {
      font-size: clamp(.95rem, 1.5vw, 1.05rem);
      color: var(--muted);
      max-width: 100%;
      margin: 0 auto;
      line-height: 1.9;
    }

    .hero-scroll {
      position: absolute; bottom: 2.8rem; right: clamp(1.5rem, 5vw, 4rem);
      display: flex; flex-direction: column; align-items: center; gap: .6rem;
      opacity: .4;
    }
    .hero-scroll span {
      font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); writing-mode: vertical-rl;
    }
    .hero-scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollLine 2.2s ease-in-out infinite;
    }
    @keyframes scrollLine {
      0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
      50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
      51%  { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
    }

    /* ── SECTION WRAPPER ── */
    .section {
      padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 8vw, 9rem);
      position: relative;
    }

    /* ── DIVIDER STAR ── */
    .divider {
      display: flex; align-items: center; justify-content: center;
      gap: 1.2rem; padding: 0 clamp(1.5rem, 8vw, 9rem);
      margin: .5rem 0;
    }
    .divider-line {
      flex: 1; height: 1px;
      background: linear-gradient(to right, transparent, var(--divider), transparent);
    }
    .divider-glyph {
      color: var(--gold); font-size: .9rem; opacity: .6;
    }

    /* ── BLOCK: texto + imagem lado-a-lado ── */
    .block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 6vw, 6rem);
      align-items: center;
    }
    .block.reverse { direction: rtl; }
    .block.reverse > * { direction: ltr; }

    .block-label {
      font-size: .68rem; font-weight: 300;
      color: var(--gold); letter-spacing: .26em; text-transform: uppercase;
      margin-bottom: 1.4rem;
    }

    .block-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 400; line-height: 1.18;
      color: var(--white);
      margin-bottom: 1rem;
    }

    .block-rule {
      width: 36px; height: 1px;
      background: var(--gold); opacity: .45;
      margin-bottom: 2.2rem;
    }

    .block-paragraphs p {
      font-size: clamp(.9rem, 1.4vw, 1rem);
      color: var(--muted);
      line-height: 1.95;
      margin-bottom: 1.4rem;
    }
    .block-paragraphs p:last-child { margin-bottom: 0; }

    /* image frame */
    .img-frame {
      position: relative;
      border-radius: 2px;
      overflow: hidden;
    }
    .img-frame::before {
      content: '';
      position: absolute; inset: 0; z-index: 1;
      background:
        linear-gradient(160deg, rgba(212,160,23,.06) 0%, transparent 50%),
        linear-gradient(to bottom, transparent 60%, rgba(14,0,28,.65) 100%);
    }
    .img-frame img {
      display: block; width: 100%; height: 100%;
      object-fit: cover;
      filter: saturate(.8) brightness(.88);
      transition: filter .6s, transform .8s;
    }
    .img-frame:hover img {
      filter: saturate(.95) brightness(.95);
      transform: scale(1.02);
    }

    /* ── QUOTE SECTION ── */
    .quote-section {
      padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 9rem);
      text-align: center;
      position: relative;
    }
    .quote-section::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(49,0,104,.3) 0%, transparent 70%);
      pointer-events: none;
    }

    .quote-mark {
      font-family: 'Playfair Display', serif;
      font-size: 5rem; line-height: .5;
      color: var(--gold); opacity: .2;
      margin-bottom: 1.5rem;
      display: block;
    }

    blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.5rem, 3.5vw, 2.4rem);
      font-weight: 300; font-style: italic;
      line-height: 1.5;
      color: var(--white);
      max-width: 760px; margin: 0 auto 2rem;
      position: relative; z-index: 1;
    }

    .quote-attr {
      font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); opacity: .6;
    }

    /* ── MANIFESTO STRIP ── */
    .manifesto {
      padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 8vw, 9rem);
      background: linear-gradient(135deg, rgba(32,0,53,.8) 0%, rgba(20,0,38,.9) 100%);
      border-top: 1px solid var(--divider);
      border-bottom: 1px solid var(--divider);
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 3rem 4rem;
    }

    .manifesto-item { }
    .manifesto-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem; font-weight: 400;
      color: var(--gold); opacity: .18;
      line-height: 1; margin-bottom: .5rem;
    }
    .manifesto-heading {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 500;
      color: var(--white);
      margin-bottom: .7rem;
    }
    .manifesto-text {
      font-size: .9rem; color: var(--muted);
      line-height: 1.85;
    }

    /* ── CTA SECTION ── */
    .cta-section {
      padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 8vw, 9rem);
      text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(212,160,23,.055) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-label {
      font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 2rem;
    }
    .cta-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.6rem);
      font-weight: 400; line-height: 1.15;
      color: var(--white); margin-bottom: 1.8rem;
    }
    .cta-title em { font-style: italic; color: var(--gold); }
    .cta-body {
      font-size: 1rem; color: var(--muted);
      max-width: 420px; margin: 0 auto 3rem;
      line-height: 1.9;
    }
    .cta-btn {
      display: inline-block;
      font-size: .8rem; font-weight: 400;
      letter-spacing: .15em; text-transform: uppercase;
      color: var(--gold);
      background: transparent;
      border: 1px solid var(--gold);
      padding: .9rem 2.4rem; text-decoration: none;
      transition: background .3s, color .3s, transform .3s;
    }
    .cta-btn:hover {
      background: var(--gold);
      color: var(--void);
      transform: translateY(-2px);
    }

    /* ── FOOTER ── */
    footer {
      padding: 3rem clamp(1.5rem, 8vw, 9rem) 2.5rem;
      border-top: 1px solid var(--divider);
      display: flex; flex-wrap: wrap;
      align-items: center; justify-content: space-between;
      gap: 1.5rem;
    }

    .footer-logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
    .footer-logo-name {
      font-family: 'Playfair Display', serif;
      font-size: .9rem; color: var(--gold);
    }
    .footer-logo-sub {
      font-size: .58rem; color: var(--muted);
      letter-spacing: .18em; text-transform: uppercase;
    }

    .footer-copy {
      text-align: center;
    }
    .footer-copy p {
      font-size: .75rem; color: var(--muted); line-height: 1.7;
    }

    .footer-social {
      display: flex; gap: 1.2rem; align-items: center;
    }
    .footer-social a {
      color: var(--muted); text-decoration: none;
      transition: color .3s;
    }
    .footer-social a:hover { color: var(--gold); }
    .footer-social svg { width: 18px; height: 18px; }

    /* ── ANIMATIONS ── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: .12s; }
    .reveal-delay-2 { transition-delay: .24s; }
    .reveal-delay-3 { transition-delay: .36s; }

    /* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .block, .block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .block.reverse .img-frame { order: -1; }
  .nav-links { display: none; }

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: rgba(14,0,28,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--divider);
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  gap: 1.2rem;
}

  .nav-hamburger { display: flex; }
  .manifesto { grid-template-columns: 1fr; gap: 2.5rem; }
  footer { flex-direction: column; text-align: center; }
  .footer-copy { order: 2; }
}

@media (max-width: 600px) {
  .img-frame { max-height: 220px; }
  .hero {
    min-height: unset;
    padding-top: calc(64px + 3rem);
    padding-bottom: 3.5rem;
    align-items: flex-start;
  }
  .hero-scroll { display: none; }
  .hero-body { font-size: 1rem; max-width: 100%; }
  .hero-title { font-size: clamp(2rem, 10vw, 2.8rem); }
}

@media (max-width: 480px) {
  blockquote { font-size: 1.35rem; }
  .section { padding: clamp(3.5rem, 8vw, 5rem) clamp(1.2rem, 5vw, 2rem); }
}

/* ── DROPDOWN CONTATO ── */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle { cursor: pointer; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14,0,28,.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(220,168,56,.25);
  min-width: 180px;
  padding: .6rem 0;
  z-index: 200;
}
.nav-dropdown-menu.open { display: block; }

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .75rem 1.2rem;
  font-size: .82rem;
  color: rgba(220,168,56,.65) !important;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: none !important;
  transition: color .2s, background .2s;
  text-decoration: none;
}
.nav-dropdown-menu a:hover {
  color: #f2ead8 !important;
  background: rgba(220,168,56,.07);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }