/* =========================
   VARIÁVEIS
========================== */
:root {
  --bg: #000000;
  --bg-soft: #050505;
  --panel: rgba(255, 255, 255, 0.03);
  --panel-border: rgba(255, 255, 255, 0.06);
  --text: #e2e2e2;
  --text-soft: #909090;
  --text-muted: rgba(226, 226, 226, 0.68);
  --danger: #f87171;
  --danger-deep: rgba(127, 29, 29, 0.78);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

/* =========================
   RESET
========================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #000000;
}

html,
body {
  width: 100%;
  overflow-x: clip;
  background: #000000;
}

body {
  margin: 0;
  background-color: #000000;
  background-image:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.028), transparent 26%),
    radial-gradient(circle at 86% 84%, rgba(255, 255, 255, 0.02), transparent 22%),
    linear-gradient(180deg, #000000 0%, #050505 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   UTILITÁRIOS
========================== */
.shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-left: max(1rem, var(--safe-left));
  padding-right: max(1rem, var(--safe-right));
}

@media (min-width: 768px) {
  .shell {
    padding-left: max(3rem, var(--safe-left));
    padding-right: max(3rem, var(--safe-right));
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only {
    display: inline;
  }
}

/* =========================
   AMBIENTE
========================== */
.ambient {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ambient-1 {
  width: min(62vw, 760px);
  height: min(62vw, 760px);
  top: -18%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 62%);
  filter: blur(48px);
}

.ambient-2 {
  width: min(48vw, 560px);
  height: min(48vw, 560px);
  right: -10%;
  bottom: -14%;
  background: radial-gradient(circle, rgba(215, 215, 215, 0.015) 0%, transparent 60%);
  filter: blur(58px);
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image:
    radial-gradient(rgba(255,255,255,0.75) 0.35px, transparent 0.35px);
  background-size: 4px 4px;
}

/* =========================
   NAVBAR
========================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  padding-top: max(0.5rem, var(--safe-top));
  background: transparent;
}

.navbar-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.9) 58%, rgba(0,0,0,0.18) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navbar-inner {
  position: relative;
  z-index: 1;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.nav-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--text);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.nav-label {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
}

.nav-logo-link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
}

.nav-logo {
  height: 1.9rem;
  width: auto;
  object-fit: contain;
}

.nav-block {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--danger);
  background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(248, 113, 113, 0.18);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 80, 80, 0.04),
    0 0 18px rgba(255, 70, 70, 0.08);
}

.nav-block-text {
  font-size: 0.44rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  color: rgba(255, 140, 140, 0.96);
  text-shadow: 0 0 8px rgba(255, 70, 70, 0.12);
}

.nav-lock {
  width: 0.82rem;
  height: 0.82rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255, 70, 70, 0.16));
}

@media (min-width: 480px) {
  .nav-logo {
    height: 2.15rem;
  }

  .nav-block-text {
    font-size: 0.5rem;
  }
}

@media (min-width: 768px) {
  .navbar-inner {
    min-height: 96px;
  }

  .nav-logo {
    height: 3rem;
  }

  .nav-label {
    font-size: 0.7rem;
    letter-spacing: 0.34em;
  }

  .nav-block {
    gap: 0.6rem;
    padding: 0.75rem 1.4rem;
  }

  .nav-block-text {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }

  .nav-lock {
    width: 1rem;
    height: 1rem;
  }
}

/* =========================
   HERO
========================== */
.hero {
  position: relative;
  z-index: 10;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(max(5.5rem, var(--safe-top) + 4.75rem));
  padding-bottom: max(2rem, var(--safe-bottom));
}

.hero-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.hero-line {
  width: 2.1rem;
  height: 1px;
  background: var(--panel-border);
}

.hero-kicker {
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-title-wrap {
  max-width: 1220px;
}

.hero-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(3.5rem, 16vw, 11rem);
  line-height: 0.84;
  font-weight: 700;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #ffffff 0%, #aeaeae 45%, #474747 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 0.55rem;
}

.hero-card {
  width: 100%;
  max-width: 340px;
  padding: 1rem 1rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 2px solid rgba(226, 226, 226, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 300;
}

.hero-title-right {
  text-align: right;
}

@media (min-width: 768px) {
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    justify-content: center;
    padding-top: 7.2rem;
    padding-bottom: 5.4rem;
  }

  .hero-top {
    gap: 1rem;
    margin-bottom: 1.8rem;
  }

  .hero-line {
    width: 3rem;
  }

  .hero-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
  }

  .hero-title-wrap {
    max-width: 1180px;
  }

  .hero-bottom {
    flex-direction: row;
    align-items: flex-end;
    gap: 0;
    margin-top: -0.2rem;
  }

  .hero-card {
    width: 300px;
    margin-top: 1.7rem;
    margin-bottom: 1.1rem;
    padding: 1.35rem 1.4rem;
    flex-shrink: 0;
  }

  .hero-title-right {
    margin-left: auto;
    margin-top: 0.2rem;
    width: max-content;
    text-align: right;
    transform: translateX(-0.7rem);
  }
}

