:root {
  color-scheme: light dark;
  --bg: #f0e7d7;
  --bg-soft: #e6dac4;
  --ink: #000000;
  --ink-soft: #000000;
  --pink: #dd7ba4;
  --pink-dark: #9f5976;
  --pink-soft: #FFBFDE;
  --pink-ink: #ffffff;
  /* Rosa só pra TEXTO. O #dd7ba4 da marca dá 2.8:1 sobre branco — some pra
     quem enxerga menos. Este escurece o suficiente pra passar em branco E em
     bege, e continua sendo o mesmo rosa da família. */
  --pink-texto: #8f4a66;
  /* Tinta pra texto EM CIMA do rosa. Branco sobre #dd7ba4 dá 2.8:1. */
  --sobre-pink: #2b0f1c;
  --white: #ffffff;
  --line: #ddcfb0;
  --shadow: 0 1px 2px rgba(26, 26, 26, 0.04), 0 10px 26px -16px rgba(26, 26, 26, 0.22);
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.05), 0 4px 10px -6px rgba(26, 26, 26, 0.18);
  --radius: 16px;
  --nav-h: 64px;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #17130f;
    --bg-soft: #1f1a15;
    --ink: #f2e9df;
    --ink-soft: #b8a99a;
    --pink: #e36a93;
    --pink-dark: #b8547a;
    --pink-soft: #3c2029;
    --pink-ink: #241019;
    /* No escuro o rosa de texto tem que CLAREAR, não escurecer: #b8547a sobre
       fundo escuro dava 3.7:1. Este dá 8:1. */
    --pink-texto: #f2a3c2;
    --sobre-pink: #241019;
    --white: #221c17;
    --line: #34291f;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 14px 28px -16px rgba(0, 0, 0, 0.65);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35), 0 6px 14px -8px rgba(0, 0, 0, 0.55);
  }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
}

body {
  padding-bottom: calc(var(--nav-h) + env(safe-area-inset-bottom, 0px));
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.app-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px calc(14px + env(safe-area-inset-top, 0px));
  padding-top: max(14px, env(safe-area-inset-top, 0px));
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.app-header .brand-mark {
  height: 30px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.app-header h1 {
  font-size: 17px;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.app-header .back-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ink);
  flex-shrink: 0;
}

main {
  padding: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-soft);
  margin: 26px 0 12px;
}
.section-title::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--pink);
  flex-shrink: 0;
  border-radius: 2px;
}
.section-title:first-child { margin-top: 4px; }

.grid-launcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.launcher-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 6px;
  text-align: center;
  min-height: 96px;
}

/* Icone solto, sem pastilha rosa: o rosa fica no traco, nao no fundo. */
.launcher-item .icon {
  width: 30px;
  height: 30px;
  border-radius: 0;
  background: transparent;
  color: var(--pink-texto);
  display: flex;
  align-items: center;
  justify-content: center;
}
.launcher-item .icon svg { width: 22px; height: 22px; }

.launcher-item span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

/* Boas-vindas no mesmo tom do Guia NextWave: fundo escuro, serifada grande,
   rosa só como acento. O rosa preenchendo o bloco inteiro era o que puxava o
   app pra "template"; aqui ele vira fio e leitura. */
.hero-card {
  background: #111111;
  color: #ffffff;
  border-radius: 20px;
  padding: 30px 24px 28px;
}

.hero-card::before {
  content: "Owners Club";
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-texto);
  margin-bottom: 14px;
}
/* Cada tela pode dizer a sua etiqueta; sem atributo, fica "Owners Club". */
.hero-card[data-eyebrow]::before { content: attr(data-eyebrow); }

/* Antes era um bloco rosa inteiro. Agora o destaque vem do fio e do titulo. */
.spotlight-panel {
  background: transparent;
  border: 1px solid var(--pink);
  border-radius: var(--radius);
  padding: 14px 14px 4px;
  margin-bottom: 20px;
}
.spotlight-panel .section-title {
  margin-top: 0;
  color: var(--pink-texto);
}
.spotlight-panel .card {
  background: var(--white);
}

