/* Base visual neutra (tons de cinza/branco) com alternância clara/escura */
:root {
  --bs-primary: #0097b2;
  --bs-primary-rgb: 0, 151, 178;
  --app-bg: #f3f4f6;
  --app-surface: #ffffff;
  --app-border: #dde1e5;
  --app-text: #1f2937;
  --app-muted: #6b7280;
  --app-nav-bg: #4b5563;
  --app-nav-text: #f9fafb;
  --app-primary: #0097b2;
  --app-primary-hover: #007d94;
  --app-outline: #2eb8ce;
  --app-row-alt: #f8fafc;
}

[data-bs-theme="dark"] {
  --bs-primary: #1fb8d4;
  --bs-primary-rgb: 31, 184, 212;
  --app-bg: #111418;
  --app-surface: #1b2026;
  --app-border: #30363d;
  --app-text: #e5e7eb;
  --app-muted: #9ca3af;
  --app-nav-bg: #1f252d;
  --app-nav-text: #e5e7eb;
  --app-primary: #1fb8d4;
  --app-primary-hover: #0097b2;
  --app-outline: #2eb8ce;
  --app-row-alt: #222933;
}

body {
  background: var(--app-bg) !important;
  color: var(--app-text);
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
}

.navbar-app {
  background: var(--app-nav-bg);
  position: sticky;
  top: 0;
  z-index: 1030;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.navbar-app .app-nav-shell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-app .app-brand {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .navbar-app .app-brand {
    min-height: 2.75rem;
  }
}

@media (min-width: 992px) {
  .navbar-app .app-brand {
    min-height: 3rem;
  }
}

.navbar-app .app-brand-logo {
  height: 1.45rem;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 576px) {
  .navbar-app .app-brand-logo {
    height: 2.35rem;
  }
}

@media (min-width: 768px) {
  .navbar-app .app-brand-logo {
    height: 2.65rem;
  }
}

@media (min-width: 992px) {
  .navbar-app .app-brand-logo {
    height: 2.95rem;
  }
}

.home-page-title-mark {
  display: inline-flex;
  align-items: center;
  background: var(--app-nav-bg);
  border-radius: 0.75rem;
  padding: 0.45rem 0.85rem;
  margin: 0;
}

.home-page-title-mark .app-brand-logo--hero {
  height: 2rem;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar-app .app-brand,
.navbar-app .nav-link,
.navbar-app .btn {
  color: var(--app-nav-text);
}

.navbar-app .app-brand:hover,
.navbar-app .app-brand:focus,
.navbar-app .nav-link:hover,
.navbar-app .nav-link:focus {
  color: #ffffff;
}

.navbar-app .app-nav-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 0;
  margin-left: auto;
  padding-left: 0;
  list-style: none;
}

.navbar-app .nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  border-radius: 0.5rem;
  font-size: 1.15rem;
}

.navbar-app .nav-user-link {
  padding: 0.25rem 0.35rem;
}

.navbar-app .nav-avatar-shell {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.navbar-app .nav-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.navbar-app .nav-avatar-shell > i {
  font-size: 1.25rem;
  line-height: 1;
}

.navbar-app .nav-icon-btn.dropdown-toggle::after {
  display: none;
}

.navbar-app .nav-icon-button-reset {
  background: transparent;
  border: 0;
  padding: 0.5rem 0.65rem;
}

.navbar-app .nav-icon-button-reset:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 1px;
}

.navbar-app .btn-outline-secondary {
  --bs-btn-color: var(--app-nav-text);
  --bs-btn-border-color: rgba(255, 255, 255, 0.35);
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.12);
  --bs-btn-hover-border-color: rgba(255, 255, 255, 0.45);
  --bs-btn-hover-color: #ffffff;
}

.navbar-app .app-mobile-only {
  display: list-item;
}

.navbar-app .app-desktop-only {
  display: none;
}

.card,
.list-group-item,
.table,
.table thead,
.table tbody,
.table tfoot,
.table tr,
.table td,
.table th,
.modal-content {
  background-color: var(--app-surface);
  color: var(--app-text);
  border-color: var(--app-border) !important;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: var(--app-row-alt);
}

