*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --noir: #0A0A0A;
  --noir-deep: #050505;
  --noir-mid: #1A1A1A;
  --cream: #F5F1E8;
  --cream-dim: #E8E3D6;
  --gold: #C8A96B;
  --gold-light: #D4B87A;
  --gold-dim: #9A7E4F;
  --gray: #2A2A2A;
  --gray-light: #555;
  --white: #FAFAF7;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--noir);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; mix-blend-mode: difference;
}
#cursor-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cream); position: absolute;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
#cursor-ring {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(245,241,232,0.4);
  position: absolute;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 56px; height: 56px; opacity: 0.7;
}

#grain {
  position: fixed; inset: 0; z-index: 9990;
  pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grainShift 0.8s steps(1) infinite;
}
@keyframes grainShift {
  0%   { background-position: 0 0; }
  10%  { background-position: -5% -10%; }
  20%  { background-position: -15% 5%; }
  30%  { background-position: 7% -25%; }
  40%  { background-position: 20% 10%; }
  50%  { background-position: -5% 20%; }
  60%  { background-position: 15% 5%; }
  70%  { background-position: 0 15%; }
  80%  { background-position: 3% 35%; }
  90%  { background-position: -18% 10%; }
  100% { background-position: 0 0; }
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 2rem 4rem;
  background: linear-gradient(to bottom, rgba(10,10,10,0.9) 0%, transparent 100%);
  transition: background 0.4s ease;
}
nav.scrolled { background: rgba(10,10,10,0.96); backdrop-filter: blur(12px); }

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  position: relative;
  z-index: 102;
  margin-top: 20px;
}

.brand-logo {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.brand-logo--nav {
  height: clamp(4.25rem, 9vw, 5.75rem);
  width: auto;
  max-width: min(72vw, 32rem);
}
.brand-logo--hero {
  height: clamp(6rem, 18vw, 10.5rem);
  width: auto;
  max-width: min(98vw, 50rem);
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.brand-logo--manifesto {
  height: clamp(2.85rem, 6.5vw, 4.25rem);
  width: auto;
  max-width: 28rem;
  opacity: 0.85;
}
.brand-logo--footer {
  height: clamp(3.5rem, 6.5vw, 5rem);
  width: auto;
  max-width: 32rem;
  opacity: 0.45;
  transition: opacity 0.3s ease;
}
footer:hover .brand-logo--footer { opacity: 0.85; }

.nav-panel { display: contents; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 102;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(200,169,107,0.35);
  border-radius: 2px;
  background: rgba(10,10,10,0.5);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav-toggle:hover {
  border-color: rgba(200,169,107,0.55);
  background: rgba(200,169,107,0.06);
}
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(200,169,107,0.45);
}
.nav-toggle-bar {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: var(--gold);
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}
#nav.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(0.45rem) rotate(45deg);
}
#nav.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#nav.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-0.45rem) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 2vw, 2.5rem);
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-sans); font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(245,241,232,0.55); text-decoration: none;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }

@media (min-width: 901px) and (max-width: 1180px) {
  .nav-links { gap: 1rem; justify-content: flex-end; }
  .nav-links a { font-size: 0.62rem; letter-spacing: 0.1em; }
}

#hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, #1a1208 0%, #0A0A0A 70%);
}

.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(200,169,107,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 20% at 80% 20%, rgba(200,169,107,0.04) 0%, transparent 60%);
}

#particles-canvas {
  position: absolute; inset: 0;
  pointer-events: none; opacity: 0.5;
}

.hero-lines {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 79px,
    rgba(255,255,255,0.012) 80px
  );
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}

.hero-eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}
.hero-eyebrow-suffix {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 1s ease 0.65s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300; line-height: 1.05;
  color: var(--cream); letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp 1.2s ease 0.8s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(245,241,232,0.5); font-weight: 300;
  max-width: 600px; margin: 0 auto 3.5rem;
  line-height: 1.7;
  opacity: 0; animation: fadeUp 1s ease 1.2s forwards;
}

.hero-cta {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s ease 1.5s forwards;
}

