/* Gadalai Hub 2.5 — Estilos globais mínimos
   Tudo que não é razoável fazer via classes utilitárias Tailwind vive aqui. */

html, body {
  background: #000;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: rgba(250,204,21,0.35); }

/* ===== Recorte Hub — High-Contrast Typography de fundo na Sidebar ===== */
.recorte-g {
  position: absolute;
  top: -80px;
  left: -60px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 620px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(250, 204, 21, 0.06);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* ===== Nav links ===== */
.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(243, 241, 234, 0.68);
  transition: background-color .18s ease, color .18s ease, padding-left .18s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.nav-link svg { flex-shrink: 0; opacity: 0.75; transition: opacity .18s ease; }
.nav-link:hover {
  background: rgba(255,255,255,0.045);
  color: #F3F1EA;
  padding-left: 16px;
}
.nav-link:hover svg { opacity: 1; }
.nav-link.active {
  background: rgba(250, 204, 21, 0.08);
  border-color: rgba(250, 204, 21, 0.25);
  color: #FACC15;
}
.nav-link.active svg { opacity: 1; stroke: #FACC15; }

.nav-group-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #5c5c59;
  padding: 18px 12px 8px;
}

/* ===== Avatares ===== */
.avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 700;
  color: #000;
  border: 2px solid #000;
}
.avatar-more {
  background: #1a1a1a;
  color: #8A8A87;
  border: 2px solid #000;
}

/* ===== Vertical Card — Glassmorphism sutil ===== */
.vcard {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.012) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 26px 22px 22px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease;
}

.vcard--active { cursor: pointer; }
.vcard--active:hover {
  transform: scale(1.035);
  border-color: rgba(250, 204, 21, 0.4);
  box-shadow: 0 24px 60px -20px rgba(250,204,21,0.18), 0 0 0 1px rgba(250,204,21,0.12);
  z-index: 5;
}
.vcard--active:hover .vcard-icon { border-color: rgba(250,204,21,0.55); color: #FACC15; }
.vcard--active:hover .vcard-arrow { opacity: 1; transform: translate(2px,-2px); }

.vcard-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8C558;
  transition: border-color .25s ease, color .25s ease;
}

.vcard-arrow {
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.vcard-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.15;
  color: #F3F1EA;
}

.vcard-sub {
  font-size: 12.5px;
  color: #8A8A87;
  line-height: 1.4;
}

/* Estado: Em Breve */
.vcard--soon {
  cursor: default;
}
.vcard--soon .vcard-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.vcard--soon .vcard-overlay span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #FACC15;
  border: 1px solid rgba(250,204,21,0.4);
  border-radius: 999px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.5);
}
.vcard--soon { pointer-events: none; }

/* Estado: Oculto */
.vcard--hidden { display: none; }

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  display: inline-block;
}

@media (max-width: 768px) {
  .recorte-g { font-size: 320px; }
}