/* ═══════════════════════════════════════════
   VELVET CLUB — Tema Dark + Gold Premium
   Design de luxo para casa noturna
   ═══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --bg-card: #111111;
  --bg-elevated: #181818;
  --gold: #c8a44e;
  --gold-light: #e4cc7a;
  --gold-dark: #8b6914;
  --gold-glow: rgba(200, 164, 78, 0.12);
  --gold-glow-strong: rgba(200, 164, 78, 0.25);
  --text: #e8e8e8;
  --text-muted: #a0a0a0;
  --text-dim: #606060;
  --border: #1e1e1e;
  --border-light: #2a2a2a;
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.15s ease;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.3);
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.7);
  --shadow-gold: 0 4px 32px rgba(200, 164, 78, 0.15);
  --max-width: 1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

/* ── Tipografia ── */
h1, h2, h3, h4 { font-weight: 400; line-height: 1.3; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border: none; border-radius: 50px;
  font-family: var(--font); font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; line-height: 1.2;
  letter-spacing: 0.01em;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000; font-weight: 600;
  box-shadow: 0 4px 20px rgba(200, 164, 78, 0.3);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(200, 164, 78, 0.45); color: #000; }
.btn-gold-outline {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold-dark);
}
.btn-gold-outline:hover { background: var(--gold-glow); border-color: var(--gold); color: var(--gold-light); }
.btn-outline { background: rgba(255,255,255,0.03); color: var(--text-muted); border: 1.5px solid rgba(255,255,255,0.1); }
.btn-outline:hover { background: var(--bg-elevated); border-color: var(--text-dim); color: var(--text); }
.btn-whatsapp {
  background: #25d366; color: #fff; padding: 14px 24px; font-weight: 600;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover { background: #20bd5a; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35); }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-full { width: 100%; }
.btn-danger { background: transparent; color: #f87171; border: 1.5px solid rgba(248,113,113,0.25); }
.btn-danger:hover { background: rgba(248,113,113,0.1); border-color: #f87171; color: #fca5a5; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; font-size: 1.1rem; }

/* ── Inputs ── */
.input {
  width: 100%; padding: 12px 16px;
  background: var(--bg); color: var(--text);
  border: 1.5px solid var(--border-light); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 0.9rem;
  transition: all var(--transition);
}
.input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.input::placeholder { color: var(--text-dim); }
.textarea { resize: vertical; min-height: 90px; }
.input-sm { padding: 8px 12px; font-size: 0.82rem; }
.file-input {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--bg);
  border: 1.5px dashed var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 100%;
  transition: all var(--transition);
}
.file-input:hover {
  border-color: var(--gold);
  background: var(--bg-2);
}
.file-input::file-selector-button {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 14px;
  transition: all var(--transition);
}
.file-input::file-selector-button:hover {
  background: var(--gold-light);
  box-shadow: 0 2px 12px rgba(200, 164, 78, 0.35);
}
.file-input:focus { outline: none; border-color: var(--gold); }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em;
}
.form-row { display: flex; gap: 16px; }
.form-row > .form-group { flex: 1; }
.form-group-sm { flex: 0 0 130px !important; }
.form-check { display: flex; align-items: flex-end; }
.checkbox-label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 0.9rem; }
.checkbox-label input[type="checkbox"] { accent-color: var(--gold); width: 18px; height: 18px; }
.form-error { color: #f87171; font-size: 0.82rem; margin-top: 8px; }
.form-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 28px; }
.form-inline { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
.form-hint { font-size: 0.78rem; color: var(--text-dim); margin-top: 4px; }

.admin-form { max-width: 640px; }

/* ── Header ── */
#site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5,5,5,0.88); backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.header-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 70px;
}
.header-brand { display: flex; align-items: center; gap: 14px; }
.header-logo { height: 40px; width: auto; border-radius: var(--radius-sm); }
.header-name {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.01em;
}
.header-nav { display: flex; align-items: center; gap: 28px; }
.nav-link { color: var(--text-muted); font-size: 0.85rem; font-weight: 400; letter-spacing: 0.02em; transition: color var(--transition); }
.nav-link:hover { color: var(--gold); }
.btn-mobile-menu { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* ── Hero / Carrossel ── */
.hero-section { position: relative; background: var(--bg); overflow: hidden; }
.hero-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.carousel { position: relative; width: 100%; height: 580px; overflow: hidden; }
.carousel-track { display: flex; height: 100%; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.carousel-slide { min-width: 100%; height: 100%; position: relative; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.3) 0%, transparent 30%, transparent 60%, rgba(5,5,5,0.85) 100%);
}
.carousel-slide .caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 60px 48px 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}
.carousel-slide .caption span {
  font-family: var(--font-display); font-size: 2.2rem; color: var(--gold-light);
  display: block; margin-bottom: 4px;
}
.carousel-slide .caption small {
  font-size: 0.95rem; color: var(--text-muted); font-weight: 300; letter-spacing: 0.03em;
}

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  background: rgba(0,0,0,0.45); color: #fff; border: 1.5px solid rgba(255,255,255,0.15);
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.3rem; cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.carousel-btn:hover { background: rgba(200,164,78,0.2); border-color: var(--gold); color: var(--gold-light); }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.3); cursor: pointer; transition: all var(--transition);
}
.carousel-dot.active { background: var(--gold); box-shadow: 0 0 8px var(--gold-glow-strong); transform: scale(1.3); }

