/**
 * BellaVIP Theme - Estilos Principais
 * Design escuro de luxo para plataforma VIP e acompanhantes
 */

/* ==========================================================================
   1. Reset e Configurações Globais
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bv-bg-main, #0b0b0e);
  color: #d8d8e6;
  font-family: var(--bv-font-main, 'Outfit', sans-serif);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.bv-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   2. Header e Barra Superior
   ========================================================================== */
.bv-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 11, 14, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.3s ease;
}

.bv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

/* Logo BellaVIP */
.bv-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.bv-logo-text {
  display: flex;
  flex-direction: column;
}

.bv-brand-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 3px;
}

.bv-brand-title .bv-brand-vip {
  color: #ff1a53;
  position: relative;
  display: inline-block;
}

.bv-brand-title .bv-crown-icon {
  color: #ffb800;
  font-size: 16px;
  margin-left: 2px;
  filter: drop-shadow(0 0 6px rgba(255, 184, 0, 0.6));
}

.bv-brand-subtitle {
  font-size: 9px;
  font-weight: 700;
  color: #8a8a9e;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Menu de Navegação */
.bv-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 26px;
}

.bv-nav-item a {
  font-size: 13px;
  font-weight: 600;
  color: #c4c4d4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

.bv-nav-item.active a,
.bv-nav-item a:hover {
  color: #ffffff;
}

.bv-nav-item.active a::after,
.bv-nav-item a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff1a53;
  border-radius: 2px;
  box-shadow: 0 0 8px #ff1a53;
}

/* Busca Rápida */
.bv-header-search {
  position: relative;
  flex: 1;
  max-width: 280px;
}

.bv-search-input {
  width: 100%;
  background: #161620;
  border: 1px solid #282836;
  color: #ffffff;
  padding: 8px 36px 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  transition: all 0.25s ease;
}

.bv-search-input:focus {
  outline: none;
  border-color: #ff1a53;
  box-shadow: 0 0 12px rgba(255, 26, 83, 0.3);
  background: #1a1a26;
}

.bv-search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #7b7b90;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Botões do Topo */
.bv-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bv-btn-login {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bv-btn-login:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.bv-btn-register {
  background: linear-gradient(135deg, #ff2a6d 0%, #ff1a53 100%);
  border: none;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 26, 83, 0.4);
  transition: all 0.25s ease;
}

.bv-btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 26, 83, 0.6);
  background: linear-gradient(135deg, #ff3b7a 0%, #ff1a53 100%);
}

.bv-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* ==========================================================================
   3. Seção Hero (Banner Principal + Card de Planos)
   ========================================================================== */
.bv-hero-section {
  padding: 24px 0 35px 0;
}

.bv-hero-grid {
  display: grid;
  grid-template-columns: 65% 33%;
  gap: 2%;
  align-items: stretch;
}

/* Banner Hero Esquerda */
.bv-hero-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-color: #121218;
  background-size: cover;
  background-position: center;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 45px 40px 30px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 14, 0.88) 0%, rgba(11, 11, 14, 0.65) 55%, rgba(11, 11, 14, 0.25) 100%);
  pointer-events: none;
}

.bv-hero-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.bv-hero-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.bv-hero-title-highlight {
  color: #ff1a53;
  display: block;
  text-shadow: 0 0 20px rgba(255, 26, 83, 0.35);
}

.bv-hero-bullets {
  list-style: none;
  margin-bottom: 28px;
}

.bv-hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e2ee;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.bv-hero-bullets li svg,
.bv-hero-bullets li span.check-icon {
  color: #ff1a53;
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
}

.bv-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.bv-btn-cta-primary {
  background: linear-gradient(135deg, #ff2a6d 0%, #ff1a53 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(255, 26, 83, 0.45);
  transition: all 0.25s ease;
}

.bv-btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 26, 83, 0.7);
}

