/* ============================================================
   TRAVESSIA · estilos específicos da narrativa B
   Carrega DEPOIS de styles.css ou styles-bordo.css
   Usa apenas variáveis CSS — funciona em ambas as paletas
   ============================================================ */

/* ============================================================ */
/* ANTAGONISTA · "A Ditadura da Performance Feminina"          */
/* Bloco tipográfico que NOMEIA o vilão                         */
/* ============================================================ */
.antagonista {
  position: relative;
  margin: clamp(64px, 10vh, 96px) auto clamp(48px, 7vh, 72px);
  padding: clamp(48px, 7vh, 72px) clamp(28px, 5vw, 64px);
  max-width: 880px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  background:
    radial-gradient(ellipse at top, rgba(201, 169, 97, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(201, 169, 97, 0.04) 0%, transparent 60%);
}

/* Quatro "pregos" decorativos nos cantos */
.antagonista::before,
.antagonista::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.antagonista::before { top: -4px; left: 50%; margin-left: -4px; }
.antagonista::after  { bottom: -4px; left: 50%; margin-left: -4px; }

.antagonista-rotulo {
  font-family: var(--ff-eyebrow);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-left: 0.5em;
}

.antagonista-nome {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(44px, 6.2vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--verde);
  max-width: 18ch;
  margin: 0;
}
.antagonista-nome em {
  font-style: italic;
  color: var(--gold-deep);
}
.antagonista-nome strong {
  font-weight: 500;
  font-style: normal;
  color: var(--verde);
}

.antagonista-desc {
  max-width: 52ch;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(19px, 1.55vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.antagonista-desc em {
  font-style: italic;
  color: var(--ink-soft);
}
.antagonista-desc strong {
  font-weight: 500;
  font-style: italic;
  color: var(--verde);
}

/* Fecho narrativo após o stamp · 2 parágrafos centrais */
.story-fechamento {
  max-width: 64ch;
  margin: clamp(32px, 5vh, 48px) auto clamp(32px, 5vh, 48px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}
.story-fechamento .body-serif strong {
  color: var(--verde);
  font-weight: 500;
}
.story-fechamento .body-serif em {
  font-style: italic;
  color: var(--ink-soft);
}

/* ============================================================ */
/* MAPA · subtítulo + bullets (substitui pergunta + texto)      */
/* ============================================================ */
.mapa-sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.4;
  color: var(--gold-pale);
  padding-left: 20px;
  border-left: 1px solid var(--gold);
  margin: 4px 0 6px;
}

.mapa-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
  padding: 0;
}
.mapa-bullets li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  color: rgba(241, 236, 223, 0.88);
}
.mapa-bullets li::before {
  content: '';
  width: 6px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  transform: translateY(-5px);
}

/* Fecho do mapa · simplificado (só CTA, sem h3/p) */
.mapa-fecho.minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ============================================================ */
/* responsivo                                                    */
/* ============================================================ */
@media (max-width: 700px) {
  .antagonista { padding: 40px 22px; }
  .antagonista-nome { font-size: clamp(36px, 9vw, 52px); }
}
