/* ===================== VARIÁVEIS ===================== */
:root {
  --roxo-escuro:    #1a0a2e;
  --roxo-principal: #4a1a6e;
  --roxo-medio:     #7B3FA0;
  --roxo-accent:    #7B3FA0;
  --roxo-claro:     #9b7fd4;
  --ouro:           #C9A84C;
  --ouro-claro:     #F0D080;
  --ouro-escuro:    #8A6E10;
  --branco:         #FFFFFF;
  --branco-suave:   #F5F0FF;
  --texto-muted:    #9b7fd4;
  --borda-escura:   rgba(201,168,76,0.25);
  --card-escuro:    #2a1040;
  --sombra:         0 8px 32px rgba(26,10,46,0.4);
  --radius:         14px;
  --radius-sm:      12px;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--branco-suave);
  color: var(--roxo-escuro);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ===================== TIPOGRAFIA ===================== */
.titulo-marca {
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
h1, h2, h3 { line-height: 1.25; }

/* ===================== UTILITÁRIOS ===================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.texto-ouro  { color: var(--ouro); }
.texto-roxo  { color: var(--roxo-medio); }
.texto-muted { color: var(--texto-muted); }

/* ===================== BOTÕES ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}
/* ── GOLD BUTTON BASE (usado em todas as variações douradas) ── */
.btn-ouro {
  background: linear-gradient(160deg, #d9b356 0%, #c9a84c 50%, #b8933c 100%);
  color: #1a0a2e;
  box-shadow:
    0 4px 18px rgba(201,168,76,0.45),
    inset 0 1px 0 rgba(255,240,160,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.12);
  text-shadow: 0 1px 1px rgba(0,0,0,0.12);
  letter-spacing: 0.3px;
}
.btn-ouro:hover {
  background: linear-gradient(160deg, #e8c060 0%, #d9b356 50%, #c9a34a 100%);
  transform: translateY(-3px);
  box-shadow:
    0 10px 32px rgba(201,168,76,0.6),
    inset 0 1px 0 rgba(255,240,160,0.4),
    inset 0 -1px 0 rgba(0,0,0,0.1);
}
.btn-ouro:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--ouro);
  border: 1.5px solid var(--ouro);
}
.btn-outline:hover { background: rgba(201,168,76,0.12); transform: translateY(-2px); }

.btn-roxo {
  background: var(--roxo-medio);
  color: var(--branco);
}
.btn-roxo:hover { background: #9B5FC0; transform: translateY(-2px); box-shadow: 0 0 15px rgba(201,168,76,0.25); }

.btn-lg    { padding: 16px 36px; font-size: 16px; }
.btn-sm    { padding: 8px 18px;  font-size: 13px; border-radius: 10px; }
.btn-bloco { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   SISTEMA DE BOTÕES — PADRÃO ÚNICO (Baixe o Santo)
   Todas as variantes compartilham a mesma base:
     padding: 10px 20px · font-size: 13px · font-weight: 700
     border-radius: 10px · font-family: Raleway · gap: 7px
   Diferença APENAS no visual (sólido vs contorno).
   Nunca criar botão inline com style= para ações da UI.
═══════════════════════════════════════════════════════════ */

/* BASE COMPARTILHADA — tamanho e tipografia iguais para todos */
.btn-sair,
.btn-voltar-nav,
.btn-acao,
.btn-acao-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

/* SÓLIDO DOURADO — Sair + ações principais */
.btn-sair,
.btn-acao {
  background: linear-gradient(160deg, #d9b356 0%, #c9a84c 50%, #b8933c 100%);
  color: #1a0a2e;
  border: none;
  text-shadow: 0 1px 1px rgba(0,0,0,0.1);
  box-shadow:
    0 4px 14px rgba(201,168,76,0.4),
    inset 0 1px 0 rgba(255,240,160,0.3),
    inset 0 -1px 0 rgba(0,0,0,0.1);
}
.btn-sair:hover,
.btn-acao:hover {
  background: linear-gradient(160deg, #e8c060 0%, #d9b356 50%, #c9a34a 100%);
  transform: translateY(-3px);
  color: #1a0a2e;
  box-shadow:
    0 10px 28px rgba(201,168,76,0.58),
    inset 0 1px 0 rgba(255,240,160,0.38),
    inset 0 -1px 0 rgba(0,0,0,0.08);
}
.btn-sair:active,
.btn-acao:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(201,168,76,0.35);
}

/* CONTORNO DOURADO — Voltar/Início, fechar, rascunho, ações secundárias */
.btn-voltar-nav,
.btn-acao-outline {
  background: transparent;
  color: var(--ouro);
  border: 1.5px solid rgba(201,168,76,0.45);
}
.btn-voltar-nav:hover,
.btn-acao-outline:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--ouro);
  transform: translateY(-2px);
  color: var(--ouro);
  box-shadow: 0 6px 18px rgba(201,168,76,0.22);
}
.btn-voltar-nav:active,
.btn-acao-outline:active { transform: translateY(0); }

/* Equilíbrio visual: nav buttons lado-a-lado têm a mesma largura */
.btn-sair,
.btn-voltar-nav {
  min-width: 110px;
  justify-content: center;
}

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(26,10,46,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--branco);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--ouro); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ouro); }
.nav-link-creditos {
  color: var(--ouro) !important;
  font-weight: 700 !important;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 20px;
  padding: 4px 12px !important;
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-link-creditos:hover {
  background: rgba(201,168,76,0.12) !important;
  border-color: rgba(201,168,76,0.7) !important;
}
.nav-acoes { display: flex; align-items: center; gap: 12px; }
.nav-entrar {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
}
.nav-entrar:hover { color: var(--ouro); }
.nav-menu-btn {
  display: none;
  background: none;
  padding: 8px;
  color: var(--branco);
  font-size: 24px;
}
@media (max-width: 768px) {
  .nav-links            { display: none; }
  .nav-acoes            { display: flex; gap: 6px; align-items: center; }
  .nav-acoes .btn       { display: none; }
  .nav-entrar           { font-size: 13px; padding: 6px 14px;
                          border: 1px solid rgba(255,255,255,0.25);
                          border-radius: 20px; }
  .nav-menu-btn         { display: block; }
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: var(--roxo-escuro);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(123,63,160,0.8) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(74,26,110,0.6) 0%, transparent 60%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow-x: hidden; /* só corta horizontalmente — elementos decorativos */
  overflow-y: visible; /* permite crescer verticalmente no mobile */
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-conteudo {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--ouro-claro);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 8px;
  line-height: 1.1;
}
.hero h1 span { color: var(--ouro); }
.hero-sub {
  font-size: clamp(17px, 2.5vw, 22px);
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  font-weight: 300;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-acoes { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-pwa {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--branco);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.hero-pwa.visivel { display: inline-flex; }
.hero-pwa:hover { background: rgba(255,255,255,0.15); }
.hero-info {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-info-item {
  display: flex;
  flex-direction: column;
}
.hero-info-num {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ouro);
}
.hero-info-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 600px) {
  .hero {
    padding: 88px 20px 48px;
    align-items: flex-start;  /* conteúdo parte do topo, não do centro */
    min-height: auto;         /* cresce conforme o conteúdo */
  }
  .hero-acoes {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hero-acoes .btn {
    display: flex;            /* sobrescreve inline-flex */
    width: 100%;
    justify-content: center;
    white-space: normal;      /* permite quebra de texto se necessário */
    text-align: center;
  }
}

/* ===================== FUNCIONALIDADES ===================== */
.funcionalidades {
  padding: 96px 0;
  background: var(--branco);
}
.secao-topo {
  text-align: center;
  margin-bottom: 56px;
}
.secao-badge {
  display: inline-block;
  background: rgba(123,63,160,0.1);
  color: var(--roxo-medio);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.secao-titulo {
  font-family: Georgia, serif;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--roxo-escuro);
  margin-bottom: 14px;
}
.secao-titulo span { color: var(--ouro); }
.secao-desc {
  color: var(--texto-muted);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
}
.grid-funcionalidades {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card-func {
  background: var(--branco-suave);
  border: 1px solid rgba(123,63,160,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card-func:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(123,63,160,0.12);
  border-color: rgba(201,168,76,0.3);
}
.card-func-icone {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--roxo-principal), var(--roxo-medio));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.card-func h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--roxo-escuro);
  margin-bottom: 8px;
}
.card-func p {
  font-size: 14px;
  color: var(--texto-muted);
  line-height: 1.6;
}

/* ===================== RELIGIÕES ===================== */
.religioes {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--roxo-escuro) 0%, var(--roxo-principal) 100%);
  position: relative;
  overflow: hidden;
}
.religioes::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.religioes .secao-titulo { color: var(--branco); }
.religioes .secao-badge { background: rgba(201,168,76,0.15); color: var(--ouro-claro); }
.religioes .secao-desc { color: rgba(255,255,255,0.6); }
.grid-religioes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
.card-religiao {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--roxo-escuro);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border: 2px solid var(--ouro);
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.25),
    0 0 18px rgba(201,168,76,0.35),
    0 6px 24px rgba(0,0,0,0.5);
  filter: brightness(1.1) saturate(1.2);
}
.card-religiao::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,10,46,0.85) 0%,
    rgba(26,10,46,0.30) 45%,
    rgba(26,10,46,0.05) 100%
  );
  transition: background 0.3s;
  z-index: 1;
}
.card-religiao:hover {
  transform: translateY(-5px);
  filter: brightness(1.2) saturate(1.3);
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.5),
    0 0 28px rgba(201,168,76,0.55),
    0 12px 40px rgba(0,0,0,0.55);
}
.card-religiao:hover::before {
  background: linear-gradient(
    to top,
    rgba(26,10,46,0.88) 0%,
    rgba(26,10,46,0.35) 45%,
    rgba(26,10,46,0.08) 100%
  );
}
.card-religiao-conteudo {
  position: relative;
  z-index: 2;
  padding: 28px 20px 24px;
  width: 100%;
  text-align: center;
}
/* Imagens reais de cada vertente (path relativo ao CSS em css/) */
.grid-religioes .card-religiao:nth-child(1) { background-image: url('../vertente/umbanda.jpg'); }
.grid-religioes .card-religiao:nth-child(2) { background-image: url('../vertente/batuque.jpg'); }
.grid-religioes .card-religiao:nth-child(3) { background-image: url('../vertente/candomble.jpg'); }
.grid-religioes .card-religiao:nth-child(4) { background-image: url('../vertente/quimbanda.jpg'); }
.card-religiao h3 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ouro);
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,1), 0 0 24px rgba(0,0,0,0.9);
}
.card-religiao p {
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,1), 0 0 16px rgba(0,0,0,0.8);
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