.carousel-placeholder {
  display: flex; align-items: center; justify-content: center;
  height: 400px; background: var(--bg-2); color: var(--text-dim);
}
.placeholder-content { text-align: center; }
.placeholder-icon { font-size: 3.5rem; display: block; margin-bottom: 12px; opacity: 0.3; }

/* ── Seções ── */
.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 500;
  color: var(--text); letter-spacing: -0.01em;
  line-height: 1.2;
}
.section-title em { font-style: normal; color: var(--gold); }
.section-line {
  width: 80px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto 0;
}

/* ── Sobre ── */
.sobre-section { background: var(--bg); }
.sobre-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: start; }
.club-description {
  font-size: 1.1rem; line-height: 1.9; color: var(--text-muted);
  margin-bottom: 32px;
}
.club-features { display: flex; gap: 40px; flex-wrap: wrap; }
.club-feature { display: flex; align-items: center; gap: 10px; }
.club-feature-icon { font-size: 1.1rem; color: var(--gold); }
.club-feature-text { font-size: 0.88rem; color: var(--text-muted); }

.sobre-info { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  padding: 20px 24px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: flex-start; gap: 16px;
  transition: all var(--transition);
}
.info-card:hover { border-color: var(--border-light); background: var(--bg-elevated); }
.info-card-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold-glow);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  flex-shrink: 0; border: 1px solid rgba(200,164,78,0.15);
}
.info-card-content h4 { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; font-weight: 600; }
.info-card-content p { color: var(--text); font-size: 0.95rem; }

/* ── Acompanhantes ── */
.acompanhantes-section { background: var(--bg-2); }
.acompanhantes-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,164,78,0.15), transparent);
}
.companions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.companion-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
  position: relative; cursor: pointer;
}
.companion-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
}
.companion-card-photo {
  width: 100%; height: 380px; object-fit: cover;
  background: var(--bg);
  transition: transform 0.6s ease;
}
.companion-card:hover .companion-card-photo { transform: scale(1.04); }
.companion-card-body {
  padding: 24px; position: relative;
}
.companion-card-body::before {
  content: ''; position: absolute; top: -20px; left: 24px; right: 24px; height: 20px;
  background: linear-gradient(transparent, var(--bg-card));
}
.companion-card-name {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 500;
  color: var(--text); margin-bottom: 2px;
}
.companion-card-age {
  font-size: 0.85rem; color: var(--gold); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.companion-card-age::before { content: ''; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.companion-card-desc {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px;
}
.companion-card-price {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px;
  background: var(--gold-glow); color: var(--gold-light);
  border: 1px solid var(--gold-dark); border-radius: 50px;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em;
}
.companion-card-price::before { content: '✦'; font-size: 0.6rem; }

/* ── Footer ── */
.site-footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 80px 0 30px; position: relative;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 64px;
  margin-bottom: 48px;
}
.footer-brand .footer-name {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); margin-bottom: 8px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--text); font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 16px; font-weight: 600;
}
.footer-col p, .footer-col a {
  color: var(--text-muted); font-size: 0.9rem; display: block;
  margin-bottom: 8px; line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  text-align: center; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.82rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem; transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }

.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  box-shadow: 0 4px 28px rgba(37,211,102,0.4);
  border-radius: 50px;
}

/* ── Empty state ── */
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-dim); }
.empty-state .empty-icon { font-size: 2.5rem; opacity: 0.3; margin-bottom: 12px; }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-box {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 36px;
  max-width: 460px; width: 100%; position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.modal-box.modal-lg { max-width: 640px; }
.modal-title {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--gold);
  margin-bottom: 6px;
}
.modal-sub { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 28px; }
.btn-close-modal {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--text-dim);
  font-size: 1.5rem; cursor: pointer; line-height: 1; transition: color var(--transition);
}
.btn-close-modal:hover { color: var(--text); }

.login-form { display: flex; flex-direction: column; gap: 18px; }
.login-form .btn { margin-top: 4px; }

/* ── Admin Panel ── */
.admin-panel {
  position: fixed; inset: 0; z-index: 150;
  display: flex; background: var(--bg);
  animation: fadeIn 0.2s ease;
}
.admin-sidebar {
  width: 260px; flex-shrink: 0;
  background: var(--bg-2); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; padding: 28px 0;
}
.admin-logo {
  font-family: var(--font-display); color: var(--gold); font-size: 1.15rem;
  padding: 0 24px 24px; border-bottom: 1px solid var(--border);
  margin-bottom: 20px; letter-spacing: 0.02em;
}
.admin-nav { flex: 1; padding: 0 14px; display: flex; flex-direction: column; gap: 4px; }
.admin-tab {
  text-align: left; padding: 11px 16px; border: none; border-radius: var(--radius-sm);
  background: transparent; color: var(--text-muted);
  font-family: var(--font); font-size: 0.88rem; cursor: pointer;
  transition: all var(--transition); display: flex; align-items: center; gap: 10px;
}
.admin-tab:hover { background: var(--bg-elevated); color: var(--text); }
.admin-tab.active { background: var(--gold-glow); color: var(--gold); font-weight: 500; }
.admin-tab .tab-icon { font-size: 1rem; width: 20px; text-align: center; }
.admin-sidebar-footer {
  padding: 20px 14px 0; border-top: 1px solid var(--border);
  margin: 16px 14px 0; display: flex; flex-direction: column; gap: 10px;
}

.admin-main {
  flex: 1; overflow-y: auto; padding: 40px 48px;
  scroll-behavior: smooth;
}
.admin-main::-webkit-scrollbar { width: 6px; }
.admin-main::-webkit-scrollbar-track { background: transparent; }
.admin-main::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }

.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; animation: fadeIn 0.3s ease; }
.admin-heading {
  font-family: var(--font-display); font-size: 1.7rem; color: var(--gold);
  margin-bottom: 28px; font-weight: 500;
}
.admin-subheading { color: var(--text); font-size: 1.15rem; font-weight: 500; margin-bottom: 16px; }
.admin-tab-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 16px; }
.admin-tab-header .admin-heading { margin-bottom: 0; }
.admin-section-divider { border: none; border-top: 1px solid var(--border); margin: 36px 0; }

/* Admin list */
.admin-list { display: flex; flex-direction: column; gap: 10px; }
.admin-list-item {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color var(--transition);
}
.admin-list-item:hover { border-color: var(--border-light); }
.admin-list-item .thumb { width: 52px; height: 52px; border-radius: var(--radius-sm); object-fit: cover; background: var(--bg); flex-shrink: 0; }
.admin-list-item .info { flex: 1; min-width: 0; }
.admin-list-item .info .name { font-weight: 600; color: var(--text); font-size: 0.95rem; }
.admin-list-item .info .price { font-size: 0.82rem; color: var(--gold-light); margin-top: 2px; }
.admin-list-item .info .meta { font-size: 0.78rem; color: var(--text-dim); margin-top: 2px; }
.admin-list-item .actions { display: flex; gap: 8px; flex-shrink: 0; }