.hero-card h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #ffffff;
}
.hero-card h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  background: var(--pink);
  margin: 18px 0 0;
}
.hero-card p {
  margin: 16px 0 22px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34ch;
}
/* Botao sobre fundo escuro: contorno, nao bloco branco. */
.hero-card .btn-primary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
}
/* No portao da NextWave o branco solido fica: e a unica acao da tela. */
.nw-gate .btn-primary { background: #ffffff; color: #111111; border: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: none;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.btn-outline {
  background: transparent;
  color: var(--pink-ink);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-block { width: 100%; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  padding: 18px;
  margin-bottom: 12px;
}

.card h3 { margin: 0 0 6px; font-size: 16.5px; }
.card p { margin: 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.card p + p { margin-top: 10px; }

.badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 9px;
}
.badge-ativa { background: transparent; color: var(--pink-texto); border: 1px solid var(--pink); }
.badge-encerrada { background: transparent; color: var(--ink); opacity: 0.45; border: 1px solid var(--line); }
.badge-em-breve { background: transparent; color: var(--ink); opacity: 0.5; border: 1px dashed var(--line); }
/* O unico selo preenchido do app: exclusiva e a excecao que precisa gritar. */
.badge-exclusiva { background: var(--ink); color: var(--bg); }

.meta-row {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-soft);
}

.tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  margin-bottom: 14px;
  padding-bottom: 2px;
}
.tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.tab-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(var(--nav-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: var(--white);
  border-top: 1px solid var(--line);
  display: flex;
  z-index: 20;
}

.nav-btn {
  position: relative;
  flex: 1;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.nav-btn .nav-icon {
  display: flex;
  line-height: 1;
}
.nav-btn .nav-icon svg { width: 21px; height: 21px; }
.nav-btn.active { color: var(--pink-texto); }
.nav-btn.active::before {
  content: "";
  position: absolute;
  top: 2px;
  width: 16px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--pink);
}

.empty-state {
  text-align: center;
  padding: 40px 16px;
  color: var(--ink-soft);
  font-size: 13.5px;
}

/* Portao da NextWave: e o andar de cima do produto, entao nao pode abrir igual
   as outras abas. Usa o lockup NEXT/WAVE do Guia de Boas-Vindas — mesmo ativo,
   mesma leitura de "outro nivel". */
.nw-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #111111;
  border-radius: 20px;
  padding: 38px 22px 32px;
  margin-bottom: 8px;
}
.nw-eyebrow {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pink-texto);
  margin-bottom: 20px;
}
.nw-lockup {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 46px;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.nw-lockup span { display: block; }
.nw-lockup span:first-child { color: #ffffff; }
.nw-lockup span:last-child  { color: var(--pink-texto); }
.nw-lockup::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  background: var(--pink);
  margin: 22px auto 0;
}
.nw-gate p {
  margin: 20px 0 22px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 290px;
}
/* Campo do codigo sobre o escuro: so contorno, digitos espacados. */
.nw-gate .input-pw {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  font-size: 17px;
}
.nw-gate .input-pw::placeholder { color: rgba(255, 255, 255, 0.28); letter-spacing: 0.42em; }
.nw-gate .btn-primary {
  background: #ffffff;
  color: #111111;
  box-shadow: none;
}
.nw-gate-aviso {
  margin: 18px 0 0 !important;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5) !important;
  max-width: 280px;
}

.login-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 12px;
}
.login-wrap .icon-lock {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--pink-soft);
  color: var(--pink-texto);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.login-wrap .icon-lock svg { width: 26px; height: 26px; }
.login-wrap h2 { margin: 0 0 7px; font-size: 19px; }
.login-wrap p { margin: 0 0 22px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; max-width: 280px; }

.input-pw {
  width: 100%;
  max-width: 260px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 15px;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: 0.05em;
}
.input-pw:focus { outline: none; border-color: var(--pink); }

.error-text { color: #b0392f; font-size: 12.5px; margin: -4px 0 12px; min-height: 16px; }

.pdf-category { margin-bottom: 18px; }
.pdf-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: none;
  padding: 13px 14px;
  margin-bottom: 8px;
}
.pdf-row .pdf-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--pink-soft);
  color: var(--pink-texto);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.pdf-row .pdf-title { font-size: 13.5px; font-weight: 600; flex: 1; }
.pdf-row .pdf-action { font-size: 12px; color: var(--pink-texto); font-weight: 600; letter-spacing: 0.02em; }

.creator-row {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: none;
  padding: 13px 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.creator-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-texto);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.creator-info { flex: 1; min-width: 0; }