/* ===================== COMO FUNCIONA ===================== */
.como-funciona {
  padding: 96px 0;
  background: var(--branco);
}
/* Overrides para fundo branco — texto escuro */
.como-funciona .step {
  background: rgba(123,63,160,0.05);
  border-color: rgba(123,63,160,0.15);
}
.como-funciona .step:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 12px 40px rgba(201,168,76,0.12), 0 0 0 1px rgba(201,168,76,0.12);
}
.como-funciona .step h3 { color: #1a0a2e; }
.como-funciona .step p  { color: rgba(0,0,0,0.58); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
  margin-top: 56px;
}
/* linha conectora entre steps */
.steps::before {
  content: '';
  position: absolute;
  top: 44px; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), rgba(201,168,76,0.3), transparent);
  pointer-events: none;
  display: none;
}
@media (min-width: 900px) { .steps::before { display: block; } }

.step {
  text-align: center;
  padding: 36px 28px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.step:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 12px 40px rgba(201,168,76,0.1), 0 0 0 1px rgba(201,168,76,0.1);
  transform: translateY(-4px);
}
.step-num {
  width: 72px;
  height: 72px;
  background: linear-gradient(160deg, #d9b356 0%, #c9a84c 50%, #b8933c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a0a2e;
  margin: 0 auto 24px;
  box-shadow:
    0 6px 24px rgba(201,168,76,0.45),
    inset 0 1px 0 rgba(255,240,160,0.4),
    0 0 0 8px rgba(201,168,76,0.07);
}
.step h3 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.step p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* ===================== PWA EXPLAINER ===================== */
.pwa-explainer {
  padding: 80px 0;
  background: var(--branco-suave);
}
.pwa-card {
  background: linear-gradient(135deg, var(--roxo-principal), var(--roxo-medio));
  border: 1px solid var(--borda-escura);
  border-radius: 20px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pwa-card h2 {
  font-family: Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--branco);
  margin-bottom: 16px;
  line-height: 1.3;
}
.pwa-card h2 span { color: var(--ouro); }
.pwa-card p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.pwa-lista { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pwa-lista li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}
.pwa-lista li::before {
  content: '✦';
  color: var(--ouro);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}
.pwa-phones {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pwa-mockup {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 28px;
  padding: 32px 24px;
  text-align: center;
  max-width: 220px;
  width: 100%;
}
.pwa-mockup-icone { font-size: 56px; margin-bottom: 16px; }
.pwa-mockup p { color: rgba(255,255,255,0.6); font-size: 13px; }
.pwa-mockup strong { color: var(--ouro-claro); display: block; font-size: 15px; margin-bottom: 6px; }
@media (max-width: 700px) {
  .pwa-card { grid-template-columns: 1fr; padding: 36px 24px; gap: 32px; }
  .pwa-phones { display: none; }
}

/* ===================== BANNER PROMO ===================== */
.banner-promo-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #2d1050 0%, var(--roxo-escuro) 100%);
  position: relative;
  overflow: hidden;
}
.banner-promo-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
/* cabeçalho centrado */
.banner-promo-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative; z-index: 1;
}
.banner-promo-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
  color: var(--ouro); border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 16px; margin-bottom: 18px;
}
.banner-promo-titulo {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700; color: #fff;
  line-height: 1.25; margin-bottom: 12px;
}
.banner-promo-titulo span { color: var(--ouro); }
.banner-promo-sub {
  font-size: 15px; color: rgba(255,255,255,0.6);
  line-height: 1.75; max-width: 580px; margin: 0 auto;
}
.banner-promo-sub strong { color: rgba(255,255,255,0.88); }
/* dois cards lado a lado */
.banner-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative; z-index: 1;
}
.banner-promo-box {
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
}
.banner-promo-box-esq {
  background: rgba(74,26,110,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}
.banner-promo-box-dir {
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 100%);
  border: 2px solid rgba(201,168,76,0.4);
  box-shadow: 0 0 24px rgba(201,168,76,0.12), 0 8px 32px rgba(0,0,0,0.3);
}
.banner-promo-box-icone {
  font-size: 32px; line-height: 1;
}
.banner-promo-box-titulo {
  font-family: 'Cinzel', serif;
  font-size: 16px; font-weight: 700; color: #fff;
  line-height: 1.35;
}
.banner-promo-box-texto {
  font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.75; flex: 1;
}
.banner-promo-box-texto strong { color: rgba(255,255,255,0.88); }
.banner-promo-meses {
  font-family: 'Cinzel', serif;
  font-size: 42px; font-weight: 700; color: var(--ouro);
  line-height: 1; margin: 4px 0;
}
.banner-promo-meses span {
  display: block; font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-top: 6px;
}
@media (max-width: 700px) {
  .banner-promo-grid { grid-template-columns: 1fr; }
  .banner-promo-box { padding: 24px 20px; }
  .banner-promo-meses { font-size: 36px; }
}

