/* ═══════════════════════════════════════════════════════════
   QLPMix Design System — mobile-first, PWA-ready
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Cores base */
  --bg: #0a0a10;
  --bg-elevated: #14141e;
  --bg-card: #1c1c28;
  --bg-glass: rgba(20, 20, 30, 0.72);
  --text: #f8f8fc;
  --text-muted: #9499ad;
  --text-subtle: #6b7084;

  /* Marca oficial QLPMix */
  --brand: #3d7dd4;
  --brand-light: #5a94e8;
  --brand-deep: #2563b8;
  --brand-rgb: 61, 125, 212;
  --brand-glow: rgba(61, 125, 212, 0.45);

  /* Primary = azul da logo; accent rosa/teal para energia */
  --primary: var(--brand);
  --primary-hover: var(--brand-light);
  --primary-glow: var(--brand-glow);
  --primary-deep: var(--brand-deep);
  --accent: #ff5c9a;
  --accent-hover: #ff7eb0;
  --accent-glow: rgba(255, 92, 154, 0.35);
  --teal: #2dd4bf;
  --teal-glow: rgba(45, 212, 191, 0.25);
  --success: #34d399;
  --danger: #f56565;
  --whatsapp: #25d366;

  /* Superfícies */
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --border-accent: rgba(var(--brand-rgb), 0.35);
  --surface: var(--bg-card);
  --surface-2: var(--bg-elevated);

  /* Forma & sombra */
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 8px 32px var(--primary-glow);
  --shadow-btn: 0 4px 14px rgba(var(--brand-rgb), 0.35);

  /* Layout */
  --nav-h: 64px;
  --bottom-nav-h: 68px;
  --mini-player-h: 72px;

  /* Tipografia */
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.22s;
}

[data-theme="light"] {
  --bg: #f4f5fa;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.82);
  --text: #12141f;
  --text-muted: #5c6478;
  --text-subtle: #8b93a7;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.14);
  --border-accent: rgba(var(--brand-rgb), 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 8px 32px rgba(var(--brand-rgb), 0.18);
  --shadow-btn: 0 4px 14px rgba(var(--brand-rgb), 0.25);
  --primary-glow: rgba(var(--brand-rgb), 0.22);
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  min-height: 100dvh;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(var(--brand-rgb), 0.14), transparent),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(255, 92, 154, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(45, 212, 191, 0.06), transparent);
  background-attachment: fixed;
}

[data-theme="light"] body,
body[data-theme="light"] {
  background-image:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(var(--brand-rgb), 0.1), transparent),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(255, 92, 154, 0.06), transparent);
}

a { color: var(--primary); text-decoration: none; transition: color var(--duration) var(--ease-out); }
a:hover { color: var(--primary-hover); }
img { max-width: 100%; display: block; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); border: 0;
}

/* ── Layout ── */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1rem calc(var(--bottom-nav-h) + 2rem);
}

@media (min-width: 900px) {
  .main-content { padding: 1.5rem 1.5rem 2rem; }
}

body.has-mini-player .main-content {
  padding-bottom: calc(var(--bottom-nav-h) + var(--mini-player-h) + 2rem);
}

@media (min-width: 900px) {
  body.has-mini-player .main-content {
    padding-bottom: calc(var(--mini-player-h) + 2rem);
  }
}

/* ── Top navigation ── */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top);
}

.top-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--nav-h);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--duration);
}

.brand:hover { opacity: 0.88; }

.brand__logo {
  height: 34px;
  width: auto;
  max-width: min(168px, 42vw);
  object-fit: contain;
  display: block;
}

@media (max-width: 380px) {
  .brand__logo { height: 30px; }
}

@media (min-width: 900px) {
  .brand__logo { height: 36px; max-width: 180px; }
}

.top-nav__links {
  display: none;
  gap: 0.25rem;
  margin-left: auto;
}

.top-nav__links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: color var(--duration), background var(--duration);
}

.top-nav__links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.top-nav__links a.is-active {
  color: var(--text);
  background: rgba(var(--brand-rgb), 0.15);
  box-shadow: inset 0 0 0 1px var(--border-accent);
}

[data-theme="light"] .top-nav__links a:hover {
  background: rgba(0, 0, 0, 0.04);
}

.top-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}

@media (min-width: 900px) {
  .top-nav__links { display: flex; }
  .top-nav__actions { margin-left: 0; }
}