.creator-info .name { font-size: 13.5px; font-weight: 700; }
.creator-info .handle { font-size: 12px; color: var(--ink-soft); }
.creator-info .campaigns-tag {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 3px;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 4px;
}
.campaign-grid-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: none;
  padding: 13px;
}
.campaign-grid-card h4 {
  margin: 0 0 4px;
  font-size: 14px;
}
.campaign-grid-card p {
  margin: 0;
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.campaign-grid-card .meta-row {
  margin-top: 8px;
  font-size: 10.5px;
}
.campaign-grid-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  box-shadow: none;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-height: 88px;
}
.campaign-grid-more .more-icon { color: var(--pink-texto); }
.campaign-grid-more .more-icon {
  font-size: 18px;
}

.top5-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.top5-grid-3col {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.top5-grid-3col .top5-card { padding: 10px 6px; }
.top5-grid-3col .rank { width: 18px; height: 18px; line-height: 18px; font-size: 10px; margin-bottom: 6px; }
.top5-grid-3col .avatar { width: 40px; height: 40px; font-size: 13px; margin-bottom: 6px; }
.top5-grid-3col .name { font-size: 11px; }
.top5-grid-3col .handle { font-size: 9.5px; margin-bottom: 4px; }
.top5-grid-3col .highlight { font-size: 9.5px; line-height: 1.25; }
.top5-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: none;
  padding: 14px;
  text-align: center;
}
/* Colocacao como numero serifado, nao como pastilha rosa. */
.top5-card .rank {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  opacity: 0.35;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  width: auto;
  height: auto;
  line-height: 1;
  margin-bottom: 8px;
}
.top5-card .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-texto);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  margin: 0 auto 8px;
}
.top5-card .avatar-photo {
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
}

