/* ============================================================
   MySecretFans · folha de estilo única
   Paleta: noite roxa + rosa neon. Tudo escuro, tudo com brilho.
   ============================================================ */

:root {
  --fundo:        #08040f;
  --fundo-2:      #110a1e;
  --cartao:       #17102a;
  --cartao-alto:  #1f1638;
  --borda:        #2c2044;
  --borda-viva:   #3d2c5e;

  --texto:        #f4f0ff;
  --texto-2:      #b7a9d4;
  --texto-3:      #7d6f9c;

  --rosa:         #ff2e88;
  --rosa-claro:   #ff6fae;
  --roxo:         #8b3dff;
  --roxo-claro:   #a96bff;
  --ouro:         #ffc857;
  --verde:        #2ee6a8;
  --vermelho:     #ff4d5e;

  --gradiente:      linear-gradient(115deg, var(--rosa) 0%, var(--roxo) 100%);
  --gradiente-suave:linear-gradient(115deg, rgba(255,46,136,.16), rgba(139,61,255,.16));
  --gradiente-story:linear-gradient(45deg, #ffc857, var(--rosa) 45%, var(--roxo) 100%);

  --brilho-rosa:  0 0 32px rgba(255,46,136,.42);
  --brilho-roxo:  0 0 40px rgba(139,61,255,.35);
  --sombra:       0 18px 48px rgba(0,0,0,.55);

  --raio:    16px;
  --raio-g:  24px;
  --topo:    68px;

  --fonte: 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--fonte);
  background: var(--fundo);
  color: var(--texto);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Brilho de fundo que acompanha a página inteira */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(60vw 60vw at 12% -8%,  rgba(255,46,136,.16), transparent 60%),
    radial-gradient(50vw 50vw at 92% 12%,  rgba(139,61,255,.18), transparent 62%),
    radial-gradient(70vw 40vw at 50% 108%, rgba(255,200,87,.07), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
main, header, footer { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.estreito  { width: min(560px, 92vw);  margin-inline: auto; }

/* ---------------- barra do topo ---------------- */
.topo {
  position: sticky; top: 0; z-index: 60;
  height: var(--topo);
  display: flex; align-items: center; gap: 20px;
  padding-inline: max(24px, 4vw);
  background: rgba(8,4,15,.82);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--borda);
}

.marca { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -.02em; }
.marca .chama {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--gradiente);
  display: grid; place-items: center;
  box-shadow: var(--brilho-rosa);
  font-size: 17px;
}
.marca b { background: var(--gradiente); -webkit-background-clip: text; background-clip: text; color: transparent; }

.menu { display: flex; gap: 4px; margin-left: 12px; }
.menu a {
  padding: 9px 15px; border-radius: 11px; font-size: 15px; font-weight: 600;
  color: var(--texto-2); transition: .18s;
}
.menu a:hover { color: var(--texto); background: rgba(255,255,255,.06); }
.menu a.ativo { color: var(--texto); background: var(--gradiente-suave); box-shadow: inset 0 0 0 1px var(--borda-viva); }

.topo-dir { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.busca-topo {
  display: flex; align-items: center; gap: 8px;
  background: var(--cartao); border: 1px solid var(--borda);
  border-radius: 12px; padding: 8px 14px; width: 240px;
  transition: .2s;
}
.busca-topo:focus-within { border-color: var(--roxo); box-shadow: 0 0 0 3px rgba(139,61,255,.18); }
.busca-topo input { background: none; border: none; outline: none; width: 100%; font-size: 14px; }
.busca-topo input::placeholder { color: var(--texto-3); }

.avatar-topo {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gradiente); display: grid; place-items: center;
  font-weight: 800; font-size: 15px; color: #fff;
  box-shadow: var(--brilho-rosa); flex-shrink: 0;
}
.selo-nao-lidas {
  position: absolute; top: -3px; right: -3px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--rosa); border-radius: 9px;
  font-size: 11px; font-weight: 800; display: grid; place-items: center;
  border: 2px solid var(--fundo);
}

