/* =============================================
   LUX — Design Dark Mode sofisticado
   Cores: Preto Carbono #0A0A0A | Ouro Rosé | Violeta Elétrico
   Tipografia: Montserrat (títulos) | Inter (corpo)
   ============================================= */

:root {
  --bg-carbon: #0A0A0A;
  --bg-card: rgba(18, 18, 22, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --text-silver: #B8B8C0;
  --text-muted: #6B6B75;
  --accent-gold: #D4AF37;
  --accent-gold-soft: #E8C547;
  --accent-violet: #8B5CF6;
  --accent-violet-glow: rgba(139, 92, 246, 0.4);
  --gradient-cta: linear-gradient(135deg, #D4AF37 0%, #8B5CF6 100%);
  --gradient-glow: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(139, 92, 246, 0.3));
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-glow: 0 0 30px var(--accent-violet-glow);
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-carbon);
  color: var(--text-silver);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--accent-gold-soft);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-violet); }

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ----- Header (sobrepõe o hero) ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: transparent;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.site-header .logo,
.site-header .nav-main a,
.site-header .btn { text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); }
.site-header.scrolled .logo,
.site-header.scrolled .nav-main a,
.site-header.scrolled .btn { text-shadow: none; }

.logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}
.logo span { color: var(--accent-gold); }

.nav-main {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-main a {
  color: var(--text-silver);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-main a:hover { color: #fff; }

.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  background: none;
  border: none;
  color: var(--text-silver);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-dropdown-trigger:hover { color: #fff; }
.nav-dropdown-trigger::after {
  content: '';
  border: 4px solid transparent;
  border-top-color: currentColor;
  margin-top: 4px;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  min-width: 160px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--text-silver);
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--bg-glass); color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-violet-glow);
}
.btn-primary:hover { box-shadow: var(--shadow-glow); }

.btn-ghost {
  background: var(--bg-glass);
  color: var(--text-silver);
  border: 1px solid var(--border-subtle);
}
.btn-ghost:hover { color: #fff; border-color: var(--accent-violet); }

/* ----- Hero / Eventos (ocupa todo o topo; header e textos sobrepostos) ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.25) 0%, rgba(10, 10, 10, 0.5) 50%, var(--bg-carbon) 100%), linear-gradient(135deg, #1a0a1a 0%, #0a0a0a 100%) center/cover no-repeat;
  background-color: #1a0a1a;
  background-size: cover;
  background-position: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-label {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--accent-gold);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-events {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}
.hero-events::-webkit-scrollbar { height: 6px; }
.hero-events::-webkit-scrollbar-track { background: var(--bg-glass); border-radius: 3px; }
.hero-events::-webkit-scrollbar-thumb { background: var(--accent-violet); border-radius: 3px; }

.event-card {
  flex: 0 0 280px;
  height: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform var(--transition);
}
.event-card:hover { transform: scale(1.02); }
.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.event-card .overlay span {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

/* ----- Stories (online) ----- */
.stories-bar {
  padding: 1rem 2rem;
  background: var(--bg-glass);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 60px;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.stories-bar h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.stories-list {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}
.story-item {
  flex: 0 0 auto;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition);
}
.story-item:hover { transform: scale(1.05); }
.story-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-violet);
  box-shadow: 0 0 12px var(--accent-violet-glow);
  margin-bottom: 0.35rem;
}
.story-item.online .story-avatar { border-color: #22c55e; box-shadow: 0 0 12px rgba(34, 197, 94, 0.4); }
.story-name {
  font-size: 0.75rem;
  color: var(--text-silver);
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ----- Filtros (sticky) ----- */
.filters-bar {
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 45;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.filters-bar label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-right: 0.35rem;
}
.filters-bar select {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--text-silver);
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  cursor: pointer;
}
.filters-bar select:focus {
  outline: none;
  border-color: var(--accent-violet);
}
.filters-bar .filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filters-bar input[type="number"] {
  width: 90px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: #fff;
  padding: 0.5rem;
  font-size: 0.9rem;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-silver);
}
.filter-check input { width: auto; }

/* ----- Vitrine de cards ----- */
.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}
.section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.profile-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-violet-glow);
}