.top5-row-centered {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.top5-row-centered .top5-card {
  width: calc((100% - 16px) / 3);
}
.top5-card .name { font-size: 13px; font-weight: 700; }
.top5-card .handle { font-size: 11.5px; color: var(--ink-soft); margin-bottom: 6px; }
.top5-card .highlight { font-size: 11px; color: var(--ink); opacity: 0.55; font-weight: 500; line-height: 1.4; }

.steps-list { display: flex; flex-direction: column; gap: 14px; }
.step-item {
  display: flex;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  padding: 14px;
}
.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
  font-family: var(--font-sans);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h4 { margin: 0 0 4px; font-size: 14.5px; }
.step-body p { margin: 0; font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.step-illustration {
  margin-top: 10px;
  border-radius: 10px;
  border: 1px dashed var(--line);
  background: var(--bg-soft);
  color: var(--pink-texto);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.step-illustration svg { width: 26px; height: 26px; }

/* A abertura promete "as melhores marcas" — esta fileira e a prova disso, logo
   embaixo. Nome em serifada, separador rosa: le como credencial, nao como logo
   de patrocinio. Os nomes vem de config.marcas_destaque. */
.marcas-prova { margin-top: 20px; }
.marcas-rotulo {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  opacity: 0.45;
  margin-bottom: 10px;
}
.marcas-fila {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 0;
}
.marcas-fila span {
  font-family: var(--font-serif);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.marcas-fila span + span::before {
  content: "·";
  color: var(--pink-texto);
  margin: 0 9px;
  font-weight: 400;
}

/* Numeros como dado editorial, separados por fio — nao como tres cartoes. */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 24px 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-card {
  background: transparent;
  border: none;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  padding: 18px 8px;
  text-align: center;
}
.stat-card:last-child { border-right: none; }
.stat-card .stat-value {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.stat-card .stat-label {
  margin-top: 7px;
  font-size: 9px;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.list-simple { display: flex; flex-direction: column; gap: 10px; }
.list-simple li { list-style: none; }

.install-banner {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 12.5px;
}
.install-banner.show { display: flex; }
.install-banner button {
  background: var(--ink);
  color: var(--pink-ink);
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.photo-mural {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
.photo-mural img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: block;
}
.photo-mural-more {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.photo-mural-more .more-icon { color: var(--pink-texto); }
.photo-mural-more .more-icon {
  font-size: 20px;
}
.photo-mural-full img {
  aspect-ratio: 4 / 3;
}

.article h2 {
  font-size: 24px;
  margin: 4px 0 18px;
}
.article p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 16px;
}
.article p:last-child {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--pink-texto);
  margin-top: 24px;
}

/* Painel pessoal da creator (área NextWave com login individual) */
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.info-value {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  text-align: right;
}

.field-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin: 12px 0 6px;
}
.input-field {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14.5px;
  resize: vertical;
}
.input-field:focus { outline: none; border-color: var(--pink); }

/* Resultado da busca do Código Creator */
.codigo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.codigo-nome {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}
.codigo-valor {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--pink-texto);
  background: var(--pink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---------- Inscrição em campanha ---------- */
.btn-inscrever {
  /* Acao principal do cartao de campanha. Preto solido, como todo CTA sobre
     fundo claro — o rosa cheio saiu do app inteiro. */
  margin-top: 14px;
  width: 100%;
  background: var(--ink);
  color: var(--bg);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.btn-inscrever:active { filter: brightness(0.94); }

.insc-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(26, 18, 14, 0.55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  /* iPhone com barra de gestos: sem isso o botão de enviar fica embaixo dela */
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}
@media (min-width: 640px) { .insc-overlay { align-items: center; } }

.insc-modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: none;
  padding: 22px 20px 20px;
  width: 100%;
  max-width: 420px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.insc-modal h3 {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 21px;
  color: var(--ink);
}
.insc-sub {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  opacity: 0.85;
}
.insc-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 14px 0 6px;
}
.insc-erro {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #c0392b;
  background: rgba(192, 57, 43, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
}
.insc-enviar {
  margin-top: 18px;
  width: 100%;
  background: var(--ink);
  color: var(--bg);
}
.insc-enviar:disabled { opacity: 0.6; cursor: default; }
.insc-fechar {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 4px 8px;
}
.insc-ok { text-align: center; padding: 8px 0 4px; }
.insc-ok-icone { font-size: 40px; line-height: 1; margin-bottom: 8px; }
.insc-ok h3 { margin-bottom: 8px; }
.insc-ok p { font-size: 14px; line-height: 1.55; color: var(--ink); margin: 0 0 8px; }

/* Prazo de inscrição no card da campanha */
.prazo-selo {
  margin: 10px 0 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  opacity: 0.85;
}
.prazo-selo.urgente {
  color: var(--pink-texto);
  opacity: 1;
}
.prazo-selo.encerrado {
  color: var(--ink-soft);
  opacity: 0.6;
  font-weight: 500;
}

/* Regra de entrega da creator (quase sempre relativa: "5 dias após receber") */
.entrega-regra {
  margin: 8px 0 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-soft);
  opacity: 0.9;
}

/* Campanha encerrada: botão fica no lugar, cinza e sem clique */
.btn-encerrado {
  margin-top: 14px;
  width: 100%;
  background: var(--bg-soft);
  color: var(--ink-soft);
  opacity: 0.75;
  cursor: default;
  font-weight: 600;
}
.btn-encerrado:disabled { pointer-events: none; }

/* Lista de inscrições da creator na área NextWave */
.insc-linha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.insc-linha:last-of-type { border-bottom: none; }
.insc-linha strong { display: block; font-size: 14.5px; color: var(--ink); }
.insc-linha span { display: block; font-size: 12px; color: var(--ink-soft); opacity: 0.8; }
.insc-rodape {
  margin: 12px 0 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-soft);
  opacity: 0.85;
}

/* ---------- Planos da NextWave ---------- */
.badge-exclusiva {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.login-aviso {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--pink-texto);
  font-weight: 600;
}

.planos-grid { display: grid; gap: 14px; margin-bottom: 6px; }
@media (min-width: 760px) { .planos-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }

.plano {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
}
/* O mais vendido em preto, nao em rosa: no molde o preto e que carrega peso,
   e o rosa fica livre pro selo e pro preco se destacarem em cima dele. */
.plano-destaque { background: #111111; border-color: #111111; }
/* A caixa de cima do plano e branca — texto dentro dela segue escuro. */
.plano-destaque .plano-topo { background: var(--white); }
.plano-destaque .plano-selo { background: var(--pink); color: var(--sobre-pink); }
.plano-selo {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--white); color: var(--pink-texto);
  font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; box-shadow: none; white-space: nowrap;
}

/* o topo branco "flutuando", igual à referência que você mandou */
.plano-topo {
  background: var(--white);
  border-radius: 12px;
  padding: 16px 14px 14px;
  text-align: center;
  box-shadow: none;
  margin-bottom: 16px;
}
.plano-topo h4 {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--ink);
}
.plano-preco {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--pink-texto);
}
.plano-preco span { font-size: 18px; margin-right: 3px; vertical-align: super; }
.plano-periodo { margin: 6px 0 0; font-size: 12px; color: var(--ink-soft); opacity: 0.8; }

.plano-itens { list-style: none; margin: 0 0 18px; padding: 0; flex: 1; }
.plano-itens li {
  font-size: 13.5px;
  line-height: 1.45;
  padding: 8px 0;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--ink);
}
.plano-itens li:last-child { border-bottom: none; }
.plano-destaque .plano-itens li { color: rgba(255,255,255,0.82); border-bottom-color: rgba(255,255,255,0.16); }

.plano-btn {
  width: 100%;
  background: var(--white);
  color: var(--pink-texto);
  box-shadow: none;
  text-decoration: none;
}
.plano-btn:active { filter: brightness(0.96); }

.planos-nota {
  margin: 4px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  opacity: 0.9;
  text-align: center;
}

/* Aviso do reajuste, some sozinho na data */
.plano-reajuste {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--pink-texto);
  opacity: 0.9;
}

/* Selo "nova" — azul a pedido da Julia (única cor fora da paleta oficial da marca).
   Ancorado no canto superior direito do card; some sozinho após DIAS_NOVA. */
.card-campanha, .campaign-grid-card { position: relative; }
.selo-nova {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #1D6FE0;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 999px;
  line-height: 1.4;
}

/* Busca de campanha — lupa dentro do campo */
.busca-wrap { position: relative; margin-bottom: 12px; }
.busca-icone {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  color: var(--ink-soft);
  opacity: 0.55;
  pointer-events: none;
}
.busca-icone svg { width: 18px; height: 18px; }
.busca-input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  -webkit-appearance: none;
}
.busca-input:focus { outline: none; border-color: var(--pink); }
.busca-input::-webkit-search-cancel-button { -webkit-appearance: none; }