/* ---------------- botões ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 13px;
  font-weight: 700; font-size: 15px; letter-spacing: .01em;
  transition: transform .16s, box-shadow .2s, filter .2s;
  white-space: nowrap;
}
.btn-p { background: var(--gradiente); color: #fff; box-shadow: var(--brilho-rosa); }
.btn-p:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 0 44px rgba(255,46,136,.6); }
.btn-s { background: var(--cartao-alto); color: var(--texto); box-shadow: inset 0 0 0 1px var(--borda-viva); }
.btn-s:hover { background: #2a1f4a; transform: translateY(-2px); }
.btn-fantasma { color: var(--texto-2); }
.btn-fantasma:hover { color: var(--texto); background: rgba(255,255,255,.06); }
.btn-ouro { background: linear-gradient(115deg, #ffd97a, var(--ouro)); color: #3a2600; box-shadow: 0 0 30px rgba(255,200,87,.4); }
.btn-largo { width: 100%; }
.btn-pequeno { padding: 8px 15px; font-size: 13.5px; border-radius: 10px; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ---------------- hero da home ---------------- */
.hero { padding: 74px 0 54px; text-align: center; position: relative; }
.hero-selo {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 17px; border-radius: 999px;
  background: var(--gradiente-suave);
  box-shadow: inset 0 0 0 1px var(--borda-viva);
  font-size: 13.5px; font-weight: 600; color: var(--texto-2);
  margin-bottom: 24px;
}
.hero-selo .ponto { width: 7px; height: 7px; border-radius: 50%; background: var(--verde); box-shadow: 0 0 10px var(--verde); animation: pulsa 2s infinite; }
@keyframes pulsa { 0%,100% { opacity: 1 } 50% { opacity: .35 } }

