:root {
  --bg: #f6f6f6;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  --radius: 18px;

  --sidebarW: 92px;
  --sidebarPad: 14px;

  --wrapMax: 1180px;
  --feedMax: 760px;
  --rightW: 320px;
  --gap: 24px;
}

/* =========================
   BASE
========================= */

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    "Noto Sans",
    "Helvetica Neue",
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

/* =========================
   SIDEBAR DESKTOP
========================= */

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--sidebarW);
  padding: var(--sidebarPad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.72);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  z-index: 50;
}

.brand {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #111827;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: -1px;
}

.navicon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.08s ease,
    box-shadow 0.08s ease,
    background 0.08s ease;
}

.navicon:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  background: #fafafa;
}

.navicon i {
  font-size: 18px;
}

.navicon.primary {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.navspacer {
  flex: 1;
}

/* =========================
   LAYOUT
========================= */

.wrap {
  max-width: var(--wrapMax);
  margin: 0 auto;
  padding: 18px 18px 90px;
  padding-left: calc(18px + var(--sidebarW));
}

.app {
  display: flex;
  gap: var(--gap);
  align-items: flex-start;
  justify-content: center;
}

.main {
  flex: 0 1 var(--feedMax);
  min-width: 0;
  width: 100%;
  max-width: var(--feedMax);
}

.right {
  width: var(--rightW);
  flex: 0 0 var(--rightW);
  position: sticky;
  top: 18px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================
   MOBILE HEADER
========================= */

.mobile-header {
  display: none;
}

.mobile-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.mobile-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #111827;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: -0.5px;
}

.mobile-logo-text {
  font-size: 18px;
}

.mobile-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   PAINÉIS LATERAIS
========================= */

.panel {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  padding: 14px;
  backdrop-filter: blur(10px);
}

.panel h4 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
}

.panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.panel-actions {
  margin-top: 14px;
}

.sponsored-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tag-list {
  display: grid;
  gap: 8px;
}

.tag {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
}

.tag:hover {
  background: #f9fafb;
}

/* =========================
   BOTÕES
========================= */

.btn {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}

/* Padrão / claro */
.btn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: var(--text);
  transform: translateY(-1px);
}

/* Escuro / principal */
.btn.dark {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.btn.dark:hover {
  background: #030712;
  border-color: #030712;
  color: #ffffff;
}

/* Transparente */
.btn.ghost {
  background: transparent;
  border-color: transparent;
  color: var(--text);
}

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

/* Perigo / excluir */
.btn.danger {
  background: #fff7f7;
  border-color: #fecaca;
  color: #b91c1c;
}

.btn.danger:hover {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
}

/* Aviso / atenção */
.btn.warning {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

.btn.warning:hover {
  background: #fef3c7;
  border-color: #fcd34d;
  color: #78350f;
}

/* Sucesso / positivo */
.btn.success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #047857;
}

.btn.success:hover {
  background: #d1fae5;
  border-color: #6ee7b7;
  color: #065f46;
}

/* Largura total */
.btn.full {
  width: 100%;
  height: 46px;
}

/* Estado desabilitado */
.btn:disabled,
.btn.disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

/* =========================
   TOPO / TABS / IDIOMAS
========================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 64px;
  padding: 10px 16px 12px;
  background: linear-gradient(to bottom, var(--bg) 70%, rgba(246, 246, 246, 0));
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar-logo {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.topbar-logo img {
  display: block;
  width: 168px;
  height: auto;
  max-height: 44px;
}

.topbar-menu-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: var(--muted);
}

.tab {
  padding: 10px 2px;
  border-bottom: 2px solid transparent;
  color: inherit;
}

.tab.active {
  color: var(--text);
  border-bottom-color: var(--text);
}

.topbar-languages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}

.topbar-language-flag {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  border: 1px solid transparent;
  transition: 0.15s ease;
}

.topbar-language-flag:hover,
.topbar-language-flag.active {
  opacity: 1;
  transform: translateY(-1px);
}

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

@media (max-width: 900px) {
  .topbar {
    min-height: auto;
    padding-left: 14px;
    padding-right: 14px;
  }

  .topbar-logo img {
    width: 138px;
    max-height: 38px;
  }

  .topbar .tabs {
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .topbar .tabs::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 520px) {
  .topbar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .topbar-logo {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .topbar-logo img {
    width: 138px;
    max-height: 38px;
  }

  .topbar-menu-area {
    width: 100%;
  }

  .topbar .tabs {
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .topbar-languages {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   HERO / BUSCA
========================= */

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 22px;
  margin-top: 10px;
}

