/* chat.hostclube.com / hostclube.com — LGPD cookie banner + modal + legal pages */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  background: var(--bg-1, #11141a);
  border: 1px solid var(--line-strong, #2e3645);
  border-radius: 10px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .7);
  animation: lgpdSlideUp .4s cubic-bezier(.2,.7,.2,1);
}
@keyframes lgpdSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 280px; font-size: .9rem; color: var(--text-2, #b6bcc7); }
.cookie-banner-text a { color: var(--accent-2, #4d85ff); }
.cookie-banner-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.cookie-modal {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .75);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: lgpdFadeIn .2s ease;
}
.cookie-modal[hidden] { display: none; }
@keyframes lgpdFadeIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal-card {
  background: var(--bg-1, #11141a);
  border: 1px solid var(--line-strong, #2e3645);
  border-radius: 10px;
  max-width: 640px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: 32px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .7);
  color: var(--text-1, #f3f5f8);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
.cookie-modal-card h2 { margin: 0 0 8px; display: flex; align-items: center; gap: 10px; font-family: 'Chakra Petch', Inter, sans-serif; }
.cookie-modal-card h2 i { color: var(--accent-2, #4d85ff); }
.cookie-modal-card p { color: var(--text-2, #b6bcc7); }
.cookie-modal-card .muted { color: var(--text-3, #7d8493); font-size: .88rem; }
.cookie-cat {
  border: 1px solid var(--line, #232a36);
  border-radius: 6px;
  padding: 16px;
  margin-top: 16px;
  background: var(--bg-2, #161a22);
}
.cookie-cat-locked { background: var(--bg-3, #1c2230); }
.cookie-cat-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.cookie-cat-head h3 { margin: 0; font-size: 1rem; display: flex; align-items: center; gap: 8px; font-family: 'Chakra Petch', Inter, sans-serif; }
.cookie-cat-head h3 i { color: var(--accent-2, #4d85ff); font-size: 1.1rem; }
.badge-locked {
  font-family: 'JetBrains Mono', monospace; font-size: .68rem;
  background: rgba(25, 195, 125, .14); color: #19c37d;
  padding: 3px 8px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .08em;
}
.cookie-modal-info {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--line, #232a36);
  font-size: .88rem;
  color: var(--text-1, #f3f5f8);
}
.cookie-modal-info p { margin: 0 0 4px; color: var(--text-1, #f3f5f8); }
.cookie-modal-info a { color: var(--accent-2, #4d85ff); }
.cookie-modal-actions {
  display: flex; gap: 8px; justify-content: flex-end;
  margin-top: 20px;
}

.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; cursor: pointer; inset: 0;
  background: #232a39;
  border: 1px solid #2e3645;
  border-radius: 24px;
  transition: background .2s cubic-bezier(.2,.7,.2,1);
}
.slider::before {
  content: ''; position: absolute;
  height: 18px; width: 18px;
  left: 2px; top: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s cubic-bezier(.2,.7,.2,1);
}
.switch input:checked + .slider { background: #2d6cff; border-color: #2d6cff; }
.switch input:checked + .slider::before { transform: translateX(20px); }

/* legal pages */
.legal-wrap { max-width: 820px; padding: 64px 24px; color: var(--text-1, #f3f5f8); }
.legal-wrap h1 { font-size: 2.2rem; margin: 0 0 8px; font-family: 'Chakra Petch', Inter, sans-serif; }
.legal-wrap h2 { font-size: 1.4rem; margin: 32px 0 12px; padding-top: 16px; border-top: 1px solid var(--line, #232a36); font-family: 'Chakra Petch', Inter, sans-serif; }
.legal-wrap h2:first-of-type { border-top: 0; padding-top: 0; }
.legal-wrap p { margin: 0 0 12px; color: var(--text-2, #b6bcc7); }
.legal-breadcrumb { margin-bottom: 16px; color: var(--text-3, #7d8493); }
.legal-breadcrumb a { color: var(--text-2, #b6bcc7); }
.legal-wrap ul { padding-left: 20px; margin: 0 0 16px; list-style: disc; }
.legal-wrap ul li { margin: 6px 0; color: var(--text-2, #b6bcc7); }
.legal-table { display: block; overflow-x: auto; width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.legal-table th, .legal-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line, #232a36); }
.legal-table th { color: var(--text-3, #7d8493); font-family: 'Chakra Petch', Inter, sans-serif; }