/* Material da campanha encerrada: deck + planilha das creators selecionadas.
   Fica no card da marca, acima do botao cinza de inscricoes encerradas. */
.material-camp {
  margin: 14px 0 12px;
  padding: 13px 14px;
  border-radius: 12px;
  background: var(--pink-soft);
  border: 1px solid var(--pink);
}
.material-titulo {
  margin: 0;
  font: 600 13px/1.3 'Inter', system-ui, sans-serif;
  color: var(--ink);
}
.material-sub {
  margin: 3px 0 10px;
  font: 400 12px/1.3 'Inter', system-ui, sans-serif;
  color: var(--ink);
  opacity: .75;
}
.material-links { display: flex; flex-wrap: wrap; gap: 8px; }
.material-btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font: 600 12.5px/1 'Inter', system-ui, sans-serif;
}
.material-btn:hover { background: var(--pink-dark); }

/* Cidade da campanha: presencial só serve pra quem está na cidade certa,
   então fica logo abaixo do nome da marca, antes da descrição. */
.campanha-local {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 2px 0 8px;
  font: 600 12.5px/1.3 'Inter', system-ui, sans-serif;
  color: var(--pink-texto);
}
.campanha-local svg { width: 14px; height: 14px; flex: 0 0 auto; }

/* Minhas entregas: a creator marca o que já postou de cada campanha. */
.entrega-oi { margin: 16px 0 0; font-size: 14px; }
.entrega-feita {
  margin: 0 0 6px; font: 600 12.5px/1.3 'Inter', system-ui, sans-serif; color: var(--pink-texto);
}
.entrega-vazia { margin: 0 0 8px; font-size: 12.5px; opacity: .7; }
.entrega-lista { margin: 0 0 10px; padding-left: 18px; font-size: 12.5px; }
.entrega-lista a { color: var(--pink-texto); font-weight: 600; }
.entrega-form { display: grid; gap: 8px; margin-top: 6px; }
.entrega-form .input-field { margin: 0; }

/* "Marcas que já fiz": 57 marcas em checkbox empilhado seria impossível no
   celular, então vira lista de chips com busca. */