.bv-btn-cta-secondary {
  background: rgba(18, 18, 24, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.bv-btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.bv-hero-dots {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.bv-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.bv-hero-dot.active {
  width: 22px;
  border-radius: 4px;
  background: #ff1a53;
  box-shadow: 0 0 8px #ff1a53;
}

/* Card Direita: Escolha seu Nível de Acesso */
.bv-plans-sidecard {
  background: #14141c;
  border: 1px solid #232330;
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.bv-sidecard-header h3 {
  font-size: 14px;
  font-weight: 700;
  color: #a5a5b8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bv-plans-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bv-plan-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #181824;
  border: 1px solid #262638;
  transition: all 0.25s ease;
}

.bv-plan-item:hover {
  border-color: #3b3b52;
  background: #1c1c2b;
  transform: translateX(3px);
}

.bv-plan-icon {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bv-plan-info {
  flex: 1;
}

.bv-plan-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.bv-plan-name {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.bv-plan-price {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.bv-plan-price span.period {
  font-size: 11px;
  color: #8e8ea2;
  font-weight: 400;
}

.bv-plan-subline {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #8e8ea2;
}

.bv-plan-item.gold {
  border-left: 3px solid #ffb800;
}
.bv-plan-item.gold .bv-plan-icon {
  color: #ffb800;
}

.bv-plan-item.purple {
  border-left: 3px solid #d946ef;
}
.bv-plan-item.purple .bv-plan-icon {
  color: #d946ef;
}

.bv-btn-view-all-plans {
  margin-top: 20px;
  width: 100%;
  background: #1c1c28;
  border: 1px solid #ff1a53;
  color: #ff1a53;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  display: block;
}

.bv-btn-view-all-plans:hover {
  background: #ff1a53;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 26, 83, 0.4);
}

/* ==========================================================================
   4. Seção Destaque / Perfis em Alta
   ========================================================================== */
.bv-section {
  padding: 30px 0;
}

.bv-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bv-section-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.bv-section-title .bv-icon-flame {
  color: #ff1a53;
}

.bv-view-all-link {
  font-size: 12px;
  font-weight: 700;
  color: #ff1a53;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bv-view-all-link:hover {
  color: #ff4d7a;
  transform: translateX(2px);
}

/* Grid de Perfis em Alta */
.bv-creators-slider-wrap {
  position: relative;
}

.bv-creators-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.bv-creator-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #14141c;
  border: 1px solid #232330;
  aspect-ratio: 3 / 4.2;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.bv-creator-card:hover {
  transform: translateY(-4px);
  border-color: #ff1a53;
  box-shadow: 0 10px 24px rgba(255, 26, 83, 0.35);
}

.bv-creator-img-wrap {
  position: absolute;
  inset: 0;
}

.bv-creator-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bv-creator-card:hover .bv-creator-img {
  transform: scale(1.05);
}

.bv-creator-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 40%, rgba(11,11,14,0.95) 100%);
  pointer-events: none;
}

/* Badges Flutuantes */
.bv-card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.bv-card-tag.tag-em-alta {
  background: #ff1a53;
  color: #fff;
}
.bv-card-tag.tag-novidade {
  background: #ff7700;
  color: #fff;
}
.bv-card-tag.tag-exclusivo {
  background: #7928ca;
  color: #fff;
}
.bv-card-tag.tag-vip {
  background: #ffb800;
  color: #111;
}

/* Informações do Perfil no Card */
.bv-creator-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 12px;
  z-index: 2;
}

.bv-creator-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bv-verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  background: #ff1a53;
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: bold;
}

.bv-creator-location {
  font-size: 11px;
  color: #a5a5b8;
  display: flex;
  align-items: center;
  gap: 5px;
}

.bv-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00e676;
}

.bv-status-dot.red {
  background: #ff1a53;
}

/* ==========================================================================
   5. Seção Categorias
   ========================================================================== */
.bv-categories-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.bv-category-pill {
  background: #14141c;
  border: 1px solid #232330;
  border-radius: 10px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  transition: all 0.25s ease;
}

.bv-category-pill:hover {
  background: #1c1c28;
  border-color: #ff1a53;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 26, 83, 0.2);
}

.bv-category-icon {
  font-size: 18px;
  color: #ff1a53;
  margin-bottom: 2px;
}

.bv-category-name {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.bv-category-count {
  font-size: 10px;
  color: #8a8a9e;
}

/* ==========================================================================
   6. Seção Conteúdos Recentes + Acompanhantes / Assinatura
   ========================================================================== */
.bv-split-layout {
  display: grid;
  grid-template-columns: 65% 33%;
  gap: 2%;
  align-items: start;
}

/* Grade de Vídeos Recentes */
.bv-videos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.bv-video-card {
  position: relative;
  background: #14141c;
  border: 1px solid #232330;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.bv-video-card:hover {
  border-color: #3f3f56;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.bv-video-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.bv-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bv-video-card:hover .bv-video-thumb {
  transform: scale(1.06);
}

.bv-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(11,11,14,0.9) 100%);
}

.bv-video-tier-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.bv-video-tier-badge.tier-premium {
  background: #7928ca;
  color: #fff;
}

.bv-video-tier-badge.tier-vip {
  background: #ff1a53;
  color: #fff;
}

.bv-video-duration {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.bv-video-info {
  padding: 10px;
}

.bv-video-title {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bv-video-creator {
  font-size: 10px;
  color: #a5a5b8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bv-video-creator .bv-check {
  color: #ff1a53;
  font-size: 9px;
}

/* Coluna Direita: Cards de Acompanhantes e Assinatura */
.bv-right-cards-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card 1: Acompanhantes Disponíveis */
.bv-escorts-banner-card {
  position: relative;
  background: #14141c;
  border: 1px solid #232330;
  border-radius: 14px;
  overflow: hidden;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bv-escorts-card-bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 45%;
  object-fit: cover;
  opacity: 0.6;
  pointer-events: none;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, transparent 100%);
}

.bv-escorts-card-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
}

.bv-escorts-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.bv-escorts-card-sub {
  font-size: 12px;
  color: #ff1a53;
  font-weight: 600;
  margin-bottom: 16px;
}

.bv-escorts-checklist {
  list-style: none;
  margin-bottom: 20px;
}

.bv-escorts-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #d6d6e2;
  margin-bottom: 8px;
  font-weight: 500;
}