.text-secondary,
.text-muted,
.form-text {
  color: var(--app-muted) !important;
}

.btn-primary {
  --bs-btn-bg: var(--app-primary);
  --bs-btn-border-color: var(--app-primary);
  --bs-btn-hover-bg: var(--app-primary-hover);
  --bs-btn-hover-border-color: var(--app-primary-hover);
  --bs-btn-active-bg: var(--app-primary-hover);
  --bs-btn-active-border-color: var(--app-primary-hover);
}

.btn-outline-secondary {
  --bs-btn-color: var(--app-outline);
  --bs-btn-border-color: var(--app-outline);
  --bs-btn-hover-bg: var(--app-outline);
  --bs-btn-hover-border-color: var(--app-outline);
}

.table-crud-wrap { overflow-x: auto; }
pre.json-debug {
  font-size: 0.75rem;
  max-height: 240px;
  overflow: auto;
  background: var(--app-row-alt);
  border: 1px solid var(--app-border);
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.profile-media-preview {
  border: 1px dashed var(--app-border);
  border-radius: 0.75rem;
  padding: 0.5rem;
  background: var(--app-row-alt);
}

.profile-avatar-preview {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--app-border);
  display: block;
}

.profile-cover-preview {
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 1px solid var(--app-border);
  display: block;
}

.profile-crop-wrap {
  max-height: min(70vh, 520px);
}

.profile-crop-img {
  display: block;
  max-width: 100%;
}

#modal-profile-image-crop .cropper-container {
  direction: ltr;
}

.app-layout-embed {
  background: var(--app-bg);
}

.app-embed-body {
  min-height: 60vh;
}

.home-public-layout .home-api-description {
  line-height: 1.55;
}

.home-public-layout .home-side-nav .list-group {
  max-height: 65vh;
  overflow-y: auto;
}

@media (min-width: 992px) {
  .home-public-layout .home-side-nav {
    position: sticky;
    top: 5.25rem;
  }

  .home-public-layout .home-enter-card {
    position: sticky;
    top: 5.25rem;
  }
}

.profile-hero {
  position: relative;
  margin-bottom: 0;
}

.profile-cover-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--app-primary), var(--app-nav-bg));
}

@media (min-width: 768px) {
  .profile-cover-wrap {
    height: 220px;
  }
}

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