.mm-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.mm-chip {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--line, #e4d8c4); background: #fff; color: var(--ink);
  border-radius: 999px; padding: 8px 14px; cursor: pointer;
  font: 500 13px/1.2 'Inter', system-ui, sans-serif;
}
.mm-chip:hover { border-color: var(--pink); }
.mm-chip.ativo { background: var(--ink); border-color: var(--ink); color: var(--bg); font-weight: 600; }
.mm-auto {
  font: 600 9.5px/1 'Inter', system-ui, sans-serif; text-transform: uppercase;
  letter-spacing: .04em; opacity: .75; padding: 2px 5px; border-radius: 4px;
  background: rgba(0,0,0,.07);
}
.mm-conta { margin: 12px 0 8px; font-size: 12.5px; opacity: .75; }
.mm-ok { margin: 10px 0 0; font: 600 13px/1.3 'Inter', system-ui, sans-serif; color: #2E9E5B; }

/* Aviso de que a aba é histórico, não lista de desejo. A lista de 57 marcas
   parece "escolha o que você quer", e marcar errado suja a base. */
.aviso-forte {
  margin-top: 12px;
  padding: 14px 15px;
  border-radius: 12px;
  background: #FFF4D6;
  border: 1.5px solid #E0A81D;
}
.aviso-forte p { margin: 0; font-size: 13.5px; line-height: 1.45; }
.aviso-forte p + p { margin-top: 6px; }
.mm-reforco {
  margin: 4px 0 0;
  font: 600 12.5px/1.35 'Inter', system-ui, sans-serif;
  color: var(--pink-texto);
}


/* ---------------------------------------------------------------- indice
   Arquetipo 06 do molde. Antes o "Mais" era grade de cartoes com pastilha —
   ficava igual a home e nao parecia menu. Agora e lista de fio: o nome pesa,
   o resto some. */
.indice {
  border-top: 1px solid var(--line);
}
.indice-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 2px;
  border-bottom: 1px solid var(--line);
}
.indice-label {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.indice-seta {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--pink-texto);
  flex-shrink: 0;
}

/* ----------------------------------------------------------- passos
   Arquetipo 05. Numero em serifada rosa, sem cartao em volta. */
.list-simple li.card {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}
.list-simple li.card strong {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--pink-texto);
  margin-right: 8px;
}

/* ------------------------------------------------------- area pessoal
   Arquetipo 04. A unica tela do app que fala com uma pessoa so — entao ela
   abre com a creator, nao com a marca. Monograma porque a base nao guarda
   foto da creator. */