.btn-primary {
  display: inline-block; padding: 1rem 2.5rem;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--font-sans); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; background: transparent;
  cursor: none; position: relative; overflow: hidden;
  transition: color 0.4s ease;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s ease;
  z-index: -1;
}
.btn-primary:hover { color: var(--noir); }
.btn-primary:hover::before { transform: scaleX(1); }

.btn-ghost {
  display: inline-block; padding: 1rem 2.5rem;
  color: rgba(245,241,232,0.5);
  font-family: var(--font-sans); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; background: transparent;
  border: 1px solid rgba(245,241,232,0.15);
  cursor: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.btn-ghost:hover { color: var(--cream); border-color: rgba(245,241,232,0.4); }

.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  opacity: 0; animation: fadeIn 1s ease 2.2s forwards;
}
.scroll-indicator span {
  font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(245,241,232,0.3);
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(200,169,107,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

section { position: relative; }

.section-divider {
  width: 1px; height: 80px; background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
}

#sobre {
  padding: 10rem 0 8rem;
  background: var(--noir);
}

.sobre-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 4rem;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 8rem; align-items: start;
}

.sobre-left { position: sticky; top: 20vh; }

.sobre-tag {
  font-size: 0.6rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 2rem; display: block;
}

.sobre-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-weight: 300; line-height: 1.15;
  color: var(--cream);
}
.sobre-title em { font-style: italic; color: var(--gold); }

.sobre-deco {
  width: 48px; height: 1px;
  background: var(--gold); margin: 2.5rem 0;
  opacity: 0.5;
}

.sobre-number {
  font-family: var(--font-serif);
  font-size: 5rem; font-weight: 300;
  color: rgba(200,169,107,0.08);
  line-height: 1;
}

.sobre-text {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 300;
  line-height: 1.95; color: rgba(245,241,232,0.65);
}

.sobre-text p { margin-bottom: 1.8rem; }
.sobre-text p:last-of-type { margin-bottom: 0; }

.sobre-assinatura {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(200,169,107,0.15);
}
.sobre-assinatura span {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.5rem; color: var(--gold); font-weight: 400;
}
.sobre-assinatura small {
  display: block; margin-top: 0.3rem;
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(245,241,232,0.3);
}

#projeto {
  padding: 10rem 0 8rem;
  background: var(--noir);
}
.projeto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}
.projeto-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.projeto-header .section-tag {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.projeto-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}
.projeto-title em {
  font-style: italic;
  color: var(--gold);
}
.projeto-lead {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(245,241,232,0.45);
  margin-top: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.projeto-carousel {
  max-width: min(100%, 56rem);
  margin-inline: auto;
  padding: 0.35rem;
  background: linear-gradient(145deg, rgba(200,169,107,0.08) 0%, rgba(26,26,26,0.5) 45%, rgba(10,10,10,0.6) 100%);
  border-radius: clamp(14px, 2.2vw, 22px);
  border: 1px solid rgba(200,169,107,0.14);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,0,0,0.35) inset;
}
.projeto-carousel-shell {
  position: relative;
}
.projeto-carousel-viewport {
  overflow: hidden;
  border-radius: clamp(10px, 1.6vw, 16px);
  border: 1px solid rgba(200,169,107,0.18);
  background: linear-gradient(180deg, #151515 0%, var(--noir-mid) 100%);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.projeto-carousel-viewport:focus-visible {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 0 0 2px rgba(200,169,107,0.45);
}
.projeto-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.projeto-carousel-slide {
  margin: 0;
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.projeto-carousel-slide.projeto-figure {
  position: relative;
  overflow: hidden;
  padding: clamp(1.1rem, 3.2vw, 2rem);
}
.projeto-carousel-slide.projeto-figure img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: min(68vh, 520px);
  display: block;
  object-fit: contain;
  border-radius: clamp(7px, 1.2vw, 12px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.5);
}
.projeto-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  appearance: none;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  border: 1px solid rgba(200,169,107,0.45);
  background: rgba(8,8,8,0.62);
  color: rgba(245,241,232,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  cursor: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}
@media (hover: hover) {
  .projeto-carousel-shell:not(:hover) .projeto-carousel-arrow {
    opacity: 0.6;
  }
}
.projeto-carousel-arrow:hover {
  opacity: 1;
  color: var(--cream);
  border-color: rgba(212,184,122,0.75);
  background: rgba(18,14,10,0.78);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.07);
}
.projeto-carousel-arrow:active {
  transform: translateY(-50%) scale(0.94);
}
.projeto-carousel-prev {
  left: clamp(-3rem, -6.5vw, -1.35rem);
}
.projeto-carousel-next {
  right: clamp(-3rem, -6.5vw, -1.35rem);
}
.projeto-carousel-arrow:focus-visible {
  outline: none;
  box-shadow: 0 10px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 0 2px var(--gold);
  opacity: 1;
}
.projeto-carousel-footer {
  margin-top: 1.35rem;
  padding: 0 0.35rem 0.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.75rem;
}
.projeto-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
}
.projeto-carousel-dot {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  padding: 0;
  border: 1px solid rgba(245,241,232,0.35);
  background: rgba(255,255,255,0.06);
  cursor: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, border-color 0.3s ease, width 0.35s ease, opacity 0.3s ease;
}
.projeto-carousel-dot[aria-current="true"] {
  width: 2rem;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
  border-color: rgba(212,184,122,0.85);
  opacity: 1;
}
.projeto-carousel-dot:not([aria-current="true"]) {
  opacity: 0.55;
}
.projeto-carousel-dot:hover {
  opacity: 1;
  border-color: rgba(200,169,107,0.65);
}
.projeto-carousel-dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(200,169,107,0.55);
  opacity: 1;
}
.projeto-carousel-meta {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.38);
}
.projeto-carousel-counter {
  font-variant-numeric: tabular-nums;
  color: var(--gold);
  letter-spacing: 0.2em;
  padding-inline: 0.15rem;
}