@media (min-width: 1200px) {
  .hero {
    padding-top: 7.6rem;
    padding-bottom: 5.8rem;
  }

  .hero-title-wrap {
    max-width: 1220px;
  }

  .hero-title-right {
    margin-left: auto;
    margin-top: 0.15rem;
    width: max-content;
    text-align: right;
    transform: translateX(-5.1rem);
  }
}

/* =========================
   SEÇÕES
========================== */
.section {
  position: relative;
  z-index: 10;
}

.manifesto {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 3.2rem;
  background: linear-gradient(90deg, transparent, var(--panel-border), transparent);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.manifesto-media {
  position: relative;
}

.manifesto-frame-shadow {
  position: absolute;
  inset: 0;
  transform: translate(10px, 10px);
  border: 1px solid var(--panel-border);
  background: rgba(255,255,255,0.03);
}

.manifesto-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 34svh;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15) brightness(0.52);
}

.manifesto-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(3,3,3,0.95);
}

.section-label {
  display: block;
  margin-bottom: 1.1rem;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.section-title {
  margin: 0 0 1.5rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.08;
  color: var(--text);
}

.section-title span {
  color: var(--text-soft);
  font-style: italic;
}

.section-copy {
  display: grid;
  gap: 1.2rem;
}

.section-copy p {
  margin: 0;
  font-size: clamp(0.93rem, 1.8vw, 1rem);
  line-height: 1.9;
  color: var(--text-soft);
  font-weight: 300;
}

.manifesto-signature {
  margin-top: 2.2rem;
}

.signature-logo {
  height: 1.5rem;
  width: auto;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.signature-text {
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
}

@media (min-width: 480px) {
  .manifesto-image {
    height: 40svh;
  }
}

@media (min-width: 768px) {
  .manifesto {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .section-divider {
    margin-bottom: 8rem;
  }

  .manifesto-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 2rem;
  }

  .manifesto-image {
    height: 60vh;
  }

  .manifesto-content {
    padding-left: 1rem;
  }

  .signature-logo {
    height: 2rem;
    margin-bottom: 1.3rem;
  }

  .signature-text {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
  }
}

/* =========================
   COFRE
========================== */
.vault {
  padding-top: 1rem;
  padding-bottom: 5rem;
}

.vault-card {
  position: relative;
  overflow: hidden;
  display: flex;
  width: 100%;
  min-height: 280px;
  padding: 0.3rem;
  border-radius: 1.2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vault-lock-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 3, 3, 0.38);
  backdrop-filter: blur(1.6px);
  -webkit-backdrop-filter: blur(1.6px);
  pointer-events: none;
  overflow: hidden;
}

.vault-restricted-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(220, 38, 38, 0.07) 0%, transparent 60%);
}

.vault-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  max-width: none;
  transform: translate(-50%, -50%) rotate(-2.9deg);
  padding: 0.72rem 0;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.015) 100%),
    linear-gradient(90deg, rgba(70, 8, 8, 0.98) 0%, rgba(158, 22, 22, 1) 25%, rgba(205, 36, 36, 0.98) 50%, rgba(158, 22, 22, 1) 75%, rgba(70, 8, 8, 0.98) 100%);
  border-top: 1px solid rgba(255, 145, 145, 0.22);
  border-bottom: 1px solid rgba(255, 145, 145, 0.16);
  box-shadow:
    0 0 0 1px rgba(255, 70, 70, 0.05),
    0 12px 30px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(200, 25, 25, 0.16);
}

.vault-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 18px
    );
  opacity: 0.15;
  pointer-events: none;
}

.vault-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 16%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.15) 50%,
    transparent 100%
  );
  transform: skewX(-20deg) translateX(-220%);
  animation: vaultSheen 4.2s linear infinite;
  pointer-events: none;
}

.vault-banner-track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: max-content;
  min-width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.vault-banner-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 1.05rem;
  padding-right: 1.05rem;
}