.perfil-card {
  background: #111111;
  border-radius: 20px;
  padding: 26px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.perfil-mono {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}
.perfil-nome {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.15;
}
.perfil-arroba {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}
.perfil-plano {
  margin-top: 14px;
  border: 1px solid var(--pink);
  color: var(--pink-texto);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

/* O presskit e a pergunta que mais chega no WhatsApp: unico cartao com
   contorno preto, pra achar sem procurar. */
.presskit-card { border-color: var(--ink); }
.presskit-topo {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.presskit-topo strong {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
}
.presskit-estado {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
.presskit-rastreio {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-top: 10px;
}

/* Campanha entregue vira linha de fio, nao pastilha: legivel quando ela
   tiver vinte. */
.camp-feita {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.camp-feita:last-child { border-bottom: none; }

/* ----------------------------------------------------- colecao (arq. 02)
   O molde manda toda tela de colecao abrir dizendo o que ela e e quantos
   itens tem, antes da busca. Sem isso a tela comeca no filtro e perde a voz. */
.colecao-topo {
  margin: 2px 0 22px;
}
.colecao-rotulo {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-texto);
  margin-bottom: 10px;
}
.colecao-titulo {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.colecao-titulo::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--pink);
  margin: 14px 0 0;
}

/* ------------------------------------------------------- indice (arq. 06)
   Lista agrupada, com o dado da creator a direita quando ele existe. */
.indice + .indice-grupo {
  margin-top: 26px;
}
.indice-grupo {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.45;
  margin-bottom: 12px;
}
.indice-valor {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ------------------------------------------------- pilha de rostos (arq. 01)
   O molde chama isso de "gente, nao icone": a home prova quem esta na Owners
   com o rosto das creators do Top 5, nao com mais um icone. Sao as mesmas
   fotos do ranking — nada novo pra produzir. */
.pilha-link {
  display: block;
  text-decoration: none;
  margin-top: 22px;
}
.pilha-rotulo {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  opacity: 0.45;
  margin-bottom: 10px;
}
.pilha {
  display: flex;
  align-items: center;
}
.pilha-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg);
  margin-right: -10px;
  flex-shrink: 0;
  background: var(--bg-soft);
}
.pilha-av-vazio {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
}
.pilha-num {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-left: 22px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.2;
}
.pilha-num b {
  font-weight: 600;
  color: var(--ink);
  opacity: 0.62;
}
.pilha-num i {
  font-style: normal;
  color: var(--pink-texto);
}

/* ------------------------------------------------ retrato P&B (arq. 01)
   O codigo mais forte das concorrentes: gente em tamanho grande, tratada como
   editorial. P&B pela filtragem — o arquivo original continua colorido, entao
   trocar a foto no config.json basta, sem editar imagem. */
.retrato {
  position: relative;
  margin: 30px -16px;
  overflow: hidden;
  background: #111111;
  /* a proporcao vive aqui, e nao na <img>: as fotos do carrossel sao
     empilhadas em absoluto e nao sustentam a altura do bloco sozinhas */
  aspect-ratio: 4 / 5;
}
.retrato-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;   /* foto de grupo: os rostos ficam no meio, nao no topo */
  filter: grayscale(1) contrast(1.06) brightness(0.92);
  opacity: 0;
  transition: opacity 600ms ease;
}
.retrato-img.is-ativa { opacity: 1; }
/* A legenda tem que ficar por cima das duas camadas de foto. */
.retrato-texto { z-index: 2; }
@media (prefers-reduced-motion: reduce) {
  .retrato-img { transition: none; }
}
/* O texto precisa de chao proprio: sem o degrade ele briga com a foto. */
.retrato-texto {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 60px 22px 26px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 30%, rgba(0, 0, 0, 0));
}
.retrato-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  /* A faixa e escura nos dois temas, entao a etiqueta usa o rosa claro fixo da
     marca: no modo escuro o token --pink-soft vira vinho e some na foto. */
  color: #FFBFDE;
  margin-bottom: 12px;
}
.retrato-frase {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 25px;
  line-height: 1.14;
  letter-spacing: -0.022em;
  color: #ffffff;
  max-width: 15ch;
  text-wrap: balance;
}
.retrato-frase::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--pink);
  margin-top: 16px;
}

/* -------------------------------------------------- porta por publico (arq. 01)
   Duas portas lado a lado logo abaixo da abertura. A da marca e o bloco preto:
   e a porta que nao existia neste app e precisa ser vista. */
.porta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.porta-lado {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 15px 14px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  text-decoration: none;
}
.porta-rotulo {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--pink-texto);
}
.porta-frase {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.porta-seta {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--pink-texto);
  margin-top: 2px;
}
.porta-marca {
  background: #111111;
  border-color: #111111;
}
/* Rosa claro fixo: o bloco e preto nos dois temas, e o token --pink-soft
   vira vinho no escuro. */