.hero h1 {
  font-size: clamp(38px, 6.4vw, 76px);
  font-weight: 800; line-height: 1.03; letter-spacing: -.035em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  background: var(--gradiente);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { font-size: clamp(16px, 2vw, 19.5px); color: var(--texto-2); max-width: 620px; margin: 0 auto 34px; }
.hero-botoes { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.numeros { display: flex; gap: 48px; justify-content: center; margin-top: 56px; flex-wrap: wrap; }
.numeros div { text-align: center; }
.numeros strong {
  display: block; font-size: 32px; font-weight: 800;
  background: var(--gradiente); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.numeros span { font-size: 13px; color: var(--texto-3); text-transform: uppercase; letter-spacing: .09em; font-weight: 600; }

/* ---------------- stories ---------------- */
.stories {
  display: flex; gap: 20px; overflow-x: auto; padding: 22px 4px 26px;
  scrollbar-width: none;
}
.stories::-webkit-scrollbar { display: none; }
.story { flex-shrink: 0; width: 82px; text-align: center; }
.story-anel {
  width: 78px; height: 78px; border-radius: 50%;
  background: var(--gradiente-story);
  padding: 3px; margin-bottom: 8px;
  transition: transform .2s;
}
.story:hover .story-anel { transform: scale(1.07); }
.story-anel > * {
  width: 100%; height: 100%; border-radius: 50%;
  border: 3px solid var(--fundo); object-fit: cover;
  background: var(--cartao-alto);
  display: grid; place-items: center; font-weight: 800; font-size: 22px; color: var(--texto-2);
}
.story small {
  display: block; font-size: 12.5px; color: var(--texto-2);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* ---------------- títulos de seção ---------------- */
.secao-topo {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin: 44px 0 20px; flex-wrap: wrap;
}
.secao-topo h2 { font-size: clamp(23px, 3vw, 31px); font-weight: 800; letter-spacing: -.025em; }
.secao-topo a { color: var(--rosa-claro); font-weight: 600; font-size: 14.5px; }
.secao-topo a:hover { text-decoration: underline; }

/* ---------------- grade de criadores ---------------- */
.grade-criadores {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
}
.cartao-criador {
  background: var(--cartao); border: 1px solid var(--borda);
  border-radius: var(--raio-g); overflow: hidden;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative;
}
.cartao-criador:hover {
  transform: translateY(-6px);
  border-color: var(--borda-viva);
  box-shadow: var(--sombra), var(--brilho-roxo);
}
.cc-capa {
  height: 122px; position: relative;
  background: var(--gradiente-suave);
  overflow: hidden;
}
.cc-capa img { width: 100%; height: 100%; object-fit: cover; }
.cc-capa::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--cartao), transparent 72%);
}
.cc-online {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  display: flex; align-items: center; gap: 6px;
  background: rgba(8,4,15,.72); backdrop-filter: blur(8px);
  padding: 5px 11px; border-radius: 999px; font-size: 11.5px; font-weight: 700;
}
.cc-online i { width: 6px; height: 6px; border-radius: 50%; background: var(--verde); box-shadow: 0 0 8px var(--verde); }
.cc-corpo { padding: 0 18px 18px; margin-top: -34px; position: relative; z-index: 2; }
.cc-avatar {
  width: 66px; height: 66px; border-radius: 50%;
  border: 3px solid var(--cartao); background: var(--gradiente);
  display: grid; place-items: center; font-weight: 800; font-size: 24px; color: #fff;
  margin-bottom: 10px; object-fit: cover;
}
.cc-nome { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 17px; }
.cc-verificado { color: var(--rosa); font-size: 14px; }
.cc-arroba { color: var(--texto-3); font-size: 13.5px; margin-bottom: 9px; }
.cc-bio {
  font-size: 13.5px; color: var(--texto-2); height: 40px; overflow: hidden;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: 13px;
}
.cc-rodape {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 13px; border-top: 1px solid var(--borda);
}
.cc-preco strong { font-size: 17px; font-weight: 800; color: var(--texto); }
.cc-preco span { font-size: 12px; color: var(--texto-3); }
.cc-stats { display: flex; gap: 13px; font-size: 12.5px; color: var(--texto-3); }

/* ---------------- feed ---------------- */
.feed-layout { display: grid; grid-template-columns: 1fr 312px; gap: 30px; align-items: start; }
@media (max-width: 940px) { .feed-layout { grid-template-columns: 1fr } .coluna-lado { display: none } }

.post {
  background: var(--cartao); border: 1px solid var(--borda);
  border-radius: var(--raio-g); overflow: hidden; margin-bottom: 22px;
  transition: border-color .2s;
}
.post:hover { border-color: var(--borda-viva); }
.post-topo { display: flex; align-items: center; gap: 12px; padding: 15px 18px; }
.post-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  background: var(--gradiente); display: grid; place-items: center;
  font-weight: 800; color: #fff; flex-shrink: 0;
}
.post-quem b { display: block; font-size: 15px; font-weight: 700; }
.post-quem span { font-size: 12.5px; color: var(--texto-3); }
.post-etiqueta {
  margin-left: auto; padding: 5px 12px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .03em;
}
.et-publico   { background: rgba(46,230,168,.14); color: var(--verde); }
.et-assinantes{ background: rgba(139,61,255,.18); color: var(--roxo-claro); }
.et-ppv       { background: rgba(255,200,87,.16); color: var(--ouro); }

.post-texto { padding: 0 18px 15px; font-size: 15.5px; color: var(--texto); white-space: pre-wrap; word-break: break-word; }