.hero-title {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

.search-box {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}

.search-box input {
  flex: 1;
  min-width: 0;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: #ffffff;
  color: var(--text);
  outline: none;
}

.search-box input:focus {
  border-color: #111827;
}

/* =========================
   PILLS / CATEGORIAS DO HERO
========================= */

.category-pills {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.category-pills::-webkit-scrollbar {
  display: none;
}

.pill {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.pill:hover {
  background: #f9fafb;
}

/* =========================
   FEED / CARDS DE GRUPOS
========================= */

.feed {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.group-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.group-card-featured {
  background: linear-gradient(135deg, #fff8e6 0%, #ffffff 72%);
  border-color: #f1c75b;
  box-shadow: 0 12px 34px rgba(180, 132, 20, 0.14);
}

.group-card-featured:hover {
  box-shadow: 0 14px 38px rgba(180, 132, 20, 0.18);
}

.group-card-main {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.group-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 22px;
  background: #f3f4f6;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.group-content {
  flex: 1;
  min-width: 0;
}

.group-topline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.group-platform,
.group-category,
.group-locale {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.group-category {
  background: #f3f4f6;
  color: #374151;
}

.group-title {
  margin: 0;
  max-width: 100%;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.group-description {
  margin: 7px 0 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.45;
  display: block;
  overflow: visible;
}

.group-stats {
  margin-top: 10px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.group-stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.group-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

.group-actions .btn {
  min-width: 190px;
}

/* =========================
   TEMAS DOS ÍCONES
========================= */

.theme-green {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #128c7e;
}

.theme-blue {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #229ed9;
}

.theme-purple {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #5865f2;
}

.theme-orange {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #ea580c;
}

.theme-red {
  background: #fef2f2;
  border-color: #fecaca;
  color: #dc2626;
}

.theme-gray {
  background: #f9fafb;
  border-color: #e5e7eb;
  color: #374151;
}

.theme-dark {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

/* =========================
   SELOS DAS PLATAFORMAS
========================= */

.platform-whatsapp_group {
  background: #dcfce7;
  color: #166534;
}

.platform-whatsapp_channel {
  background: #e7ffe7;
  color: #128c7e;
}

.platform-telegram {
  background: #dbeafe;
  color: #1d4ed8;
}

.platform-discord {
  background: #e0e7ff;
  color: #3730a3;
}

.platform-facebook_group {
  background: #e0f2fe;
  color: #075985;
}

/* =========================
   PAÍS / IDIOMA
========================= */

.group-locale {
  gap: 6px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: #374151;
  text-transform: uppercase;
}

.group-locale.no-flag::before {
  content: "🌐";
  font-size: 13px;
  line-height: 1;
}

.group-flag {
  width: 20px;
  height: 15px;
  border-radius: 3px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.group-locale .lang {
  font-size: 11px;
  letter-spacing: 0.02em;
}

/* =========================
   CATEGORIAS / PÁGINA
========================= */

.categorias-feed {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.categoria-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.categoria-card {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr 36px;
  gap: 14px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.categoria-card-link:hover .categoria-card {
  transform: translateY(-1px);
  border-color: rgba(17, 24, 39, 0.18);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.categoria-card-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 22px;
  background: #f3f4f6;
  border: 1px solid var(--line);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.categoria-card-content {
  min-width: 0;
}

.categoria-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #f9fafb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.categoria-card-link:hover .categoria-card-arrow {
  background: #111827;
  color: #ffffff;
}

.page-message-card {
  margin-top: 14px;
}

/* =========================
   AUTH / LOGIN / CADASTRO
   ATIVAR / RECUPERAR / REDEFINIR
========================= */

.auth-box {
  margin-top: 14px;
}

.auth-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-label {
  font-size: 13px;
  font-weight: 900;
  color: #111827;
}

.form-control {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: #ffffff;
  color: var(--text);
  outline: none;
}

.form-control:focus {
  border-color: #111827;
}

.code-input {
  text-align: center;
  font-weight: 900;
  letter-spacing: 8px;
  font-size: 20px;
}

.auth-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.auth-link {
  color: #111827;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-resend {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.auth-resend-text {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.auth-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.auth-footer a {
  font-weight: 900;
  color: #111827;
}

.form-alert {
  display: none;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.form-alert.show {
  display: block;
}

.form-alert.ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #bbf7d0;
}

.form-alert.err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* =========================
   TOAST
========================= */

.toast-root {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  min-width: 260px;
  max-width: 360px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.18s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast .ico {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.toast .txt {
  flex: 1;
}

.toast .title {
  font-weight: 900;
  font-size: 13px;
  line-height: 1.1;
}

.toast .msg {
  font-size: 13px;
  color: #374151;
  margin-top: 2px;
  white-space: pre-line;
}

.toast .x {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  color: #6b7280;
  padding: 2px 6px;
}

.toast--ok {
  border-color: #bbf7d0;
}

.toast--ok .ico {
  color: #059669;
}

.toast--warn {
  border-color: #fde68a;
}

.toast--warn .ico {
  color: #d97706;
}

.toast--err {
  border-color: #fecaca;
}

.toast--err .ico {
  color: #dc2626;
}

/* =========================
   BOTTOM NAV MOBILE
========================= */

.bottom-nav {
  display: none;
}

/* =========================
   RESPONSIVO TABLET
========================= */

@media (max-width: 1060px) {
  .wrap {
    max-width: 860px;
  }

  .app {
    display: block;
  }

  .right,
  .produto-right {
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: none;
    position: static;
    height: auto;
    max-height: none;
    overflow: visible;
    margin-top: 14px;
  }
}

/* =========================
   RESPONSIVO MOBILE
========================= */

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  .sidebar {
    display: none;
  }

  .wrap {
    padding: 0 12px 12px;
  }

  .app {
    display: block;
  }

  .main {
    max-width: none;
  }

  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 2px 8px;
  }

  .topbar {
    padding: 6px 0 10px;
  }

  .tabs {
    gap: 20px;
    font-size: 14px;
  }

  .hero-card,
  .group-card {
    border-radius: 16px;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-title {
    font-size: 24px;
  }

  .search-box {
    flex-direction: column;
  }

  .search-box .btn {
    width: 100%;
  }

  .group-card-main {
    gap: 12px;
  }

  .group-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    border-radius: 20px;
    font-size: 26px;
  }

  .group-topline {
    gap: 6px;
  }

  .group-actions {
    justify-content: stretch;
  }

  .group-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .categoria-card {
    grid-template-columns: 62px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .categoria-card-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    border-radius: 20px;
    font-size: 24px;
  }

  .categoria-card-arrow {
    display: none;
  }

  .bottom-nav {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(10px);
    z-index: 1000;
    overflow: hidden;
  }

  .bottom-items {
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  }

  .bottom-items::-webkit-scrollbar {
    display: none;
  }

  .bbtn {
    flex: 0 0 20%;
    width: 20%;
    min-width: 20%;
    max-width: 20%;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #111827;
  }

  .bbtn-core {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid transparent;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .bbtn i {
    font-size: 20px;
  }

  .bbtn.is-active .bbtn-core {
    background: #f3f4f6;
    border-color: var(--line);
  }

  .bbtn-plus .bbtn-core {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #111827;
    border-color: #111827;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  }

  .toast-root {
    left: 12px;
    right: 12px;
    bottom: 88px;
  }

  .toast {
    max-width: none;
    width: 100%;
  }
}

/* =========================
   BLOG
========================= */

.blog-feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.blog-card-image {
  width: 150px;
  height: 150px;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f4f6;
  display: block;
}

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

.blog-card-content {
  min-width: 0;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
}

.blog-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 4px 9px;
}

.blog-card-title {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.2;
  color: #111827;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-title a:hover {
  text-decoration: underline;
}

.blog-card-summary {
  margin: 0 0 12px;
  color: #374151;
  font-size: 14px;
  line-height: 1.55;
}

.blog-card-link {
  color: #0f172a;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.blog-card-link:hover {
  text-decoration: underline;
}

/* Post aberto */

.post-page {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.post-hero {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}

.post-hero-image {
  width: 230px;
  height: 230px;
  border-radius: 22px;
  overflow: hidden;
  background: #f3f4f6;
}

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

.post-title {
  margin: 8px 0 10px;
  font-size: 32px;
  line-height: 1.12;
  color: #111827;
}

.post-summary {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.55;
}

.post-content {
  color: #1f2937;
  font-size: 16px;
  line-height: 1.75;
}

.post-content p {
  margin: 0 0 16px;
}

.post-content h2 {
  margin: 28px 0 12px;
  font-size: 24px;
  line-height: 1.25;
  color: #111827;
}

.post-content h3 {
  margin: 22px 0 10px;
  font-size: 20px;
  line-height: 1.3;
  color: #111827;
}

.post-content ul,
.post-content ol {
  margin: 0 0 18px 20px;
  padding: 0;
}

.post-back {
  margin-top: 24px;
}

@media (max-width: 720px) {
  .blog-card {
    grid-template-columns: 96px 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .blog-card-image {
    width: 96px;
    height: 96px;
    border-radius: 15px;
  }

  .blog-card-title {
    font-size: 16px;
  }

  .blog-card-summary {
    font-size: 13px;
    line-height: 1.45;
  }

  .blog-card-meta {
    gap: 5px;
    font-size: 11px;
  }

  .blog-card-meta span {
    padding: 3px 7px;
  }

  .post-page {
    padding: 14px;
    border-radius: 20px;
  }

  .post-hero {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .post-hero-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 18px;
  }

  .post-title {
    font-size: 24px;
  }

  .post-summary {
    font-size: 14px;
  }

  .post-content {
    font-size: 15px;
    line-height: 1.7;
  }
}
/* Ajuste de respiro entre topo do blog e lista */
.blog-hero {
  margin-bottom: 14px;
}

.blog-feed {
  margin-top: 14px;
}

.blog-message-card {
  margin-top: 14px;
}

/* =========================
   POST - CURTIDAS
========================= */

.post-actions-row {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.post-back-btn {
  width: auto;
}

.post-like-action {
  width: 44px;
  height: 44px;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.12);
}

.post-like-action i {
  font-size: 17px;
}

.post-like-action:hover {
  border-color: #93c5fd;
  background: #dbeafe;
  color: #1d4ed8;
  transform: translateY(-1px);
}

.post-like-action.liked {
  border-color: #d1d5db;
  background: #f3f4f6;
  color: #9ca3af;
  box-shadow: none;
  cursor: default;
  opacity: 0.75;
}

.post-like-action.loading {
  opacity: 0.65;
  cursor: wait;
}

.post-like-action:disabled {
  pointer-events: none;
}

#post-like-count,
.post-like-count-inline {
  display: inline !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  box-shadow: none !important;
}

@media (max-width: 720px) {
  .post-actions-row {
    margin-top: 22px;
  }

  .post-like-action {
    width: 42px;
    height: 42px;
  }
}

/* =========================================================
   BANNERS
========================================================= */

.banner-card {
  width: 100%;
  overflow: hidden;
}

.banner-card a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.banner-card picture {
  display: block;
  width: 100%;
}

.banner-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  object-fit: cover;
}

.banner-card-sidebar {
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
}

.banner-card-sidebar img {
  aspect-ratio: 1 / 1;
}

.banner-card-feed {
  margin: 18px 0;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f4f6;
}

.banner-card-feed img {
  aspect-ratio: 4 / 1;
}

@media (max-width: 720px) {
  .banner-card-feed img {
    aspect-ratio: 1 / 1;
  }
}

/* =========================================================
   Novo Grupo
========================================================= */

.jg-page-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.06);
}

.jg-page-title {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #070b16;
}

.jg-page-subtitle {
  margin: 0;
  color: #6b7280;
  line-height: 1.5;
}

.jg-credit-box {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.jg-credit-item {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 14px 16px;
  background: #f9fafb;
}

.jg-credit-label {
  display: block;
  font-size: 12px;
  color: #6b7280;
  font-weight: 800;
  margin-bottom: 5px;
}

.jg-credit-value {
  display: block;
  color: #111827;
  font-size: 18px;
  font-weight: 950;
}

.jg-form {
  margin-top: 20px;
  display: grid;
  gap: 18px;
}

.jg-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.jg-field {
  display: grid;
  gap: 7px;
}

.jg-field-full {
  grid-column: 1 / -1;
}

.jg-field label {
  font-size: 13px;
  font-weight: 900;
  color: #111827;
}

.jg-field small {
  color: #6b7280;
  line-height: 1.4;
}

.jg-field input,
.jg-field select,
.jg-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  padding: 0 14px;
  background: #fff;
  color: #111827;
  font: inherit;
  outline: none;
}

.jg-field textarea {
  min-height: 118px;
  padding-top: 13px;
  resize: vertical;
}

.jg-field input:focus,
.jg-field select:focus,
.jg-field textarea:focus {
  border-color: #111827;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.08);
}

.jg-alert {
  display: none;
  padding: 13px 15px;
  border-radius: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.jg-alert.ok {
  display: block;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.jg-alert.erro {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.jg-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.jg-actions-note {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.4;
}

.jg-btn-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.jg-btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  color: #111827;
  background: #fff;
  text-decoration: none;
  font-weight: 900;
}

.jg-color-preview {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-block;
  border: 1px solid rgba(17, 24, 39, 0.16);
  vertical-align: middle;
  margin-right: 6px;
}

.jg-field-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.jg-counter {
  font-size: 12px;
  font-weight: 800;
  color: #6b7280;
  white-space: nowrap;
}

.jg-counter.is-danger {
  color: #b91c1c;
}

@media (max-width: 760px) {
  .jg-page-card {
    padding: 20px;
    border-radius: 18px;
  }

  .jg-form-grid,
  .jg-credit-box {
    grid-template-columns: 1fr;
  }

  .jg-page-title {
    font-size: 25px;
  }

  .jg-actions {
    align-items: stretch;
  }

  .jg-btn-row,
  .jg-btn-row .btn,
  .jg-btn-row .jg-btn-light {
    width: 100%;
  }
}

/* =========================================================
   PAINEL
========================================================= */

.painel-page {
  display: grid;
  gap: 16px;
}

.painel-hero,
.painel-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.06);
}

.painel-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.painel-title {
  margin: 0 0 6px;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #070b16;
}

.painel-subtitle {
  margin: 0;
  color: #6b7280;
  line-height: 1.5;
}

.painel-balance {
  min-width: 220px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 16px;
  background: #f9fafb;
}

.painel-balance span {
  display: block;
  font-size: 12px;
  color: #6b7280;
  font-weight: 900;
  margin-bottom: 5px;
}

.painel-balance strong {
  display: block;
  color: #111827;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.painel-actions-top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.painel-btn-light,
.painel-btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  font: inherit;
}

.painel-btn-danger {
  color: #b91c1c;
  border-color: #fecaca;
  background: #fff7f7;
}

.painel-section-title {
  margin: 0 0 4px;
  font-size: 20px;
  color: #070b16;
  letter-spacing: -0.03em;
}

.painel-section-text {
  margin: 0 0 16px;
  color: #6b7280;
  line-height: 1.5;
}

.painel-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.painel-banner-box {
  display: grid;
  gap: 10px;
}

.painel-banner-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.painel-stat {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 12px;
  background: #f9fafb;
}

.painel-stat span {
  display: block;
  font-size: 12px;
  color: #6b7280;
  font-weight: 800;
  margin-bottom: 4px;
}

.painel-stat strong {
  display: block;
  color: #111827;
  font-size: 18px;
}

.painel-movements {
  display: grid;
  gap: 10px;
}

.painel-movement {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 12px 14px;
  background: #f9fafb;
}

.painel-movement-main {
  min-width: 0;
}

.painel-movement-main strong {
  display: block;
  color: #111827;
  font-size: 14px;
}

.painel-movement-main span {
  display: block;
  color: #6b7280;
  font-size: 12px;
  margin-top: 3px;
}

.painel-movement-value {
  font-weight: 950;
  white-space: nowrap;
}

.painel-movement.entrada .painel-movement-value,
.painel-movement.estorno .painel-movement-value {
  color: #047857;
}

.painel-movement.saida .painel-movement-value {
  color: #b91c1c;
}

.painel-groups {
  display: grid;
  gap: 12px;
}

.painel-group-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 16px;
}

.painel-group-icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
}

.painel-group-icon .platform-svg {
  width: 30px;
  height: 30px;
}

/* Fundo do ícone no painel */
.painel-group-icon.theme-green {
  background: #ecfdf5;
  border-color: #bbf7d0;
}

.painel-group-icon.theme-blue {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.painel-group-icon.theme-purple {
  background: #eef2ff;
  border-color: #c7d2fe;
}

.painel-group-icon.theme-orange {
  background: #fff7ed;
  border-color: #fed7aa;
}

.painel-group-icon.theme-red {
  background: #fef2f2;
  border-color: #fecaca;
}

.painel-group-icon.theme-gray {
  background: #f9fafb;
  border-color: #e5e7eb;
}

.painel-group-icon.theme-dark {
  background: #111827;
  border-color: #111827;
}

/* Cor do SVG no painel */
.painel-group-icon.icon-color-green {
  color: #16a34a;
}

.painel-group-icon.icon-color-blue {
  color: #2563eb;
}

.painel-group-icon.icon-color-telegram {
  color: #229ed9;
}

.painel-group-icon.icon-color-discord {
  color: #5865f2;
}

.painel-group-icon.icon-color-facebook {
  color: #1877f2;
}

.painel-group-icon.icon-color-black {
  color: #111827;
}

.painel-group-icon.icon-color-white {
  color: #ffffff;
}

.painel-group-icon.icon-color-gray {
  color: #6b7280;
}

.painel-group-content h3 {
  margin: 7px 0 6px;
  font-size: 19px;
  color: #070b16;
  letter-spacing: -0.03em;
}

.painel-group-content p {
  margin: 0;
  color: #4b5563;
  line-height: 1.45;
}

.painel-group-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.painel-status-badge,
.painel-soft-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: #f3f4f6;
  color: #374151;
}

.painel-status-badge.status-aprovado {
  background: #ecfdf5;
  color: #047857;
}

.painel-status-badge.status-pendente {
  background: #fffbeb;
  color: #b45309;
}

.painel-status-badge.status-recusado,
.painel-status-badge.status-suspenso {
  background: #fef2f2;
  color: #b91c1c;
}

.painel-group-meta,
.painel-group-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 11px;
  color: #6b7280;
  font-size: 13px;
}

.painel-group-prices {
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}

.painel-group-prices strong {
  color: #111827;
}

.painel-group-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  justify-content: center;
  min-width: 132px;
}

.painel-reject-reason {
  margin-top: 10px;
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
}

.painel-empty {
  border: 1px dashed #d1d5db;
  border-radius: 18px;
  padding: 20px;
  background: #f9fafb;
  color: #6b7280;
  line-height: 1.5;
}

.painel-alert {
  display: none;
  padding: 13px 15px;
  border-radius: 15px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 14px;
}

.painel-alert.ok {
  display: block;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.painel-alert.erro {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

@media (max-width: 960px) {
  .painel-hero,
  .painel-grid-2 {
    grid-template-columns: 1fr;
  }

  .painel-group-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .painel-group-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .painel-hero,
  .painel-card {
    padding: 18px;
    border-radius: 18px;
  }

  .painel-title {
    font-size: 25px;
  }

  .painel-banner-stats {
    grid-template-columns: 1fr;
  }

  .painel-group-card {
    grid-template-columns: 1fr;
  }

  .painel-group-actions,
  .painel-btn-light,
  .painel-btn-danger {
    width: 100%;
  }

  .painel-movement {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================================
   GRUPO EDITAR
========================================================= */

.jg-warning-box {
  margin-top: 18px;
  border: 1px solid #fcd34d;
  background: #fffbeb;
  color: #92400e;
  border-radius: 16px;
  padding: 13px 15px;
  line-height: 1.45;
  font-size: 14px;
  font-weight: 700;
}

/* =========================================================
   PEDIDOS
========================================================= */

.pedidos-page {
  display: grid;
  gap: 16px;
}

.pedidos-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.pedidos-list {
  display: grid;
  gap: 12px;
}

.pedido-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 16px;
}

.pedido-card-main {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}

.pedido-icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.pedido-content {
  min-width: 0;
}

.pedido-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 7px;
}

.pedido-title {
  margin: 0 0 8px;
  font-size: 19px;
  color: #070b16;
  letter-spacing: -0.03em;
}

.pedido-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.4;
}

.pedido-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pedido-meta strong {
  color: #111827;
}

.pedido-meta-secondary {
  margin-top: 8px;
}

.pedido-reference {
  margin-top: 10px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 14px;
  padding: 9px 11px;
  color: #6b7280;
  font-size: 13px;
}

.pedido-reference strong {
  color: #111827;
}

.pedido-details {
  margin-top: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 10px;
}

.pedido-details summary {
  cursor: pointer;
  color: #111827;
  font-size: 13px;
  font-weight: 900;
}

.pedido-items {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.pedido-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 14px;
  padding: 10px 12px;
}

.pedido-item strong {
  display: block;
  color: #111827;
  font-size: 13px;
}

.pedido-item span {
  display: block;
  margin-top: 3px;
  color: #6b7280;
  font-size: 12px;
}

.pedido-item-values {
  text-align: right;
  white-space: nowrap;
}

.pedido-item-values span {
  margin: 0;
  color: #111827;
  font-weight: 950;
}

.pedido-item-values small {
  display: block;
  margin-top: 3px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
}

.pedido-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 170px;
}

.pedido-action-muted {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #6b7280;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.painel-status-badge.status-pago {
  background: #ecfdf5;
  color: #047857;
}

.painel-status-badge.status-cancelado,
.painel-status-badge.status-expirado {
  background: #fef2f2;
  color: #b91c1c;
}

.pedidos-empty-action {
  margin-top: 14px;
}

@media (max-width: 960px) {
  .pedidos-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .pedido-card {
    grid-template-columns: 1fr;
  }

  .pedido-actions {
    justify-content: flex-start;
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .pedidos-stats {
    grid-template-columns: 1fr;
  }

  .pedido-card {
    padding: 14px;
    border-radius: 18px;
  }

  .pedido-card-main {
    grid-template-columns: 1fr;
  }

  .pedido-actions,
  .pedido-actions .painel-btn-light,
  .pedido-action-muted {
    width: 100%;
  }

  .pedido-item {
    flex-direction: column;
  }

  .pedido-item-values {
    text-align: left;
  }
}

/* =========================================================
   CRÉDITOS / CHECKOUT
========================================================= */

.creditos-page {
  display: grid;
  gap: 16px;
}

.creditos-stats,
.creditos-checkout-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.creditos-pack-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.creditos-pack {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  min-height: 330px;
}

.creditos-pack.is-featured {
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.creditos-pack.pack-bronze {
  border-color: #d6c3b1;
  background: linear-gradient(180deg, #fffdfb 0%, #fff 100%);
}

.creditos-pack.pack-prata {
  border-color: #cfd6e4;
  background: linear-gradient(180deg, #fafcff 0%, #fff 100%);
}

.creditos-pack.pack-ouro {
  border-color: #ead59a;
  background: linear-gradient(180deg, #fffdf5 0%, #fff 100%);
}

.creditos-pack.pack-diamante {
  border-color: #d8ccff;
  background: linear-gradient(180deg, #fcfbff 0%, #fff 100%);
}

.creditos-pack-head {
  padding-top: 28px;
}

.creditos-pack-title {
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  color: #111827;
  line-height: 1.15;
}

.creditos-pack-desc {
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.45;
}

.creditos-pack-total {
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  color: #0f172a;
}

.creditos-pack-label {
  margin-top: 6px;
  font-size: 12px;
  color: #64748b;
  font-weight: 800;
}

.creditos-pack-price {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 950;
  color: #111827;
}

.creditos-pack-lines {
  display: grid;
  gap: 8px;
}

.creditos-pack-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: #475569;
  border-top: 1px solid #edf2f7;
  padding-top: 8px;
}

.creditos-pack-line strong {
  color: #111827;
}

.creditos-pack-actions {
  margin-top: auto;
}

.pack-ribbon {
  position: absolute;
  top: 12px;
  right: 0;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px 0 14px;
  font-size: 11px;
  font-weight: 950;
  color: #fff;
  border-radius: 14px 0 0 14px;
  z-index: 2;
}

.pack-ribbon.is-bronze {
  background: linear-gradient(90deg, #8a5a3c, #b47b55);
}

.pack-ribbon.is-prata {
  background: linear-gradient(90deg, #64748b, #94a3b8);
}

.pack-ribbon.is-ouro {
  background: linear-gradient(90deg, #b7791f, #d4a72c);
}

.pack-ribbon.is-diamante {
  background: linear-gradient(90deg, #7c3aed, #8b5cf6);
}

.pack-ribbon.is-gray {
  background: linear-gradient(90deg, #374151, #6b7280);
}

.pack-ribbon.is-blue {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.pack-ribbon.is-green {
  background: linear-gradient(90deg, #059669, #10b981);
}

.pack-ribbon.is-purple {
  background: linear-gradient(90deg, #7c3aed, #8b5cf6);
}

.pack-ribbon.is-orange {
  background: linear-gradient(90deg, #ea580c, #f97316);
}

.creditos-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.creditos-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.creditos-table th,
.creditos-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid #eef2f7;
  font-size: 13px;
  vertical-align: middle;
}

.creditos-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #6b7280;
  font-weight: 950;
}

.creditos-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  background: #f3f4f6;
  color: #374151;
}

.creditos-status.status-pago {
  background: #ecfdf5;
  color: #047857;
}

.creditos-status.status-pendente {
  background: #fffbeb;
  color: #b45309;
}

.creditos-status.status-cancelado,
.creditos-status.status-expirado {
  background: #fef2f2;
  color: #b91c1c;
}

.creditos-table-footer {
  margin-top: 14px;
}

.creditos-checkout-form {
  display: grid;
  gap: 18px;
}

.creditos-cartao-layout {
  display: grid;
  gap: 24px;
}

.creditos-cartao-section {
  display: grid;
  gap: 14px;
}

.creditos-cartao-section-title {
  margin: 0;
  font-size: 17px;
  font-weight: 950;
  color: #111827;
}

.creditos-cartao-section-help {
  margin: 4px 0 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.45;
}

.creditos-checkout-row {
  display: grid;
  gap: 14px;
}

.creditos-checkout-row.cols-1 {
  grid-template-columns: 1fr;
}

.creditos-checkout-row.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.creditos-checkout-row.cols-4 {
  grid-template-columns:
    minmax(220px, 1.5fr) minmax(80px, 0.5fr) minmax(90px, 0.5fr)
    minmax(90px, 0.5fr);
  align-items: end;
}

.creditos-checkout-field {
  min-width: 0;
}

.creditos-checkout-field .label {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 900;
  color: #6b7280;
}

.creditos-checkout-input,
.creditos-checkout-select {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #dbe1ea;
  border-radius: 14px;
  background: #fff;
  color: #111827;
  font: inherit;
  outline: none;
  box-sizing: border-box;
}

.creditos-checkout-input:focus,
.creditos-checkout-select:focus {
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.creditos-checkout-input[readonly] {
  background: #f8fafc;
  color: #64748b;
}

.creditos-checkout-input-card {
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 800;
}

.creditos-checkout-field-mes .creditos-checkout-input,
.creditos-checkout-field-ano .creditos-checkout-input,
.creditos-checkout-field-cvv .creditos-checkout-input {
  text-align: center;
}

.creditos-checkout-select-wrap {
  position: relative;
}

.creditos-checkout-select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.85;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7L10 12L15 7' stroke='%236b7280' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.creditos-checkout-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
}

.creditos-checkout-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.creditos-checkout-actions .btn,
.creditos-checkout-actions .painel-btn-light {
  min-height: 48px;
  padding: 0 18px;
}

.creditos-checkout-note {
  margin: 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .creditos-pack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creditos-stats,
  .creditos-checkout-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .creditos-pack-grid,
  .creditos-stats,
  .creditos-checkout-kpis,
  .creditos-checkout-row.cols-2,
  .creditos-checkout-row.cols-4 {
    grid-template-columns: 1fr;
  }

  .creditos-pack {
    min-height: auto;
  }

  .creditos-checkout-input-card {
    font-size: 18px;
    letter-spacing: 0.5px;
  }

  .creditos-checkout-actions,
  .creditos-checkout-actions .btn,
  .creditos-checkout-actions .painel-btn-light {
    width: 100%;
  }
}

.credito-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
  padding: 0;
  flex: 0 0 48px;
}

.credito-icon-btn i {
  font-size: 20px;
}

.credito-icon-btn:hover {
  transform: translateY(-1px);
  border-color: #111827;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.credito-icon-btn.is-card {
  background: #ffffff;
  color: #111827;
}

/* =========================================================
   CRÉDITOS - TABELA COMPACTA DE PEDIDOS
========================================================= */

.creditos-table.creditos-table-compact {
  min-width: 0;
  width: 100%;
}

.creditos-table-compact th,
.creditos-table-compact td {
  padding: 12px 8px;
}

.creditos-table-compact th:nth-child(1),
.creditos-table-compact td:nth-child(1) {
  width: 140px;
}

.creditos-table-compact th:nth-child(2),
.creditos-table-compact td:nth-child(2) {
  min-width: 0;
}

.creditos-table-compact th:nth-child(3),
.creditos-table-compact td:nth-child(3) {
  width: 80px;
  white-space: nowrap;
}

.creditos-table-compact th:nth-child(4),
.creditos-table-compact td:nth-child(4) {
  width: 90px;
  white-space: nowrap;
}

.creditos-table-compact th:nth-child(5),
.creditos-table-compact td:nth-child(5) {
  width: 95px;
  white-space: nowrap;
}

.creditos-order-date {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .creditos-table-wrap {
    overflow-x: auto;
  }

  .creditos-table.creditos-table-compact {
    min-width: 540px;
  }
}

/* =========================================================
   BANNERS - PAINEL / FORMULÁRIOS
========================================================= */

.banners-page {
  display: grid;
  gap: 16px;
}

.banners-summary {
  grid-template-columns: repeat(3, 1fr);
}

.painel-banners-list {
  display: grid;
  gap: 12px;
}

.painel-banner-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 16px;
}

.painel-banner-preview {
  width: 170px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.painel-banner-preview picture,
.painel-banner-preview img {
  display: block;
  width: 100%;
}

.painel-banner-preview img {
  aspect-ratio: 700 / 180;
  height: auto;
  object-fit: cover;
}

.painel-banner-preview-empty {
  width: 100%;
  aspect-ratio: 700 / 180;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 24px;
}

.painel-banner-content {
  min-width: 0;
}

.painel-banner-content h3 {
  margin: 8px 0 6px;
  font-size: 19px;
  color: #070b16;
  letter-spacing: -0.03em;
}

.painel-banner-link {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.painel-banner-meta,
.painel-banner-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  color: #6b7280;
  font-size: 13px;
}

.painel-banner-meta span,
.painel-banner-dates span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.painel-banner-dates strong {
  color: #111827;
}

.painel-status-badge.status-rascunho {
  background: #f3f4f6;
  color: #374151;
}

.painel-status-badge.status-pausado,
.painel-status-badge.status-expirado {
  background: #f3f4f6;
  color: #6b7280;
}

.banner-current-preview {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #f9fafb;
}

.banner-current-preview img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-current-preview-wide img {
  aspect-ratio: 700 / 180;
}

.banner-current-preview-square {
  max-width: 180px;
}

.banner-current-preview-square img {
  aspect-ratio: 1 / 1;
}

.banners-form-card input[type="file"] {
  padding-top: 11px;
}

@media (max-width: 960px) {
  .painel-banner-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .painel-banner-preview {
    width: 100%;
  }

  .painel-banner-card .painel-group-actions {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .banners-summary {
    grid-template-columns: 1fr;
  }

  .painel-banner-card {
    padding: 14px;
    border-radius: 18px;
  }

  .painel-banner-preview img,
  .painel-banner-preview-empty {
    aspect-ratio: 1 / 1;
  }

  .painel-banner-meta,
  .painel-banner-dates {
    flex-direction: column;
    gap: 6px;
  }

  .banner-current-preview-square {
    max-width: none;
  }
}

/* =========================================================
   DENÚNCIA / REPORTAR GRUPO
========================================================= */

.group-report-icon {
  position: absolute;
  left: 40px;
  bottom: 28px;
  z-index: 4;

  width: 30px;
  height: 30px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #9ca3af;
  background: transparent;
  text-decoration: none;

  opacity: 0.42;
  transition:
    opacity 0.15s ease,
    color 0.15s ease,
    background-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.group-report-icon i {
  font-size: 14px;
  line-height: 1;
}

.group-report-icon:hover {
  opacity: 1;
  color: #dc2626;
  background: #fee2e2;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.12);
}

.group-report-icon:focus-visible {
  outline: 2px solid #dc2626;
  outline-offset: 3px;
  opacity: 1;
}

.group-card-featured .group-report-icon {
  color: #a16207;
  opacity: 0.38;
}

.group-card-featured .group-report-icon:hover {
  color: #dc2626;
  background: #fee2e2;
  opacity: 1;
}

@media (max-width: 760px) {
  .group-report-icon {
    left: 22px;
    bottom: 22px;
  }
}

/* =========================================================
   PAINEL - PERÍODO DO DESTAQUE DO GRUPO
========================================================= */

.painel-soft-badge-highlight-date {
  gap: 5px;
  background: #fffbeb;
  color: #a16207;
}

.painel-soft-badge-highlight-date i {
  font-size: 11px;
}

/* =========================
   PAGINAS DINAMICAS
========================= */

.page-content-card {
  max-width: 100%;
}

.institutional-content {
  color: var(--text, #1f2937);
  font-size: 0.98rem;
  line-height: 1.75;
}

.institutional-content h1,
.institutional-content h2,
.institutional-content h3,
.institutional-content h4,
.institutional-content h5,
.institutional-content h6 {
  color: var(--text, #111827);
  margin: 24px 0 12px;
  line-height: 1.25;
}

.institutional-content h1:first-child,
.institutional-content h2:first-child,
.institutional-content h3:first-child {
  margin-top: 0;
}

.institutional-content p {
  margin: 0 0 16px;
}

.institutional-content ul,
.institutional-content ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.institutional-content li {
  margin-bottom: 8px;
}

.institutional-content a {
  color: var(--primary, #2563eb);
  text-decoration: underline;
}

.institutional-content blockquote {
  margin: 20px 0;
  padding: 14px 18px;
  border-left: 4px solid rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.06);
  border-radius: 10px;
}

.institutional-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 12px;
}

.institutional-content th,
.institutional-content td {
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.institutional-content th {
  background: rgba(15, 23, 42, 0.04);
  font-weight: 700;
}

@media (max-width: 768px) {
  .institutional-content {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .institutional-content h2 {
    font-size: 1.25rem;
  }

  .institutional-content h3 {
    font-size: 1.1rem;
  }
}

/* =========================
   FOOTER PÚBLICO
========================= */

.public-footer {
  width: 100%;
  padding: 26px 16px 34px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.public-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.public-footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition:
    color 0.15s ease,
    transform 0.15s ease;
}

.public-footer-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.public-footer-separator {
  color: #d1d5db;
  font-weight: 900;
}

@media (max-width: 760px) {
  .public-footer {
    padding: 0 12px 14px;
    margin-top: 8px;
    min-height: 118px;
    align-items: flex-end;
  }

  .public-footer-links {
    gap: 6px;
    font-size: 10.5px;
    line-height: 1.3;
    max-width: 340px;
    margin: 0 auto;
  }

  .public-footer-separator {
    font-size: 9px;
  }
}

/* =========================
   BOTÃO GOOGLE LOGIN
========================= */

.google-auth-button {
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid #dadce0;
  background: #ffffff;
  color: #3c4043;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  font-family: Roboto, Arial, sans-serif;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.google-auth-button:hover {
  background: #f8fafd;
  border-color: #d2e3fc;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.15);
  color: #3c4043;
}

.google-auth-button:focus-visible {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
}

.google-auth-button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.auth-social {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

/* =========================================================
   PLATAFORMAS - SVG / CORES / INDEX / SIDEBAR / CARDS
========================================================= */

/* Base SVG por máscara */
.platform-svg {
  display: inline-block;
  flex: 0 0 auto;
  background-color: currentColor;

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: center;
  mask-position: center;

  -webkit-mask-size: contain;
  mask-size: contain;
}

/* =========================================================
   ARQUIVOS SVG DAS PLATAFORMAS
========================================================= */

.platform-svg-whatsapp-group {
  -webkit-mask-image: url("/assets/img/icons/platforms/whatsapp_group.svg");
  mask-image: url("/assets/img/icons/platforms/whatsapp_group.svg");
}

.platform-svg-whatsapp-channel {
  -webkit-mask-image: url("/assets/img/icons/platforms/whatsapp_channels.svg");
  mask-image: url("/assets/img/icons/platforms/whatsapp_channels.svg");
}

.platform-svg-telegram {
  -webkit-mask-image: url("/assets/img/icons/platforms/telegram.svg");
  mask-image: url("/assets/img/icons/platforms/telegram.svg");
}

.platform-svg-telegram-group {
  -webkit-mask-image: url("/assets/img/icons/platforms/telegram_group.svg");
  mask-image: url("/assets/img/icons/platforms/telegram_group.svg");
}

.platform-svg-telegram-channel {
  -webkit-mask-image: url("/assets/img/icons/platforms/telegram.svg");
  mask-image: url("/assets/img/icons/platforms/telegram.svg");
}

.platform-svg-discord,
.platform-svg-discord-server {
  -webkit-mask-image: url("/assets/img/icons/platforms/discord.svg");
  mask-image: url("/assets/img/icons/platforms/discord.svg");
}

.platform-svg-facebook {
  -webkit-mask-image: url("/assets/img/icons/platforms/facebook.svg");
  mask-image: url("/assets/img/icons/platforms/facebook.svg");
}

.platform-svg-facebook-group {
  -webkit-mask-image: url("/assets/img/icons/platforms/facebook_group.svg");
  mask-image: url("/assets/img/icons/platforms/facebook_group.svg");
}

.platform-svg-facebook-page {
  -webkit-mask-image: url("/assets/img/icons/platforms/facebook.svg");
  mask-image: url("/assets/img/icons/platforms/facebook.svg");
}

.platform-svg-slack {
  -webkit-mask-image: url("/assets/img/icons/platforms/slack.svg");
  mask-image: url("/assets/img/icons/platforms/slack.svg");
}

.platform-svg-skool {
  -webkit-mask-image: url("/assets/img/icons/platforms/skool.svg");
  mask-image: url("/assets/img/icons/platforms/skool.svg");
}

.platform-svg-microsoft-teams {
  -webkit-mask-image: url("/assets/img/icons/platforms/microsoft_teams.svg");
  mask-image: url("/assets/img/icons/platforms/microsoft_teams.svg");
}

.platform-svg-guilded,
.platform-svg-guilded-server {
  -webkit-mask-image: url("/assets/img/icons/platforms/guilded.svg");
  mask-image: url("/assets/img/icons/platforms/guilded.svg");
}

/* =========================================================
   CORES DAS PLATAFORMAS
========================================================= */

/* WhatsApp: grupo mais verde, canal mais esmeralda */
.platform-tag-whatsapp-group {
  color: #16a34a;
}

.platform-tag-whatsapp-channel {
  color: #059669;
}

/* Telegram: grupo azul padrão, canal azul mais forte */
.platform-tag-telegram,
.platform-tag-telegram-group {
  color: #229ed9;
}

.platform-tag-telegram-channel {
  color: #2563eb;
}

/* Discord */
.platform-tag-discord,
.platform-tag-discord-server {
  color: #5865f2;
}

/* Facebook: grupo azul escuro, página azul Facebook */
.platform-tag-facebook,
.platform-tag-facebook-page {
  color: #1877f2;
}

.platform-tag-facebook-group {
  color: #0f5fbf;
}

/* Novas plataformas */
.platform-tag-slack {
  color: #4a154b;
}

.platform-tag-skool {
  color: #00aeef;
}

.platform-tag-microsoft-teams {
  color: #6264a7;
}

.platform-tag-guilded,
.platform-tag-guilded-server {
  color: #d89b00;
}

.platform-tag-default {
  color: #111827;
}

/* =========================================================
   SIDEBAR DIREITA / TAGS
========================================================= */

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

.platform-tag .platform-svg {
  width: 18px;
  height: 18px;
}

/* Ajustes finos sidebar */
.platform-tag .platform-svg-whatsapp-group {
  width: 17px;
  height: 17px;
}

.platform-tag .platform-svg-whatsapp-channel {
  width: 19px;
  height: 19px;
}

.platform-tag .platform-svg-telegram,
.platform-tag .platform-svg-telegram-group,
.platform-tag .platform-svg-telegram-channel {
  width: 18px;
  height: 18px;
}

.platform-tag .platform-svg-discord,
.platform-tag .platform-svg-discord-server {
  width: 19px;
  height: 19px;
}

.platform-tag .platform-svg-facebook,
.platform-tag .platform-svg-facebook-group,
.platform-tag .platform-svg-facebook-page {
  width: 18px;
  height: 18px;
}

.platform-tag .platform-svg-slack,
.platform-tag .platform-svg-skool,
.platform-tag .platform-svg-microsoft-teams,
.platform-tag .platform-svg-guilded,
.platform-tag .platform-svg-guilded-server {
  width: 18px;
  height: 18px;
}

/* =========================================================
   INDEX - BARRA DE PLATAFORMAS
   Desktop: Top 5 / Mobile: todas em rolagem com ícone
========================================================= */

.platform-strip {
  gap: 10px;
  margin: 14px 0 16px;
}

.platform-strip-desktop {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.platform-strip-mobile {
  display: none;
}

.platform-strip-item {
  min-height: 54px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 9px;
  text-decoration: none;
  font-weight: 950;
  font-size: 13px;
  line-height: 1.08;
  color: #111827;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.platform-strip-item:hover {
  transform: translateY(-1px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
}

.platform-strip-item.active {
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.92);
}

.platform-strip-name {
  display: block;
  min-width: 0;
}

.platform-strip-item .platform-svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.platform-strip-item > i {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Mobile: todas as plataformas, só ícones, rolagem horizontal */
@media (max-width: 720px) {
  .platform-strip-desktop {
    display: none;
  }

  .platform-strip-mobile {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    margin: 12px -12px 14px;
    padding: 0 12px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .platform-strip-mobile::-webkit-scrollbar {
    display: none;
  }

  .platform-strip-mobile .platform-strip-item {
    flex: 0 0 54px;
    width: 54px;
    min-width: 54px;
    max-width: 54px;
    height: 50px;
    min-height: 50px;
    border-radius: 14px;
    padding: 0;
    gap: 0;
    justify-content: center;
    scroll-snap-align: start;
  }

  .platform-strip-mobile .platform-strip-name {
    display: none !important;
  }

  .platform-strip-mobile .platform-svg,
  .platform-strip-mobile .platform-strip-item > i {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    font-size: 21px;
  }
}

/* =========================================================
   CARDS DOS GRUPOS - ÍCONES
========================================================= */

.group-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.group-icon .platform-svg {
  width: 34px;
  height: 34px;
}

.group-icon > i {
  font-size: 32px;
}

/* Ajustes de tamanho por plataforma no card */
.group-icon-whatsapp_group .platform-svg {
  width: 32px;
  height: 32px;
}

.group-icon-whatsapp_channel .platform-svg {
  width: 34px;
  height: 34px;
}

.group-icon-telegram_group .platform-svg,
.group-icon-telegram_channel .platform-svg {
  width: 33px;
  height: 33px;
}

.group-icon-discord_server .platform-svg {
  width: 34px;
  height: 34px;
}

.group-icon-facebook_group .platform-svg,
.group-icon-facebook_page .platform-svg {
  width: 32px;
  height: 32px;
}

.group-icon-slack .platform-svg {
  width: 35px;
  height: 35px;
}

.group-icon-skool .platform-svg {
  width: 37px;
  height: 37px;
}

.group-icon-microsoft_teams .platform-svg {
  width: 38px;
  height: 38px;
}

.group-icon-guilded_server .platform-svg {
  width: 36px;
  height: 36px;
}

/* Fallback */
.group-icon-outra,
.group-icon-other,
.group-icon-default {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #111827;
}

/* =========================================================
   CORES DE ÍCONE POR CAMPO cor_icone_padrao / cor_icone
========================================================= */

.icon-color-green {
  color: #16a34a;
}

.icon-color-emerald {
  color: #059669;
}

.icon-color-blue {
  color: #2563eb;
}

.icon-color-telegram {
  color: #229ed9;
}

.icon-color-discord {
  color: #5865f2;
}

.icon-color-facebook {
  color: #1877f2;
}

.icon-color-facebook-dark {
  color: #0f5fbf;
}

.icon-color-slack {
  color: #4a154b;
}

.icon-color-skool {
  color: #00aeef;
}

.icon-color-teams,
.icon-color-microsoft-teams {
  color: #6264a7;
}

.icon-color-guilded {
  color: #d89b00;
}

.icon-color-orange {
  color: #ea580c;
}

.icon-color-yellow {
  color: #d89b00;
}

.icon-color-purple {
  color: #7c3aed;
}

.icon-color-black {
  color: #111827;
}

.icon-color-white {
  color: #ffffff;
}

.icon-color-gray {
  color: #6b7280;
}

/* =========================================================
   REIVINDICAR GRUPO - ÍCONE
========================================================= */

.group-claim-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;

  width: 30px;
  height: 30px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #6b7280;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  text-decoration: none;

  opacity: 0.78;
  transition:
    opacity 0.15s ease,
    color 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.group-claim-icon i {
  font-size: 13px;
  line-height: 1;
}

.group-claim-icon:hover {
  opacity: 1;
  color: #111827;
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.group-claim-icon:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 3px;
  opacity: 1;
}

/* Card destacado */
.group-card-featured .group-claim-icon {
  color: #a16207;
  background: #fffbeb;
  border-color: #fde68a;
}

.group-card-featured .group-claim-icon:hover {
  color: #92400e;
  background: #ffffff;
  border-color: #fcd34d;
}

@media (max-width: 760px) {
  .group-claim-icon {
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
  }

  .group-claim-icon i {
    font-size: 12px;
  }
}

/* =========================================================
   TOOLTIPS DOS ÍCONES DO CARD
   Usado por: reivindicar (?) e reportar (bug)
========================================================= */

.group-claim-icon::after,
.group-report-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  z-index: 20;

  min-width: max-content;
  max-width: 190px;
  padding: 8px 11px;
  border-radius: 10px;

  background: #111827;
  color: #ffffff;

  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  transition:
    opacity 0.15s ease,
    visibility 0.15s ease,
    transform 0.15s ease;
}

.group-claim-icon::before,
.group-report-icon::before {
  content: "";
  position: absolute;
  z-index: 21;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.15s ease,
    visibility 0.15s ease;
}

/* Tooltip do ? abre para a esquerda */
.group-claim-icon::after {
  top: 50%;
  right: calc(100% + 10px);
  transform: translateY(-50%) translateX(4px);
}

.group-claim-icon::before {
  top: 50%;
  right: calc(100% + 4px);
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #111827;
}

/* Tooltip do bug abre para a direita */
.group-report-icon::after {
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%) translateX(-4px);
}

.group-report-icon::before {
  top: 50%;
  left: calc(100% + 4px);
  transform: translateY(-50%);
  border-width: 6px 6px 6px 0;
  border-style: solid;
  border-color: transparent #111827 transparent transparent;
}

.group-claim-icon:hover::after,
.group-claim-icon:focus-visible::after,
.group-report-icon:hover::after,
.group-report-icon:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.group-claim-icon:hover::before,
.group-claim-icon:focus-visible::before,
.group-report-icon:hover::before,
.group-report-icon:focus-visible::before {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 760px) {
  .group-claim-icon::after,
  .group-claim-icon::before,
  .group-report-icon::after,
  .group-report-icon::before {
    display: none;
  }
}

/* =========================================================
   AIRSOFT USADO - AJUSTES FINAIS DA INDEX
   Manter este bloco no FINAL do app.css
========================================================= */

/* Marca textual no topo */
.topbar-logo strong {
  display: inline-block;
  white-space: nowrap;
}

/* Estados no topo, usando texto UF no lugar de bandeira */
.topbar-language-flag {
  background: #ffffff;
  border: 1px solid var(--line);
  color: #111827;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.topbar-language-flag.active {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

/* Barra de estados da index */
.platform-svg-state {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* Categoria com ícone FontAwesome dentro dos chips/tags */
.group-platform i,
.pill i,
.tag i,
.platform-strip-item i {
  flex: 0 0 auto;
}

/* Foto do anúncio no lugar do ícone do JoinGrp */
.anuncio-thumb {
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid var(--line);
}

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

/* Preço no card */
.anuncio-price {
  color: #ff7a00;
  font-weight: 950;
}

/* Ajuste do botão do card para classificados */
.group-actions .btn {
  min-width: 150px;
}

/* Banner novo do Airsoft vindo do app/banners.php */
.banner-publicidade {
  width: 100%;
  overflow: hidden;
}

.banner-publicidade__link {
  display: block;
  width: 100%;
}

.banner-publicidade__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border: 0;
}

/* Banner no feed */
.banner-publicidade--feed {
  margin: 18px 0;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f4f6;
  box-shadow: var(--shadow);
}

.banner-publicidade--feed .banner-publicidade__img {
  aspect-ratio: 4 / 1;
}

/* Banner na lateral */
.banner-publicidade--sidebar {
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
}

.banner-publicidade--sidebar .banner-publicidade__img {
  aspect-ratio: 1 / 1;
}

/* Card destacado do anúncio */
.group-card-featured .anuncio-price {
  color: #b45309;
}

/* Evita que descrições antigas muito grandes estiquem demais */
.group-description {
  word-break: break-word;
}

/* Mobile */
@media (max-width: 760px) {
  .topbar-logo strong {
    font-size: 21px !important;
  }

  .group-actions .btn {
    min-width: 0;
  }

  .banner-publicidade--feed .banner-publicidade__img {
    aspect-ratio: 1 / 1;
  }
}

/* =========================================================
   AIRSOFT USADO - FILTROS DA INDEX + ESTADOS COM BANDEIRA
   Manter no FINAL do app.css
========================================================= */

.search-form-airsoft {
  margin-top: 18px;
}

.search-form-airsoft .search-box {
  margin-top: 0;
}

.advanced-filters {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 1fr 1fr 0.8fr 0.8fr;
  gap: 10px;
}

.filter-field {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.filter-field label {
  font-size: 12px;
  font-weight: 900;
  color: #374151;
}

.filter-field input,
.filter-field select {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  padding: 0 12px;
  outline: none;
  font-size: 13px;
}

.filter-field input:focus,
.filter-field select:focus {
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

/* Barra horizontal de estados */
.state-strip {
  margin: 14px 0 16px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 8px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.state-strip::-webkit-scrollbar {
  height: 7px;
}

.state-strip::-webkit-scrollbar-track {
  background: transparent;
}

.state-strip::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.state-strip-item {
  flex: 0 0 132px;
  min-width: 132px;
  height: 54px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 12px;
  text-decoration: none;
  font-weight: 950;
  font-size: 13px;
  color: #111827;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.state-strip-item:hover {
  transform: translateY(-1px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
}

.state-strip-item.active {
  border-color: #111827;
  background: #111827;
  color: #ffffff;
}

.state-strip-item img {
  width: 32px;
  height: 24px;
  border-radius: 5px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #f3f4f6;
}

.state-strip-item.active img {
  border-color: rgba(255, 255, 255, 0.35);
}

/* Neutraliza o bloco antigo que forçava UF em bolinha */
.platform-svg-state {
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* Responsivo */
@media (max-width: 900px) {
  .advanced-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .state-strip-item {
    flex-basis: 110px;
    min-width: 110px;
  }
}

@media (max-width: 760px) {
  .advanced-filters {
    grid-template-columns: 1fr;
  }

  .state-strip {
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .state-strip-item {
    flex: 0 0 86px;
    min-width: 86px;
    height: 50px;
    border-radius: 14px;
    font-size: 12px;
  }

  .state-strip-item img {
    width: 28px;
    height: 21px;
    border-radius: 4px;
  }
}
/* =========================================================
   AIRSOFT USADO - FIX BUSCA MOBILE + CAMPOS PERSISTENTES
   Manter este bloco no FINAL do app.css
========================================================= */

.search-submit-mobile {
  display: none;
}

.search-submit-desktop {
  flex: 0 0 auto;
}

.search-form-airsoft .search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.search-form-airsoft .search-box input[type="search"] {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 46px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: #ffffff;
  color: var(--text);
  outline: none;
  font-size: 14px;
  line-height: 46px;
  appearance: none;
  -webkit-appearance: none;
}

.search-form-airsoft
  .search-box
  input[type="search"]::-webkit-search-decoration,
.search-form-airsoft
  .search-box
  input[type="search"]::-webkit-search-cancel-button,
.search-form-airsoft
  .search-box
  input[type="search"]::-webkit-search-results-button,
.search-form-airsoft
  .search-box
  input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.search-form-airsoft .search-box input[type="search"]:focus,
.search-form-airsoft .filter-field input:focus,
.search-form-airsoft .filter-field select:focus {
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

.search-form-airsoft .filter-field input,
.search-form-airsoft .filter-field select {
  width: 100%;
  height: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  padding: 0 12px;
  outline: none;
  font-size: 13px;
  line-height: 42px;
  appearance: none;
  -webkit-appearance: none;
}

.search-form-airsoft .filter-field select {
  padding-right: 34px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%236b7280' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px 18px;
}

@media (max-width: 760px) {
  .search-form-airsoft .search-box {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 16px;
  }

  .search-form-airsoft .search-box input[type="search"] {
    display: block;
    width: 100%;
    height: 46px;
    min-height: 46px;
    border-radius: 16px;
    padding: 0 14px;
    line-height: 46px;
    font-size: 14px;
  }

  .search-submit-desktop {
    display: none !important;
  }

  .search-submit-mobile {
    display: inline-flex;
    width: 100%;
    height: 46px;
    min-height: 46px;
    margin-top: 14px;
  }

  .search-form-airsoft .advanced-filters {
    margin-top: 14px;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .search-form-airsoft .filter-field input,
  .search-form-airsoft .filter-field select {
    height: 46px;
    min-height: 46px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 46px;
  }
}
/* =========================================================
   AIRSOFT USADO - TAMANHO DA FOTO DO CARD DESKTOP
   Ajuste apenas para PC
========================================================= */

@media (min-width: 761px) {
  .group-card .group-icon {
    width: 120px;
    height: 120px;
    min-width: 120px;
    flex: 0 0 120px;
    border-radius: 20px;
  }

  .group-card .group-card-main {
    gap: 16px;
  }
}

/* =========================================================
   AIRSOFT USADO - CARD INTEIRO CLICÁVEL SEM BOTÃO
========================================================= */

.group-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.group-card-link:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 24, 39, 0.18);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.group-card-link .group-title {
  color: #111827;
}

.group-card-link:hover .group-title {
  text-decoration: underline;
}

.group-card-link .group-actions {
  display: none !important;
}

/* =========================================================
   AIRSOFT USADO - BANDEIRA DO ESTADO NO CARD
========================================================= */

.group-locale-state {
  gap: 6px;
  padding: 3px 8px;
}

.group-locale-state .group-flag {
  width: 22px;
  height: 16px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #f3f4f6;
}

.group-locale-state .lang {
  font-size: 11px;
  font-weight: 950;
}

/* =========================================================
   AIRSOFT USADO - ESPAÇO ENTRE ÍCONE E CATEGORIA NO CARD
========================================================= */

.group-platform {
  gap: 6px;
}

.group-platform i {
  margin-right: 2px;
}

/* =========================================================
   AIRSOFT USADO - CARD MOBILE MAIS VISUAL
   Imagem grande em cima e sem descrição
========================================================= */

@media (max-width: 760px) {
  .group-card {
    padding: 0;
    overflow: hidden;
  }

  .group-card-main {
    display: block;
    gap: 0;
  }

  .group-card .group-icon,
  .group-card .anuncio-thumb {
    width: 100% !important;
    height: auto !important;
    min-width: 0 !important;
    flex: none !important;
    border-radius: 0;
    border: 0;
    aspect-ratio: 4 / 3;
    background: #f3f4f6;
  }

  .group-card .anuncio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .group-card .group-content {
    padding: 14px;
  }

  .group-card .group-description {
    display: none;
  }

  .group-card .group-title {
    font-size: 17px;
    line-height: 1.25;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .group-card .group-topline {
    margin-bottom: 8px;
  }

  .group-card .group-stats {
    margin-top: 10px;
  }

  .group-card-featured {
    background: #ffffff;
  }
}

/* =========================================================
   AIRSOFT USADO - CARD EM DESTAQUE
========================================================= */

.group-card-featured {
  position: relative;
  border: 1px solid #f2c14e !important;
  box-shadow:
    0 10px 24px rgba(242, 193, 78, 0.12),
    0 2px 8px rgba(15, 23, 42, 0.04);
  background: linear-gradient(
    180deg,
    rgba(255, 248, 225, 0.35) 0%,
    #ffffff 22%
  );
}

/* selo/faixa */
.group-card-featured::before {
  content: "★ OPORTUNIDADE";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b 0%, #facc15 100%);
  color: #111827;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow:
    0 8px 20px rgba(245, 158, 11, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* efeito hover só para desktop */
@media (min-width: 761px) {
  .group-card-featured:hover {
    box-shadow:
      0 14px 30px rgba(242, 193, 78, 0.18),
      0 6px 18px rgba(15, 23, 42, 0.06);
  }
}

/* mobile: selo sobre a imagem */
@media (max-width: 760px) {
  .group-card-featured::before {
    top: 12px;
    right: 12px;
    height: 28px;
    padding: 0 10px;
    font-size: 10px;
  }
}

/* =========================================================
   AIRSOFT USADO - PÁGINA DO ANÚNCIO
========================================================= */

.produto-main {
  display: grid;
  gap: 14px;
}

.produto-page-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.produto-gallery {
  position: relative;
  background: #f3f4f6;
}

.produto-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.produto-gallery-track::-webkit-scrollbar {
  display: none;
}

.produto-gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  scroll-snap-align: start;
  background: #f3f4f6;
}

.produto-gallery-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.produto-gallery-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 7px;
  pointer-events: none;
}

.produto-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.65);
  pointer-events: auto;
  padding: 0;
}

.produto-gallery-dot.active {
  width: 20px;
  background: #ffffff;
}

.produto-info {
  padding: 20px;
}

.produto-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.produto-title {
  margin: 12px 0 8px;
  color: #111827;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.produto-price {
  color: #ff7a00;
  font-size: 26px;
  font-weight: 950;
  margin-top: 8px;
}

.produto-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #6b7280;
  font-size: 13px;
}

.produto-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.produto-description {
  margin-top: 22px;
  color: #374151;
  line-height: 1.65;
  font-size: 15px;
}

.produto-description h2,
.produto-reviews h2 {
  margin: 0 0 12px;
  font-size: 20px;
  color: #111827;
  letter-spacing: -0.03em;
}

.produto-description p {
  margin: 0 0 14px;
}

.produto-badge {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: 12px;
  font-weight: 900;
}

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

.produto-badge-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #facc15 100%);
  color: #111827;
}

.produto-seller-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.produto-seller-head {
  display: flex;
  gap: 12px;
  align-items: center;
}

.produto-seller-avatar {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #111827;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 20px;
}

.produto-seller-info {
  min-width: 0;
}

.produto-seller-info h2 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #111827;
}

.produto-seller-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.produto-seller-line {
  margin: 14px 0 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.45;
}

.produto-seller-line i {
  color: #6b7280;
  margin-right: 5px;
}

.produto-seller-rating {
  margin-top: 14px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 16px;
  padding: 12px;
}

.produto-seller-rating strong {
  display: block;
  color: #111827;
  font-size: 22px;
  line-height: 1;
}

.produto-seller-rating span {
  margin-top: 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #6b7280;
  font-size: 13px;
}

.produto-seller-rating i {
  color: #f59e0b;
}

.produto-contact-actions {
  margin-top: 14px;
  display: grid;
  gap: 9px;
}

.produto-login-box {
  margin-top: 14px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 16px;
  padding: 13px;
}

.produto-login-box strong {
  display: block;
  color: #111827;
  font-size: 14px;
}

.produto-login-box p {
  margin: 6px 0 12px;
  color: #6b7280;
  line-height: 1.45;
  font-size: 13px;
}

.produto-reviews {
  padding: 18px;
}

.produto-review-item {
  border-top: 1px solid #eef2f7;
  padding-top: 14px;
  margin-top: 14px;
}

.produto-review-item:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.produto-review-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.produto-review-head strong {
  color: #111827;
  font-size: 14px;
}

.produto-review-head i {
  color: #d1d5db;
  font-size: 12px;
}

.produto-review-head i.active {
  color: #f59e0b;
}

.produto-review-item p {
  margin: 8px 0 0;
  color: #4b5563;
  line-height: 1.5;
  font-size: 14px;
}

@media (max-width: 1060px) {
  .produto-right {
    display: grid;
    width: 100%;
    position: static;
    height: auto;
    margin-top: 14px;
  }
}

@media (max-width: 760px) {
  .produto-page-card {
    border-radius: 18px;
  }

  .produto-gallery-slide img {
    aspect-ratio: 4 / 3;
  }

  .produto-info {
    padding: 16px;
  }

  .produto-title {
    font-size: 23px;
  }

  .produto-price {
    font-size: 23px;
  }

  .produto-meta {
    gap: 9px;
  }
}

/* =========================================================
   AIRSOFT USADO - SIDEBAR CONTEXTUAL
========================================================= */

.right,
.produto-right {
  height: auto;
  max-height: none;
  overflow: visible;
}

@media (min-width: 1061px) {
  .right,
  .produto-right {
    position: sticky;
    top: 18px;
    align-self: flex-start;
  }
}

/* =========================================================
   AIRSOFT USADO - AÇÕES CURTIR / DESEJOS NO PRODUTO
========================================================= */

.produto-actions-inline,
.produto-action-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.produto-action-btn {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.produto-action-btn:hover {
  transform: translateY(-1px);
  border-color: #cbd5e1;
  background: #f9fafb;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.produto-action-btn.active,
.produto-wish-btn.active {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

.produto-like-btn.active {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #2563eb;
}

.produto-action-btn:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

/* =========================================================
   AIRSOFT USADO - RESPONSIVO FINAL
========================================================= */

@media (max-width: 1060px) {
  .right,
  .produto-right {
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: none;
    position: static;
    height: auto;
    max-height: none;
    overflow: visible;
    margin-top: 14px;
  }
}

@media (max-width: 760px) {
  .produto-actions-inline,
  .produto-action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .produto-action-btn {
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
  }
}

/* =========================================================
   AIRSOFT USADO - PRODUTO MOBILE
   Esconde extras da sidebar no celular
========================================================= */

@media (max-width: 760px) {
  body.produto-page .produto-right .sidebar-extra {
    display: none !important;
  }

  body.produto-page .produto-right .produto-seller-card {
    display: block !important;
  }
}

/* =========================================================
   AIRSOFT USADO - SIDEBAR CONTEXTUAL POR PÁGINA / DISPOSITIVO
   Colocar no FINAL do app.css
========================================================= */

/* Desktop/tablet: mobile-only não aparece */
@media (min-width: 761px) {
  .sidebar-only-mobile {
    display: none !important;
  }

  .sidebar-only-pc,
  .sidebar-all-devices {
    display: block;
  }
}

/* Celular: a sidebar some por padrão */
@media (max-width: 760px) {
  .right {
    display: none !important;
  }

  /*
    Só aparece no mobile quando a sidebar recebeu sidebar-mobile-enabled.
    Ex.: produto tem vendedor com device = all.
  */
  .right.sidebar-mobile-enabled {
    display: grid !important;
    gap: 12px;
    width: 100%;
    max-width: none;
    position: static !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    margin-top: 14px;
  }

  .sidebar-only-pc {
    display: none !important;
  }

  .sidebar-only-mobile,
  .sidebar-all-devices {
    display: block !important;
  }
}
/* =========================================================
   AIRSOFT USADO - ESPAÇO ENTRE INPUT E BOTÃO NA BUSCA MOBILE
========================================================= */

@media (max-width: 760px) {
  .search-form-airsoft .search-box {
    gap: 12px;
  }

  .search-form-airsoft .search-box .btn {
    margin-top: 0;
  }
}

/* =========================================================
   AIRSOFT USADO - GOOGLE AUTH
========================================================= */
.auth-box {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 18px 0 28px;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.auth-social {
  display: grid;
  gap: 12px;
}

.google-auth-button {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #fff;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.18s ease;
}

.google-auth-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.google-auth-button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 800;
  margin: 18px 0;
  text-align: center;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: rgba(17, 24, 39, 0.1);
  flex: 1;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-label {
  font-size: 13px;
  font-weight: 900;
  color: #111827;
}

.form-control {
  width: 100%;
  min-height: 46px;
  border-radius: 13px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: #fff;
  color: #111827;
  padding: 0 14px;
  outline: none;
}

.form-control:focus {
  border-color: rgba(220, 38, 38, 0.55);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.auth-row {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
}

.auth-link {
  color: #dc2626;
  font-weight: 900;
  text-decoration: none;
  font-size: 13px;
}

.auth-link:hover {
  text-decoration: underline;
}

.form-alert {
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.form-alert.show {
  display: block;
}

.form-alert.ok {
  color: #065f46;
  background: #d1fae5;
  border: 1px solid #a7f3d0;
}

.form-alert.err {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
}

.btn.full {
  width: 100%;
  justify-content: center;
  min-height: 46px;
}

.auth-footer {
  margin-top: 18px;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
  font-weight: 700;
}

.auth-footer a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 900;
}

.auth-footer a:hover {
  text-decoration: underline;
}
/* =========================================================
   AIRSOFT USADO - AVATAR DO VENDEDOR + TEMPO DE MEMBRO
   Manter este bloco no FINAL do app.css
========================================================= */

.produto-seller-avatar {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #111827;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 20px;
  overflow: hidden;
  position: relative;
  flex: 0 0 52px;
}

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

.produto-seller-avatar.has-image .produto-seller-avatar-letter {
  display: none;
}

.produto-seller-avatar-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.produto-seller-member-since {
  color: #374151;
  font-weight: 800;
}

.produto-seller-member-since i {
  color: #6b7280;
}

/* =========================================================
   AIRSOFT USADO - PAINEL DO CLIENTE V2
   Painel enxuto, sem atalhos repetidos e usando dados reais
========================================================= */

.au-user-dashboard-v2 {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.au-dashboard-hero-v2,
.au-dashboard-card-v2,
.au-kpi-card-v2 {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.au-dashboard-hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 16px;
  align-items: stretch;
  padding: 20px;
}

.au-dashboard-profile-v2 {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.au-dashboard-avatar-v2 {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #111827;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 950;
  overflow: hidden;
  flex: 0 0 72px;
}

.au-dashboard-avatar-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.au-dashboard-name-v2 {
  min-width: 0;
}

.au-dashboard-name-v2 h1 {
  margin: 0 0 7px;
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #070b16;
}

.au-dashboard-name-v2 p {
  margin: 0;
  color: #6b7280;
  line-height: 1.45;
}

.au-dashboard-badges-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.au-dashboard-badges-v2 span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #374151;
  font-size: 12px;
  font-weight: 900;
}

.au-dashboard-badges-v2 span.is-ok {
  border-color: #bbf7d0;
  background: #ecfdf5;
  color: #047857;
}

.au-wallet-box-v2 {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #f9fafb;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.au-wallet-box-v2 span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.au-wallet-box-v2 strong {
  margin-top: 4px;
  color: #111827;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.au-wallet-box-v2 small {
  margin-top: 8px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.35;
}

.au-kpi-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.au-kpi-card-v2 {
  min-height: 135px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.au-kpi-icon-v2 {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #111827;
}

.au-kpi-icon-v2.is-success {
  background: #ecfdf5;
  color: #047857;
}
.au-kpi-icon-v2.is-warning {
  background: #fffbeb;
  color: #b45309;
}
.au-kpi-icon-v2.is-danger {
  background: #fef2f2;
  color: #dc2626;
}
.au-kpi-icon-v2.is-info {
  background: #eff6ff;
  color: #2563eb;
}
.au-kpi-icon-v2.is-star {
  background: #fff7ed;
  color: #ea580c;
}
.au-kpi-icon-v2.is-orange {
  background: #fff7ed;
  color: #f97316;
}

.au-kpi-card-v2 small {
  color: #6b7280;
  font-size: 13px;
  font-weight: 950;
}

.au-kpi-card-v2 strong {
  color: #111827;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.au-kpi-card-v2 em {
  color: #6b7280;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.au-dashboard-card-v2 {
  padding: 20px;
}

.au-section-head-v2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.au-section-head-v2 h2 {
  margin: 0 0 5px;
  font-size: 20px;
  color: #070b16;
  letter-spacing: -0.03em;
}

.au-section-head-v2 p {
  margin: 0;
  color: #6b7280;
  line-height: 1.45;
}

.au-ad-list-v2 {
  display: grid;
  gap: 10px;
}

.au-ad-item-v2 {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 12px;
  background: #ffffff;
}

.au-ad-thumb-v2 {
  width: 82px;
  height: 82px;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
}

.au-ad-thumb-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.au-ad-info-v2 {
  min-width: 0;
}

.au-ad-badges-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.au-ad-info-v2 h3 {
  margin: 7px 0 8px;
  color: #111827;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.au-ad-meta-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #6b7280;
  font-size: 13px;
}

.au-ad-meta-v2 span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.au-ad-open-v2 {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.au-ad-open-v2:hover {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.au-movements-v2 .painel-movement-value {
  min-width: 110px;
  text-align: right;
}

/* Login/cadastro: mantém o formulário alinhado sem estourar largura */
.main .auth-box {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 960px) {
  .au-dashboard-hero-v2 {
    grid-template-columns: 1fr;
  }

  .au-kpi-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .au-user-dashboard-v2 {
    margin-top: 8px;
  }

  .au-dashboard-hero-v2,
  .au-dashboard-card-v2,
  .au-kpi-card-v2 {
    border-radius: 18px;
  }

  .au-dashboard-hero-v2,
  .au-dashboard-card-v2 {
    padding: 16px;
  }

  .au-dashboard-profile-v2 {
    align-items: flex-start;
  }

  .au-dashboard-avatar-v2 {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    flex-basis: 58px;
    font-size: 21px;
  }

  .au-dashboard-name-v2 h1 {
    font-size: 24px;
  }

  .au-wallet-box-v2 strong {
    font-size: 24px;
  }

  .au-kpi-grid-v2 {
    grid-template-columns: 1fr;
  }

  .au-kpi-card-v2 {
    min-height: auto;
  }

  .au-ad-item-v2 {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .au-ad-thumb-v2 {
    width: 68px;
    height: 68px;
    border-radius: 14px;
  }

  .au-ad-open-v2 {
    grid-column: 1 / -1;
    width: 100%;
    height: 40px;
  }

  .au-ad-info-v2 h3 {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .au-movements-v2 .painel-movement-value {
    text-align: left;
    min-width: 0;
  }
}

/* =========================================================
   AIRSOFT USADO - PAINEL V3 AJUSTES
   Resumo do vendedor sem atalhos mortos
========================================================= */

.au-summary-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.au-summary-item-v3 {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 13px 14px;
  background: #f9fafb;
}

.au-summary-item-v3 span {
  display: block;
  color: #6b7280;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 6px;
}

.au-summary-item-v3 strong {
  display: block;
  color: #111827;
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
}

.au-wallet-box-v2 small {
  color: #6b7280;
}

@media (max-width: 760px) {
  .au-summary-grid-v3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .au-summary-grid-v3 {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   AIRSOFT USADO - PAINEL V4
   Ajustes: remove ID visual, banners em card separado
========================================================= */

.au-section-head-with-action-v4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.au-banner-summary-grid-v4 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.au-banners-card-v4 .btn {
  min-height: 42px;
  padding: 0 16px;
}

@media (max-width: 760px) {
  .au-section-head-with-action-v4 {
    align-items: stretch;
    flex-direction: column;
  }

  .au-section-head-with-action-v4 .btn {
    width: 100%;
  }

  .au-banner-summary-grid-v4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .au-banner-summary-grid-v4 {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   AIRSOFT USADO - PAINEL V5
   Ações rápidas nos anúncios + botão para lista geral
========================================================= */

.au-ad-actions-v5 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: nowrap;
}

.au-ad-delete-form-v5 {
  display: inline-flex;
  margin: 0;
  padding: 0;
}

.au-ad-action-icon-v5 {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.au-ad-action-icon-v5:hover {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
}

.au-ad-action-icon-v5.is-danger {
  color: #b91c1c;
  background: #fff7f7;
  border-color: #fecaca;
  font: inherit;
  padding: 0;
}

.au-ad-action-icon-v5.is-danger:hover {
  color: #ffffff;
  background: #b91c1c;
  border-color: #b91c1c;
}

.au-filter-pills-v5 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 16px;
}

.au-filter-pills-v5 .pill.active {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.au-ad-list-full-v5 {
  margin-top: 10px;
}

/* substitui o botão antigo de abrir anúncio quando V5 estiver presente */
.au-ad-actions-v5 + .au-ad-open-v2,
.au-ad-item-v2 .au-ad-open-v2:has(+ .au-ad-actions-v5) {
  display: none !important;
}

@media (max-width: 760px) {
  .au-ad-actions-v5 {
    grid-column: 1 / -1;
    justify-content: stretch;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .au-ad-action-icon-v5,
  .au-ad-delete-form-v5,
  .au-ad-delete-form-v5 .au-ad-action-icon-v5 {
    width: 100%;
  }
}

/* =========================================================
   AIRSOFT USADO - PAINEL V6: AÇÕES VERTICAIS + SERVIÇOS BBs
   Pacote incremental: manter no FINAL do app.css
========================================================= */

.au-ad-info-v2 h3 a {
  color: inherit;
  text-decoration: none;
}

.au-ad-info-v2 h3 a:hover {
  text-decoration: underline;
}

.au-ad-service-note-v6 {
  margin-top: 8px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 750;
}

.au-ad-service-note-v6 strong {
  color: #111827;
  font-weight: 950;
}

.au-ad-actions-v6 {
  display: grid;
  gap: 8px;
  align-content: center;
  min-width: 118px;
}

.au-ad-actions-v6 form {
  margin: 0;
}

.au-ad-action-btn-v6 {
  width: 100%;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
}

.au-ad-action-btn-v6:hover {
  transform: translateY(-1px);
  border-color: #cbd5e1;
  background: #f9fafb;
  color: #111827;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.au-ad-action-btn-v6.is-top {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

.au-ad-action-btn-v6.is-top:hover {
  border-color: #fdba74;
  background: #ffedd5;
  color: #9a3412;
}

.au-ad-action-btn-v6.is-danger {
  border-color: #fecaca;
  background: #fff7f7;
  color: #dc2626;
}

.au-ad-action-btn-v6.is-danger:hover {
  border-color: #fca5a5;
  background: #fef2f2;
  color: #991b1b;
}

.au-ad-action-btn-v6:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: #f9fafb;
  border-color: #e5e7eb;
  color: #9ca3af;
}

@media (max-width: 760px) {
  .au-ad-actions-v6 {
    grid-template-columns: 1fr;
    min-width: 0;
    width: 100%;
    margin-top: 12px;
  }

  .au-ad-action-btn-v6 {
    min-height: 40px;
  }
}

/* =========================================================
   AIRSOFT USADO - PAINEL V7: CORREÇÃO BOTÕES DENTRO DO CARD
   Mantém as ações verticais dentro do card dos anúncios.
========================================================= */

.au-ad-item-v2 {
  grid-template-columns: 82px minmax(0, 1fr) 118px !important;
  align-items: center !important;
  overflow: hidden;
}

.au-ad-actions-v6 {
  width: 118px;
  min-width: 118px;
  max-width: 118px;
  justify-self: end;
}

.au-ad-actions-v6 form,
.au-ad-actions-v6 a,
.au-ad-actions-v6 button {
  max-width: 100%;
}

@media (max-width: 760px) {
  .au-ad-item-v2 {
    grid-template-columns: 74px minmax(0, 1fr) !important;
    align-items: start !important;
  }

  .au-ad-thumb-v2 {
    width: 74px;
    height: 74px;
  }

  .au-ad-actions-v6 {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    max-width: none;
    justify-self: stretch;
    margin-top: 10px;
  }
}

/* =========================================================
   AIRSOFT USADO - V8: FIX LOGIN/CADASTRO NA LARGURA DO LAYOUT
   Mantém o card de autenticação alinhado com o conteúdo principal.
========================================================= */
.auth-box {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 18px 0 28px !important;
}

.auth-card {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.auth-card .auth-social,
.auth-card .auth-form,
.auth-card .auth-divider,
.auth-card .auth-footer {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.auth-card .auth-divider {
  margin-top: 18px;
  margin-bottom: 18px;
}

@media (max-width: 760px) {
  .auth-card .auth-social,
  .auth-card .auth-form,
  .auth-card .auth-divider,
  .auth-card .auth-footer {
    max-width: none;
  }
}

/* =========================================================
   AIRSOFT USADO - V8: PEDIDOS / COMPRA DE BBS
========================================================= */
.au-orders-page {
  display: grid;
  gap: 16px;
}

.au-orders-hero {
  align-items: center;
}

.au-credit-pack-card strong {
  color: #111827;
}

.au-credit-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.au-credit-pack {
  position: relative;
  min-height: 330px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #ffffff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.045);
}

.au-credit-pack.is-featured {
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.au-credit-pack.is-bronze {
  border-color: #d6c3b1;
  background: linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
}

.au-credit-pack.is-prata {
  border-color: #cfd6e4;
  background: linear-gradient(180deg, #fafcff 0%, #ffffff 100%);
}

.au-credit-pack.is-ouro {
  border-color: #ead59a;
  background: linear-gradient(180deg, #fffdf5 0%, #ffffff 100%);
}

.au-pack-ribbon {
  position: absolute;
  top: 12px;
  right: 0;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px 0 14px;
  font-size: 11px;
  font-weight: 950;
  color: #ffffff;
  border-radius: 14px 0 0 14px;
  z-index: 2;
}

.au-pack-ribbon.is-prata {
  background: linear-gradient(90deg, #64748b, #94a3b8);
}

.au-pack-ribbon.is-ouro {
  background: linear-gradient(90deg, #b7791f, #d4a72c);
}

.au-credit-pack-body {
  padding-top: 22px;
  display: grid;
  gap: 12px;
}

.au-credit-pack-body h3 {
  margin: 0;
  color: #070b16;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.au-credit-pack-total {
  margin-top: 6px;
  color: #071124;
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.au-credit-pack-total small {
  font-size: 13px;
  letter-spacing: 0;
  color: #64748b;
}

.au-credit-pack-price {
  color: #111827;
  font-size: 20px;
  font-weight: 950;
}

.au-credit-pack-lines {
  margin-top: 6px;
  display: grid;
  gap: 0;
}

.au-credit-pack-lines div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #edf2f7;
  padding: 10px 0;
  color: #475569;
  font-size: 13px;
}

.au-credit-pack-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.au-pay-button {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.au-pay-button:hover {
  transform: translateY(-1px);
  border-color: #111827;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.au-pay-button.is-pix {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.au-pay-button.is-card {
  background: #ffffff;
  color: #111827;
}

.au-orders-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.au-order-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 14px;
  background: #ffffff;
}

.au-order-icon {
  width: 56px;
  height: 56px;
  border-radius: 17px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 19px;
}

.au-order-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 7px;
}

.au-order-main h3 {
  margin: 0 0 7px;
  color: #070b16;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.au-order-main p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.45;
}

.au-order-main small {
  display: block;
  margin-top: 6px;
  color: #94a3b8;
  font-size: 12px;
  word-break: break-all;
}

.painel-status-badge.status-pago {
  background: #ecfdf5;
  color: #047857;
}

.painel-status-badge.status-pendente {
  background: #fffbeb;
  color: #b45309;
}

.painel-status-badge.status-cancelado,
.painel-status-badge.status-expirado,
.painel-status-badge.status-rejeitado {
  background: #fef2f2;
  color: #b91c1c;
}

.au-checkout-placeholder {
  text-align: center;
  padding: 28px;
}

.au-checkout-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.au-checkout-icon.is-pix {
  background: #111827;
  color: #ffffff;
}

.au-checkout-icon.is-card {
  background: #eff6ff;
  color: #2563eb;
}

.au-checkout-placeholder h1 {
  margin: 0 0 8px;
  color: #070b16;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.au-checkout-placeholder p {
  max-width: 560px;
  margin: 0 auto 18px;
  color: #6b7280;
  line-height: 1.55;
}

.au-checkout-summary {
  max-width: 560px;
  margin: 18px auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.au-checkout-summary div {
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 16px;
  padding: 12px;
  text-align: left;
}

.au-checkout-summary span {
  display: block;
  color: #6b7280;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 4px;
}

.au-checkout-summary strong {
  display: block;
  color: #111827;
  font-size: 15px;
  word-break: break-word;
}

@media (max-width: 980px) {
  .au-credit-pack-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .au-credit-pack {
    min-height: auto;
  }

  .au-credit-pack-actions {
    grid-template-columns: 1fr;
  }

  .au-order-item {
    grid-template-columns: 1fr;
  }

  .au-checkout-summary {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   AIRSOFT USADO - FIX LOGIN + CHECKOUT EFI V9
   Manter no FINAL do app.css
========================================================= */
.auth-box {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  margin: 18px 0 28px;
}
.auth-card {
  width: min(100%, 460px) !important;
  max-width: 460px !important;
  margin-left: auto;
  margin-right: auto;
}
.au-checkout-card {
  display: grid;
  gap: 18px;
}
.au-pix-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.au-pix-qr {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #f9fafb;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.au-pix-qr img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}
.au-pix-copy h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #070b16;
}
.au-pix-copy p,
.au-checkout-note {
  margin: 0 0 12px;
  color: #6b7280;
  line-height: 1.5;
}
.au-pix-timer {
  width: fit-content;
  min-width: 92px;
  min-height: 38px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  margin-bottom: 12px;
  padding: 0 14px;
}
.au-pix-copy textarea {
  width: 100%;
  min-height: 116px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 12px 14px;
  resize: vertical;
  color: #111827;
  background: #fff;
  outline: none;
  font: inherit;
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 12px;
}
.au-card-checkout-form {
  display: grid;
  gap: 18px;
}
.au-card-form-grid {
  margin-top: 4px;
}
.au-card-number-input {
  font-size: 20px !important;
  letter-spacing: 0.04em;
  font-weight: 800;
}
@media (max-width: 760px) {
  .auth-card {
    width: 100% !important;
    max-width: 460px !important;
  }
  .au-pix-layout,
  .au-card-form-grid {
    grid-template-columns: 1fr !important;
  }
  .au-pix-qr img {
    max-width: 230px;
  }
  .au-card-number-input {
    font-size: 16px !important;
    letter-spacing: 0.02em;
  }
}

/* =========================================================
   AIRSOFT USADO - CHECKOUT CARTÃO / PARCELAS EFÍ
   Pacote incremental V10
========================================================= */
.au-installment-total-box {
  margin: 4px 0 0;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 16px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.au-installment-total-box span {
  color: #6b7280;
  font-size: 13px;
  font-weight: 800;
}

.au-installment-total-box strong {
  color: #111827;
  font-size: 18px;
  font-weight: 950;
  white-space: nowrap;
}

#parcelas:disabled {
  color: #6b7280;
  background-color: #f9fafb;
  cursor: wait;
}

#parcelasInfo {
  display: block;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.35;
}

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

/* =========================================================
   AIRSOFT USADO - PUBLICAR / EDITAR ANÚNCIO
   Pacote incremental V11
========================================================= */
.au-anuncio-form-page {
  gap: 16px;
}

.au-anuncio-hero {
  align-items: center;
}

.au-rules-card h2,
.au-rules-card p {
  margin-left: 0;
}

.au-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.au-rules-grid > div {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #f9fafb;
  padding: 14px;
  display: grid;
  gap: 7px;
}

.au-rules-grid i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #111827;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.au-rules-grid strong {
  color: #111827;
  font-size: 14px;
  font-weight: 950;
}

.au-rules-grid span {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.45;
}

.au-form-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.au-service-costs {
  min-width: 230px;
  display: grid;
  gap: 7px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #f9fafb;
  padding: 12px 14px;
}

.au-service-costs span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
}

.au-service-costs strong {
  color: #111827;
  white-space: nowrap;
}

.au-price-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.au-price-form .jg-field {
  margin: 0;
}

.au-anuncio-form input[type="file"] {
  padding-top: 11px;
}

.au-current-images-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.au-current-image-item {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 8px;
  background: #f9fafb;
  display: grid;
  gap: 8px;
  cursor: pointer;
}

.au-current-image-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  background: #e5e7eb;
}

.au-current-image-item span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .au-form-card-head,
  .au-price-form {
    grid-template-columns: 1fr;
    display: grid;
  }

  .au-service-costs {
    min-width: 0;
    width: 100%;
  }

  .au-rules-grid {
    grid-template-columns: 1fr;
  }

  .au-current-images-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .au-current-images-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .au-price-form .btn {
    width: 100%;
  }
}

/* =========================================================
   AIRSOFT USADO - V12: UX anúncio, botões e login
   Manter no FINAL do app.css
========================================================= */

/* Corrige o login/cadastro para o card não ocupar a largura inteira */
.main .auth-box,
.auth-box {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  margin: 18px 0 28px !important;
}

.main .auth-card,
.auth-card {
  width: 100% !important;
  max-width: 460px !important;
  margin: 0 auto !important;
}

.auth-card .auth-social,
.auth-card .auth-form,
.auth-card .auth-divider,
.auth-card .auth-footer {
  max-width: none !important;
}

/* Lista de anúncios com coluna de ações maior */
.au-ad-item-v2.au-ad-item-actions-wide-v12,
.au-ad-list-v2 .au-ad-item-v2 {
  grid-template-columns: 82px minmax(0, 1fr) 126px !important;
  overflow: hidden;
}

.au-ad-actions-v12,
.au-ad-actions-v6 {
  width: 126px !important;
  min-width: 126px !important;
  max-width: 126px !important;
  gap: 7px;
}

.au-ad-actions-v12 .au-ad-action-btn-v6,
.au-ad-actions-v6 .au-ad-action-btn-v6 {
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
}

.au-ad-action-btn-v6.is-highlight {
  border-color: #fde68a;
  background: #fffbeb;
  color: #a16207;
}

.au-ad-action-btn-v6.is-highlight:hover {
  border-color: #fcd34d;
  background: #fef3c7;
  color: #92400e;
}

.au-ad-action-btn-v6.is-offer {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.au-ad-action-btn-v6.is-offer:hover {
  border-color: #93c5fd;
  background: #dbeafe;
  color: #1e40af;
}

.painel-soft-badge-offer-v12 {
  background: #eff6ff;
  color: #1d4ed8;
}

.au-ad-service-note-v12 {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.au-current-image-item span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.au-current-image-item input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #dc2626;
}

.au-price-form .js-money-br,
.au-anuncio-form .js-money-br {
  font-weight: 800;
}

@media (max-width: 760px) {
  .au-ad-item-v2.au-ad-item-actions-wide-v12,
  .au-ad-list-v2 .au-ad-item-v2 {
    grid-template-columns: 74px minmax(0, 1fr) !important;
  }

  .au-ad-actions-v12,
  .au-ad-actions-v6 {
    grid-column: 1 / -1;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    grid-template-columns: 1fr 1fr;
  }

  .au-ad-actions-v12 form,
  .au-ad-actions-v6 form {
    width: 100%;
  }

  .au-ad-actions-v12 .au-ad-action-btn-v6,
  .au-ad-actions-v6 .au-ad-action-btn-v6 {
    min-height: 40px;
  }
}

/* =========================================================
   AIRSOFT USADO - V13: PEDIDOS / RETOMAR PAGAMENTO / SEGURANÇA
========================================================= */
.au-order-item-with-action {
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
}

.au-order-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 190px;
}

.au-order-actions .btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
}

.au-checkout-security {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid #bbf7d0;
  background: #ecfdf5;
  color: #065f46;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
}

.au-checkout-security i {
  margin-top: 2px;
  color: #047857;
  flex: 0 0 auto;
}

.au-checkout-security span {
  display: block;
}

@media (max-width: 760px) {
  .au-order-item-with-action {
    grid-template-columns: 1fr;
  }

  .au-order-actions,
  .au-order-actions .btn {
    width: 100%;
  }
}

/* =========================================================
   AIRSOFT USADO - V14: revisão final usuário / checkout / anúncios
   Manter no FINAL do app.css
========================================================= */

/* Login/cadastro voltam a ocupar a largura padrão do conteúdo principal */
.main .auth-box,
.auth-box {
  width: 100% !important;
  max-width: none !important;
  display: block !important;
  margin: 18px 0 28px !important;
}

.main .auth-card,
.auth-card {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.auth-card .auth-social,
.auth-card .auth-form,
.auth-card .auth-divider,
.auth-card .auth-footer {
  max-width: 460px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Checkout cartão: remove redundância visual e alinha ação à direita */
.au-checkout-actions-final {
  justify-content: flex-end !important;
}

.au-checkout-actions-final .btn {
  min-height: 48px;
  padding: 0 18px;
}

.au-installment-total-box {
  margin-top: 2px !important;
}

/* Lista de anúncios mais organizada */
.au-ad-list-v2 .au-ad-item-v2,
.au-ad-item-v2.au-ad-item-actions-wide-v12 {
  grid-template-columns: 96px minmax(0, 1fr) 138px !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 14px !important;
  overflow: hidden !important;
}

.au-ad-thumb-v2 {
  width: 86px !important;
  height: 86px !important;
  border-radius: 18px !important;
}

.au-ad-info-v2 h3 {
  margin-top: 7px !important;
  margin-bottom: 6px !important;
}

.au-ad-services-box-v14 {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.au-ad-services-box-v14 > div {
  min-width: 0;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 13px;
  padding: 8px 10px;
}

.au-ad-services-box-v14 span {
  display: block;
  color: #6b7280;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 3px;
}

.au-ad-services-box-v14 strong {
  display: block;
  color: #111827;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 950;
}

.au-ad-actions-v12,
.au-ad-actions-v6 {
  width: 138px !important;
  min-width: 138px !important;
  max-width: 138px !important;
  display: grid !important;
  gap: 7px !important;
}

.au-ad-actions-v12 form,
.au-ad-actions-v6 form {
  width: 100%;
}

.au-ad-actions-v12 .au-ad-action-btn-v6,
.au-ad-actions-v6 .au-ad-action-btn-v6 {
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  justify-content: center;
  font-size: 12px;
}

.au-filter-pills-v5 .pill {
  gap: 7px;
}

.au-filter-pills-v5 .pill span {
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 950;
}

.au-filter-pills-v5 .pill.active span {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

@media (max-width: 760px) {
  .auth-card .auth-social,
  .auth-card .auth-form,
  .auth-card .auth-divider,
  .auth-card .auth-footer {
    max-width: none !important;
  }

  .au-ad-list-v2 .au-ad-item-v2,
  .au-ad-item-v2.au-ad-item-actions-wide-v12 {
    grid-template-columns: 78px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .au-ad-thumb-v2 {
    width: 74px !important;
    height: 74px !important;
    border-radius: 16px !important;
  }

  .au-ad-services-box-v14 {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .au-ad-actions-v12,
  .au-ad-actions-v6 {
    grid-column: 1 / -1;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    grid-template-columns: 1fr 1fr;
  }

  .au-ad-actions-v12 .au-ad-action-btn-v6,
  .au-ad-actions-v6 .au-ad-action-btn-v6 {
    min-height: 40px;
  }

  .au-checkout-actions-final,
  .au-checkout-actions-final .btn {
    width: 100%;
  }
}

/* =========================================================
   AIRSOFT USADO - V15 AJUSTES HOME / OFERTAS / LOGIN
   Manter no FINAL do app.css
========================================================= */

/* Topo com 4 abas sem sobrepor a logo */
@media (min-width: 761px) {
  .topbar {
    justify-content: flex-start !important;
    gap: 28px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .topbar-logo {
    position: static !important;
    transform: none !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
  }

  .topbar-menu-area {
    flex: 1 1 auto !important;
    align-items: flex-start !important;
    min-width: 0 !important;
  }

  .topbar .tabs {
    gap: 24px !important;
    flex-wrap: nowrap !important;
  }
}

/* Login/cadastro centralizado no mesmo limite do feed */
.main > .auth-box,
.auth-box {
  width: 100% !important;
  max-width: 460px !important;
  margin: 18px auto 28px !important;
  display: flex !important;
  justify-content: center !important;
}

.main > .auth-box .auth-card,
.auth-box .auth-card,
.auth-card {
  width: 100% !important;
  max-width: 460px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Chamada de comunidade no topo da home */
.hero-community-stats {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-community-stats span,
.hero-community-stats a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #4b5563;
  font-size: 12px;
  font-weight: 850;
}

.hero-community-stats strong {
  color: #111827;
  font-weight: 950;
}

.hero-community-stats a {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
  text-decoration: none;
}

.hero-community-stats a:hover {
  background: #030712;
}

/* Card público com oferta ativa */
.group-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 950;
}

.anuncio-price-with-offer {
  display: inline-flex !important;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
}

.anuncio-price-old {
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 800;
}

.anuncio-price-offer {
  color: #dc2626;
  font-weight: 950;
}

.group-card-offer {
  border-color: #bfdbfe;
}

.group-card-featured.group-card-offer {
  border-color: #f2c14e !important;
}

.produto-badge-offer {
  background: #eff6ff;
  color: #2563eb;
}

.produto-price-offer-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.produto-price-offer-box .produto-price-old {
  color: #9ca3af;
  font-size: 18px;
  text-decoration: line-through;
  font-weight: 800;
}

.produto-price-offer-box strong {
  color: #dc2626;
  font-size: 28px;
  font-weight: 950;
}

/* Meus anúncios: organiza custos sem formar um bloco largo demais */
.au-ad-list-full-v5 .au-ad-item-v2,
.au-ad-item-actions-wide-v12 {
  display: grid !important;
  grid-template-columns: 96px minmax(0, 1fr) 140px !important;
  gap: 16px !important;
  align-items: center !important;
}

.au-ad-services-box-v14 {
  margin-top: 8px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  max-width: 100% !important;
}

.au-ad-services-box-v14 div {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  min-height: 26px !important;
  padding: 0 9px !important;
  border-radius: 999px !important;
  border: 1px solid #e5e7eb !important;
  background: #f9fafb !important;
  color: #475569 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.au-ad-services-box-v14 div span {
  color: #6b7280 !important;
  font-weight: 850 !important;
}

.au-ad-services-box-v14 div strong {
  color: #111827 !important;
  font-weight: 950 !important;
}

.au-ad-actions-v12 {
  width: 140px !important;
  align-self: center !important;
}

.au-ad-actions-v12 .au-ad-action-btn-v6 {
  width: 100% !important;
}

/* Ajuste visual do checkout: mantém apenas o total com parcelas */
.au-checkout-actions-final {
  margin-top: 18px !important;
  justify-content: flex-end !important;
}

.au-checkout-actions-final::before,
.au-checkout-actions-final > span,
.au-checkout-total-footer {
  display: none !important;
}

@media (max-width: 760px) {
  .hero-community-stats {
    align-items: stretch;
  }

  .hero-community-stats span,
  .hero-community-stats a {
    width: 100%;
    justify-content: center;
  }

  .au-ad-list-full-v5 .au-ad-item-v2,
  .au-ad-item-actions-wide-v12 {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .au-ad-actions-v12 {
    width: 100% !important;
  }

  .au-ad-services-box-v14 div {
    width: 100%;
    justify-content: space-between;
  }
}

.au-ad-meta-price-offer-v15 del {
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 800;
}

.au-ad-meta-price-offer-v15 strong {
  color: #dc2626;
  font-weight: 950;
}

/* =========================================================
   AIRSOFT USADO - V16 ANÚNCIOS / BANNERS / LOGIN FIX
========================================================= */
.auth-box {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 18px 0 28px;
}
.auth-card {
  width: 100%;
  max-width: 460px !important;
  margin-left: auto;
  margin-right: auto;
}

.au-user-search-v16 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  margin: 12px 0 14px;
}
.au-user-search-v16 input[type="search"] {
  width: 100%;
  min-height: 44px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: #111827;
  outline: none;
}
.au-user-search-v16 input[type="search"]:focus {
  border-color: #111827;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.08);
}

.au-service-info-box-v16 {
  margin: 14px 0 16px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 16px;
  padding: 13px 15px;
  display: grid;
  gap: 7px;
  color: #475569;
  font-size: 13px;
  line-height: 1.45;
}
.au-service-info-box-v16 p {
  margin: 0;
}
.au-service-info-box-v16 strong {
  color: #111827;
}

.au-banner-list-v16 {
  display: grid;
  gap: 12px;
}
.au-banner-item-v16 {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 132px;
  gap: 14px;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #fff;
  padding: 14px;
}
.au-banner-preview-v16 {
  width: 180px;
  aspect-ratio: 4 / 1;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  background: #f3f4f6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
}
.au-banner-preview-v16 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.au-banner-info-v16 {
  min-width: 0;
}
.au-banner-info-v16 h3 {
  margin: 8px 0 5px;
  color: #070b16;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.au-banner-info-v16 p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .au-banner-item-v16 {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .au-banner-preview-v16 {
    width: 100%;
  }
  .au-user-search-v16 {
    grid-template-columns: 1fr;
  }
  .au-user-search-v16 .btn,
  .au-user-search-v16 .painel-btn-light {
    width: 100%;
  }
}
@media (max-width: 760px) {
  .au-banner-preview-v16 {
    aspect-ratio: 1 / 1;
  }
  .au-service-info-box-v16 {
    font-size: 12.5px;
  }
}

/* =========================================================
   AIRSOFT USADO - V17 AJUSTES FINAIS
========================================================= */
.topbar {
  justify-content: flex-start !important;
}
.topbar-logo {
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  flex: 0 0 auto !important;
  margin-right: 32px !important;
}
.topbar-menu-area {
  align-items: flex-start !important;
  min-width: 0;
}
.topbar .tabs {
  gap: 24px;
  flex-wrap: nowrap;
}

.main > .auth-box,
.auth-box {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  margin: 18px 0 28px !important;
}
.main > .auth-box .auth-card,
.auth-box .auth-card,
.auth-card {
  width: 100% !important;
  max-width: 460px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}
.auth-card .auth-social,
.auth-card .auth-form,
.auth-card .auth-divider,
.auth-card .auth-footer {
  width: 100% !important;
  max-width: 100% !important;
}

.au-ad-service-lines-v17 {
  margin-top: 10px;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 14px;
  color: #475569;
  font-size: 12.5px;
  line-height: 1.35;
}
.au-ad-service-lines-v17 p {
  margin: 0;
}
.au-ad-service-lines-v17 strong {
  color: #111827;
}
.au-ad-item-v2.au-ad-item-actions-wide-v12 {
  align-items: center;
}
.au-ad-actions-v6 .au-ad-action-btn-v6:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.jg-actions-note:empty {
  display: none !important;
}

@media (max-width: 760px) {
  .topbar {
    justify-content: center !important;
  }
  .topbar-logo {
    margin-right: 0 !important;
  }
  .topbar-menu-area {
    align-items: center !important;
    width: 100%;
  }
  .topbar .tabs {
    justify-content: center;
    gap: 18px;
    overflow-x: auto;
  }
  .au-ad-service-lines-v17 {
    font-size: 12px;
  }
}

/* =========================================================
   AIRSOFT USADO - V18 AJUSTES TOP / LOGIN / BANNERS
========================================================= */
/* Login/cadastro com largura confortável e alinhado ao layout principal */
body .main > .auth-box,
body .auth-box {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  margin: 18px 0 28px !important;
}
body .main > .auth-box .auth-card,
body .auth-box .auth-card,
body .auth-card {
  width: 100% !important;
  max-width: 560px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}
body .auth-card .auth-social,
body .auth-card .auth-form,
body .auth-card .auth-divider,
body .auth-card .auth-footer {
  width: 100% !important;
  max-width: 100% !important;
}

/* Topo com espaço fixo entre logo e abas para não sobrepor quando existir Ofertas */
.topbar-logo {
  margin-right: 42px !important;
}
.topbar .tabs {
  gap: 30px !important;
}
@media (max-width: 760px) {
  .topbar-logo {
    margin-right: 0 !important;
  }
  .topbar .tabs {
    gap: 18px !important;
  }
  body .auth-box .auth-card,
  body .auth-card {
    max-width: 100% !important;
  }
}

/* Painel: bloco de custos dentro do card sem sobrar área vazia */
.au-ad-item-v2 .au-ad-service-lines-v17 {
  width: 100%;
  max-width: 420px;
}

/* =========================================================
   AIRSOFT USADO - V23 PAINEL CLICÁVEL / CONTATOS / LISTAS
========================================================= */
.au-kpi-link-v23 {
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}
.au-kpi-link-v23:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 24, 39, 0.18);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}
.au-panel-list-v23 {
  display: grid;
  gap: 12px;
}
.au-panel-item-v23 {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  padding: 14px;
}
.au-panel-item-icon-v23 {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #111827;
  font-size: 17px;
}
.au-panel-item-icon-v23.is-orange {
  background: #fff7ed;
  color: #f97316;
}
.au-panel-item-icon-v23.is-info {
  background: #eff6ff;
  color: #2563eb;
}
.au-panel-item-icon-v23.is-star {
  background: #fffbeb;
  color: #d97706;
}
.au-panel-item-main-v23 {
  min-width: 0;
}
.au-panel-item-top-v23 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 5px;
}
.au-panel-item-top-v23 strong {
  color: #111827;
  font-size: 15px;
  font-weight: 950;
}
.au-panel-item-top-v23 span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.au-panel-item-main-v23 p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.45;
}
.au-panel-item-main-v23 p a {
  color: #111827;
  font-weight: 900;
  text-decoration: none;
}
.au-panel-item-main-v23 p a:hover {
  text-decoration: underline;
}
.au-panel-item-meta-v23 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 9px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 750;
}
.au-panel-item-meta-v23 span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.au-panel-item-actions-v23 {
  display: grid;
  gap: 7px;
  width: 128px;
}
.au-stars-v23 {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 6px 0 8px;
  color: #d1d5db;
  font-size: 13px;
}
.au-stars-v23 i.active {
  color: #f59e0b;
}
.au-stars-v23 strong {
  margin-left: 6px;
  color: #111827;
  font-size: 13px;
}
.au-ticket-thread-v23 .au-panel-item-v23 {
  align-items: start;
}
@media (max-width: 760px) {
  .au-panel-item-v23 {
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
  }
  .au-panel-item-icon-v23 {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .au-panel-item-actions-v23 {
    grid-column: 1 / -1;
    width: 100%;
    grid-template-columns: 1fr;
  }
  .au-panel-item-top-v23 {
    flex-direction: column;
    gap: 2px;
  }
}

/* =========================================================
   AIRSOFT USADO - V24 CONTATOS / SUPORTE FINAL
========================================================= */
.au-page-head-actions-v24 {
  align-items: flex-start;
}
.au-head-buttons-v24 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.au-back-btn-v24 {
  white-space: nowrap;
  min-width: max-content;
}
.au-muted-note-v24 {
  margin: -8px 0 14px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
}
.au-panel-list-v23 {
  display: grid;
  gap: 12px;
}
.au-panel-item-v23 {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 132px;
  gap: 14px;
  align-items: center;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
}
.au-panel-item-icon-v23 {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #111827;
}
.au-panel-item-icon-v23.is-orange {
  background: #fff7ed;
  color: #f97316;
}
.au-panel-item-icon-v23.is-info {
  background: #eff6ff;
  color: #2563eb;
}
.au-panel-item-main-v23 {
  min-width: 0;
}
.au-panel-item-top-v23 {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.au-panel-item-top-v23 strong {
  color: #111827;
  font-size: 15px;
  font-weight: 950;
}
.au-panel-item-top-v23 span {
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}
.au-panel-item-main-v23 p {
  margin: 6px 0 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.45;
}
.au-panel-item-main-v23 a {
  color: #111827;
  font-weight: 950;
  text-decoration: none;
}
.au-panel-item-main-v23 a:hover {
  text-decoration: underline;
}
.au-panel-item-meta-v23 {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}
.au-panel-item-meta-v23 span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.au-panel-item-actions-v23 {
  display: grid;
  gap: 7px;
  width: 132px;
  justify-self: end;
}
.au-contact-item-v24 .au-panel-item-actions-v23,
.au-ticket-item-v24 .au-panel-item-actions-v23 {
  align-self: center;
}
.au-ticket-thread-v24 {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.au-ticket-message-v24 {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 14px;
  background: #ffffff;
}
.au-ticket-message-v24.is-user {
  background: #f9fafb;
}
.au-ticket-message-v24.is-staff {
  background: #eff6ff;
  border-color: #bfdbfe;
}
.au-ticket-message-head-v24 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.au-ticket-message-head-v24 strong {
  color: #111827;
  font-size: 13px;
  font-weight: 950;
}
.au-ticket-message-head-v24 span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}
.au-ticket-message-body-v24 {
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
}
.au-support-reply-form-v24 {
  margin-top: 18px;
  border-top: 1px solid #e5e7eb;
  padding-top: 18px;
}
.au-inline-form-v24 {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 760px) {
  .au-page-head-actions-v24,
  .au-head-buttons-v24 {
    flex-direction: column;
    align-items: stretch;
  }
  .au-back-btn-v24,
  .au-head-buttons-v24 .btn,
  .au-head-buttons-v24 .painel-btn-light {
    width: 100%;
  }
  .au-panel-item-v23 {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .au-panel-item-icon-v23 {
    width: 42px;
    height: 42px;
  }
  .au-panel-item-top-v23,
  .au-ticket-message-head-v24 {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .au-panel-item-actions-v23 {
    width: 100%;
    justify-self: stretch;
  }
  .au-inline-form-v24,
  .au-inline-form-v24 .painel-btn-light {
    width: 100%;
  }
}

/* =========================================================
   AIRSOFT USADO - V33 RESTAURACAO SEGURA
   Base restaurada do CSS completo que mantinha os cards do painel.
   Este bloco final corrige somente auth e CTA, sem remover classes do sistema.
========================================================= */

body .main > .auth-box,
body .auth-box {
  width: 100% !important;
  max-width: none !important;
  display: block !important;
  justify-content: initial !important;
  margin: 18px 0 28px !important;
  padding: 0 !important;
}

body .main > .auth-box .auth-card,
body .auth-box .auth-card,
body .auth-card {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

body .auth-card .auth-social,
body .auth-card .auth-form,
body .auth-card .auth-divider,
body .auth-card .auth-footer,
body .auth-card .auth-resend {
  width: 100% !important;
  max-width: 460px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body .auth-card .auth-divider {
  margin-top: 18px !important;
  margin-bottom: 18px !important;
}

.au-summary-link-v3 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.au-summary-link-v3:hover {
  transform: translateY(-1px);
  border-color: #111827;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.au-summary-link-v3 strong {
  font-size: 18px;
  line-height: 1.15;
}

.au-summary-link-v3 small {
  color: #667085;
  font-size: 13px;
  line-height: 1.3;
}

.au-summary-link-wide-v3 {
  grid-column: span 2;
}

@media (max-width: 760px) {
  body .auth-card .auth-social,
  body .auth-card .auth-form,
  body .auth-card .auth-divider,
  body .auth-card .auth-footer,
  body .auth-card .auth-resend {
    max-width: none !important;
  }

  .au-summary-link-wide-v3 {
    grid-column: span 1;
  }
}

/* =========================================================
   perfil.php
========================================================= */

.au-profile-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.au-profile-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.au-profile-form-grid .full {
  grid-column: 1/-1;
}

.au-profile-form-grid .user-field {
  grid-column: 1/-1;
}

.au-profile-hero {
  display: flex;
  gap: 18px;
  align-items: center;
}

.au-profile-avatar {
  flex: 0 0 86px;
  width: 86px;
  height: 86px;
  border-radius: 24px;
  background: #f2f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.au-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.au-profile-avatar span {
  font-weight: 900;
  font-size: 34px;
}

.au-profile-status {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.au-profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  font-weight: 800;
  font-size: 13px;
  color: #475467;
}

.au-profile-pill.ok {
  background: #ecfdf3;
  border-color: #abefc6;
  color: #027a48;
}

.au-profile-pill.warn {
  background: #fffaeb;
  border-color: #fedf89;
  color: #b54708;
}

.au-profile-pill.danger {
  background: #fff1f3;
  border-color: #fecdd3;
  color: #be123c;
}

.au-profile-note {
  padding: 14px 16px;
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  color: #475467;
  background: #f8fafc;
  line-height: 1.45;
}

.au-profile-coupon {
  display: flex;
  gap: 10px;
}

.au-profile-coupon input {
  flex: 1;
}

.au-doc-note {
  font-size: 13px;
  color: #667085;
  margin-top: 5px;
}

.au-profile-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.au-readonly-box {
  padding: 13px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #f8fafc;
}

.au-readonly-box span {
  display: block;
  font-size: 12px;
  color: #667085;
  font-weight: 800;
}

.au-readonly-box strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.au-readonly-box strong.bbs-units {
  font-size: 24px;
}

.au-invite-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.au-invite-link {
  word-break: break-all;
  font-size: 13px;
  color: #475467;
  margin-top: 8px;
}

.au-verification-box {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 16px;
  background: #fff;
}

.au-verification-box h3 {
  margin: 0 0 7px;
}

.au-verification-box p {
  margin: 0 0 14px;
  color: #667085;
}

.au-profile-page .form-alert {
  display: none;
}

.au-profile-page .form-alert.show {
  display: block;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
}

.au-profile-page .form-alert.ok {
  background: #ecfdf3;
  color: #027a48;
}

.au-profile-page .form-alert.err {
  background: #fff1f3;
  color: #be123c;
}

.au-profile-page .form-alert.warn {
  background: #fffaeb;
  color: #b54708;
}

.au-address-locked {
  background: #f8fafc !important;
  color: #475467 !important;
}

.au-profile-page .au-section-head-with-action-v4 {
  align-items: flex-start;
}

.au-profile-page .painel-btn-light {
  white-space: nowrap;
}

.au-delete-account-card {
  border-color: #fecdd3 !important;
  background: linear-gradient(180deg, #fff 0%, #fffafa 100%);
}

.au-delete-account-card .au-profile-note {
  border-color: #fecdd3;
  background: #fff1f3;
  color: #9f1239;
}

.au-btn-danger-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #fecdd3;
  background: #fff1f3;
  color: #dc2626;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.au-btn-danger-account:hover {
  background: #ffe4e6;
  border-color: #fda4af;
}

.au-copy-feedback {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #027a48;
}

.au-copy-feedback.show {
  display: block;
}

@media (max-width: 900px) {
  .au-profile-grid {
    grid-template-columns: 1fr;
  }

  .au-profile-form-grid {
    grid-template-columns: 1fr;
  }

  .au-profile-coupon {
    flex-direction: column;
  }

  .au-profile-page .au-section-head-with-action-v4 {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .au-profile-page .au-section-head-with-action-v4 .painel-btn-light {
    width: 100%;
    justify-content: center;
  }

  .au-profile-hero {
    align-items: flex-start;
  }

  .au-profile-avatar {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
    border-radius: 20px;
  }

  .au-profile-hero h2 {
    margin-top: 0;
  }

  .au-profile-status {
    flex-direction: column;
    align-items: flex-start;
  }
}

.bottom-items {
  scroll-behavior: smooth;
}

@media (max-width: 760px) {
  .bottom-nav .bbtn.bbtn-plus .bbtn-core,
  .bottom-nav .bbtn.bbtn-plus.is-active .bbtn-core {
    width: 56px !important;
    height: 56px !important;
    border-radius: 16px !important;
    background: #111827 !important;
    border-color: #111827 !important;
    color: #ffffff !important;
    opacity: 1 !important;
    box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.22),
      0 0 0 4px rgba(17, 24, 39, 0.08) !important;
  }

  .bottom-nav .bbtn.bbtn-plus i,
  .bottom-nav .bbtn.bbtn-plus.is-active i {
    color: #ffffff !important;
    opacity: 1 !important;
  }

  .bottom-nav .bbtn.bbtn-plus.is-active .bbtn-core {
    transform: translateY(-2px);
  }
}
/* =========================================================
   AIRSOFT USADO - FIX TOPO MOBILE LOGO CENTRALIZADA
   Mantém a logo centralizada no celular.
========================================================= */

@media (max-width: 760px) {
  .topbar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 10px 0 12px !important;
  }

  .topbar-logo {
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
  }

  .topbar-logo img {
    display: block !important;
    width: 138px !important;
    max-height: 38px !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .topbar-menu-area {
    width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .topbar .tabs {
    width: 100% !important;
    justify-content: center !important;
    gap: 18px !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
  }

  .topbar .tabs::-webkit-scrollbar {
    display: none !important;
  }
}

/* =========================================================
   AIRSOFT USADO - LOJAS VERIFICADAS V1
   Cole este bloco no FINAL do app.css.
========================================================= */

.lojas-feed-v1 {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.loja-card-link-v1 {
  display: block;
  color: inherit;
  text-decoration: none;
}

.loja-card-v1 {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 38px;
  gap: 22px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.loja-card-link-v1:hover .loja-card-v1 {
  transform: translateY(-1px);
  border-color: rgba(17, 24, 39, 0.18);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.loja-avatar-v1 {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #111827;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 26px;
  font-weight: 950;
  flex: 0 0 auto;
}

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

/* Avatar maior usado no topo da página individual da loja */
.loja-avatar-large-v1 {
  width: 86px;
  height: 86px;
  border-radius: 26px;
  font-size: 31px;
}

.loja-card-main-v1 {
  min-width: 0;
}

.loja-card-badges-v1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}

/* Corrige selo Loja verificada e UF dentro dos cards */
.loja-card-badges-v1 .painel-status-badge,
.loja-card-badges-v1 .group-locale {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

/* Afasta o ícone do texto dentro do selo */
.loja-card-badges-v1 .painel-status-badge i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 2px;
  font-size: 11px;
  line-height: 1;
  flex: 0 0 auto;
}

.loja-card-badges-v1 .group-locale img {
  flex: 0 0 auto;
}

.loja-card-v1 h2,
.loja-card-main-v1 h2 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.loja-card-main-v1 p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.45;
}

.loja-card-main-v1 p i {
  color: #6b7280;
  margin-right: 4px;
}

.loja-card-meta-v1 {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
}

.loja-card-meta-v1 span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.loja-card-arrow-v1 {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #f9fafb;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.loja-card-link-v1:hover .loja-card-arrow-v1 {
  background: #111827;
  color: #ffffff;
}

/* Topo da página individual da loja */
.loja-hero-head-v1 {
  display: flex;
  align-items: center;
  gap: 22px;
}

.loja-hero-info-v1 {
  min-width: 0;
}

.loja-hero-info-v1 .loja-card-badges-v1 {
  margin-bottom: 10px;
}

.loja-search-v1 {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}

.loja-filters-v1 {
  grid-template-columns: 1fr 0.75fr 0.75fr 0.9fr !important;
}

.loja-produtos-v1 {
  margin-top: 14px;
}

@media (max-width: 900px) {
  .loja-filters-v1 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .loja-card-v1 {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
    border-radius: 18px;
  }

  .loja-avatar-v1 {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 22px;
  }

  .loja-card-arrow-v1 {
    display: none;
  }

  .loja-card-badges-v1 {
    gap: 7px;
    margin-bottom: 8px;
  }

  .loja-card-badges-v1 .painel-status-badge,
  .loja-card-badges-v1 .group-locale {
    gap: 6px;
  }

  .loja-card-main-v1 h2 {
    font-size: 17px;
  }

  .loja-card-meta-v1 {
    flex-direction: column;
    gap: 5px;
  }

  .loja-hero-head-v1 {
    align-items: flex-start;
    gap: 16px;
  }

  .loja-avatar-large-v1 {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    font-size: 24px;
  }

  .loja-filters-v1 {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   AIRSOFT USADO - CARD LINK DE AVALIAÇÃO
========================================================= */

.au-review-link-card-v1 {
  margin-top: 16px;
}

.au-review-link-icon-v1 {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #fff7ed;
  color: #ea580c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 18px;
}

.au-review-link-box-v1 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.au-review-link-box-v1 input {
  font-weight: 800;
  color: #374151;
  background: #f9fafb;
}

.au-review-link-help-v1 {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .au-review-link-box-v1 {
    grid-template-columns: 1fr;
  }

  .au-review-link-box-v1 .btn {
    width: 100%;
  }

  .au-review-link-icon-v1 {
    display: none;
  }
}
/* =========================================================
   AIRSOFT USADO - CONTATOS RECEBIDOS TIPO DO CLIQUE
========================================================= */

.au-panel-item-icon-v23.is-phone {
  background: #eff6ff;
  color: #2563eb;
}

.au-panel-item-icon-v23.is-orange {
  background: #fff7ed;
  color: #f97316;
}

.au-panel-item-icon-v23.is-email {
  background: #f3f4f6;
  color: #4b5563;
}

.au-ad-action-btn-v6.is-phone {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.au-ad-action-btn-v6.is-phone:hover {
  border-color: #93c5fd;
  background: #dbeafe;
  color: #1e40af;
}

.au-ad-action-btn-v6.is-email {
  border-color: #d1d5db;
  background: #f9fafb;
  color: #374151;
}

.au-ad-action-btn-v6.is-email:hover {
  border-color: #9ca3af;
  background: #f3f4f6;
  color: #111827;
}

/* =========================================================
   AIRSOFT USADO - AVALIAR VENDEDOR
========================================================= */

.au-rating-form-v1 {
  margin-top: 18px;
}

.au-rating-field-v1 {
  margin-top: 18px;
}

.au-rating-field-v1 label {
  display: block;
  margin-bottom: 9px;
  font-weight: 950;
  color: #111827;
  font-size: 14px;
}

.au-rating-textarea-v1 {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  line-height: 1.55;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 14px;
}

.au-rating-textarea-v1::placeholder {
  color: #8a94a6;
  font-size: 14px;
}

.au-rating-actions-v1 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.au-rating-options-v1 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.au-rating-option-v1 {
  cursor: pointer;
}

.au-rating-option-v1 input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.au-rating-pill-v1 {
  min-width: 62px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #dfe3ea;
  background: #fff;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 950;
  transition: all 0.15s ease;
}

.au-rating-pill-v1 i {
  color: #64748b;
}

.au-rating-option-v1 input:checked + .au-rating-pill-v1 {
  border-color: #f59e0b;
  background: #fff7ed;
  color: #c2410c;
}

.au-rating-option-v1 input:checked + .au-rating-pill-v1 i {
  color: #c2410c;
}

@media (max-width: 760px) {
  .au-rating-textarea-v1 {
    min-height: 150px;
  }

  .au-rating-actions-v1 {
    display: grid;
    grid-template-columns: 1fr;
  }

  .au-rating-actions-v1 .btn,
  .au-rating-actions-v1 a {
    width: 100%;
  }
}
/* =========================================================
   AIRSOFT USADO - AVALIAÇÃO MOBILE NOTAS EM UMA LINHA
========================================================= */

@media (max-width: 760px) {
  .au-rating-options-v1 {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
  }

  .au-rating-pill-v1 {
    min-width: 50px;
    height: 38px;
    padding: 0 10px;
    gap: 4px;
    font-size: 14px;
  }

  .au-rating-pill-v1 i {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .au-rating-options-v1 {
    gap: 5px;
  }

  .au-rating-pill-v1 {
    min-width: 46px;
    height: 36px;
    padding: 0 8px;
    font-size: 13px;
  }

  .au-rating-pill-v1 i {
    font-size: 12px;
  }
}

.au-review-seller-v1 {
        display: flex;
        gap: 18px;
        align-items: center;
        padding: 16px;
        border: 1px solid #e5e7eb;
        border-radius: 22px;
        background: #f9fafb;
        margin-top: 16px
    }

    .au-review-seller-info-v1 {
        min-width: 0
    }

    .au-review-seller-info-v1 h2 {
        margin: 0 0 6px;
        color: #111827;
        font-size: 26px;
        letter-spacing: -.04em
    }

    .au-review-seller-info-v1 p {
        margin: 4px 0;
        color: #4b5563;
        font-size: 14px
    }

    .au-review-form-v1 {
        margin-top: 18px;
        display: grid;
        gap: 16px
    }

    .au-rating-select-v1 {
        display: flex;
        flex-wrap: wrap;
        gap: 8px
    }

    .au-rating-select-v1 input {
        position: absolute;
        opacity: 0;
        pointer-events: none
    }

    .au-rating-select-v1 span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 10px 13px;
        border: 1px solid #e5e7eb;
        border-radius: 999px;
        background: #fff;
        color: #6b7280;
        font-weight: 900;
        cursor: pointer
    }

    .au-rating-select-v1 input:checked+span {
        border-color: #f59e0b;
        background: #fffbeb;
        color: #b45309
    }

    .au-review-actions-v1 {
        display: flex;
        gap: 10px;
        flex-wrap: wrap
    }

    @media(max-width:760px) {
        .au-review-seller-v1 {
            align-items: flex-start
        }

        .au-review-seller-info-v1 h2 {
            font-size: 21px
        }

        .au-review-actions-v1 .btn {
            width: 100%
        }
    }

.au-maintenance-alert {
  background: #fff7ed;
  color: #9a3412;
  border-bottom: 1px solid #fed7aa;
  padding: 10px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  max-width: 900px;
  margin: 0 auto 14px;
  border-radius: 0 0 10px 10px;
}

.au-maintenance-alert strong {
  color: #7c2d12;
}

@media (max-width: 760px) {
  .au-maintenance-alert {
    margin: 0 14px 12px;
    padding: 9px 12px;
    font-size: 12px;
    border-radius: 0 0 12px 12px;
  }
}