.bv-escorts-checklist li span.icon {
  color: #ff1a53;
}

.bv-btn-see-escorts {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(135deg, #ff2a6d 0%, #ff1a53 100%);
  color: #ffffff;
  padding: 12px;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 26, 83, 0.4);
  transition: all 0.25s ease;
  display: block;
}

.bv-btn-see-escorts:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 26, 83, 0.6);
}

/* Card 2: Assine Ilimitado */
.bv-unlimited-card {
  background: #14141c;
  border: 1px solid #232330;
  border-radius: 14px;
  padding: 24px 20px;
}

.bv-unlimited-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 18px;
}

.bv-unlimited-title span.highlight {
  color: #ff1a53;
}

.bv-unlimited-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
  text-align: center;
}

.bv-perk-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.bv-perk-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1c1c28;
  border: 1px solid #2e2e40;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff1a53;
  font-size: 15px;
}

.bv-perk-text {
  font-size: 10px;
  color: #a5a5b8;
  line-height: 1.2;
}

.bv-btn-subscribe-now {
  width: 100%;
  background: linear-gradient(135deg, #ff2a6d 0%, #ff1a53 100%);
  color: #ffffff;
  padding: 13px;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 26, 83, 0.4);
  transition: all 0.25s ease;
}

.bv-btn-subscribe-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 26, 83, 0.6);
}

/* ==========================================================================
   7. Barra de Selos de Confiança (Trust Badges) e Rodapé
   ========================================================================== */
.bv-trust-bar {
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #0e0e13;
}

.bv-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.bv-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bv-trust-icon {
  font-size: 26px;
  color: #ff1a53;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bv-trust-text h4 {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.bv-trust-text p {
  font-size: 11px;
  color: #7b7b90;
}

/* Footer Bottom */
.bv-footer {
  background: #0b0b0e;
  padding: 35px 0 25px 0;
  font-size: 12px;
  color: #7b7b90;
}