/* ── Bottom navigation (PWA mobile) ── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-top: 1px solid var(--border);
  padding: 0.4rem 0.5rem calc(0.4rem + env(safe-area-inset-bottom));
  height: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

@media (min-width: 900px) { .bottom-nav { display: none; } }

.bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  padding: 0.35rem 0.25rem;
  border-radius: var(--radius-sm);
  transition: color var(--duration), background var(--duration), transform var(--duration) var(--ease-spring);
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}

.bottom-nav__item:active { transform: scale(0.92); }

.bottom-nav__icon {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform var(--duration) var(--ease-spring);
}

.bottom-nav__item.is-active {
  color: var(--primary);
}

.bottom-nav__item.is-active .bottom-nav__icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px var(--primary-glow));
}

.bottom-nav__item.is-active span:last-child {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Buttons — moderno, touch-friendly ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.35rem;
  min-height: 44px;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--duration) var(--ease-spring),
    box-shadow var(--duration) var(--ease-out),
    background var(--duration),
    border-color var(--duration),
    color var(--duration),
    filter var(--duration);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn:active:not(:disabled) { transform: scale(0.97); }

.btn--primary {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 45%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration);
}

.btn--primary:hover {
  box-shadow: var(--shadow-glow), var(--shadow-btn);
  filter: brightness(1.06);
}

.btn--primary:hover::before { opacity: 1; }

.btn--outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--border-hover);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  border-color: var(--border-accent);
  background: rgba(var(--brand-rgb), 0.08);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.1);
}

[data-theme="light"] .btn--outline {
  background: rgba(255, 255, 255, 0.7);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

[data-theme="light"] .btn--ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

.btn--danger {
  background: linear-gradient(135deg, var(--danger), #e53e3e);
  color: #fff;
  box-shadow: 0 4px 14px rgba(245, 101, 101, 0.35);
}

.btn--danger:hover { filter: brightness(1.08); }

.btn--whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), #1ebe57);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover { filter: brightness(1.06); }

.btn--accent {
  background: linear-gradient(135deg, var(--accent), #e04080);
  color: #fff;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.btn--accent:hover { filter: brightness(1.06); }

.btn--block { width: 100%; }
.btn--sm { padding: 0.45rem 0.95rem; min-height: 36px; font-size: 0.82rem; }
.btn--lg { padding: 0.9rem 1.75rem; min-height: 52px; font-size: 1rem; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }

.btn-icon {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  font-size: 1.1rem;
  transition: background var(--duration), border-color var(--duration), transform var(--duration) var(--ease-spring);
}

.btn-icon:hover {
  background: rgba(var(--brand-rgb), 0.12);
  border-color: var(--border-accent);
}

.btn-icon:active { transform: scale(0.93); }

/* ── Forms ── */
.form { display: grid; gap: 1.1rem; }
.form--narrow { max-width: 480px; }

.form__label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form__input,
.form__label textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
  transition: border-color var(--duration), box-shadow var(--duration);
}

.form__input:focus,
.form__label textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.15);
}

.form__row { display: grid; grid-template-columns: 1fr 80px; gap: 1rem; }
.form__hint { display: block; font-size: 0.8rem; color: var(--text-subtle); margin-top: 0.25rem; }
.form__hint--tight { margin: -0.35rem 0 0; }

/* Cadastro explorador — formulário enxuto */
.form--explorador { gap: 1rem; }
.form--explorador .btn { margin-top: 0.25rem; }

.password-strength--compact .password-strength__rules {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.35rem 0.4rem;
  font-size: 0.7rem;
}

@media (max-width: 480px) {
  .password-strength--compact .password-strength__rules {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ── Alerts ── */
.alert {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  border: 1px solid transparent;
}

.alert--error {
  background: rgba(245, 101, 101, 0.12);
  color: #fc8181;
  border-color: rgba(245, 101, 101, 0.25);
}

.alert--success {
  background: rgba(52, 211, 153, 0.12);
  color: #68d391;
  border-color: rgba(52, 211, 153, 0.25);
}

/* ── Hero banner (carrossel) ── */
.hero-banner {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin: -1.25rem calc(50% - 50vw) 2rem;
  isolation: isolate;
}

@media (min-width: 900px) {
  .hero-banner { margin-top: -1.5rem; }
}

.hero-banner__viewport {
  position: relative;
  min-height: clamp(26rem, 72vh, 34rem);
  overflow: hidden;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

@media (min-width: 768px) {
  .hero-banner__viewport {
    min-height: clamp(22rem, 52vh, 30rem);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  }
}

.hero-banner__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.65s var(--ease-out), visibility 0.65s;
}

.hero-banner__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hero-banner__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-banner__media-bg,
.hero-banner__media-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s var(--ease-out);
}

.hero-banner__slide.is-active .hero-banner__media-bg,
.hero-banner__slide.is-active .hero-banner__media-img {
  transform: scale(1);
}

.hero-banner__media-img {
  background-image: var(--slide-bg);
}

.hero-banner__slide--brand .hero-banner__media-bg {
  background:
    radial-gradient(ellipse 70% 55% at 82% 18%, rgba(var(--brand-rgb), 0.55), transparent 62%),
    radial-gradient(ellipse 50% 45% at 12% 88%, rgba(255, 92, 154, 0.28), transparent 58%),
    linear-gradient(155deg, #080b12 0%, #101827 48%, #16263f 100%);
}

.hero-banner__slide--teal .hero-banner__media-bg {
  background:
    radial-gradient(ellipse 65% 50% at 78% 22%, rgba(45, 212, 191, 0.45), transparent 60%),
    radial-gradient(ellipse 45% 40% at 18% 80%, rgba(var(--brand-rgb), 0.3), transparent 55%),
    linear-gradient(155deg, #081210 0%, #0f1f1c 48%, #14302a 100%);
}

.hero-banner__slide--accent .hero-banner__media-bg {
  background:
    radial-gradient(ellipse 68% 52% at 80% 20%, rgba(255, 92, 154, 0.42), transparent 60%),
    radial-gradient(ellipse 48% 42% at 14% 82%, rgba(192, 132, 252, 0.28), transparent 55%),
    linear-gradient(155deg, #100810 0%, #1a1020 48%, #261530 100%);
}

.hero-banner__slide--mapa .hero-banner__media-bg {
  background:
    radial-gradient(ellipse 60% 50% at 75% 20%, rgba(45, 212, 191, 0.35), transparent 58%),
    radial-gradient(ellipse 50% 45% at 15% 85%, rgba(139, 92, 246, 0.28), transparent 55%),
    linear-gradient(155deg, #0a1018 0%, #0f1a24 45%, #142a32 100%);
}

.hero-banner__slide--mapa .hero-banner__eyebrow {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.3);
  color: #5eead4;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 10, 16, 0.94) 0%, rgba(8, 10, 16, 0.55) 38%, rgba(8, 10, 16, 0.2) 68%, rgba(8, 10, 16, 0.35) 100%),
    linear-gradient(90deg, rgba(8, 10, 16, 0.75) 0%, transparent 55%);
}

[data-theme="light"] .hero-banner__overlay {
  background:
    linear-gradient(0deg, rgba(244, 245, 250, 0.96) 0%, rgba(244, 245, 250, 0.72) 40%, rgba(244, 245, 250, 0.35) 100%),
    linear-gradient(90deg, rgba(244, 245, 250, 0.85) 0%, transparent 50%);
}

.hero-banner__slide.has-image .hero-banner__overlay {
  background:
    linear-gradient(0deg, rgba(8, 10, 16, 0.92) 0%, rgba(8, 10, 16, 0.45) 42%, rgba(8, 10, 16, 0.15) 100%),
    linear-gradient(90deg, rgba(8, 10, 16, 0.7) 0%, transparent 58%);
}

[data-theme="light"] .hero-banner__slide.has-image .hero-banner__overlay {
  background:
    linear-gradient(0deg, rgba(244, 245, 250, 0.94) 0%, rgba(244, 245, 250, 0.5) 45%, rgba(244, 245, 250, 0.2) 100%),
    linear-gradient(90deg, rgba(244, 245, 250, 0.8) 0%, transparent 55%);
}

.hero-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4.5rem;
}

@media (min-width: 768px) {
  .hero-banner__content {
    padding: 3rem 1.5rem 4.75rem;
    max-width: 56ch;
    margin-left: max(1.5rem, calc((100% - 1200px) / 2 + 1.5rem));
    margin-right: auto;
  }
}

.hero-banner__eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 92, 154, 0.12);
  border-radius: 999px;
  border: 1px solid rgba(255, 92, 154, 0.22);
}

.hero-banner__slide--teal .hero-banner__eyebrow {
  color: var(--teal);
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.25);
}