.porta-marca .porta-rotulo { color: #FFBFDE; }
.porta-marca .porta-frase { color: #ffffff; }
.porta-marca .porta-seta { color: #FFBFDE; }

/* ------------------------------------------------------- meus pontos (arq. 04)
   Numero grande em serifada, escada de niveis por fio, resto em linha. Nenhum
   cartao colorido: o dado e que tem que aparecer. */
/* O total mora dentro do .perfil-card, que e preto nos dois temas — por isso
   branco fixo, e nao var(--ink). Com o token, o numero some no fundo escuro. */
.pt-total {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.pt-total-rotulo {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
  margin: 8px 0 14px;
}
.escada {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.degrau {
  padding: 12px 2px 11px;
  text-align: center;
  opacity: 0.4;
}
.degrau-feito { opacity: 0.75; }
/* O nivel de agora e o unico com peso: rosa e fio embaixo. */
.degrau-atual {
  opacity: 1;
  box-shadow: inset 0 -2px 0 var(--pink);
}
.degrau-nome {
  display: block;
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.degrau-atual .degrau-nome { color: var(--pink-texto); }
.degrau-corte {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--ink);
  opacity: 0.5;
  margin-top: 2px;
}
.pt-falta {
  margin: 12px 0 0;
  font-size: 13.5px;
  color: var(--ink);
  opacity: 0.7;
}
.pt-falta b { opacity: 1; }

.pt-mes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-bottom: 4px;
}
.pt-mes-valor {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pt-mes-rotulo {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  opacity: 0.45;
  margin-top: 6px;
}
.pt-detalhe { margin-top: 14px; }
.pt-linha {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
}
.pt-linha:last-of-type { border-bottom: none; }
.pt-linha b { font-family: var(--font-sans); color: var(--pink-texto); flex-shrink: 0; }
.pt-teto {
  font-style: normal;
  font-size: 11px;
  opacity: 0.45;
}
.pt-vazio, .pt-nota {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.6;
}

.podio-linha {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.podio-linha:last-child { border-bottom: none; }
.podio-lugar {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--pink-texto);
  width: 28px;
  flex-shrink: 0;
}
.podio-nome {
  flex: 1;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.podio-pts {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink);
  opacity: 0.55;
}
.podio-eu .podio-nome { color: var(--pink-texto); }

.premio { padding: 12px 0; border-bottom: 1px solid var(--line); }
.premio:last-child { border-bottom: none; }
.premio-lugar {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--pink-texto);
  margin-bottom: 6px;
}
.premio-itens {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink);
}

/* ------------------------------------------------------ lembrete (assessoria)
   Nao e cartao nem botao: e uma nota de rodape com peso. Fio rosa a esquerda,
   pra ler como "tem mais um caminho aqui" e nao como propaganda. */
.lembrete {
  display: block;
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--pink);
  border-radius: 12px;
  background: var(--white);
  text-decoration: none;
}
.lembrete-rotulo {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--pink-texto);
  margin-bottom: 6px;
}
.lembrete-frase {
  display: block;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.lembrete-seta {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--pink-texto);
}

/* Posts que a Owners já tem da creator, de antes da aba existir. */
.ja-temos { border-color: var(--pink); background: var(--pink-soft); }
.ja-temos-titulo { margin: 0 0 2px; font: 600 14px/1.3 'Inter', system-ui, sans-serif; }
.ja-temos-sub { margin: 0 0 8px; font-size: 12.5px; opacity: .8; }

/* ------------------------------------------------------------ meu perfil
   Nicho em pilulas selecionaveis: lista de 10 com checkbox nativo ficaria
   longa e feia no celular. */
.nichos {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 6px;
}
.nicho-op input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.nicho-op span {
  display: inline-block;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}
.nicho-op input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.nicho-op input:focus-visible + span {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}
select.input-field {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--pink) 50%),
                    linear-gradient(135deg, var(--pink) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 15px) calc(50% + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

/* "Já inscrita": a creator não precisa preencher de novo pra descobrir. */
.selo-inscrita {
  display: inline-block; margin-left: 6px; padding: 3px 10px; border-radius: 999px;
  background: var(--pink-soft); color: var(--pink-texto);
  font: 700 10px/1.6 'Inter', system-ui, sans-serif;
  text-transform: uppercase; letter-spacing: .04em;
}
.selo-inscrita.escolhida { background: #2E9E5B; color: #fff; }

/* Título de seção que leva pra lista completa. Vira link porque a pessoa
   tenta clicar nele antes de procurar o "Ver mais" no fim da fileira. */
.section-title-link {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: inherit; cursor: pointer;
}
.section-title-seta {
  font-size: 0.85em; opacity: .55; transition: transform .15s ease, opacity .15s ease;
}
.section-title-link:hover .section-title-seta,
.section-title-link:active .section-title-seta { opacity: 1; transform: translateX(3px); }

/* Bloco escuro dentro do tema claro: aqui o rosa de texto precisa CLAREAR.
   O tom escuro que funciona sobre branco dá 3.7:1 sobre #111. */
.hero-card, .nw-gate, .spotlight-panel-escuro { --pink-texto: #f2a3c2; }

/* Rosa de texto sobre o rosa claro da marca da 4.1:1 — passa raspando e some
   em tela clara. Quem tem --pink-soft como fundo usa a tinta escura. */
.pdf-icon, .mm-chip, .selo-soft { color: var(--sobre-pink); }