.post-midia { position: relative; background: #0d0718; }
.post-midia img, .post-midia video { width: 100%; max-height: 620px; object-fit: cover; }
.carrossel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.carrossel::-webkit-scrollbar { display: none; }
.carrossel > * { flex: 0 0 100%; scroll-snap-align: start; }

/* bloqueio: a mídia real nem chega no navegador, isso aqui é a "porta" */
.bloqueio {
  position: relative; aspect-ratio: 4/3;
  display: grid; place-items: center; text-align: center; padding: 30px;
  background: var(--gradiente-suave);
  overflow: hidden;
}
.bloqueio-previa {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: blur(26px) saturate(1.4) brightness(.55); transform: scale(1.15);
}
.bloqueio-conteudo { position: relative; z-index: 2; }
.bloqueio-cadeado {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 15px;
  background: rgba(8,4,15,.6); backdrop-filter: blur(10px);
  display: grid; place-items: center; font-size: 27px;
  box-shadow: inset 0 0 0 1px var(--borda-viva), var(--brilho-rosa);
}
.bloqueio h4 { font-size: 19px; font-weight: 800; margin-bottom: 6px; }
.bloqueio p { font-size: 14px; color: var(--texto-2); margin-bottom: 18px; }

.post-acoes {
  display: flex; align-items: center; gap: 20px;
  padding: 13px 18px; border-top: 1px solid var(--borda);
}
.acao {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; color: var(--texto-2); font-weight: 600; transition: .16s;
}
.acao:hover { color: var(--rosa-claro); transform: scale(1.05); }
.acao.curtido { color: var(--rosa); }
.post-data { margin-left: auto; font-size: 12.5px; color: var(--texto-3); }

/* ---------------- coluna lateral ---------------- */
.painel-lado {
  background: var(--cartao); border: 1px solid var(--borda);
  border-radius: var(--raio-g); padding: 20px; margin-bottom: 20px;
  position: sticky; top: calc(var(--topo) + 22px);
}
.painel-lado h3 { font-size: 15px; font-weight: 700; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.mini-criador { display: flex; align-items: center; gap: 11px; padding: 9px 0; }
.mini-criador .cc-avatar { width: 40px; height: 40px; font-size: 15px; margin: 0; border-width: 2px; }
.mini-criador b { font-size: 14px; display: block; }
.mini-criador span { font-size: 12px; color: var(--texto-3); }

/* ---------------- perfil do criador ---------------- */
.perfil-capa {
  height: 260px; border-radius: var(--raio-g); overflow: hidden;
  background: var(--gradiente-suave); position: relative; margin-top: 22px;
}
.perfil-capa img { width: 100%; height: 100%; object-fit: cover; }
/* z-index: a capa é position:relative, então sem isso ela pintaria por cima
   do cabeçalho inteiro (avatar e nome sumiam atrás dela). */
.perfil-cabecalho {
  display: flex; gap: 26px; padding: 0 30px; margin-top: 14px;
  align-items: flex-end; flex-wrap: wrap;
  position: relative; z-index: 2;
}
/* só o avatar sobe pra dentro da capa; nome, números e botões ficam abaixo dela */
.perfil-avatar {
  width: 132px; height: 132px; border-radius: 50%;
  border: 4px solid var(--fundo); background: var(--gradiente);
  display: grid; place-items: center; font-size: 48px; font-weight: 800; color: #fff;
  object-fit: cover; flex-shrink: 0; box-shadow: var(--brilho-rosa);
  margin-top: -76px;
}
.perfil-info { flex: 1; min-width: 240px; padding-bottom: 8px; }
.perfil-info h1 { font-size: 30px; font-weight: 800; letter-spacing: -.02em; display: flex; align-items: center; gap: 9px; }
.perfil-info .arroba { color: var(--texto-3); font-size: 15px; }
.perfil-stats { display: flex; gap: 26px; margin-top: 13px; }
.perfil-stats div b { font-size: 18px; font-weight: 800; }
.perfil-stats div span { font-size: 12.5px; color: var(--texto-3); display: block; }
.perfil-bio { padding: 24px 30px 0; color: var(--texto-2); font-size: 15px; max-width: 720px; white-space: pre-wrap; }

.caixa-assinar {
  background: var(--cartao); border: 1px solid var(--borda-viva);
  border-radius: var(--raio-g); padding: 24px; margin: 26px 0;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  box-shadow: var(--brilho-roxo);
}
.caixa-assinar .valor { font-size: 34px; font-weight: 800; }
.caixa-assinar .valor small { font-size: 15px; color: var(--texto-3); font-weight: 600; }
.caixa-assinar ul { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; color: var(--texto-2); font-size: 14px; }
.caixa-assinar li::before { content: '✓ '; color: var(--verde); font-weight: 800; }

/* grade estilo Instagram no perfil */
.grade-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 8px; }
@media (max-width: 640px) { .grade-posts { grid-template-columns: repeat(2, 1fr) } }
.celula {
  aspect-ratio: 1; position: relative; overflow: hidden;
  background: var(--cartao-alto); cursor: pointer;
}
.celula img, .celula video { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.celula:hover img { transform: scale(1.08); }
.celula-bloqueada { display: grid; place-items: center; background: var(--gradiente-suave); }
.celula-bloqueada .cad { font-size: 30px; opacity: .85; }
.celula-selo {
  position: absolute; top: 8px; right: 8px;
  background: rgba(8,4,15,.7); backdrop-filter: blur(6px);
  padding: 3px 9px; border-radius: 8px; font-size: 11px; font-weight: 700;
}

/* ---------------- abas ---------------- */
.abas { display: flex; gap: 4px; border-bottom: 1px solid var(--borda); margin: 30px 0 22px; overflow-x: auto; }
.aba {
  padding: 13px 20px; font-weight: 700; font-size: 14.5px; color: var(--texto-3);
  border-bottom: 2px solid transparent; white-space: nowrap; transition: .18s;
}
.aba:hover { color: var(--texto-2); }
.aba.ativa { color: var(--texto); border-bottom-color: var(--rosa); }

/* ---------------- formulários ---------------- */
.cartao-form {
  background: var(--cartao); border: 1px solid var(--borda);
  border-radius: var(--raio-g); padding: 32px; box-shadow: var(--sombra);
}
.campo { margin-bottom: 17px; }
.campo label { display: block; font-size: 13.5px; font-weight: 600; color: var(--texto-2); margin-bottom: 7px; }
.campo input, .campo textarea, .campo select {
  width: 100%; padding: 13px 15px;
  background: var(--fundo-2); border: 1px solid var(--borda);
  border-radius: 12px; font-size: 15px; outline: none; transition: .18s;
}
.campo input:focus, .campo textarea:focus, .campo select:focus {
  border-color: var(--roxo); box-shadow: 0 0 0 3px rgba(139,61,255,.18);
}
.campo textarea { resize: vertical; min-height: 96px; }
.campo small { display: block; font-size: 12.5px; color: var(--texto-3); margin-top: 6px; }
.linha { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .linha { grid-template-columns: 1fr } }

.checkbox { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--texto-2); margin-bottom: 17px; }
.checkbox input { width: 19px; height: 19px; accent-color: var(--rosa); flex-shrink: 0; margin-top: 2px; }

.aviso { padding: 13px 16px; border-radius: 12px; font-size: 14px; margin-bottom: 17px; }
.aviso-erro  { background: rgba(255,77,94,.13);  color: #ff9aa4; box-shadow: inset 0 0 0 1px rgba(255,77,94,.3); }
.aviso-ok    { background: rgba(46,230,168,.12); color: #7df3cd; box-shadow: inset 0 0 0 1px rgba(46,230,168,.28); }
.aviso-info  { background: rgba(139,61,255,.14); color: var(--roxo-claro); box-shadow: inset 0 0 0 1px var(--borda-viva); }

/* ---------------- modal ---------------- */
.modal-fundo {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4,2,8,.82); backdrop-filter: blur(10px);
  display: grid; place-items: center; padding: 20px;
  animation: aparecer .2s;
}
@keyframes aparecer { from { opacity: 0 } to { opacity: 1 } }
.modal {
  background: var(--cartao); border: 1px solid var(--borda-viva);
  border-radius: var(--raio-g); padding: 30px;
  width: min(460px, 100%); box-shadow: var(--sombra), var(--brilho-roxo);
  animation: subir .25s cubic-bezier(.2,.9,.3,1.2);
  max-height: 90vh; overflow-y: auto;
}
@keyframes subir { from { transform: translateY(22px) scale(.97); opacity: 0 } }
.modal h3 { font-size: 22px; font-weight: 800; margin-bottom: 9px; }
.modal p  { color: var(--texto-2); font-size: 14.5px; margin-bottom: 20px; }

/* portão de idade */
.portao { position: fixed; inset: 0; z-index: 300; background: var(--fundo); display: grid; place-items: center; padding: 24px; text-align: center; }
.portao-caixa { max-width: 460px; }
.portao .aviso-18 {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--gradiente); display: grid; place-items: center;
  font-size: 27px; font-weight: 800; color: #fff; box-shadow: var(--brilho-rosa);
}
.portao h2 { font-size: 27px; font-weight: 800; margin-bottom: 12px; }
.portao p { color: var(--texto-2); font-size: 15px; margin-bottom: 26px; }

/* ---------------- rodapé ---------------- */
.rodape { margin-top: 84px; border-top: 1px solid var(--borda); background: var(--fundo-2); }

/* faixa de confiança: pagamento seguro / SSL / cartão */
.faixa-confianca {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  padding: 26px 0; border-bottom: 1px solid var(--borda);
}
.selo-confianca {
  display: flex; align-items: center; gap: 10px;
  background: var(--cartao); border: 1px solid var(--borda);
  border-radius: 13px; padding: 11px 18px;
}
.selo-confianca .ic {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  background: var(--gradiente-suave); display: grid; place-items: center; font-size: 15px;
}
.selo-confianca b { display: block; font-size: 13.5px; font-weight: 700; line-height: 1.2; }
.selo-confianca span { font-size: 11.5px; color: var(--texto-3); }

.bandeiras { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: center; }
.bandeira {
  height: 30px; min-width: 46px; padding: 0 10px;
  border-radius: 7px; background: var(--cartao-alto);
  box-shadow: inset 0 0 0 1px var(--borda);
  display: grid; place-items: center;
  font-size: 10.5px; font-weight: 800; letter-spacing: .04em; color: var(--texto-2);
}

.rodape-grade {
  display: grid; gap: 34px; padding: 46px 0 30px;
  grid-template-columns: 1.6fr repeat(3, 1fr);
}
@media (max-width: 820px) { .rodape-grade { grid-template-columns: 1fr 1fr } }
@media (max-width: 520px) { .rodape-grade { grid-template-columns: 1fr } }
.rodape-grade h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .09em; color: var(--texto-3); margin-bottom: 15px; }
.rodape-grade ul { list-style: none; display: grid; gap: 9px; }
.rodape-grade a { color: var(--texto-2); font-size: 14px; }
.rodape-grade a:hover { color: var(--rosa-claro); }
.rodape-sobre p { color: var(--texto-3); font-size: 13.5px; margin-top: 13px; max-width: 320px; }