@media (prefers-reduced-motion: reduce) {
  .projeto-carousel-track {
    transition: none;
  }
  .projeto-carousel-dot {
    transition: none;
  }
  .nav-panel {
    transition: none;
  }
  .nav-toggle-bar {
    transition: none;
  }
}

#fundador {
  padding: 10rem 0;
  background: var(--noir-mid);
}

.fundador-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 4rem;
}

.fundador-header {
  text-align: center; margin-bottom: 7rem;
}

.fundador-header .section-tag {
  font-size: 0.6rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 1.5rem;
}

.fundador-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300; color: var(--cream);
}
.fundador-header h2 em { font-style: italic; color: var(--gold); }

.fundador-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 7rem; align-items: center;
}

.fundador-photo {
  position: relative;
}
.fundador-photo-frame {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray);
}

.fundador-photo-frame::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.45), inset 0 -80px 120px rgba(10,10,10,0.35);
}
.fundador-photo-frame img {
  position: absolute; inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fundador-photo-border {
  position: absolute; inset: -1px;
  border: 1px solid rgba(200,169,107,0.2);
  pointer-events: none;
}
.fundador-photo-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 60%; height: 60%;
  border: 1px solid rgba(200,169,107,0.12);
  pointer-events: none;
}

.fundador-badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 2.5rem;
}
.badge {
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(200,169,107,0.25);
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(200,169,107,0.04);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.badge:hover { background: rgba(200,169,107,0.1); border-color: rgba(200,169,107,0.5); }

.fundador-text .sobre-tag { text-align: left; }

.fundador-text h3 {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 400;
  color: var(--cream); margin-bottom: 2rem;
}

.fundador-text p {
  font-family: var(--font-serif);
  font-size: 1.05rem; line-height: 1.9;
  color: rgba(245,241,232,0.6);
  margin-bottom: 1.5rem;
}

.fundador-highlights {
  margin-top: 2.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(200,169,107,0.12);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.highlight-item strong {
  display: block; font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 300; color: var(--gold);
}
.highlight-item span {
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(245,241,232,0.3);
}

#manifesto {
  min-height: 100svh; display: flex;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: var(--noir-deep);
}

.manifesto-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200,169,107,0.04) 0%, transparent 70%);
}
.manifesto-texture {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 2px, rgba(255,255,255,0.5) 2px, rgba(255,255,255,0.5) 3px
  );
}

.manifesto-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 800px;
  padding: 0 3rem;
}

