:root {
  --brand: #0f766e;
  --brand-dark: #0b5c55;
  --brand-light: #14b8a6;
  --accent: #f59e0b;
  --bg: #f6f8f9;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

/* O atributo hidden deve SEMPRE esconder, mesmo quando o elemento tem
   display:flex/grid (que, por especificidade, venceria o display:none padrão).
   Isso garante que formulário e mensagem de sucesso não apareçam juntos. */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand__text strong {
  display: block;
  font-size: 1.05rem;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: 22px;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--brand);
}

.header__bairro {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  padding: 6px 10px;
}

.header__bairro-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted, #64748b);
  white-space: nowrap;
}

.header__bairro-select {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink, #0f172a);
  cursor: pointer;
  max-width: 60vw;
}

.header__bairro-select:focus {
  outline: none;
}

.nav__cta {
  border: none;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 9px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: filter 0.15s ease;
}

.nav__cta:hover {
  filter: brightness(1.07);
}

.nav__auth {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.nav__auth-user {
  color: var(--muted);
}

.nav__auth-user strong {
  color: var(--text);
}

.nav__link-btn {
  border: none;
  background: transparent;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
}

.nav__link-btn:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand) 55%, var(--brand-light));
  color: #fff;
  padding: 56px 0 64px;
}

.hero__title {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  max-width: 18ch;
}

.hero__subtitle {
  margin: 12px 0 28px;
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 52ch;
}

.search {
  display: flex;
  gap: 8px;
  background: #fff;
  padding: 8px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 640px;
}

.search__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 1rem;
  border-radius: 10px;
  color: var(--text);
}

.search__btn {
  border: none;
  background: var(--accent);
  color: #1f2937;
  font-weight: 700;
  padding: 0 22px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.05s ease, filter 0.15s ease;
}

.search__btn:hover {
  filter: brightness(1.05);
}

.search__btn:active {
  transform: scale(0.98);
}

.quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.quick__item {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.quick__item:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* Sections */
.section {
  margin: 40px 0;
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section__head h2 {
  font-size: 1.3rem;
  margin: 0;
}

.result-count {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.chip:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.chip.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.chip--clear {
  color: var(--muted);
}

/* Grid + cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__media--fallback {
  display: grid;
  place-items: center;
}

.card__initials {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #1f2937;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.card__cat {
  display: inline-block;
  align-self: flex-start;
  background: #ecfdf5;
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}

.card__name {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
}

.card__desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text);
  margin-top: 4px;
}

.card__meta span {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.card__meta .ico {
  flex-shrink: 0;
}

.card__actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.btn {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.15s ease;
}

.btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn--wpp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.btn--wpp:hover {
  filter: brightness(1.05);
  color: #fff;
}

.empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  border-radius: 18px;
  padding: 40px;
  margin: 50px 0;
  text-align: center;
}

.cta h2 {
  margin: 0 0 8px;
}

.cta p {
  margin: 0 auto;
  max-width: 56ch;
  opacity: 0.85;
}

.cta__btn {
  margin-top: 20px;
  border: none;
  background: var(--accent);
  color: #1f2937;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: filter 0.15s ease;
}

.cta__btn:hover {
  filter: brightness(1.05);
}

/* Botão de remover card local */
.card__remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.15s ease;
}

.card__remove:hover {
  border-color: #ef4444;
  color: #ef4444;
}

.card__cat--local {
  background: #eff6ff;
  color: #1d4ed8;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
}

.modal__dialog {
  position: relative;
  background: var(--surface);
  border-radius: 16px;
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.3);
  animation: pop 0.18s ease;
}

@keyframes pop {
  from {
    transform: translateY(8px) scale(0.98);
    opacity: 0;
  }
}

.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.modal__head h2 {
  margin: 0;
  font-size: 1.25rem;
}

.modal__close {
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

.modal__close:hover {
  color: var(--text);
}

/* Form */
.form {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field > span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.field input[type="text"],
.field input[type="tel"] {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease;
}

.field input:focus {
  border-color: var(--brand);
}

.field input[type="file"] {
  font-size: 0.9rem;
  font-family: inherit;
}

.field__preview {
  position: relative;
  width: 120px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.field__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.field__preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
}

.field--check {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.form__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.field--check span {
  font-weight: 500;
  color: var(--muted);
}

.form__error {
  margin: 0;
  color: #ef4444;
  font-size: 0.88rem;
}

.form__notice {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.form__account {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.form__account strong {
  color: var(--text);
}

/* Bloco de sucesso (cadastro enviado p/ aprovação) */
.sucesso {
  padding: 30px 26px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sucesso__icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #ecfdf5;
  display: grid;
  place-items: center;
}

.sucesso h3 {
  margin: 0;
  font-size: 1.3rem;
}

.sucesso p {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
}

.sucesso__nota {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.sucesso .btn {
  margin-top: 6px;
  min-width: 160px;
  flex: 0 0 auto;
}

/* Auth modal */
.modal__dialog--sm {
  width: min(420px, 100%);
}

.auth {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth__intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.btn--google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  padding: 11px 14px;
}

.btn--google:hover {
  background: #f8fafc;
  border-color: var(--border);
  color: var(--text);
}

.auth__divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.auth__divider::before,
.auth__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth__divider span {
  padding: 0 10px;
}

.auth .form {
  padding: 0;
  gap: 12px;
}

.auth__note {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Status do período grátis (cards do anunciante) */
.card__trial {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  margin-top: 2px;
}

.card__trial--ativo {
  background: #ecfdf5;
  color: #047857;
}

.card__trial--expirado {
  background: #fef2f2;
  color: #b91c1c;
}

.form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}

.form__actions .btn {
  flex: 0 0 auto;
  padding: 11px 20px;
}

.btn--primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.btn--primary:hover {
  filter: brightness(1.07);
  color: #fff;
  border-color: var(--brand);
}

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

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 26px 0;
  margin-top: 30px;
}

.footer__inner {
  text-align: center;
}

.footer p {
  margin: 4px 0;
  font-size: 0.9rem;
}

.footer__muted {
  color: var(--muted);
}

@media (max-width: 640px) {
  .nav {
    display: none;
  }
  .search {
    flex-direction: column;
  }
  .search__btn {
    padding: 12px;
  }
  .cta {
    padding: 28px 20px;
  }
}

.footer__admin {
  color: var(--muted);
  text-decoration: underline;
}

.footer__admin:hover {
  color: var(--brand);
}

/* Assinatura do desenvolvedor */
.assinatura {
  font-family: "Inter", ui-monospace, monospace;
  font-weight: 800;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, var(--brand-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-decoration: none;
  transition: filter 0.15s ease;
}

.assinatura:hover {
  filter: brightness(1.15) saturate(1.2);
}

/* ---------- Renovação via Pix ---------- */
.card__renovar {
  margin-top: 10px;
  width: 100%;
}

.pix {
  padding: 22px 24px 26px;
  text-align: center;
}

.pix__info {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.pix__loading {
  display: flex;
  justify-content: center;
  padding: 24px 0;
}

.pix__qr {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  background: #fff;
}

.pix__rotulo {
  margin: 16px 0 6px;
  font-weight: 600;
  font-size: 0.85rem;
}

.pix__codigo {
  width: 100%;
  resize: none;
  font-family: ui-monospace, monospace;
  font-size: 0.78rem;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  word-break: break-all;
}

.pix__aguardando {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.85rem;
}

.spinner {
  width: 34px;
  height: 34px;
  border: 3px solid var(--border);
  border-top-color: var(--brand);
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.8s linear infinite;
}

.spinner--sm {
  width: 16px;
  height: 16px;
  border-width: 2px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===================== Painel administrativo ===================== */

.admin-body {
  background: #f1f5f9;
}

.brand--center {
  flex-direction: column;
  text-align: center;
  gap: 8px;
}

/* Gate de acesso */
.gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}

/* O atributo hidden precisa vencer o display:grid/flex acima */
.gate[hidden],
.admin[hidden] {
  display: none;
}

.gate__box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px 26px;
  width: min(380px, 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gate__box .field input {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}

.gate__box .field input:focus {
  border-color: var(--brand);
}

.gate__back {
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
}

.gate__back a {
  color: var(--muted);
}

.gate__back a:hover {
  color: var(--brand);
}

/* Topo do painel */
.admin__top {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 20;
}

.admin__top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.admin__top-actions .btn {
  flex: 0 0 auto;
  padding: 9px 14px;
  font-size: 0.88rem;
}

.admin__main {
  width: min(1200px, 94%);
  margin: 0 auto;
  padding: 24px 0 60px;
}

/* Estatísticas */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__valor {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--brand);
}

.stat__rotulo {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Toolbar */
.admin__toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.admin__search {
  flex: 1;
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.admin__select {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 12px;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--surface);
  cursor: pointer;
}

.admin__add {
  flex: 0 0 auto;
}

/* Tabela */
.admin__table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow-x: auto;
}

.admin__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin__table th {
  text-align: left;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--muted);
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.admin__table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin__table tr:last-child td {
  border-bottom: none;
}

.admin__table tr.is-inactive {
  opacity: 0.55;
}

.admin__table tr.is-pending {
  background: #fffbeb;
}

.admin__loja {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin__loja strong {
  display: block;
}

.admin__loja small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.admin__thumb {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.admin__thumb--fb {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.muted {
  color: var(--muted);
}

.admin__cliques {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
}

.admin__cliques strong {
  color: var(--text, #1a1a1a);
}

/* Tags de status */
.tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  white-space: nowrap;
}

.tag--neutro {
  background: #f1f5f9;
  color: #475569;
}

.tag--info {
  background: #eff6ff;
  color: #1d4ed8;
}

.tag--ok {
  background: #ecfdf5;
  color: #047857;
}

.tag--trial {
  background: #fffbeb;
  color: #b45309;
}

.tag--erro {
  background: #fef2f2;
  color: #b91c1c;
}

/* Toggles */
.toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.15s ease;
}

.toggle--on {
  background: #ecfdf5;
  border-color: #6ee7b7;
  color: #047857;
}

.toggle--star {
  background: #fffbeb;
  border-color: #fcd34d;
  color: #b45309;
  font-size: 1rem;
  line-height: 1;
}

/* Botões pequenos */
.admin__acoes {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.btn-mini {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-mini:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-mini--danger:hover {
  border-color: #ef4444;
  color: #ef4444;
}

.btn-mini--approve {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.btn-mini--approve:hover {
  filter: brightness(1.07);
  color: #fff;
  border-color: var(--brand);
}

@media (max-width: 760px) {
  .admin__top {
    flex-direction: column;
    align-items: flex-start;
  }
}