.profile-card-image {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--bg-carbon);
}
.profile-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.profile-card:hover .profile-card-image img {
  transform: scale(1.05);
}

.profile-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}
.badge {
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-verified {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-soft));
  color: #0A0A0A;
}
.badge-online {
  background: #22c55e;
  color: #fff;
}

.profile-rating {
  position: absolute;
  bottom: 4rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent-gold);
  font-size: 0.85rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  z-index: 2;
}
.profile-rating svg { flex-shrink: 0; }

/* Nome e preço sobrepostos à imagem do card */
.profile-card-image-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 0.75rem 0.75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}
.profile-card-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}
.profile-card-price {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-gold);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.profile-card-price span { font-weight: 400; font-size: 0.8rem; color: rgba(255,255,255,0.85); }

/* Avaliação (estrelas) no perfil */
.rate-label { font-size: 0.9rem; color: var(--text-silver); margin-right: 0.5rem; }
.star-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.1rem;
  line-height: 1;
  transition: color var(--transition);
}
.star-btn:hover,
.star-btn.active { color: var(--accent-gold); }
.star-btn:focus { outline: none; }

.profile-card-body {
  padding: 1rem;
}
.profile-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: #fff;
}
.profile-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.profile-tags span {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  background: var(--bg-glass);
  border-radius: 6px;
  color: var(--text-silver);
}
.profile-price {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.profile-cta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.profile-cta .btn {
  flex: 1;
  min-width: 120px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, var(--bg-glass) 25%, rgba(255,255,255,0.08) 50%, var(--bg-glass) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.2s ease-in-out infinite;
  border-radius: var(--radius);
}
.skeleton-text { height: 1em; margin-bottom: 0.5rem; }
.skeleton-avatar { width: 56px; height: 56px; border-radius: 50%; }
.skeleton-card-image { aspect-ratio: 4/5; }
@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ----- Paginação ----- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.pagination button, .pagination a {
  padding: 0.5rem 1rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--text-silver);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.pagination button:hover:not(:disabled), .pagination a:hover {
  border-color: var(--accent-violet);
  color: #fff;
}
.pagination button:disabled { opacity: 0.5; cursor: not-allowed; }
.pagination .current { background: var(--accent-violet); border-color: var(--accent-violet); color: #fff; }

/* ----- Auth pages ----- */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.08), var(--bg-carbon));
}
.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.auth-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
.auth-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.auth-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.auth-success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
  padding: 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.auth-modal-content {
  max-width: 400px;
  width: 90vw;
}
.auth-modal-content .auth-form { margin-top: 0; }
.auth-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
}
.auth-form input::placeholder { color: var(--text-muted); }
.auth-form input:focus {
  outline: none;
  border-color: var(--accent-violet);
}
.auth-form button {
  width: 100%;
  padding: 0.9rem;
  margin-top: 0.5rem;
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow var(--transition);
}
.auth-form button:hover { box-shadow: var(--shadow-glow); }
.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ----- Planos (pricing) ----- */
.plans-section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.plans-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.plans-section .subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.popular {
  border-color: var(--accent-violet);
  box-shadow: 0 0 40px var(--accent-violet-glow);
  animation: glow-pulse 2.5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 40px var(--accent-violet-glow); }
  50% { box-shadow: 0 0 60px rgba(139, 92, 246, 0.6); }
}
.plan-card .badge-popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-cta);
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.plan-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.plan-price {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}
.plan-price span { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.plan-benefits {
  list-style: none;
  margin-bottom: 1.5rem;
}
.plan-benefits li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-silver);
}
.plan-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}
.plan-card .btn { width: 100%; padding: 0.85rem; }

/* ----- Footer ----- */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ----- Blurred content (área paga) ----- */
.content-blurred {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.content-blurred .blur-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  background: rgba(10, 10, 10, 0.6);
}
.content-blurred .blur-overlay p { color: var(--text-silver); }
.content-blurred .blur-content { filter: blur(8px); pointer-events: none; user-select: none; }