.hero-banner__slide--brand .hero-banner__eyebrow {
  color: var(--brand-light);
  background: rgba(var(--brand-rgb), 0.14);
  border-color: rgba(var(--brand-rgb), 0.28);
}

.hero-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.5vw, 3.1rem);
  line-height: 1.1;
  margin: 0.85rem 0 0;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-banner__desc {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2.4vw, 1.08rem);
  max-width: 46ch;
  margin: 0.85rem 0 0;
  line-height: 1.55;
}

.hero-banner__cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

@media (min-width: 480px) {
  .hero-banner__cta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

.hero-banner__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.25rem 1.1rem;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-banner__footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}

.hero-banner__dots,
.hero-banner__nav,
.hero-banner__dot,
.hero-banner__arrow {
  pointer-events: auto;
}

.hero-banner__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  grid-column: 1;
}

.hero-banner__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width var(--duration), background var(--duration), transform var(--duration);
}

.hero-banner__dot.is-active {
  width: 1.65rem;
  background: var(--brand-light);
}

.hero-banner__dot:hover { background: rgba(255, 255, 255, 0.5); }

[data-theme="light"] .hero-banner__dot {
  background: rgba(0, 0, 0, 0.18);
}

[data-theme="light"] .hero-banner__dot.is-active {
  background: var(--brand);
}

.hero-banner__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-banner__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand-light), var(--accent));
  transform-origin: left center;
}

.hero-banner__nav {
  display: flex;
  gap: 0.4rem;
  grid-column: 2;
  justify-self: end;
}

.hero-banner__arrow {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 10, 16, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration), border-color var(--duration), transform var(--duration);
}

.hero-banner__arrow::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.hero-banner__arrow--prev::before {
  transform: rotate(-135deg);
  margin-left: 0.15rem;
}

.hero-banner__arrow--next::before {
  transform: rotate(45deg);
  margin-right: 0.15rem;
}

.hero-banner__arrow:hover {
  background: rgba(var(--brand-rgb), 0.35);
  border-color: rgba(var(--brand-rgb), 0.5);
}

.hero-banner__arrow:active { transform: scale(0.94); }

[data-theme="light"] .hero-banner__arrow {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.1);
}

@keyframes hero-banner-progress {
  from { width: 0; }
  to { width: 100%; }
}

.hero-banner.is-playing .hero-banner__progress-bar {
  animation: hero-banner-progress var(--hero-interval, 6500ms) linear forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner__slide { transition: none; }
  .hero-banner__media-bg,
  .hero-banner__media-img { transition: none; transform: none !important; }
  .hero-banner.is-playing .hero-banner__progress-bar { animation: none; width: 100%; }
  .btn, .bottom-nav__item, .profile-card { transition: none; }
}

/* ── Sections ── */
.section { margin: 2.75rem 0; }

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.35rem;
  gap: 1rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  margin: 0;
  letter-spacing: -0.01em;
}