.rodape-fim {
  border-top: 1px solid var(--borda); padding: 20px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--texto-3);
}
.rta { display: inline-flex; align-items: center; gap: 7px; }
.rta b { color: var(--texto-2); }

/* ---------------- utilidades ---------------- */
.vazio { text-align: center; padding: 70px 20px; color: var(--texto-3); }
.vazio .emoji { font-size: 46px; display: block; margin-bottom: 14px; opacity: .55; }
.carregando { text-align: center; padding: 50px; color: var(--texto-3); }
.girando { display: inline-block; width: 26px; height: 26px; border: 3px solid var(--borda-viva); border-top-color: var(--rosa); border-radius: 50%; animation: gira .8s linear infinite; }
@keyframes gira { to { transform: rotate(360deg) } }
.esconde { display: none !important; }
.pos-rel { position: relative; }

table.tabela { width: 100%; border-collapse: collapse; font-size: 14px; }
table.tabela th {
  text-align: left; padding: 11px 13px; font-size: 12px; text-transform: uppercase;
  letter-spacing: .06em; color: var(--texto-3); border-bottom: 1px solid var(--borda);
}
table.tabela td { padding: 12px 13px; border-bottom: 1px solid var(--borda); }
table.tabela tr:hover td { background: rgba(255,255,255,.025); }

