/* ================================================================
   MANIFESTO — scroll text reveal + fonte premium
   ================================================================ */

/* Botão terciário da hero */
.btn-hero-tertiary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 26px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 14px; font-weight: 500;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer; letter-spacing: 0.03em;
  transition: all 0.3s ease;
}
.btn-hero-tertiary:hover {
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

/* === SEÇÃO MANIFESTO === */
.section-manifesto {
  position: relative;
  padding: 140px 0 120px;
  background: linear-gradient(180deg, #040608 0%, #000000 100%);
  overflow: hidden;
}

.manifesto-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.manifesto-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(215,180,106,0.55);
  margin-bottom: 72px;
  cursor: default;
  display: inline-block;
  position: relative;
  transition: color 0.4s ease, text-shadow 0.4s ease, letter-spacing 0.4s ease;
}

/* Shine sweep on hover */
.manifesto-label::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,220,100,0.8) 30%,
    rgba(255,255,255,1) 50%,
    rgba(255,220,100,0.8) 70%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: -200% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  letter-spacing: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

.manifesto-label:hover {
  color: #f0d080;
  text-shadow:
    0 0 10px rgba(215,180,106,0.7),
    0 0 30px rgba(215,180,106,0.4),
    0 0 60px rgba(215,180,106,0.2);
  letter-spacing: 0.42em;
}

.manifesto-label:hover::after {
  opacity: 1;
  animation: manifestoShine 0.8s ease forwards;
}

@keyframes manifestoShine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Parágrafos: fonte Inter com peso leve */
.manifesto-text {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: -0.01em;
  margin: 0 0 72px;
  text-align: center;
  /* Cor base low — o JS ilumina */
  color: rgba(255,255,255,0.15);
}

/* Cada palavra é uma span individual */
.mw {
  display: inline;
  /* cor de "morto" */
  color: rgba(255,255,255,0.13);
  transition: color 0.5s ease;
}

/* Palavra acesa */
.mw.on {
  color: rgba(255,255,255,0.92);
}

/* Palavras em itálico (ênfase) acendem em dourado */
.mw.em.on {
  color: #d7b46a;
  font-style: italic;
}

/* Divider */
.manifesto-divider {
  display: flex; align-items: center;
  justify-content: center; gap: 20px;
  margin-top: 8px;
}
.manifesto-divider-line {
  flex: 1; max-width: 100px; height: 1px;
  background: rgba(215,180,106,0.25);
}
.manifesto-divider-icon {
  color: rgba(215,180,106,0.5); font-size: 14px;
}

@media (max-width: 768px) {
  .section-manifesto { padding: 80px 0 60px; }
  .manifesto-text { font-size: 19px; margin-bottom: 48px; }
  .btn-hero-tertiary { font-size: 13px; padding: 13px 20px; }
}

/* Mini lang switcher inside manifesto section */
.manifesto-lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: -52px; /* pull up close to the label */
  margin-bottom: 72px;
}

.manifesto-lang-btn {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(215,180,106,0.18);
  border-radius: 6px;
  color: rgba(215,180,106,0.38);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 9px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.manifesto-lang-btn.active,
.manifesto-lang-btn:hover {
  border-color: rgba(215,180,106,0.55);
  color: rgba(215,180,106,0.9);
  background: rgba(215,180,106,0.07);
}

.manifesto-lang-sep {
  color: rgba(215,180,106,0.2);
  font-size: 10px;
}

@media (max-width: 768px) {
  .manifesto-lang-switch {
    margin-top: -36px;
    margin-bottom: 48px;
  }
}