/* ----- Dashboard (admin/garota) ----- */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
}
.dashboard-sidebar {
  width: 260px;
  background: var(--bg-card);
  border-right: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
}
.dashboard-sidebar a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-silver);
  font-size: 0.95rem;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.dashboard-sidebar a:hover, .dashboard-sidebar a.active {
  color: #fff;
  background: var(--bg-glass);
  border-left-color: var(--accent-violet);
}
.dashboard-main {
  flex: 1;
  padding: 2rem;
  overflow-x: auto;
}
.dashboard-main h1 { margin-bottom: 1.5rem; font-size: 1.5rem; }
.table-wrap { overflow-x: auto; }
.dashboard-main table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.dashboard-main th, .dashboard-main td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
.dashboard-main th {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.dashboard-main tr:hover td { background: var(--bg-glass); }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-silver);
  font-size: 0.9rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-violet);
}

/* ----- Responsivo ----- */
@media (max-width: 768px) {
  .site-header { padding: 0.75rem 1rem; }
  .nav-main { gap: 1rem; font-size: 0.85rem; }
  .hero { min-height: 50vh; padding: 6rem 1rem 3rem; }
  .filters-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    align-items: center;
    padding: 1rem;
  }
  .filters-bar .filter-group { min-width: 0; }
  .filters-bar .filter-check { margin: 0; }
  .filters-bar #filter-apply { grid-column: 1 / -1; justify-self: start; }
  .main-content { padding: 1rem; }
  .profiles-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
  .dashboard-layout { flex-direction: column; }
  .dashboard-sidebar { width: 100%; display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 1rem; }
  .dashboard-sidebar a { border-left: none; border-bottom: 3px solid transparent; }
  .dashboard-sidebar a.active { border-bottom-color: var(--accent-violet); }
}

/* ----- Bastidores (listagem) ----- */
.bastidores-page { padding-top: 6rem; }
.bastidores-intro {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
}
.bastidores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .bastidores-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.bastidores-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bastidores-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.bastidores-card-bg {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-carbon);
}
.bastidores-card-bg.blurred {
  filter: blur(18px);
  transform: scale(1.08);
}
.bastidores-card-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent-gold);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  z-index: 2;
  pointer-events: none;
}
.bastidores-card-footer {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, var(--bg-card) 100%);
}
.bastidores-card-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.bastidores-card-bio {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.bastidores-card-media {
  font-size: 0.8rem;
  color: var(--text-silver);
  margin-bottom: 0.75rem;
}
.bastidores-card .btn-vip {
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  width: 100%;
  padding: 0.65rem 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-align: center;
  display: block;
  transition: opacity var(--transition);
}
.bastidores-card .btn-vip:hover { opacity: 0.95; color: #fff; }
.bastidores-card .btn-unlock { width: 100%; }
.bastidores-empty { color: var(--text-muted); padding: 2rem; text-align: center; }

/* Modal checkout Bastidores */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  max-width: 90vw;
  width: 560px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-silver);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}