.vault-banner-item,
.vault-banner-sep {
  white-space: nowrap;
  flex: 0 0 auto;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 0.54rem;
  color: rgba(255, 220, 220, 0.94);
  text-shadow:
    0 0 8px rgba(255, 95, 95, 0.22),
    0 0 18px rgba(255, 40, 40, 0.1);
}

.vault-banner-sep {
  color: rgba(255, 170, 170, 0.82);
  letter-spacing: 0.1em;
}

@keyframes vaultSheen {
  0% {
    transform: skewX(-20deg) translateX(-220%);
    opacity: 0;
  }
  18% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.34;
  }
  100% {
    transform: skewX(-20deg) translateX(720%);
    opacity: 0;
  }
}

.vault-meta-left,
.vault-meta-right {
  position: absolute;
  z-index: 6;
  color: var(--danger);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.48rem;
}

.vault-meta-left {
  left: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.vault-meta-right {
  top: 1rem;
  right: 1rem;
  opacity: 0.72;
}

.vault-lock-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239,68,68,0.32);
  background: rgba(127,29,29,0.45);
  box-shadow: 0 0 12px rgba(220,38,38,0.15);
}

.vault-lock-badge svg {
  width: 0.85rem;
  height: 0.85rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.vault-image-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: #030303;
  border: 1px solid var(--panel-border);
  text-decoration: none;
  box-shadow: 0 0 22px rgba(255,255,255,0.02);
  z-index: 1;
}

.vault-blocker {
  position: absolute;
  inset: 0;
  z-index: 30;
  border: 0;
  background: transparent;
  cursor: not-allowed;
  padding: 0;
}

.vault-blocker:focus {
  outline: none;
}

.vault-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-image {
  display: none;
}

@media (min-width: 480px) {
  .vault-card {
    min-height: 340px;
  }
}

@media (min-width: 768px) {
  .vault {
    padding-top: 0;
    padding-bottom: 6rem;
  }

  .vault-card {
    min-height: 450px;
    padding: 0.5rem;
  }

  .vault-banner {
    width: 118%;
    transform: translate(-50%, -50%) rotate(-1.85deg);
    padding: 0.92rem 0;
    border-radius: 0;
  }

  .vault-banner-group {
    gap: 1.7rem;
    padding-right: 1.7rem;
  }

  .vault-banner-item,
  .vault-banner-sep {
    font-size: 0.78rem;
    letter-spacing: 0.38em;
  }

  .vault-meta-left {
    left: 2rem;
    bottom: 2rem;
    gap: 1rem;
    font-size: 0.62rem;
  }

  .vault-meta-right {
    top: 2rem;
    right: 2rem;
    font-size: 0.6rem;
  }

  .vault-lock-badge {
    width: 2.35rem;
    height: 2.35rem;
  }

  .vault-lock-badge svg {
    width: 1rem;
    height: 1rem;
  }

  .mobile-image {
    display: none;
  }

  .desktop-image {
    display: block;
  }
}

/* =========================
   PROTOCOLO
========================== */
.protocol {
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}

.protocol-box {
  max-width: 760px;
  margin: 0 auto;
}

.protocol-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.7rem;
}

.protocol-icon-glow {
  position: absolute;
  inset: -12px;
  background: rgba(239, 68, 68, 0.05);
  filter: blur(20px);
  border-radius: 999px;
}

.protocol-icon {
  position: relative;
  z-index: 1;
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: var(--text-soft);
  stroke-width: 1.2;
}

.protocol-label {
  margin: 0 0 1rem;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.protocol-title {
  margin: 0 0 1.5rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 6vw, 2.5rem);
  color: var(--text);
}

.protocol-copy {
  margin: 0 auto 2.4rem;
  max-width: 640px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-soft);
  font-weight: 300;
}

.protocol-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.protocol-social-label {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  color: var(--text-soft);
  transition: transform 0.25s ease, color 0.25s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  color: var(--text);
}

.social-link svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