.pilula { padding: 4px 11px; border-radius: 999px; font-size: 11.5px; font-weight: 700; display: inline-block; }
.p-ok { background: rgba(46,230,168,.15); color: var(--verde); }
.p-pendente { background: rgba(255,200,87,.15); color: var(--ouro); }
.p-ruim { background: rgba(255,77,94,.15); color: #ff9aa4; }

@media (max-width: 760px) {
  .menu, .busca-topo { display: none; }
  .hero { padding: 48px 0 34px; }
  .perfil-cabecalho { padding: 0 6px; }
  .perfil-bio { padding: 20px 6px 0; }
  .numeros { gap: 28px; }
}

/* ============================================================
   Menu sanduíche
   ============================================================ */
.hamburguer {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; gap: 5px;
  background: var(--cartao); box-shadow: inset 0 0 0 1px var(--borda);
  flex-shrink: 0; transition: .18s;
}
.hamburguer:hover { background: var(--cartao-alto); }
.hamburguer span {
  display: block; width: 18px; height: 2px; border-radius: 2px;
  background: var(--texto); transition: .25s;
}
.hamburguer.aberto span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburguer.aberto span:nth-child(2) { opacity: 0; }
.hamburguer.aberto span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.gaveta-fundo {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(4,2,8,.7); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity .22s;
}
.gaveta-fundo.aberta { opacity: 1; pointer-events: auto; }

.gaveta {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 130;
  width: min(330px, 88vw);
  background: var(--fundo-2);
  border-left: 1px solid var(--borda);
  box-shadow: -20px 0 60px rgba(0,0,0,.6);
  transform: translateX(100%); transition: transform .28s cubic-bezier(.2,.9,.3,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.gaveta.aberta { transform: translateX(0); }

.gaveta-topo {
  padding: 20px; border-bottom: 1px solid var(--borda);
  display: flex; align-items: center; gap: 13px;
}
.gaveta-topo .cc-avatar { width: 48px; height: 48px; font-size: 18px; margin: 0; border-width: 2px; }
.gaveta-topo b { display: block; font-size: 15.5px; }
.gaveta-topo span { font-size: 12.5px; color: var(--texto-3); }

.gaveta nav { padding: 12px; display: grid; gap: 3px; }
.gaveta nav a, .gaveta nav button {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 15px; border-radius: 12px;
  font-size: 15px; font-weight: 600; color: var(--texto-2);
  text-align: left; width: 100%; transition: .16s;
}
.gaveta nav a:hover, .gaveta nav button:hover { background: rgba(255,255,255,.06); color: var(--texto); }
.gaveta nav a.ativo { background: var(--gradiente-suave); color: var(--texto); box-shadow: inset 0 0 0 1px var(--borda-viva); }
.gaveta nav .ic { font-size: 18px; width: 24px; text-align: center; }
.gaveta nav .divisor { height: 1px; background: var(--borda); margin: 9px 4px; }
.gaveta nav .rotulo {
  font-size: 11px; text-transform: uppercase; letter-spacing: .09em;
  color: var(--texto-3); padding: 12px 15px 5px; font-weight: 700;
}
.gaveta-fim { margin-top: auto; padding: 18px 20px; border-top: 1px solid var(--borda); }

/* ============================================================
   Logo em destaque no hero
   ============================================================ */
.hero-logo {
  width: min(560px, 82vw); height: auto; margin: 0 auto 26px;
  display: block;
  filter: drop-shadow(0 0 46px rgba(255,46,136,.5)) drop-shadow(0 0 90px rgba(139,61,255,.3));
  animation: brilhaLogo 5s ease-in-out infinite;
}
@keyframes brilhaLogo {
  0%, 100% { filter: drop-shadow(0 0 46px rgba(255,46,136,.5)) drop-shadow(0 0 90px rgba(139,61,255,.3)); }
  50%      { filter: drop-shadow(0 0 62px rgba(255,46,136,.72)) drop-shadow(0 0 110px rgba(139,61,255,.45)); }
}
@media (prefers-reduced-motion: reduce) { .hero-logo { animation: none } }

/* contatos externos no perfil */
.contatos { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-telegram { background: linear-gradient(115deg, #37aee2, #1e96c8); color: #fff; box-shadow: 0 0 26px rgba(55,174,226,.38); }
.btn-telegram:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn-whats { background: linear-gradient(115deg, #4ade80, #16a34a); color: #05310f; box-shadow: 0 0 26px rgba(74,222,128,.32); }
.btn-whats:hover { transform: translateY(-2px); filter: brightness(1.08); }