/* Admin gallery */
.admin-gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px; margin-top: 28px;
}
.admin-gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/10; background: var(--bg-card); border: 1px solid var(--border);
}
.admin-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.admin-gallery-item:hover img { transform: scale(1.06); }
.admin-gallery-item .delete-btn {
  position: absolute; top: 8px; right: 8px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0,0,0,0.75); color: #f87171; border: none;
  font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all var(--transition); backdrop-filter: blur(4px);
}
.admin-gallery-item:hover .delete-btn { opacity: 1; }
.admin-gallery-item .delete-btn:hover { background: #dc2626; color: #fff; }

/* Logo upload */
.logo-upload-area { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 12px; }
.logo-preview { height: 64px; width: auto; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.logo-empty { color: var(--text-dim); font-size: 0.84rem; }

/* Photo preview */
.photo-preview-area { margin-bottom: 12px; }
.photo-preview-area img { max-height: 200px; border-radius: var(--radius); border: 1px solid var(--border); }

/* Media grid (companion form) */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.media-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  background: var(--bg-card);
}
.media-item img,
.media-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.media-item .media-delete-btn {
  position: absolute;
  top: 6px; right: 6px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.85);
  color: #fff;
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.media-item:hover .media-delete-btn { opacity: 1; }
.media-item .media-delete-btn:hover { background: #dc2626; }

/* Form hint */
.form-hint { font-size: 0.75rem; color: var(--text-dim); margin-top: 4px; }

/* ── Página de Detalhe da Acompanhante ── */

/* Back button */
.btn-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-muted); font-size: 0.88rem; text-decoration: none;
  padding: 8px 0; margin-bottom: 16px; transition: color var(--transition);
}
.btn-back:hover { color: var(--gold); }

/* Gallery */
.companion-gallery-section {
  max-width: 900px; margin: 0 auto 0; padding: 24px 20px 0;
}
.companion-gallery-main {
  position: relative; width: 100%; aspect-ratio: 16 / 10;
  background: var(--bg-2); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
}
.companion-gallery-main img {
  width: 100%; height: 100%; object-fit: contain; background: var(--bg-2);
}

.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.65); border: 1.5px solid rgba(255,255,255,0.12);
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); backdrop-filter: blur(6px);
}
.gallery-nav:hover { background: var(--gold-glow); border-color: var(--gold); color: var(--gold-light); }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }

.gallery-counter {
  position: absolute; bottom: 12px; right: 16px;
  background: rgba(0,0,0,0.7); color: #fff;
  padding: 5px 12px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 500; z-index: 2;
  backdrop-filter: blur(4px);
}

/* Thumbnails */
.companion-gallery-thumbs {
  display: flex; gap: 8px; margin-top: 10px;
  overflow-x: auto; padding-bottom: 4px;
}
.companion-gallery-thumbs::-webkit-scrollbar { height: 4px; }
.companion-gallery-thumbs::-webkit-scrollbar-track { background: transparent; }
.companion-gallery-thumbs::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 2px; }

.companion-gallery-thumbs img {
  width: 80px; height: 60px; object-fit: cover; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer; opacity: 0.45;
  transition: all var(--transition); flex-shrink: 0;
}
.companion-gallery-thumbs img.active,
.companion-gallery-thumbs img:hover { opacity: 1; border-color: var(--gold); }