@media (min-width: 768px) {
  .protocol {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .protocol-icon {
    width: 2rem;
    height: 2rem;
  }

  .protocol-copy {
    margin-bottom: 3rem;
  }

  .social-list {
    gap: 1.4rem;
  }

  .social-link {
    width: 3rem;
    height: 3rem;
  }

  .social-link svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* =========================
   RODAPÉ
========================== */
.footer {
  position: relative;
  z-index: 10;
  padding-top: 2.4rem;
  padding-bottom: calc(2.2rem + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  border-top: 1px solid var(--panel-border);
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  height: 2rem;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
}

.footer-copy {
  margin: 0;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.2px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.55);
}

.footer-separator {
  opacity: 0.55;
  margin: 0 6px;
}

.footer-lines {
  display: flex;
  gap: 0.4rem;
  opacity: 0.72;
}

.footer-lines span {
  display: block;
  height: 1px;
  background: #f84a4a;
}

.footer-lines span:first-child {
  width: 1.5rem;
}

.footer-lines span:last-child {
  width: 0.5rem;
}

@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: calc(3rem + var(--safe-bottom));
  }

  .footer-logo {
    height: 3rem;
  }

  .footer-copy {
    font-size: 0.74rem;
  }
}

/* =========================
   MOBILE FINO
========================== */
@media (max-width: 767px) {
  html,
  body {
    background: #000000;
  }

  body {
    background-color: #000000;
    background-image:
      radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.02), transparent 22%),
      linear-gradient(180deg, #000000 0%, #030303 100%);
  }

  .ambient-1,
  .ambient-2 {
    opacity: 0.55;
    filter: blur(42px);
  }

  .noise-overlay {
    opacity: 0.028;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(max(5.8rem, var(--safe-top) + 4.8rem));
    padding-bottom: calc(max(4.4rem, var(--safe-bottom) + 3.4rem));
  }

  .hero-top {
    margin-bottom: 1rem;
  }

  .hero-kicker {
    font-size: 0.52rem;
    letter-spacing: 0.24em;
  }

  .hero-title {
    font-size: clamp(3.05rem, 16.2vw, 5.15rem);
    line-height: 0.9;
  }

  .hero-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 0.35rem;
  }

  .hero-title-right {
    order: 2;
    width: 100%;
    margin-top: -0.08rem;
    padding-right: 0.02em;
    text-align: right;
  }

  .hero-card {
    order: 3;
    max-width: min(100%, 290px);
    margin-top: 0.2rem;
    margin-left: 0;
    padding: 0.9rem 0.95rem;
  }

  .hero-card p {
    font-size: 0.86rem;
    line-height: 1.62;
  }

  .manifesto {
    padding-top: 5rem;
  }

  .section-divider {
    margin-bottom: 2.8rem;
  }

  .nav-logo {
    height: 1.78rem;
  }

  .nav-block {
    padding: 0.52rem 0.78rem;
  }

  .nav-block-text {
    font-size: 0.42rem;
  }
}

@media (max-width: 374px) {
  .nav-logo {
    height: 1.7rem;
  }

  .nav-block {
    padding: 0.5rem 0.66rem;
  }

  .nav-block-text {
    font-size: 0.39rem;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    justify-content: center;
    padding-top: calc(max(5.4rem, var(--safe-top) + 4.5rem));
    padding-bottom: calc(max(4rem, var(--safe-bottom) + 3rem));
  }

  .hero-title {
    font-size: clamp(2.85rem, 15.6vw, 4rem);
  }

  .hero-bottom {
    gap: 0.58rem;
    margin-top: 0.28rem;
  }

  .hero-title-right {
    margin-top: -0.02rem;
  }

  .hero-card {
    max-width: min(100%, 265px);
    margin-left: 0;
    margin-top: 0.18rem;
    padding: 0.82rem 0.85rem;
  }

  .hero-card p {
    font-size: 0.8rem;
  }

  .manifesto {
    padding-top: 4.5rem;
  }

  .section-divider {
    margin-bottom: 2.4rem;
  }
}

/* =========================
   REDUÇÃO DE MOVIMENTO
========================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-up,
  .reveal-up.visible,
  .social-link,
  .nav-block,
  .vault-banner::after {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================= */
/* INTRO - ABERTURA PREMIUM */
/* ============================= */

#intro {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

#intro.hide {
  opacity: 0;
  visibility: hidden;
}

.intro-content {
  width: min(100%, 420px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#intro-text {
  margin: 0 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.intro-line-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-line {
  width: 148px;
  max-width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  opacity: 0.42;
  transform-origin: center;
  animation: introLine 1.8s ease-in-out infinite;
}

@keyframes introLine {
  0% {
    transform: scaleX(0.24);
    opacity: 0.18;
  }
  50% {
    transform: scaleX(1);
    opacity: 0.62;
  }
  100% {
    transform: scaleX(0.24);
    opacity: 0.18;
  }
}

@media (max-width: 480px) {
  .intro-content {
    width: min(100%, 320px);
  }

  #intro-text {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
  }

  .intro-line {
    width: 124px;
    max-width: 74%;
  }
}