.modal-close:hover { color: #fff; }
.modal-title { margin-bottom: 0.25rem; font-size: 1.25rem; }
.modal-subtitle { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.checkout-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .checkout-options { grid-template-columns: 1fr; }
}
.checkout-option {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  position: relative;
}
.checkout-option.popular { border-color: var(--accent-gold); box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
.checkout-option h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.checkout-option p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.checkout-price { font-family: var(--font-title); font-weight: 700; color: var(--accent-gold); font-size: 1.1rem; margin-bottom: 0.75rem !important; }
.checkout-option .btn { display: block; text-align: center; }
.checkout-option .badge-popular { position: absolute; top: -0.5rem; right: 0.75rem; font-size: 0.7rem; }

.hidden { display: none !important; }

/* ----- Sala VIP ----- */
.sala-vip-page { padding-top: 0; min-height: 100vh; background: var(--bg-carbon); }
.sala-vip-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
}
.btn-back {
  color: var(--text-silver);
  font-size: 0.9rem;
  padding: 0.5rem 0;
}
.btn-back:hover { color: #fff; }
.sala-vip-profile { display: flex; align-items: center; gap: 1rem; flex: 1; }
.sala-vip-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-carbon);
}
.sala-vip-name { font-size: 1.1rem; margin: 0; display: flex; align-items: center; gap: 0.5rem; }
.sala-vip-main { padding: 1.5rem; max-width: 900px; margin: 0 auto; }
.sala-vip-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
.sala-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.sala-tab:hover { color: var(--text-silver); }
.sala-tab.active { color: var(--accent-gold); border-bottom-color: var(--accent-gold); }
.sala-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.sala-media-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}
.sala-media-item img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
}
.sala-media-item video,
.sala-media-item iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  vertical-align: top;
}
.sala-media-item video { object-fit: contain; background: #000; }
.sala-empty { color: var(--text-muted); padding: 2rem; text-align: center; }
.sala-chat-messages {
  min-height: 280px;
  max-height: 400px;
  overflow-y: auto;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  margin-bottom: 1rem;
}
.sala-msg { margin-bottom: 1rem; }
.sala-msg-me { text-align: right; }
.sala-msg-me .sala-msg-body { background: var(--accent-violet); color: #fff; }
.sala-msg-them .sala-msg-body { background: var(--bg-glass); }
.sala-msg-body {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  max-width: 80%;
  word-wrap: break-word;
}
.sala-msg-time { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }
.sala-chat-form {
  display: flex;
  gap: 0.5rem;
}
.sala-chat-form input { flex: 1; padding: 0.75rem 1rem; border-radius: var(--radius); border: 1px solid var(--border-subtle); background: var(--bg-card); color: #fff; }
.sala-chat-form input:focus { outline: none; border-color: var(--accent-violet); }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-content {
  max-width: 95vw;
  max-height: 95vh;
  position: relative;
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-content img { max-width: 100%; max-height: 95vh; object-fit: contain; pointer-events: none; }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ----- Garota Sala (Bastidores) ----- */
.sala-message { color: #22c55e; margin-bottom: 1rem; }
.sala-online-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-silver);
}
.sala-online-toggle input { width: auto; cursor: pointer; }
.sala-online-toggle span { user-select: none; }
.sala-stats { color: var(--text-muted); margin-bottom: 1.5rem; }
.sala-actions { margin-bottom: 1.5rem; }
.sala-fab-menu { position: relative; }
.sala-fab { padding: 0.75rem 1.25rem; }
.sala-fab-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 180px;
  z-index: 10;
}
.sala-fab-option {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--text-silver);
  border-radius: 6px;
}
.sala-fab-option:hover { background: var(--bg-glass); color: #fff; }
.sala-upload-forms { margin-bottom: 1rem; }
.sala-upload-form input[type="file"] { margin-right: 0.5rem; margin-bottom: 0.5rem; }
.sala-hint { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.sala-media-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.sala-media-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-carbon);
}
.sala-media-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sala-media-video-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  color: var(--text-silver);
  font-size: 0.9rem;
}
.sala-media-delete { position: absolute; top: 0.25rem; right: 0.25rem; margin: 0; }
.sala-media-delete .btn-delete {
  background: rgba(0,0,0,0.7);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  line-height: 1;
}
.sala-media-delete .btn-delete:hover { background: #c00; }
.sala-empty-msg { color: var(--text-muted); padding: 1rem 0; }
.sala-chat-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 768px) { .sala-chat-panel { grid-template-columns: 1fr; } }
.sala-clients { border-right: 1px solid var(--border-subtle); padding-right: 1rem; }
.sala-client-item {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--text-silver);
  border-radius: var(--radius);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}
.sala-client-item:hover { background: var(--bg-glass); color: #fff; }
.sala-client-item.active { background: var(--accent-violet); color: #fff; }
.sala-thread-messages {
  max-height: 320px;
  overflow-y: auto;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  margin-bottom: 1rem;
}
.sala-reply-form {
  display: flex;
  gap: 0.5rem;
}
.sala-reply-form input[type="text"] { flex: 1; padding: 0.75rem 1rem; border-radius: var(--radius); border: 1px solid var(--border-subtle); background: var(--bg-card); color: #fff; }
.sala-reply-form input:focus { outline: none; border-color: var(--accent-violet); }