/* Detail layout */
.companion-detail-section { padding: 30px 0 80px; }
.companion-detail-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start;
}
.companion-detail-info h1 {
  font-family: var(--font-display); font-size: 2rem; color: var(--gold);
  margin-bottom: 16px; font-weight: 500;
}
.companion-meta { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.companion-age {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; background: var(--gold-glow); color: var(--gold-light);
  border: 1px solid rgba(200,164,78,0.2); border-radius: 50px;
  font-weight: 500; font-size: 0.92rem;
}
.companion-price {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; background: var(--bg-elevated); color: var(--text);
  border: 1px solid var(--border-light); border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
}
.companion-price::before { content: '✦'; font-size: 0.55rem; color: var(--gold); }

.companion-description h3 {
  font-size: 0.85rem; color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 12px; font-weight: 600;
}
.companion-description p {
  color: var(--text-muted); font-size: 1rem; line-height: 1.8;
}

/* Sidebar */
.companion-detail-sidebar {
  display: flex; flex-direction: column; gap: 16px;
  position: sticky; top: 90px;
}
.btn-whatsapp-detail {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff; text-align: center;
  padding: 16px; border-radius: 50px; font-weight: 600; font-size: 1rem;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp-detail:hover { background: #20bd5a; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
.companion-other-actions { display: flex; flex-direction: column; gap: 10px; }

/* ── Animações ── */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ── Responsivo ── */
@media (max-width: 1024px) {
  .section { padding: 72px 0; }
  .section-title { font-size: 2.2rem; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .carousel { height: 440px; }
  .carousel-slide .caption span { font-size: 1.7rem; }
  .admin-main { padding: 28px 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; height: 60px; }
  .header-nav { display: none; }
  .btn-mobile-menu { display: block; }
  .header-nav.open {
    display: flex; flex-direction: column; position: absolute;
    top: 60px; left: 0; right: 0;
    background: rgba(5,5,5,0.98); backdrop-filter: blur(20px);
    padding: 20px 24px; border-bottom: 1px solid var(--border); gap: 14px;
  }

  .section { padding: 56px 0; }
  .section-title { font-size: 1.9rem; }
  .section-header { margin-bottom: 40px; }

  .carousel { height: 320px; }
  .carousel-slide .caption { padding: 40px 24px 24px; }
  .carousel-slide .caption span { font-size: 1.4rem; }
  .carousel-btn { width: 40px; height: 40px; font-size: 1rem; }

  .companions-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
  .companion-card-photo { height: 320px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .whatsapp-float { bottom: 20px; right: 20px; }

  .admin-panel { flex-direction: column; }
  .admin-sidebar { width: 100%; flex-direction: row; padding: 14px; align-items: center; overflow-x: auto; }
  .admin-logo { padding: 0 14px 0 0; border-bottom: none; border-right: 1px solid var(--border); margin-bottom: 0; font-size: 0.95rem; white-space: nowrap; }
  .admin-nav { flex-direction: row; padding: 0; gap: 2px; }
  .admin-tab { white-space: nowrap; font-size: 0.78rem; padding: 8px 12px; }
  .admin-sidebar-footer { flex-direction: row; border-top: none; border-left: 1px solid var(--border); padding: 0 0 0 14px; margin: 0 0 0 14px; gap: 8px; }
  .admin-sidebar-footer .btn { font-size: 0.75rem; padding: 6px 12px; white-space: nowrap; }
  .admin-main { padding: 24px 18px; }
  .admin-tab-header { flex-direction: column; gap: 14px; align-items: stretch; }
  .form-inline { flex-direction: column; }
  .form-row { flex-direction: column; }
  .modal-box { padding: 28px 22px; }
  .admin-gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }

  .companion-gallery-section { padding: 24px 20px; }
  .companion-gallery-main { aspect-ratio: 4/3; }
  .gallery-nav { width: 36px; height: 36px; font-size: 0.9rem; }
  .companion-gallery-thumbs { gap: 8px; }
  .companion-gallery-thumbs img { width: 60px; height: 60px; }
  .companion-detail-layout { grid-template-columns: 1fr; gap: 24px; }
  .companion-detail-sidebar { position: static; }
  .btn-whatsapp-detail { padding: 14px 20px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .carousel { height: 240px; }
  .carousel-slide .caption span { font-size: 1.15rem; }
  .carousel-slide .caption small { font-size: 0.82rem; }
  .carousel-btn { width: 36px; height: 36px; font-size: 0.9rem; }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
  .companions-grid { grid-template-columns: 1fr; }
  .companion-card-photo { height: 300px; }
  .section-title { font-size: 1.6rem; }

  .companion-gallery-section { padding: 16px 12px; }
  .companion-gallery-main { aspect-ratio: 3/4; }
  .gallery-nav { width: 32px; height: 32px; font-size: 0.8rem; }
  .gallery-prev { left: 6px; }
  .gallery-next { right: 6px; }
  .gallery-counter { bottom: 8px; right: 8px; font-size: 0.72rem; padding: 3px 8px; }
  .companion-gallery-thumbs img { width: 48px; height: 48px; }
  .companion-detail-info h1 { font-size: 1.5rem; }
  .companion-meta { flex-direction: column; gap: 4px; }
  .btn-whatsapp-detail { padding: 12px 16px; font-size: 0.85rem; }
}
