body { background: #1A0E00; min-height: 100vh; display: flex; flex-direction: column; }

/* ── Topbar ── */
.louvor-topbar {
  height: 58px;
  background: rgba(26,14,0,.95);
  border-bottom: 1px solid rgba(200,149,42,.2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  position: sticky; top: 0; z-index: 100;
}

.topbar-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.topbar-logo img  { height: 34px; }
.topbar-logo span { font-size: 15px; font-weight: 700; color: #fff; }
.topbar-logo .area { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

.topbar-right { display: flex; align-items: center; gap: 12px; }
.user-info { font-size: 13px; color: rgba(255,255,255,.6); }
.user-info strong { color: #fff; }

.btn-topbar {
  padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 600;
  font-family: var(--font); cursor: pointer; border: none; transition: background .2s;
}

.btn-back {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.8);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}

.btn-back:hover { background: rgba(255,255,255,.15); }
.btn-out { background: rgba(200,149,42,.15); color: var(--gold); border: 1px solid rgba(200,149,42,.3); }
.btn-out:hover { background: rgba(200,149,42,.25); }

/* ── Conteúdo ── */
.page-content {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 60px 5%;
  background-image:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(200,149,42,.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(139,96,16,.2) 0%, transparent 55%);
}

.wip-inner { text-align: center; max-width: 580px; }

.wip-icon-big {
  width: 100px; height: 100px; border-radius: 30px;
  background: linear-gradient(135deg, rgba(200,149,42,.35), rgba(139,96,16,.3));
  border: 1.5px solid rgba(200,149,42,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 46px; margin: 0 auto 28px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.wip-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,149,42,.12); border: 1.5px solid rgba(200,149,42,.3);
  color: var(--gold); font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 20px;
}

.wip-badge .dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.6); }
}

.wip-inner h1 { font-size: clamp(28px, 6vw, 48px); font-weight: 800; color: #fff; letter-spacing: -.5px; margin-bottom: 14px; }
.wip-inner h1 span { color: var(--gold); }
.wip-inner p  { font-size: 17px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 36px; }

.prog-wrap { max-width: 320px; margin: 0 auto 40px; }
.prog-label { display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.prog-bar { height: 5px; background: rgba(255,255,255,.1); border-radius: 10px; overflow: hidden; }
.prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #E8C060);
  border-radius: 10px; animation: prog 2s ease-out forwards; width: 0;
}

@keyframes prog { to { width: 45%; } }

.footer-wip { padding: 20px; text-align: center; font-size: 12px; color: rgba(255,255,255,.2); }