.manifesto-deco {
  font-family: var(--font-serif);
  font-size: 6rem; line-height: 1; color: rgba(200,169,107,0.08);
  display: block; margin-bottom: -1rem;
}

.manifesto-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.5;
  color: var(--cream); letter-spacing: 0.01em;
}
.manifesto-quote em { font-style: italic; color: var(--gold); }

.manifesto-rule {
  width: 80px; height: 1px;
  background: var(--gold); margin: 3rem auto;
  opacity: 0.4;
}

.manifesto-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.manifesto-sub-text {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.25);
}

#redes {
  padding: 10rem 0;
  background: var(--noir);
}

.redes-inner {
  max-width: 900px; margin: 0 auto;
  padding: 0 4rem; text-align: center;
}

.redes-inner .section-tag {
  font-size: 0.6rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 1.5rem;
}

.redes-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; color: var(--cream);
  margin-bottom: 4rem;
}

.social-grid {
  display: flex; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}

.social-link {
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  text-decoration: none; color: rgba(245,241,232,0.4);
  padding: 2.5rem 3rem;
  border: 1px solid rgba(245,241,232,0.06);
  transition: all 0.4s ease; position: relative;
  overflow: hidden; cursor: none;
  min-width: 160px;
}
.social-link::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(200,169,107,0.04);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s ease;
}
.social-link:hover { color: var(--gold); border-color: rgba(200,169,107,0.3); }
.social-link:hover::before { transform: scaleY(1); }
.social-link svg { width: 28px; height: 28px; transition: transform 0.3s ease; }
.social-link:hover svg { transform: translateY(-3px); }
.social-link span {
  font-size: 0.6rem; letter-spacing: 0.25em;
  text-transform: uppercase; transition: color 0.3s ease;
}

#contato {
  padding: 10rem 0 8rem;
  background: var(--noir-deep);
  text-align: center;
}

.contato-inner {
  max-width: 700px; margin: 0 auto;
  padding: 0 4rem;
}

.contato-inner .section-tag {
  font-size: 0.6rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 1.5rem;
}

.contato-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.2;
  color: var(--cream); margin-bottom: 1.5rem;
}
.contato-inner h2 em { font-style: italic; color: var(--gold); }

.contato-inner p {
  font-family: var(--font-serif);
  font-size: 1.1rem; color: rgba(245,241,232,0.4);
  margin-bottom: 3.5rem; font-style: italic;
}

.contato-email {
  display: block; font-size: 0.75rem;
  letter-spacing: 0.15em; color: rgba(245,241,232,0.3);
  text-decoration: none; margin-bottom: 3rem;
  transition: color 0.3s ease;
}
.contato-email:hover { color: var(--gold); }

footer {
  padding: 3rem 4rem;
  border-top: 1px solid rgba(245,241,232,0.04);
  display: flex; align-items: center;
  justify-content: space-between;
  background: var(--noir-deep);
}

footer p {
  font-size: 0.6rem; letter-spacing: 0.15em;
  color: rgba(245,241,232,0.15); text-transform: uppercase;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }

body.nav-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  nav { padding: 1.25rem 1.5rem; align-items: center; }
  .nav-toggle { display: flex; }
  .nav-panel {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 101;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem 3rem;
    background: rgba(5,5,5,0.94);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  #nav.nav-open .nav-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 20rem;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(245,241,232,0.06);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 1.15rem 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    color: rgba(245,241,232,0.75);
  }
  .nav-links a:active { color: var(--gold); }
  .sobre-inner { grid-template-columns: 1fr; gap: 3rem; padding: 0 2rem; }
  .sobre-left { position: static; }
  .projeto-inner { padding: 0 2rem; }
  .projeto-header { margin-bottom: 3rem; }
  .fundador-grid { grid-template-columns: 1fr; gap: 4rem; padding: 0 2rem; }
  .fundador-inner { padding: 0 2rem; }
  .redes-inner { padding: 0 2rem; }
  .contato-inner { padding: 0 2rem; }
  footer { padding: 2rem; flex-direction: column; gap: 1rem; text-align: center; }
  body { cursor: auto; }
  #cursor { display: none; }
}