.link-more {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  transition: background var(--duration);
}

.link-more:hover {
  background: rgba(var(--brand-rgb), 0.1);
  color: var(--primary-hover);
}

/* ── Grids & cards ── */
.grid { display: grid; gap: 1rem; }
.grid--cards { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

@media (min-width: 600px) {
  .grid--cards { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.15rem; }
}

.profile-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration), border-color var(--duration);
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 0 1px var(--border-accent);
  border-color: var(--border-accent);
}

.profile-card__link { color: inherit; display: block; }

.profile-card__cover {
  aspect-ratio: 3 / 2;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

/* Capa padrão do sistema (gradiente + rede cultural por segmento) */
.qlp-cover--default {
  background-color: #12141f;
  background-size: cover;
  background-position: center;
}

.qlp-cover--default::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: soft-light;
  background: linear-gradient(
    calc(120deg + var(--cover-seed, 0) * 1deg),
    hsl(calc(var(--cover-seed, 0) + 210), 70%, 52%) 0%,
    transparent 55%
  );
}

.qlp-cover--artista.qlp-cover--default { background-color: #141a38; }
.qlp-cover--contratante.qlp-cover--default { background-color: #0f2228; }
.qlp-cover--agente.qlp-cover--default { background-color: #221828; }
.qlp-cover--comunidade.qlp-cover--default { background-color: #1c1228; }

.profile-card__body { padding: 0.85rem 1rem 1rem; }

.profile-card__identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.profile-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-accent);
  background: var(--bg-elevated);
}

.profile-card__info { min-width: 0; }

.profile-card__name {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-card__meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Segment cards ── */
.segments { display: grid; gap: 1rem; }

@media (min-width: 700px) { .segments { grid-template-columns: repeat(3, 1fr); } }

.segment-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  color: inherit;
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration), border-color var(--duration);
  position: relative;
  overflow: hidden;
}

.segment-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration);
  pointer-events: none;
}

.segment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.segment-card:hover::after { opacity: 1; }

.segment-card h3 { margin: 0 0 0.45rem; font-family: var(--font-display); font-size: 1.15rem; }
.segment-card p { margin: 0; color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

.segment-card--artista {
  background: linear-gradient(145deg, rgba(var(--brand-rgb), 0.18) 0%, rgba(var(--brand-rgb), 0.04) 100%);
  border-color: rgba(var(--brand-rgb), 0.2);
}
.segment-card--artista::after { background: radial-gradient(circle at top right, rgba(var(--brand-rgb), 0.15), transparent 60%); }

.segment-card--contratante {
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.15) 0%, rgba(45, 212, 191, 0.03) 100%);
  border-color: rgba(45, 212, 191, 0.2);
}
.segment-card--contratante::after { background: radial-gradient(circle at top right, rgba(45, 212, 191, 0.12), transparent 60%); }

.segment-card--agente {
  border-color: rgba(255, 180, 80, 0.35);
}
.segment-card--agente::after { background: radial-gradient(circle at top right, rgba(255, 180, 80, 0.12), transparent 60%); }

.segment-card--comunidade {
  background: linear-gradient(145deg, rgba(255, 92, 154, 0.15) 0%, rgba(255, 92, 154, 0.03) 100%);
  border-color: rgba(255, 92, 154, 0.2);
}
.segment-card--comunidade::after { background: radial-gradient(circle at top right, rgba(255, 92, 154, 0.12), transparent 60%); }

.segment-card__action {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
}

.segment-card:hover .segment-card__action {
  color: var(--primary-hover);
}

/* ── Home landing ── */
.home-value__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
}

.home-value__explore {
  flex-shrink: 0;
  white-space: nowrap;
}

.home-value__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.home-value__intro {
  flex: 1;
  min-width: min(100%, 20rem);
  max-width: 42rem;
}

.home-value__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.home-value__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.home-value__lead strong {
  color: var(--text);
  font-weight: 600;
}

.home-pillars {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .home-pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .home-pillars { grid-template-columns: repeat(4, 1fr); }
}

.home-pillar {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  min-height: 100%;
  border-left-width: 4px;
}

.home-pillar--artista { border-left-color: rgba(var(--brand-rgb), 0.85); }
.home-pillar--contratante { border-left-color: rgba(45, 212, 191, 0.85); }
.home-pillar--agente { border-left-color: rgba(255, 180, 80, 0.85); }
.home-pillar--comunidade { border-left-color: rgba(255, 92, 154, 0.85); }
.home-pillar--mapa { border-left-color: rgba(139, 92, 246, 0.85); }

.home-pillar__question {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.home-pillar__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.home-pillar__desc {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.home-pillar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.65rem 0 0.85rem;
}

.home-pillar__actions--stack {
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
}

.home-pillar__actions--stack .btn {
  width: 100%;
  justify-content: center;
}

.home-pillar__actions .btn--sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
}

.home-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .home-steps__list { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.home-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.home-step__num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.home-step__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-family: var(--font-display);
}

.home-step__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.home-steps__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.home-mapas__lead {
  margin: -0.5rem 0 0.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 40rem;
}