.bv-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 20px;
}

.bv-footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.bv-footer-links a:hover {
  color: #ff1a53;
}

.bv-badge-18 {
  background: #ff1a53;
  color: #ffffff;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
}

.bv-footer-disclaimer {
  font-size: 11px;
  color: #555566;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 20px;
}

/* ==========================================================================
   8. Página de Perfil da Criadora (single-criador.php)
   ========================================================================== */
.bv-profile-hero {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
}

.bv-profile-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,14,0.3) 0%, rgba(11,11,14,0.95) 100%);
}

.bv-profile-header-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  transform: translateY(-40px);
  margin-bottom: -20px;
  gap: 25px;
  flex-wrap: wrap;
}

.bv-profile-avatar-wrap {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.bv-profile-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid #161620;
  box-shadow: 0 8px 24px rgba(0,0,0,0.8);
  object-fit: cover;
}

.bv-profile-title-block h1 {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bv-profile-meta-pills {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  font-size: 12px;
  color: #a5a5b8;
}

.bv-profile-actions {
  display: flex;
  gap: 12px;
}

.bv-profile-tabs-nav {
  display: flex;
  border-bottom: 1px solid #232330;
  margin: 25px 0;
  gap: 10px;
}

.bv-profile-tab-btn {
  background: transparent;
  border: none;
  color: #a5a5b8;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.bv-profile-tab-btn.active,
.bv-profile-tab-btn:hover {
  color: #ffffff;
}

.bv-profile-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ff1a53;
  border-radius: 3px;
}

.bv-tab-content {
  display: none;
}

.bv-tab-content.active {
  display: block;
}

/* Grade de Fotos do Perfil com Blur VIP */
.bv-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bv-gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #14141c;
}

.bv-gallery-item.locked img {
  filter: blur(14px);
  transform: scale(1.1);
}

.bv-lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 14, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 8px;
  text-align: center;
  padding: 15px;
}

.bv-lock-overlay span.lock-icon {
  font-size: 26px;
  color: #ff1a53;
}

/* ==========================================================================
   9. Painéis do Usuário e da Criadora
   ========================================================================== */
.bv-dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  padding: 40px 0;
}

.bv-dashboard-sidebar {
  background: #14141c;
  border: 1px solid #232330;
  border-radius: 12px;
  padding: 20px;
  height: fit-content;
}

.bv-dash-user-card {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #232330;
  margin-bottom: 20px;
}

.bv-dash-user-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  border: 2px solid #ff1a53;
}

.bv-dash-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bv-dash-menu-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: #a5a5b8;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.bv-dash-menu-btn:hover,
.bv-dash-menu-btn.active {
  background: #1c1c28;
  color: #ff1a53;
}

.bv-dashboard-main {
  background: #14141c;
  border: 1px solid #232330;
  border-radius: 12px;
  padding: 30px;
}

/* Modais */
.bv-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.bv-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.bv-modal-box {
  background: #161622;
  border: 1px solid #2a2a3c;
  border-radius: 14px;
  width: 100%;
  max-width: 500px;
  padding: 30px;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.bv-modal-backdrop.open .bv-modal-box {
  transform: translateY(0);
}

.bv-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: #a5a5b8;
  font-size: 20px;
  cursor: pointer;
}

/* ==========================================================================
   10. Responsividade (Mobile First Breakpoints)
   ========================================================================== */
@media (max-width: 1200px) {
  .bv-creators-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bv-categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .bv-videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bv-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .bv-nav-menu,
  .bv-header-search {
    display: none;
  }
  .bv-mobile-toggle {
    display: block;
  }
  .bv-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bv-split-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .bv-dashboard-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bv-hero-title {
    font-size: 28px;
  }
  .bv-hero-banner {
    padding: 30px 20px;
  }
  .bv-creators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .bv-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bv-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bv-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bv-trust-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .bv-profile-header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .bv-profile-avatar-wrap {
    flex-direction: column;
    align-items: center;
  }
}