.profile-cover-placeholder {
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.profile-hero-inner {
  position: relative;
  margin-top: -3.25rem;
  margin-bottom: 0.5rem;
}

.profile-hero-card {
  background: var(--app-surface);
}

.profile-hero-avatar-wrap {
  margin-top: 0;
}

.profile-hero-avatar {
  width: 104px;
  height: 104px;
  border-radius: 999px;
  object-fit: cover;
  border: 4px solid var(--app-surface);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.profile-hero-avatar-ph {
  background: var(--app-row-alt);
  color: var(--app-muted);
  font-size: 2.5rem;
}

.config-page .config-layout {
  min-height: calc(100vh - 3.5rem);
}

@media (min-width: 992px) {
  .config-page .config-layout {
    min-height: calc(100vh - 3.25rem);
  }

  .config-page .config-main {
    min-height: calc(100vh - 3.25rem);
    background: var(--app-bg);
  }

  .config-desktop-frame {
    width: 100%;
    min-height: calc(100vh - 3.25rem);
    background: var(--app-bg);
  }

  .config-nav-link {
    color: var(--app-text);
    border: 1px solid transparent;
  }

  .config-nav-link:hover {
    background: var(--app-surface);
    border-color: var(--app-border);
  }

  .config-nav-link.active {
    background: var(--app-surface);
    border-color: var(--app-border);
    font-weight: 600;
  }
}

@media (max-width: 575.98px) {
  .container-narrow { padding-left: 0.75rem; padding-right: 0.75rem; }
  .navbar-app .app-brand {
    font-size: 0.95rem;
  }
}

@media (min-width: 992px) {
  .navbar-app .app-mobile-only {
    display: none !important;
  }
  .navbar-app .app-desktop-only {
    display: list-item;
  }
}

/* ——— Landing + marketplace explorar (Saudavia) ——— */
:root {
  --sa-rose: #be185d;
  --sa-rose-deep: #831843;
  --sa-mint: #0097b2;
  --sa-ink: #1c1917;
  --sa-cream: #fafaf9;
  --ld-fb-accent: #0097b2;
  --ld-fb-accent-hover: #007d94;
  --ld-fb-landing-bg: #0097b2;
  --ld-fb-landing-ink: #003d47;
  --ld-fb-hero-alt: #002a32;
}

/* ——— Landing (fundo #0097b2) ——— */

.ld-fb-wrap {
  min-height: 100vh;
  background: var(--ld-fb-landing-bg);
  font-family: "Plus Jakarta Sans", "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
}

/* Mobile: altura automática para que o auth fique visível sem scroll.
   Desktop: mantém split em 100vh. */
.ld-fb-split {
  min-height: auto;
}

@media (min-width: 992px) {
  .ld-fb-split {
    min-height: 100vh;
  }
}

.ld-fb-hero {
  background: var(--ld-fb-landing-bg);
  color: #fff;
}

/* Largura em vw: min(100%, Npx) só repetia a largura da coluna e “não mudava”. */
.ld-fb-logo-row > a {
  display: inline-block;
  line-height: 0;
}

.ld-fb-logo-mark {
  display: block;
  height: auto;
  width: min(63vw, 280px);
  max-width: none;
}

@media (min-width: 576px) {
  .ld-fb-logo-mark {
    width: min(50.4vw, 364px);
  }
}

@media (min-width: 768px) {
  .ld-fb-logo-mark {
    width: min(43.4vw, 434px);
  }
}

@media (min-width: 992px) {
  .ld-fb-logo-mark {
    width: min(36.4vw, 504px);
  }
}

.ld-fb-headline {
  font-family: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.ld-fb-hero-lead {
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-size: clamp(1.35rem, 3.2vw + 0.65rem, 2.5rem);
}

.ld-fb-hero-txt-w {
  color: #fff;
}

.ld-fb-hero-txt-d {
  color: var(--ld-fb-hero-alt);
}

.ld-fb-hero-highlight {
  display: inline;
  line-height: 1.05;
  padding: 0 0.3em;
  border-radius: 0;
  background: var(--ld-fb-landing-ink);
  color: #f1f5f9;
  font-weight: 700;
  vertical-align: baseline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.ld-fb-hero-nobreak {
  white-space: nowrap;
}

.ld-fb-card-title {
  font-size: 1.05rem;
}

.ld-fb-card-hint {
  font-size: 0.8125rem;
  line-height: 1.45;
}

.ld-fb-auth {
  background: var(--ld-fb-landing-bg);
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

@media (max-width: 991.98px) {
  .ld-fb-auth {
    border-left: none;
    border-top: none;
  }
}

.ld-fb-login-card {
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0.75rem 2rem rgba(0, 61, 71, 0.16) !important;
  font-family: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
}

.ld-fb-login-card .card-body {
  border-radius: inherit;
}

.ld-fb-hero-text {
  max-width: 38rem;
}

.ld-fb-input {
  border: 1px solid #dddfe2;
  border-radius: 0.5rem !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ld-fb-input:focus {
  border-color: var(--ld-fb-accent);
  box-shadow: 0 0 0 0.2rem rgba(0, 151, 178, 0.28);
}

.ld-fb-btn-primary {
  background: var(--ld-fb-landing-ink);
  border-color: var(--ld-fb-landing-ink);
  color: #fff !important;
  font-size: 0.9375rem;
  font-family: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.ld-fb-btn-primary:hover,
.ld-fb-btn-primary:focus {
  background: #002a32;
  border-color: #002a32;
  color: #fff !important;
}

.ld-fb-hr {
  border: 0;
  border-top: 1px solid #dadde1;
  opacity: 1;
}

.ld-fb-btn-outline {
  background: #fff;
  border: 1px solid var(--ld-fb-landing-ink);
  color: var(--ld-fb-landing-ink);
}

.ld-fb-btn-outline:hover {
  background: rgba(0, 61, 71, 0.08);
  color: #002a32;
  border-color: #002a32;
}

.ld-fb-uenotech-logo {
  width: auto;
  max-width: min(112px, 42vw);
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.ld-fb-uenotech-logo:hover {
  opacity: 1;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.78) !important;
}

.ex-nav {
  --app-nav-bg: #0097b2;
}

.navbar-app.ex-nav {
  background: #0097b2 !important;
}

.ex-nav .nav-link {
  color: var(--app-nav-text);
}

.ex-nav .nav-link:hover {
  color: #fff;
}

.mp-cart-badge {
  font-size: 0.65rem;
  min-width: 1.1rem;
  padding: 0.2em 0.45em;
  background: var(--app-primary);
  color: #fff;
}

.ex-agenda-ribbon {
  background: linear-gradient(90deg, rgba(0, 151, 178, 0.14), rgba(0, 61, 71, 0.1));
  color: var(--app-text);
}

.ex-page {
  background: var(--app-bg);
}

.ex-search-head {
  background: linear-gradient(180deg, var(--app-surface) 0%, var(--app-bg) 100%);
}

.ex-search-input {
  font-size: 1.05rem;
}

.ex-search-input-group {
  border-radius: 1rem;
  border: 1px solid var(--app-border);
}

.ex-btn-search {
  background: linear-gradient(105deg, var(--sa-rose), var(--sa-rose-deep));
  color: #fff;
  font-weight: 600;
  border: none;
}

.ex-btn-search:hover {
  color: #fff;
  filter: brightness(1.06);
}

.ex-filter-card {
  border-radius: 1rem !important;
}

.ex-card {
  border-radius: 1rem !important;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ex-card:hover {
  box-shadow: 0 14px 36px rgba(28, 25, 23, 0.12) !important;
  transform: translateY(-2px);
}

.ex-badge {
  background: rgba(0, 151, 178, 0.16);
  color: #0e7490;
  font-weight: 600;
}

.ex-badge--svc {
  background: rgba(190, 24, 93, 0.12);
  color: #9d174d;
}

.ex-badge--prd {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}

.ex-thumb {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.ex-thumb-ph {
  height: 120px;
  background: linear-gradient(135deg, #e7e5e4, #d6d3d1);
}

.mp-checkout {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════════════
   MOBILE EXTRAS — seção abaixo do auth no mobile
   ══════════════════════════════════════════════════════ */

.ld-mobile-extras {
  background: var(--ld-fb-landing-bg);
  color: #fff;
}

/* Logo menor no mobile para o hero ocupar menos espaço */
@media (max-width: 991.98px) {
  .ld-fb-logo-mark {
    width: min(55vw, 220px) !important;
  }

  .ld-fb-hero-lead {
    font-size: clamp(1.05rem, 4.5vw, 1.5rem);
  }

  .ld-fb-auth {
    border-left: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
}

/* ══════════════════════════════════════════════════════
   SOCIAL LOGIN — Google, Facebook, Apple
   ══════════════════════════════════════════════════════ */

.ld-fb-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #8a8d91;
  font-size: 0.8rem;
  font-weight: 500;
}

.ld-fb-divider::before,
.ld-fb-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #dadde1;
}

.ld-btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0.5rem !important;
  padding: 0.6rem 1rem;
  transition: filter 0.15s, box-shadow 0.15s, transform 0.1s;
  font-family: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  text-decoration: none;
}

.ld-btn-social:active {
  transform: scale(0.98);
}

.ld-btn-google {
  background: #fff;
  color: #3c4043;
  border: 1.5px solid #dadde1;
}

.ld-btn-google:hover {
  background: #f8f9fa;
  color: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-color: #c0c0c0;
}

.ld-btn-facebook {
  background: #1877F2;
  color: #fff;
  border: 1.5px solid #1877F2;
}

.ld-btn-facebook:hover {
  background: #166fe5;
  color: #fff;
  border-color: #166fe5;
  box-shadow: 0 2px 10px rgba(24, 119, 242, 0.35);
}

.ld-btn-apple {
  background: #000;
  color: #fff;
  border: 1.5px solid #000;
}

.ld-btn-apple:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ══════════════════════════════════════════════════════
   NOVO HERO — features, categorias, stats, votos demo
   ══════════════════════════════════════════════════════ */

/* Feature items no hero */
.ld-hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ld-hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.2s;
}

.ld-hero-feature:hover {
  background: rgba(255, 255, 255, 0.16);
}

.ld-hero-feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.ld-hero-feat-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.15rem;
}

/* Categoria pills */
.ld-hero-cats-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.55rem;
}

.ld-hero-b2b-lead {
  font-weight: 700;
  color: #fff;
}

.ld-hero-b2b-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42rem;
}

@media (min-width: 992px) {
  .ld-hero-b2b-text {
    font-size: 0.9375rem;
  }
}

.ld-hero-cats {
  overflow: hidden;
  padding-bottom: 4px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.ld-cats-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  width: max-content;
  animation: cats-scroll 65s linear infinite;
}

.ld-hero-cats:hover .ld-cats-track {
  animation-play-state: paused;
}

@keyframes cats-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ld-cat-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: default;
  pointer-events: none;
  user-select: none;
}

/* CTA explorar */
.ld-hero-cta-btn {
  background: #fff;
  color: var(--ld-fb-landing-ink);
  border: 2px solid #fff;
  font-size: 0.9375rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.ld-hero-cta-btn:hover,
.ld-hero-cta-btn:focus {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ld-fb-landing-ink);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

/* Stats bar */
.ld-hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem 1.5rem;
  color: #fff;
}

.ld-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ld-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  font-family: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
}

.ld-stat-plus {
  font-size: 1rem;
  font-weight: 700;
}

.ld-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ld-stat-sep {
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.22);
  align-self: center;
}

/* Vote demo buttons (no hero e social proof) */
.ld-vote-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: default;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ld-vote-demo-drop {
  background: rgba(0, 151, 178, 0.35);
  color: #a8f0ff;
}

.ld-vote-demo-heart {
  background: rgba(190, 24, 93, 0.35);
  color: #ffb3d4;
}

.ld-vote-demo-lg {
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
}

.ls-1 { letter-spacing: 0.06em; }

/* ══════════════════════════════════════════════════════
   SISTEMA DE VOTOS — interno (gota + coração)
   ══════════════════════════════════════════════════════ */

.vote-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.vote-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  background: var(--app-row-alt);
  color: var(--app-muted);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
  user-select: none;
}

.vote-btn:hover {
  transform: scale(1.06);
}

.vote-btn:active {
  transform: scale(0.97);
}

/* Gota d'água */
.vote-btn--drop {
  border-color: rgba(0, 151, 178, 0.3);
}

.vote-btn--drop:hover {
  background: rgba(0, 151, 178, 0.1);
  color: var(--app-primary);
  border-color: var(--app-primary);
}

.vote-btn--drop.voted {
  background: rgba(0, 151, 178, 0.15);
  color: var(--app-primary);
  border-color: var(--app-primary);
}

/* Coração */
.vote-btn--heart {
  border-color: rgba(190, 24, 93, 0.3);
}

.vote-btn--heart:hover {
  background: rgba(190, 24, 93, 0.1);
  color: var(--sa-rose);
  border-color: var(--sa-rose);
}

.vote-btn--heart.voted {
  background: rgba(190, 24, 93, 0.12);
  color: var(--sa-rose);
  border-color: var(--sa-rose);
}

/* ══════════════════════════════════════════════════════
   CARDS MELHORADOS — explorar / interno
   ══════════════════════════════════════════════════════ */

.ex-card {
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  border-radius: 1.1rem !important;
}

.ex-card:hover {
  box-shadow: 0 16px 40px rgba(28, 25, 23, 0.13) !important;
  transform: translateY(-3px);
}

.ex-card--forn {
  border-left: 3px solid var(--app-primary) !important;
}

/* Thumb de produto com altura maior */
.ex-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 0.65rem;
}

.ex-thumb-ph {
  height: 140px;
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
  border-radius: 0.65rem;
}

/* Navbar interna melhorada */
.ex-nav .nav-link.fw-semibold {
  letter-spacing: 0.01em;
}

/* Melhorias globais de tipografia interna */
.card { border-radius: 1rem !important; }

/* Badge de votos em cards internos */
.ex-vote-wrap {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--app-border);
}