.home-cta-band {
  margin: 2.5rem 0 1rem;
  padding: clamp(2rem, 5vw, 3rem) 1.5rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(var(--brand-rgb), 0.2), transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(45, 212, 191, 0.12), transparent 50%),
    linear-gradient(145deg, rgba(var(--brand-rgb), 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(var(--brand-rgb), 0.2);
}

.home-cta-band__inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.home-cta-band__inner h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  letter-spacing: -0.02em;
}

.home-cta-band__inner p {
  margin: 0 0 1.35rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.home-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ── Page header ── */
.page-header { margin-bottom: 1.75rem; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  margin: 0.25rem 0;
  letter-spacing: -0.02em;
}

.page-header__sub {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 42rem;
}

.explore-section--segments.section {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.explore-section--filters.section {
  margin-top: 0;
}

.explore-section--cidades.section {
  margin-top: 0;
}

.explore-filters__hint {
  margin: 0.75rem 0 0;
}

.explore-search__hint {
  margin: 0.65rem 0 0;
}

.explore-search__hint a {
  font-weight: 600;
  color: var(--primary);
}

@media (max-width: 640px) {
  .search-bar.explore-search {
    flex-wrap: wrap;
  }

  .search-bar.explore-search .btn {
    width: 100%;
  }
}

/* ── Chips ── */
.genre-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--duration) var(--ease-out);
  cursor: pointer;
}

.chip:hover,
.chip--active {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-btn);
}

.chip--sm { padding: 0.3rem 0.7rem; font-size: 0.75rem; }

.chip--static { cursor: default; pointer-events: none; }

.genre-chips__label,
.genre-chips__sep {
  align-self: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.genre-chips__sep { padding: 0 0.15rem; }

.genre-chips--sub {
  margin-top: -0.75rem;
  padding-left: 0.25rem;
  border-left: 3px solid var(--primary);
}

.genre-chips--inline {
  margin-bottom: 0;
}

/* ── Filter accordion (sanfona) ── */
.filter-accordions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-accordion__panel {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  overflow: hidden;
}

.filter-accordion--sub .filter-accordion__panel {
  margin-left: 0.25rem;
  border-left-width: 3px;
  border-left-color: var(--primary);
}

.filter-accordion__toggle {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  user-select: none;
  font-size: 0.875rem;
}

.filter-accordion__toggle::-webkit-details-marker {
  display: none;
}

.filter-accordion__title {
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}

.filter-accordion__summary {
  flex: 1;
  min-width: 0;
  text-align: right;
  color: var(--text-muted);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-accordion__summary--active {
  color: var(--primary);
}

.filter-accordion__toggle::after {
  content: "▾";
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease-out);
}

.filter-accordion__panel[open] .filter-accordion__toggle::after {
  transform: rotate(180deg);
}

.filter-accordion__body {
  padding: 0 0.85rem 0.85rem;
  border-top: 1px solid var(--border);
}

.filter-accordion__body .genre-chips {
  margin-top: 0.65rem;
}

@media (min-width: 768px) {
  .filter-accordions--explore {
    max-width: 48rem;
  }
}

/* ── Search ── */
.search-bar { display: flex; gap: 0.5rem; margin-top: 1rem; }
.search-bar .form__input { flex: 1; }

.empty-state {
  color: var(--text-muted);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
}

/* ── Profile hero ── */
.profile-hero {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  background-size: cover;
  background-position: center;
  min-height: 280px;
  position: relative;
  box-shadow: var(--shadow);
}

.profile-hero.qlp-cover--default {
  background-color: #12141f;
}

.profile-hero__overlay {
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
  padding: 2rem;
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.88));
  min-height: 280px;
}

.profile-hero__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--primary);
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.25), var(--shadow);
}

.profile-hero__type {
  margin: 0;
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.profile-hero__type--comunidade { color: rgba(255, 92, 154, 0.95); }
.profile-hero__type--agente { color: rgba(255, 180, 80, 0.95); }
.profile-hero__type--artista { color: rgba(var(--brand-rgb), 0.95); }
.profile-hero__type--contratante { color: rgba(45, 212, 191, 0.95); }

.profile-hero__name {
  margin: 0.25rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

.profile-hero__loc {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.profile-hero .chip {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

/* ── Hub cards ── */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}

@media (min-width: 600px) {
  .hub-grid { grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); gap: 0.85rem; }
}

.hub-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.3rem 1rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  color: inherit;
  text-align: center;
  transition: transform var(--duration) var(--ease-out), border-color var(--duration), box-shadow var(--duration);
}

.hub-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm), 0 0 20px rgba(var(--brand-rgb), 0.08);
}

.hub-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: background var(--duration), color var(--duration), transform var(--duration) var(--ease-out), box-shadow var(--duration);
}