/* ===================== CTA FINAL ===================== */
.cta-final {
  padding: 96px 0;
  background: var(--roxo-escuro);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,63,160,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final h2 {
  font-family: Georgia, serif;
  font-size: clamp(24px, 4vw, 40px);
  color: var(--branco);
  margin-bottom: 16px;
  position: relative;
}
.cta-final h2 span { color: var(--ouro); }
.cta-final p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  margin-bottom: 40px;
  position: relative;
}
.cta-final .btn { position: relative; }

/* ===================== RODAPÉ ===================== */
.rodape {
  background: var(--roxo-escuro);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 48px 0 32px;
}
.rodape-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.rodape-marca {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 12px;
}
.rodape-marca span { color: var(--ouro); }
.rodape-desc {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.rodape h4 {
  color: var(--ouro);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.rodape-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.rodape-links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: color 0.2s;
}
.rodape-links a:hover { color: var(--ouro-claro); }
.rodape-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.rodape-copy { color: rgba(255,255,255,0.35); font-size: 13px; }
.rodape-copy a { color: var(--ouro); }
@media (max-width: 700px) {
  .rodape-grid { grid-template-columns: 1fr; gap: 32px; }
  .rodape-bottom { flex-direction: column; text-align: center; }
}

/* ===================== WHATSAPP FIXO ===================== */
.whatsapp-fixo {
  display: flex;
  position: fixed;
  bottom: 84px;
  right: 24px;
  z-index: 9000;
  background: #25D366;
  color: var(--branco);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fixo:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
.whatsapp-fixo svg { width: 28px; height: 28px; }

/* ===================== PÁGINA DE CADASTRO ===================== */
.pag-cadastro {
  min-height: 100vh;
  background: var(--roxo-escuro);
  background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(123,63,160,0.6) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
}
.cadastro-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 48px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  width: 100%;
  max-width: 520px;
  backdrop-filter: blur(12px);
}
.cadastro-logo {
  text-align: center;
  margin-bottom: 32px;
}
.cadastro-logo-texto {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--branco);
}
.cadastro-logo-texto span { color: var(--ouro); }
.cadastro-logo-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* Steps do cadastro */
.cadastro-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}
.c-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.c-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s;
}
.c-step.ativo .c-step-num {
  background: var(--ouro);
  border-color: var(--ouro);
  color: var(--roxo-escuro);
}
.c-step.concluido .c-step-num {
  background: var(--roxo-medio);
  border-color: var(--roxo-medio);
  color: var(--branco);
}
.c-step-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.c-step.ativo .c-step-label { color: var(--ouro-claro); }
.c-step-linha {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 4px;
  margin-bottom: 22px;
}
.c-step-linha.ativa { background: var(--ouro); }

