/**
 * Verificação de idade — Bellume Club
 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.bc-age-gate {
  --bc-age-accent: #e91e63;
  --bc-age-accent-dark: #c2185b;
  --bc-age-accent-soft: rgba(233, 30, 99, 0.12);
  --bc-age-text: #1a1a2e;
  --bc-age-muted: #6b7280;
  --bc-age-font: 'Poppins', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: var(--bc-age-font);
  box-sizing: border-box;
}

.bc-age-gate *,
.bc-age-gate *::before,
.bc-age-gate *::after {
  box-sizing: border-box;
}

.bc-age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 18, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.bc-age-gate__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: 36px 32px 28px;
  border-radius: 24px;
  background: #fff;
  text-align: center;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  animation: bc-age-gate-in 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes bc-age-gate-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.bc-age-gate__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.bc-age-gate__logo {
  max-width: 168px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.bc-age-gate__logo-fallback {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bc-age-accent);
  letter-spacing: -0.02em;
}

.bc-age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
  border: 2px solid rgba(233, 30, 99, 0.25);
  color: var(--bc-age-accent-dark);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.bc-age-gate__title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--bc-age-text);
}

.bc-age-gate__text {
  margin: 0 0 26px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--bc-age-muted);
}

.bc-age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bc-age-gate__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    opacity 0.15s ease;
}

.bc-age-gate__btn:focus {
  outline: none;
}

.bc-age-gate__btn:focus-visible {
  outline: 2px solid var(--bc-age-accent);
  outline-offset: 3px;
}

.bc-age-gate__btn--primary {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.35);
}

.bc-age-gate__btn--primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(233, 30, 99, 0.42);
}

.bc-age-gate__btn--primary:active:not(:disabled) {
  transform: translateY(0);
}

.bc-age-gate__btn--ghost {
  background: #f5f5f7;
  color: var(--bc-age-muted);
  border: 1px solid #e8e8ec;
}

.bc-age-gate__btn--ghost:hover:not(:disabled) {
  background: #eeeef2;
  color: var(--bc-age-text);
}

.bc-age-gate__btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.bc-age-gate__legal {
  margin: 20px 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #9ca3af;
}

body.bc-age-gate-open {
  overflow: hidden !important;
}

@media (max-width: 480px) {
  .bc-age-gate__card {
    padding: 28px 22px 22px;
    border-radius: 20px;
  }

  .bc-age-gate__title {
    font-size: 1.2rem;
  }
}