.hub-card__glyph {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: block;
  white-space: nowrap;
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.hub-card:hover .hub-card__icon {
  transform: scale(1.06);
}

.hub-card--music .hub-card__icon {
  background: linear-gradient(145deg, var(--primary), var(--brand-deep));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(var(--brand-rgb), 0.35);
}

.hub-card--video .hub-card__icon {
  background: linear-gradient(145deg, var(--accent), #e0407a);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 92, 154, 0.35);
}

.hub-card--foto .hub-card__icon {
  background: linear-gradient(145deg, var(--teal), #14b8a6);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(45, 212, 191, 0.3);
}

.hub-card--shop .hub-card__icon {
  background: linear-gradient(145deg, var(--success), #10b981);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(52, 211, 153, 0.3);
}

.hub-card--bio .hub-card__icon {
  background: linear-gradient(145deg, #8b5cf6, #6d28d9);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}

.hub-card--agenda .hub-card__icon {
  background: linear-gradient(145deg, #f59e0b, #d97706);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.hub-card--news .hub-card__icon {
  background: linear-gradient(145deg, #6366f1, #4338ca);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.hub-card--contact .hub-card__icon {
  background: linear-gradient(145deg, #64748b, #475569);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(100, 116, 139, 0.3);
}

.hub-card--radar .hub-card__icon {
  background: linear-gradient(145deg, #38bdf8, #0284c7);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.3);
}

.hub-card--music .hub-card__icon,
.hub-card--video .hub-card__icon,
.hub-card--foto .hub-card__icon,
.hub-card--shop .hub-card__icon,
.hub-card--bio .hub-card__icon,
.hub-card--agenda .hub-card__icon,
.hub-card--news .hub-card__icon,
.hub-card--contact .hub-card__icon,
.hub-card--radar .hub-card__icon {
  color: #fff;
}

.hub-card__title { font-weight: 700; font-size: 0.9rem; }

.hub-card__count {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--bg-elevated);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.hub-card--music { border-color: rgba(var(--brand-rgb), 0.25); }
.hub-card--video { border-color: rgba(255, 92, 154, 0.25); }
.hub-card--foto { border-color: rgba(45, 212, 191, 0.25); }
.hub-card--shop { border-color: rgba(52, 211, 153, 0.25); }
.hub-card--bio { border-color: rgba(139, 92, 246, 0.25); }
.hub-card--agenda { border-color: rgba(245, 158, 11, 0.25); }
.hub-card--news { border-color: rgba(99, 102, 241, 0.25); }
.hub-card--contact { border-color: rgba(100, 116, 139, 0.25); }
.hub-card--radar { border-color: rgba(56, 189, 248, 0.25); }

.profile-radar { margin-top: 2rem; }
.profile-radar h2 { margin: 0 0 1rem; }
.feed-card__header--compact time { margin-right: auto; }

.profile-share { margin-top: 1rem; }
.profile-share__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.75rem;
}

/* ── QR code compartilhável ── */
.qlp-qr-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.qlp-qr-share__code img,
.qlp-qr-share__code canvas {
  display: block;
  border-radius: 6px;
}

.qlp-qr-share__label {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.qlp-qr-share__hint {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.qlp-qr-share--profile {
  margin-top: 0;
}

.qlp-qr-share--inline {
  width: fit-content;
}

.qlp-qr-share--center {
  margin-inline: auto;
}

.qlp-qr-share--home {
  margin-top: 1.5rem;
  justify-content: center;
}

.page-header--dash .page-header__qr {
  margin-top: 0.75rem;
}

.prose { line-height: 1.75; color: var(--text-muted); }

/* ── Auth ── */
.auth-page { display: grid; place-items: center; min-height: 60vh; padding: 1rem 0; }

.auth-card {
  width: 100%;
  max-width: 420px;
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.auth-card__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.auth-card__brand img:first-child {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: none;
}

.auth-card__wordmark {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.auth-card h1 { font-family: var(--font-display); margin: 0 0 1.5rem; font-size: 1.5rem; text-align: center; }
.auth-card__intro, .auth-card__hint { margin: 0 0 1.25rem; text-align: center; font-size: 0.92rem; color: var(--text-muted); line-height: 1.5; }
.auth-card__hint a { color: var(--primary); font-weight: 600; }
.auth-card__footer, .auth-card__segments { margin-top: 1.25rem; text-align: center; font-size: 0.9rem; color: var(--text-muted); }
.auth-card__segments { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* Password strength */
.password-field {
  position: relative;
  display: flex;
  align-items: stretch;
}

.password-field__input {
  padding-right: 5.5rem;
}

.password-field__toggle {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.35rem 0.65rem;
  border: none;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  color: var(--primary);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.password-field__toggle:hover { background: rgba(var(--brand-rgb), 0.1); }

.password-strength {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.password-strength__bar {
  height: 4px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}

.password-strength__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--text-subtle);
  transition: width 0.25s ease, background 0.25s ease;
}

.password-strength__fill.is-weak { background: #ef4444; }
.password-strength__fill.is-fair { background: #f97316; }
.password-strength__fill.is-good { background: #eab308; }
.password-strength__fill.is-strong { background: #22c55e; }

.password-strength__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-subtle);
}

.password-strength__label.is-weak { color: #ef4444; }
.password-strength__label.is-fair { color: #f97316; }
.password-strength__label.is-good { color: #eab308; }
.password-strength__label.is-strong { color: #22c55e; }

.password-strength__rules {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.password-strength__rules li {
  position: relative;
  padding-left: 1.1rem;
}

.password-strength__rules li::before {
  content: '○';
  position: absolute;
  left: 0;
  color: var(--text-subtle);
}

.password-strength__rules li.is-met {
  color: var(--text-muted);
}

.password-strength__rules li.is-met::before {
  content: '✓';
  color: #22c55e;
}

/* WhatsApp field */
.whatsapp-field {
  display: flex;
  align-items: stretch;
}

.whatsapp-field__prefix {
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--bg);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.whatsapp-field__input {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.whatsapp-field:focus-within .whatsapp-field__prefix {
  border-color: var(--primary);
}

.whatsapp-field:focus-within .whatsapp-field__input {
  border-left-color: var(--primary);
}

.category-picker {
    border: 0;
    margin: 0 0 1.25rem;
    padding: 0;
}

.category-picker .form__label,
.category-picker legend.form__label {
    margin-bottom: 0.35rem;
}

.category-picker__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-picker__option {
    cursor: pointer;
}

.category-picker__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.category-picker__option span {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.category-picker__option input:checked + span,
.category-picker__option input:focus-visible + span {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.12);
    color: var(--text);
}

.category-picker__option:hover span {
    border-color: var(--accent);
}

.category-picker.is-invalid .category-picker__options {
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: var(--radius);
    outline: 1.5px solid #ef4444;
    outline-offset: 2px;
}

.category-picker__error {
    margin: 0.55rem 0 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ef4444;
}

/* ── Feed ── */
.feed-list { display: grid; gap: 1.25rem; }

.feed-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  transition: border-color var(--duration);
}

.feed-card:hover { border-color: var(--border-hover); }

.feed-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feed-card__header a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  font-weight: 600;
}

.feed-card__avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.feed-card__header time { font-size: 0.75rem; color: var(--text-muted); }
.feed-card__media {
  margin: 0.75rem -1.35rem;
  width: calc(100% + 2.7rem);
  max-width: none;
  border-radius: 0;
  overflow: hidden;
  line-height: 0;
}
.feed-card__media-inner,
.feed-card__media .feed-embed,
.feed-card__media .feed-media-link {
  display: block;
  width: 100%;
  max-width: 100%;
}
.feed-card__media-inner--image img,
.feed-card__media-inner--video video,
.feed-card__media img,
.feed-card__media video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* Vídeos embed (YouTube, Facebook, Vimeo) — proporção 16:9 padronizada */
.feed-embed--ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  line-height: 0;
}
.feed-embed__slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.feed-embed__slot iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  border: 0;
}
.feed-embed--facebook .feed-embed__slot iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100% !important;
  height: 100% !important;
  transform: translate(-50%, -50%);
}

/* Player de áudio no feed */
.feed-audio-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.35rem;
  line-height: normal;
  background: linear-gradient(
    135deg,
    var(--bg-elevated) 0%,
    rgba(var(--brand-rgb), 0.12) 55%,
    var(--bg-card) 100%
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feed-audio-card__cover {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--brand-deep), var(--brand-light));
  box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.35);
}
.feed-audio-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feed-audio-card__icon {
  font-size: 1.45rem;
  color: #fff;
  line-height: 1;
}
.feed-audio-card__body {
  flex: 1;
  min-width: 0;
}
.feed-audio-card__title {
  margin: 0 0 0.2rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feed-audio-card__artist {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feed-audio-card__player {
  width: 100%;
}
.feed-audio-card .feed-audio {
  display: block;
  width: 100%;
  height: 40px;
  margin: 0;
  accent-color: var(--brand);
  border-radius: 999px;
  filter: drop-shadow(0 2px 8px rgba(var(--brand-rgb), 0.2));
}
.feed-audio-card .feed-audio::-webkit-media-controls-panel {
  background: rgba(var(--brand-rgb), 0.08);
  border-radius: 999px;
}
.feed-audio-card .feed-audio::-webkit-media-controls-play-button,
.feed-audio-card .feed-audio::-webkit-media-controls-mute-button {
  filter: brightness(1.1);
}
[data-theme="light"] .feed-audio-card {
  background: linear-gradient(
    135deg,
    #f0f4fc 0%,
    rgba(var(--brand-rgb), 0.1) 60%,
    #fff 100%
  );
}
@media (max-width: 480px) {
  .feed-audio-card {
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }
  .feed-audio-card__cover {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }
}
.feed-embed--instagram {
  background: transparent;
  min-height: 480px;
  line-height: normal;
}
.feed-embed--instagram .instagram-media,
.feed-embed--instagram iframe {
  position: static !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}
.feed-embed--tiktok {
  background: #000;
}
.feed-media-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.35rem;
  line-height: normal;
  background: var(--bg-elevated);
  color: var(--brand-light);
  text-decoration: none;
  font-weight: 600;
  box-sizing: border-box;
}
.feed-media-link:hover { text-decoration: underline; }
.feed-card__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }

.btn-like {
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  padding: 0.45rem 0.95rem;
  min-height: 38px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--duration) var(--ease-out);
}

.btn-like:hover { border-color: var(--accent); color: var(--accent); }
.btn-like.liked {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255, 92, 154, 0.1);
  box-shadow: 0 0 12px var(--accent-glow);
}

.feed-comment-form { display: flex; gap: 0.35rem; flex: 1; min-width: 200px; }
.feed-comments { margin: 0.75rem 0 0; padding: 0; list-style: none; font-size: 0.85rem; color: var(--text-muted); }

/* ── Stories ── */
.stories-bar {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.stories-bar::-webkit-scrollbar { display: none; }

.stories-bar__empty { margin: 0; color: var(--text-muted); font-size: 0.9rem; }

.story-ring {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  max-width: 80px;
  padding: 0;
}

.story-ring img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
              linear-gradient(135deg, var(--accent), var(--primary)) border-box;
  object-fit: cover;
  padding: 2px;
  transition: transform var(--duration) var(--ease-spring);
}

.story-ring:hover img { transform: scale(1.05); }
.story-ring--seen img {
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
              var(--border) border-box;
}

.story-ring span {
  font-size: 0.72rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  color: var(--text-muted);
}

/* Story viewer */
.story-viewer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #000;
  display: grid;
  place-items: center;
  touch-action: manipulation;
}

.story-viewer[hidden] { display: none !important; }
body.story-viewer-open { overflow: hidden; }

.story-viewer__top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  padding: calc(0.75rem + env(safe-area-inset-top)) 1rem 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), transparent);
}

.story-viewer__progress { display: flex; gap: 4px; margin-bottom: 0.75rem; }

.story-viewer__segment {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,.25);
  border-radius: 999px;
  overflow: hidden;
}

.story-viewer__segment-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
}

.story-viewer__segment.done .story-viewer__segment-fill { width: 100%; transition: none; }

.story-viewer__header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.story-viewer__name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.story-viewer img, .story-viewer video { max-width: 100%; max-height: 100vh; object-fit: contain; }

.story-viewer__nav {
  position: absolute;
  top: 0; bottom: 0;
  width: 35%;
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.story-viewer__nav--prev { left: 0; }
.story-viewer__nav--next { right: 0; }

#story-close {
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  transition: background var(--duration);
}

#story-close:hover { background: rgba(0,0,0,.6); }

.story-upload { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-top: 0.75rem; }

/* ── Mini player ── */
.mini-player[hidden] { display: none !important; }

.mini-player {
  position: fixed;
  bottom: var(--bottom-nav-h);
  left: 0; right: 0;
  z-index: 90;
  height: var(--mini-player-h);
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

@media (min-width: 900px) { .mini-player { bottom: 0; } }

.mini-player__cover {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  background-size: cover;
  box-shadow: var(--shadow-sm);
}

.mini-player__info { flex: 1; min-width: 0; }
.mini-player__title { margin: 0; font-size: 0.9rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-player__artist { margin: 0; font-size: 0.75rem; color: var(--text-muted); }
.mini-player__controls { display: flex; gap: 0.15rem; }

.mini-player__controls button {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--text);
  font-size: 1.15rem;
  cursor: pointer;
  padding: 0.45rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  transition: background var(--duration), transform var(--duration) var(--ease-spring);
}

.mini-player__controls button:hover { background: rgba(var(--brand-rgb), 0.15); }
.mini-player__controls button:active { transform: scale(0.9); }
.mini-player__controls button:disabled { opacity: 0.35; cursor: default; transform: none; }

/* ── Dashboard ── */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .dashboard-grid { grid-template-columns: 1fr; }
}

.dash-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  text-align: center;
  transition: border-color var(--duration), box-shadow var(--duration);
}

.dash-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 0 24px rgba(var(--brand-rgb), 0.08);
}

.dash-card__num {
  font-size: 2.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0.5rem 0 0;
}

.live-recorder video { width: 100%; max-width: 480px; border-radius: var(--radius); background: #000; }
.live-recorder__actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1rem calc(2rem + env(safe-area-inset-bottom));
  margin-top: 3rem;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-footer__brand p { margin: 0; }

.site-footer__logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  background: none;
}

.site-footer nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.site-footer nav a { color: var(--text-muted); transition: color var(--duration); }
.site-footer nav a:hover { color: var(--primary); }

/* ── Misc ── */
.error-page { text-align: center; padding: 4rem 1rem; }

.pagination { display: flex; gap: 0.4rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }

.pagination a {
  padding: 0.45rem 0.85rem;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  transition: all var(--duration);
}

.pagination a:hover { border-color: var(--border-accent); color: var(--text); }
.pagination a.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-btn);
}

.agenda-list { list-style: none; padding: 0; margin: 0; }
.agenda-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.agenda-item time { font-weight: 700; color: var(--primary); min-width: 90px; }

.news-card, .album-card, .help-doc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  margin-bottom: 1rem;
  transition: border-color var(--duration);
}

.news-card:hover, .album-card:hover { border-color: var(--border-hover); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.15rem;
  margin-top: 1rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration), box-shadow var(--duration), border-color var(--duration);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--border-accent);
}

.product-card__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.product-card__img-link { display: block; }
.product-card__body { padding: 1rem 1.1rem; display: flex; flex-direction: column; flex: 1; }
.product-card__title { font-size: 1.05rem; margin: 0 0 0.5rem; }
.product-card__price { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin: 0 0 1rem; }
.product-card__actions { margin-top: auto; display: flex; flex-direction: column; gap: 0.5rem; }

/* ── Primeira visita: preferência de tema ── */
.theme-prompt {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 420px;
  width: calc(100% - 2rem);
  margin: auto;
  background: var(--bg-card);
  color: var(--text);
  box-shadow: var(--shadow);
}

.theme-prompt::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.theme-prompt__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.theme-prompt__lead {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.theme-prompt__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.theme-prompt__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 7rem;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: border-color var(--duration), background var(--duration), transform var(--duration);
}

.theme-prompt__option .material-symbols-rounded {
  font-size: 2rem;
  color: var(--primary);
}

.theme-prompt__option-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.theme-prompt__option:hover {
  border-color: var(--border-accent);
  background: var(--bg-card);
}

.theme-prompt__option:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.theme-prompt__option:active {
  transform: scale(0.98);
}