/* Painéis de step */
.step-painel { display: none; }
.step-painel.ativo { display: block; }

/* Tipos de usuário */
.tipo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.tipo-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}
.tipo-card:hover { border-color: rgba(201,168,76,0.4); background: rgba(255,255,255,0.08); }
.tipo-card.selecionado {
  border-color: var(--ouro);
  background: rgba(201,168,76,0.1);
}
.tipo-card input[type="radio"] { position: absolute; opacity: 0; }
.tipo-card-icone { font-size: 36px; margin-bottom: 10px; }
.tipo-card-titulo {
  font-size: 14px;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 4px;
}
.tipo-card-desc { font-size: 12px; color: rgba(255,255,255,0.45); }

/* Campos do formulário */
.campo { margin-bottom: 20px; }
.campo label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}
.campo .obrigatorio { color: var(--ouro); }
.campo input,
.campo select {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 15px;
  color: var(--branco);
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.campo input:focus,
.campo select:focus {
  outline: none;
  border-color: var(--ouro);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.campo textarea {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 15px; color: var(--branco);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.campo textarea:focus {
  outline: none; border-color: var(--ouro);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.campo input::placeholder { color: rgba(255,255,255,0.3); }
.campo select option { background: var(--roxo-principal); color: var(--branco); }
.campo-ajuda {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}
.campo-erro {
  font-size: 12px;
  color: #FF6B6B;
  margin-top: 6px;
  display: none;
}
.campo.erro input,
.campo.erro select { border-color: #FF6B6B; }
.campo.erro .campo-erro { display: block; }

/* Grid 2 colunas */
.campo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .campo-row { grid-template-columns: 1fr; } }

/* Navegação de steps */
.step-nav {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.step-nav .btn { flex: 1; }

/* Mensagem de sucesso */
.cadastro-sucesso {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.cadastro-sucesso-icone { font-size: 64px; margin-bottom: 20px; }
.cadastro-sucesso h2 {
  font-family: Georgia, serif;
  font-size: 24px;
  color: var(--ouro);
  margin-bottom: 12px;
}
.cadastro-sucesso p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Alerta de erro geral */
.alerta-erro {
  background: rgba(255,107,107,0.1);
  border: 1px solid rgba(255,107,107,0.3);
  color: #FF9999;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
  display: none;
}
.alerta-erro.visivel { display: block; }

/* Link de login */
.cadastro-login {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.cadastro-login a { color: var(--ouro-claro); }

/* ===================== HELP TOOLTIP ===================== */
.help-wrap { position: relative; display: inline-block; }
.help-btn {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--ouro);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
  margin-left: 6px;
  flex-shrink: 0;
}
.help-balao {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--roxo-principal);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  width: 260px;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.help-balao::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: rgba(201,168,76,0.3);
}
.help-wrap:hover .help-balao,
.help-wrap.aberto .help-balao { display: block; }
.help-balao.aberto {
  display: block;
  animation: balaoSurge 0.2s ease;
}
.help-balao em { color: var(--ouro-claro); font-style: normal; font-weight: 600; }

/* ===================== TIPO ITEM (wrapper card + help) ===================== */
.tipo-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tipo-item .tipo-card { margin: 0; }

.help-btn-baixo {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.help-btn-baixo:hover,
.help-btn-baixo.ativo {
  border-color: rgba(201,168,76,0.4);
  color: var(--ouro-claro);
  background: rgba(201,168,76,0.08);
}

/* Balão posicionado acima do botão */
.tipo-item .help-wrap {
  position: relative;
  width: 100%;
}
.tipo-item .help-balao {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  background: var(--roxo-principal);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.tipo-item .help-balao.aberto {
  display: block;
  animation: balaoSurge 0.2s ease;
}
@keyframes balaoSurge {
  from { opacity: 0; transform: translateX(-50%) translateY(6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.tipo-item .help-balao::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--roxo-principal);
}

/* ===================== CHIPS MULTI-SELECT ===================== */
.chips-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.chips-grupo {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  position: relative;
}
.chip input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.chip label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.chip input:checked + label {
  background: rgba(201,168,76,0.2);
  border-color: var(--ouro);
  color: var(--ouro-claro);
}
.chip label:hover { border-color: rgba(201,168,76,0.4); color: rgba(255,255,255,0.85); }

/* ===================== TOGGLE SIM/NÃO ===================== */
.toggle-simnao {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.toggle-opcao {
  flex: 1;
  position: relative;
}
.toggle-opcao input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.toggle-opcao label {
  display: block;
  text-align: center;
  padding: 9px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all 0.2s;
}
.toggle-opcao input:checked + label {
  background: rgba(201,168,76,0.15);
  border-color: var(--ouro);
  color: var(--ouro-claro);
}

/* ===================== TIPO CARD — 3 COLUNAS ===================== */
.tipo-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
@media (max-width: 480px) { .tipo-grid-3 { grid-template-columns: 1fr; } }
.tipo-card-titulo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

/* ===================== CALENDÁRIO ===================== */
.pag-calendario {
  min-height: 100vh;
  background: var(--roxo-escuro);
  padding: 80px 0 60px;
}
.cal-header {
  text-align: center;
  margin-bottom: 48px;
}
.cal-header h1 {
  font-family: Georgia, serif;
  font-size: clamp(24px, 4vw, 36px);
  color: var(--branco);
  margin-bottom: 8px;
}
.cal-header h1 span { color: var(--ouro); }
.cal-header p { color: rgba(255,255,255,0.5); font-size: 15px; }
.cal-filtros {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.cal-filtro {
  padding: 7px 18px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: system-ui, -apple-system, sans-serif;
}
.cal-filtro:hover { border-color: rgba(201,168,76,0.4); color: rgba(255,255,255,0.8); }
.cal-filtro.ativo {
  background: rgba(201,168,76,0.15);
  border-color: var(--ouro);
  color: var(--ouro-claro);
}
.cal-mes {
  margin-bottom: 36px;
}
.cal-mes-titulo {
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ouro);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.cal-datas { display: flex; flex-direction: column; gap: 12px; }
.cal-data-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--ouro);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.cal-data-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateX(3px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cal-data-dia {
  min-width: 48px;
  text-align: center;
}
.cal-data-num {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ouro);
  line-height: 1;
}
.cal-data-mes-abrev {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cal-data-info { flex: 1; }
.cal-data-nome {
  font-size: 15px;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 3px;
}
.cal-data-orixa {
  font-size: 12px;
  color: var(--ouro);
  margin-bottom: 6px;
}
.cal-data-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.cal-data-badge {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid;
  white-space: nowrap;
  align-self: flex-start;
  flex-shrink: 0;
}
.badge-todas     { border-color: rgba(201,168,76,0.4); color: var(--ouro); }
.badge-umbanda   { border-color: rgba(100,180,255,0.4); color: #90C8FF; }
.badge-batuque   { border-color: rgba(100,255,150,0.4); color: #90FFB0; }
.badge-candomble { border-color: rgba(255,150,100,0.4); color: #FFB090; }
.badge-quimbanda { border-color: rgba(200,100,100,0.4); color: #FF9090; }
.cal-vazio {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255,255,255,0.3);
  font-size: 15px;
}

/* ===================== RODAPÉ — SEPARADOR ===================== */
.rodape-separador {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.rodape-estrela {
  animation: rotacaoEstrela 20s linear infinite;
  opacity: 0.8;
}
@keyframes rotacaoEstrela {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.rodape-tradicoes {
  font-family: Georgia, serif;
  font-size: 10px;
  color: var(--ouro);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}
.rodape-axe {
  font-style: italic;
  color: var(--ouro);
  font-size: 15px;
  font-family: Georgia, serif;
}
.rodape-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* ===================== ANIMAÇÕES ===================== */
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageFadeIn 0.4s ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ===================== PARTÍCULAS ===================== */
.particula {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  background: var(--ouro);
  z-index: 0;
  animation: flutuarParticula linear infinite;
}
@keyframes flutuarParticula {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(var(--dx)); opacity: 0; }
}

/* ===================== NAV ESTRELA ROTAÇÃO ===================== */
.nav-logo svg, .dash-logo svg {
  animation: rotacaoEstrela 20s linear infinite;
}

/* ===================== LOADING ===================== */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}
.btn-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
  margin-left: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════
   HELP — Interrogação de ajuda (?) global
   Cor segue o Orixá de cabeça via var(--ouro)
   ══════════════════════════════════════════ */
@keyframes campotip-pulso {
  0%, 100% { text-shadow: 0 0 6px var(--ouro, #C9A84C), 0 0 14px var(--ouro, #C9A84C); }
  50%       { text-shadow: 0 0 14px var(--ouro-claro, #F0D080), 0 0 30px var(--ouro, #C9A84C), 0 0 4px #fff; }
}
@keyframes campotip-mexe {
  0%   { transform: scale(1)    rotate(0deg);   }
  20%  { transform: scale(1.45) rotate(-20deg); }
  50%  { transform: scale(1.5)  rotate(18deg);  }
  75%  { transform: scale(1.4)  rotate(-10deg); }
  100% { transform: scale(1.35) rotate(0deg);   }
}
.campo-tip {
  display: inline-block;
  cursor: help; margin-left: 8px; vertical-align: middle;
  position: relative; flex-shrink: 0;
  line-height: 1;
  background: none; border: none; outline: none; border-radius: 0;
  user-select: none;
}
.campo-tip b {
  display: inline-block;
  font-size: 18px; font-weight: 900; font-family: Arial, sans-serif;
  color: var(--ouro, #C9A84C);
  text-shadow: 0 0 6px var(--ouro, #C9A84C), 0 0 14px var(--ouro, #C9A84C);
  transition: color 0.2s;
  animation: campotip-pulso 2.4s ease-in-out infinite;
}
.campo-tip:hover b {
  color: #fff;
  text-shadow: 0 0 10px var(--ouro-claro, #F0D080), 0 0 24px var(--ouro, #C9A84C), 0 0 6px #fff;
  animation: campotip-mexe 0.45s ease forwards;
}
/* balão — aparece à direita, dentro do mesmo card */
.campo-tip::after {
  content: attr(data-tip);
  position: absolute;
  top: 50%; left: calc(100% + 12px);
  transform: translateY(-50%);
  background: rgba(10, 6, 20, 0.97);
  border: 1.5px solid var(--ouro, #C9A84C);
  color: var(--ouro-claro, #F0D080);
  font-size: 10.5px; font-weight: 500; line-height: 1.55;
  padding: 9px 12px; border-radius: 10px;
  white-space: normal; width: 220px; text-align: left;
  box-shadow: 0 8px 28px rgba(0,0,0,0.7);
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.2px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s; z-index: 500;
}
/* setinha apontando para o botão */
.campo-tip::before {
  content: '';
  position: absolute;
  top: 50%; left: calc(100% + 6px);
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-right-color: var(--ouro, #C9A84C);
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s; z-index: 501;
}
.campo-tip:hover::after,
.campo-tip:hover::before { opacity: 1; }

/* ══════════════════════════════════════════════════════
   MODO LOW-END — Android antigo / dispositivo lento
   Detectado por js/performance.js via navigator.deviceMemory,
   hardwareConcurrency e teste de FPS real.
   Zero impacto visual em dispositivos modernos.
   ══════════════════════════════════════════════════════ */

/* Remove backdrop-filter (renderização por software em GPU antiga) */
html.low-end *,
html.low-end *::before,
html.low-end *::after {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Rede de segurança: low-end nunca cria canvas (aura.js retorna cedo),
   mas se por algum motivo existir, ocultamos aqui */
html.low-end .aura-canvas-global {
  display: none !important;
}

/* Reduz sombras múltiplas para sombra única simples */
html.low-end .dash-card,
html.low-end .perfil-secao,
html.low-end .cadastro-box,
html.low-end .vert-card {
  box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
}

/* Encurta todas as transições (menos trabalho por frame) */
html.low-end * {
  transition-duration: 0.1s !important;
  animation-duration: 0.5s !important;
}

/* Desativa animações puramente decorativas */
html.low-end .campotip-pulso,
html.low-end .btn-shimmer,
html.low-end .balaoBoiar,
html.low-end .flutuarParticula {
  animation: none !important;
}

/* will-change apenas em elementos de overlay/toast — fixo na tela */
.perfil-toast,
#barra-avisos {
  will-change: transform;
}
/* ATENÇÃO: NÃO aplicar will-change em .orixa-card, .vp-card, .dash-card
   → causa flash branco no iOS/Android quando CSS variables mudam via
     aplicarTema() — o browser descarta os GPU layers e mostra branco */
