/* ==========================================================================
   FiqueNoTopo.com.br - Luxury Light & Imperial Gold Design System
   Modern, Prestigious, Wealth-Inspiring, Clean & Ultra-Readable
   ========================================================================== */

:root {
  /* Rich Imperial Gold Palette */
  --primary: #c59218;
  --primary-light: #f5cf68;
  --primary-hover: #ad7d0d;
  --primary-foreground: #0a0a0a;
  --primary-rgb: 197, 146, 24;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f6d365 45%, #c59218 100%);
  --gold-gradient-hover: linear-gradient(135deg, #c59218 0%, #e6be44 45%, #ad7d0d 100%);
  --gold-glow: 0 8px 24px rgba(212, 175, 55, 0.28);
  --gold-border: rgba(212, 175, 55, 0.3);

  /* Clean Luxury Light Canvas (White & Warm Porcelain) */
  --background: #faf8f5;
  --background-subtle: #f3efe6;
  --card: #ffffff;
  --card-border: rgba(212, 175, 55, 0.22);
  --card-hover: #fffdf9;
  --card-shadow: 0 4px 20px rgba(180, 140, 60, 0.07), 0 1px 4px rgba(0, 0, 0, 0.03);
  --card-shadow-hover: 0 10px 30px rgba(180, 140, 60, 0.14), 0 2px 8px rgba(0, 0, 0, 0.05);

  /* High Contrast Obsidian Slate Typography */
  --foreground: #0f172a;
  --muted-foreground: #475569;
  --dim-foreground: #64748b;

  /* Status */
  --live-green: #16a34a;
  --live-green-rgb: 22, 163, 74;

  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'Geist Mono', 'SF Mono', Consolas, monospace;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  min-height: 100vh;
  min-height: -webkit-fill-available;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

/* Luxury Background Ambient Gold Aura */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 900px;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.16) 0%, rgba(246, 211, 101, 0.06) 45%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.15rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.85rem;
  }
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 14px rgba(180, 140, 60, 0.06);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--foreground);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.logo-bars {
  display: flex;
  flex-direction: column;
  gap: 2.5px;
  width: 20px;
}

.logo-bar {
  height: 3.8px;
  border-radius: 2px;
  background: #0f172a;
}

.logo-bar.top {
  width: 11px;
  align-self: flex-end;
  background: var(--gold-gradient);
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
}

.logo-bar.mid {
  width: 15px;
  align-self: flex-end;
  background: #1e293b;
}

.logo-bar.bot {
  width: 20px;
  background: #0f172a;
}

.brand-dot {
  color: var(--primary);
  font-weight: 900;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lang-switch-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.18rem 0.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.lang-link {
  text-decoration: none;
  color: var(--muted-foreground);
  font-size: 0.76rem;
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
  font-weight: 600;
}

.lang-link:hover, .lang-link.active {
  color: #000;
  background: var(--gold-gradient);
  font-weight: 800;
  box-shadow: 0 1px 6px rgba(212, 175, 55, 0.35);
}

.curr-switch-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.18rem 0.35rem;
  border-radius: var(--radius-full);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.curr-link {
  text-decoration: none;
  color: var(--dim-foreground);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  transition: var(--transition);
}

.curr-link:hover, .curr-link.active {
  color: #000;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  list-style: none;
}

.nav-link {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

/* Mobile Header Adjustment */
@media (max-width: 600px) {
  .site-header {
    padding: 0.75rem 0;
  }
  
  .nav-wrap {
    flex-direction: row;
    justify-content: space-between;
  }

  .brand-logo {
    font-size: 1.15rem;
  }

  .header-controls {
    width: 100%;
    justify-content: space-between;
    margin-top: 0.45rem;
    padding-top: 0.45rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav-menu {
    gap: 0.65rem;
  }

  .nav-link {
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   LIVE STATS PILL (PRESTIGE & ACTIVITY)
   ========================================================================== */
.stats-pill-wrap {
  text-align: center;
  margin: 1.5rem 0 1.25rem;
}

.stats-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--muted-foreground);
  text-decoration: none;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(180, 140, 60, 0.08);
}

.live-dot {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
}

.live-dot .ping {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background-color: var(--live-green);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.live-dot .core {
  position: relative;
  display: inline-flex;
  border-radius: 9999px;
  width: 8px;
  height: 8px;
  background-color: var(--live-green);
}

.live-text {
  font-weight: 700;
  color: var(--live-green);
}

/* ==========================================================================
   HERO / CLAIM SECTION (GOLDEN PROSPERITY FOCUS)
   ========================================================================== */
.claim-section {
  text-align: center;
  margin-bottom: 2.25rem;
}

.claim-headline {
  font-size: clamp(1.6rem, 5.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.7rem;
  line-height: 1.25;
  color: var(--foreground);
}

.bid-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(212, 175, 55, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.btn-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 900;
  font-size: 1.2rem;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.4);
}

.btn-step:active {
  transform: scale(0.92);
  box-shadow: 0 1px 3px rgba(212, 175, 55, 0.3);
}

.bid-amount-editable {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
  font-family: var(--font-sans);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.claim-subtitle {
  color: var(--muted-foreground);
  font-size: 0.92rem;
  max-width: 520px;
  margin: 0.75rem auto 1.5rem;
  line-height: 1.45;
  padding: 0 0.5rem;
}

.claim-subtitle strong {
  color: var(--foreground);
  font-weight: 700;
}

/* Claim Input Form */
.claim-form {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.claim-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

@media (min-width: 600px) {
  .claim-input-group {
    flex-direction: row;
    align-items: center;
  }
}

.input-with-avatar {
  position: relative;
  flex: 1;
  width: 100%;
}

.input-avatar-preview {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  background: var(--background-subtle);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  overflow: hidden;
  pointer-events: none;
}

.input-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.claim-input {
  width: 100%;
  height: 52px;
  background: #ffffff;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md);
  padding: 0 0.85rem 0 3.1rem;
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  outline: none;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(180, 140, 60, 0.06);
}

.claim-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25), 0 4px 16px rgba(180, 140, 60, 0.12);
}

.btn-outbid {
  height: 52px;
  padding: 0 1.85rem;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: var(--gold-glow);
}

@media (min-width: 600px) {
  .btn-outbid {
    width: auto;
  }
}

.btn-outbid:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.42);
  transform: translateY(-1px);
}

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

.claim-helper {
  font-size: 0.78rem;
  color: var(--dim-foreground);
  margin-top: 0.65rem;
  line-height: 1.4;
}

/* ==========================================================================
   WIDGETS (TRENDING & LATEST)
   ========================================================================== */
.widgets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  margin-bottom: 2rem;
  width: 100%;
}

@media (min-width: 680px) {
  .widgets-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.widget-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.15rem;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.widget-title {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--foreground);
}

.widget-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.widget-item {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.widget-item:first-child {
  border-top: none;
}

.widget-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0;
  text-decoration: none;
  color: var(--foreground);
  font-size: 0.84rem;
  transition: var(--transition);
}

.widget-link:hover {
  color: var(--primary);
}

.widget-avatar {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--background-subtle);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--primary);
  overflow: hidden;
  flex-shrink: 0;
}

.widget-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.widget-name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
}

.widget-meta {
  color: var(--muted-foreground);
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-left: 0.35rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

/* ==========================================================================
   LEADERBOARD (RESPONSIVE LUXURY CARDS)
   ========================================================================== */
.leaderboard-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

.board-row {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.15rem;
  transition: var(--transition);
  width: 100%;
  overflow: visible;
  z-index: 1;
  box-shadow: var(--card-shadow);
}

.board-row:hover {
  z-index: 30;
  border-color: rgba(212, 175, 55, 0.6);
  background: var(--card-hover);
  box-shadow: var(--card-shadow-hover);
}

/* TOP 1 - Crowned Imperial Gold Card */
.board-row.rank-1 {
  border: 2px solid #d4af37;
  background: linear-gradient(135deg, #fffcf4 0%, #ffffff 100%);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.22), 0 2px 6px rgba(0, 0, 0, 0.04);
  margin-bottom: 0.65rem;
  margin-top: 0.5rem;
}

.board-row.rank-1:hover {
  box-shadow: 0 12px 38px rgba(212, 175, 55, 0.32), 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* TOP 2 - Platinum/Gold Accent */
.board-row.rank-2 {
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  margin-bottom: 0.65rem;
  margin-top: 0.5rem;
}

/* TOP 3 - Bronze/Champagne Accent */
.board-row.rank-3 {
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  background: #ffffff;
  margin-bottom: 0.65rem;
  margin-top: 0.5rem;
}

.board-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.board-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 25px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 900;
  background: var(--background-subtle);
  color: var(--muted-foreground);
  padding: 0 0.4rem;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.rank-1 .board-rank-badge {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.45);
  border: none;
}

.rank-2 .board-rank-badge {
  background: #e2e8f0;
  color: #1e293b;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.rank-3 .board-rank-badge {
  background: #fed7aa;
  color: #7c2d12;
  border: 1px solid rgba(124, 45, 18, 0.2);
}

.board-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

@media (min-width: 600px) {
  .board-avatar {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

.board-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-info {
  flex: 1;
  min-width: 0;
}

.board-header-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.board-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.board-price {
  font-size: 0.98rem;
  font-weight: 900;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.board-desc {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.board-footer-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.45rem;
  font-size: 0.76rem;
  color: var(--dim-foreground);
  flex-wrap: wrap;
}

.board-clicks {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--foreground);
}

.social-badge-link {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 600;
}

.social-badge-link:hover {
  color: var(--primary);
}

/* Button "Claim this rank" Hover & Focus */
.btn-claim-hover {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #000000;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 0.3rem 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.45);
  z-index: 50;
  touch-action: manipulation;
}

.board-row:hover .btn-claim-hover,
.board-row:focus-within .btn-claim-hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-2px);
}

.btn-claim-hover:hover {
  background: var(--gold-gradient-hover);
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.6);
}

@media (max-width: 600px) {
  .board-row {
    margin-top: 0.65rem;
    margin-bottom: 0.65rem;
  }

  .btn-claim-hover {
    font-size: 0.72rem;
    padding: 0.25rem 0.8rem;
    top: -11px;
  }
}

/* Separator */
.top-separator {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 0;
}

.separator-line {
  flex: 1;
  height: 1px;
  background: rgba(212, 175, 55, 0.25);
}

.separator-badge {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

/* Compact Rows */
.board-list-compact {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  overflow: visible;
}

.board-list-compact .board-row {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  background: transparent;
  margin: 0;
  box-shadow: none;
}

.board-list-compact .board-row:hover {
  background: var(--card-hover);
}

.board-list-compact .board-row:first-child {
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.board-list-compact .board-row:last-child {
  border-bottom: none;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

/* ==========================================================================
   RULES / HOW IT WORKS SECTION
   ========================================================================== */
.rules-section {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  margin-top: 2.5rem;
  box-shadow: var(--card-shadow);
}

.rules-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.rule-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.rule-heading {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--foreground);
}

.rule-text {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  line-height: 1.45;
}

/* ==========================================================================
   MODAL / PIX / PAYPAL DRAWER
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 460px;
  max-height: 88vh;
  max-height: calc(100dvh - 3rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.75rem 1.35rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22), 0 4px 16px rgba(212, 175, 55, 0.15);
  position: relative;
  transform: scale(0.96);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: var(--background-subtle);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--muted-foreground);
  font-size: 1.5rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  transition: var(--transition);
}

.modal-close-btn:hover, .modal-close-btn:active {
  background: var(--primary);
  color: #000;
}

.modal-header-title {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  color: var(--foreground);
}

.modal-header-desc {
  font-size: 0.86rem;
  color: var(--muted-foreground);
  margin-bottom: 1.35rem;
  line-height: 1.4;
}

.form-field {
  margin-bottom: 0.95rem;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--foreground);
}

.field-input {
  width: 100%;
  height: 46px;
  background: #ffffff;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  padding: 0 0.95rem;
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  outline: none;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.field-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.22);
}

/* PIX Modal Screen */
.pix-qr-container {
  background: #ffffff;
  padding: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  display: inline-block;
  margin: 0.85rem auto;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.pix-qr-container img {
  width: 160px;
  height: 160px;
  max-width: 100%;
  display: block;
}

.pix-copy-input-group {
  position: relative;
  margin: 0.95rem 0;
}

.pix-copy-input-group input {
  width: 100%;
  height: 44px;
  background: var(--background-subtle);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 0 4.5rem 0 0.75rem;
  color: var(--foreground);
  font-family: var(--font-mono);
  font-size: 14px;
}

.btn-copy-mini {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 900;
  font-size: 0.76rem;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0 0.85rem;
  cursor: pointer;
  touch-action: manipulation;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
}

.btn-wa-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: #16a34a;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 0.85rem;
  border-radius: var(--radius-full);
  margin-top: 0.95rem;
  touch-action: manipulation;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
  transition: var(--transition);
}

.btn-wa-proof:hover {
  background: #15803d;
}

.btn-paypal-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #0070ba;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.98rem;
  text-decoration: none;
  padding: 0.9rem;
  border-radius: var(--radius-full);
  margin-top: 0.95rem;
  box-shadow: 0 4px 18px rgba(0, 112, 186, 0.35);
  touch-action: manipulation;
  transition: var(--transition);
}

.btn-paypal-checkout:hover {
  background: #005ea6;
}

.btn-mercadopago {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #009ee3;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.94rem;
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-full);
  margin-top: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 158, 227, 0.35);
  touch-action: manipulation;
  transition: var(--transition);
}

.btn-mercadopago:hover {
  background: #0081b8;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 158, 227, 0.45);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  margin-top: 3.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--dim-foreground);
  line-height: 1.6;
}

.site-footer a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--primary);
}

/* ==========================================================================
   LGPD FLOATING BANNER
   ========================================================================== */
.lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1.5px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  z-index: 990;
  box-shadow: 0 -8px 26px rgba(180, 140, 60, 0.12);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  pointer-events: none;
}

.lgpd-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.lgpd-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.lgpd-text {
  font-size: 0.84rem;
  color: var(--muted-foreground);
  line-height: 1.45;
  flex: 1;
  min-width: 260px;
}

.lgpd-text strong {
  color: var(--foreground);
  font-weight: 700;
}

.lgpd-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn-lgpd-accept {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 900;
  font-size: 0.82rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.btn-lgpd-accept:hover {
  background: var(--gold-gradient-hover);
}

.btn-lgpd-link {
  background: #ffffff;
  color: var(--muted-foreground);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-full);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-lgpd-link:hover {
  color: #000;
  border-color: var(--primary);
}

/* ==========================================================================
   ADMIN PANEL STYLES (MATCHING LUXURY LIGHT SYSTEM)
   ========================================================================== */
.admin-container { 
  max-width: 1100px; 
  margin: 2.25rem auto; 
  padding: 0 1.15rem; 
}

.metrics-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); 
  gap: 1.15rem; 
  margin-bottom: 2.25rem; 
}

.metric-card { 
  background: var(--card); 
  border: 1px solid var(--card-border); 
  border-radius: var(--radius-lg); 
  padding: 1.35rem; 
  display: flex; 
  flex-direction: column; 
  gap: 0.35rem; 
  box-shadow: var(--card-shadow); 
}

.metric-val { 
  font-size: 1.75rem; 
  font-weight: 900; 
  color: var(--primary); 
  font-variant-numeric: tabular-nums; 
}

.metric-lbl { 
  font-size: 0.78rem; 
  color: var(--muted-foreground); 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  font-weight: 700; 
}

.admin-nav-tabs { 
  display: flex; 
  align-items: center; 
  gap: 0.6rem; 
  border-bottom: 1px solid rgba(212, 175, 55, 0.25); 
  padding-bottom: 0.85rem; 
  margin-bottom: 1.75rem; 
  flex-wrap: wrap; 
}

.tab-btn { 
  background: #ffffff; 
  border: 1px solid rgba(212, 175, 55, 0.3); 
  color: var(--muted-foreground); 
  padding: 0.55rem 1.15rem; 
  border-radius: var(--radius-full); 
  font-size: 0.88rem; 
  font-weight: 700; 
  cursor: pointer; 
  text-decoration: none; 
  transition: var(--transition); 
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04); 
}

.tab-btn:hover { 
  color: #000; 
  border-color: var(--primary); 
}

.tab-btn.active { 
  background: var(--gold-gradient); 
  color: #000000; 
  border-color: transparent; 
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.35); 
}

.badge-pill { 
  background: #ef4444; 
  color: #fff; 
  padding: 0.15rem 0.5rem; 
  border-radius: 9999px; 
  font-size: 0.72rem; 
  margin-left: 0.35rem; 
  font-weight: 800; 
}

.table-wrap { 
  background: var(--card); 
  border: 1px solid var(--card-border); 
  border-radius: var(--radius-lg); 
  overflow-x: auto; 
  box-shadow: var(--card-shadow); 
}

.admin-table { 
  width: 100%; 
  border-collapse: collapse; 
  font-size: 0.9rem; 
  text-align: left; 
}

.admin-table th { 
  padding: 1rem 1.15rem; 
  background: #f8fafc; 
  color: var(--muted-foreground); 
  font-size: 0.76rem; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  border-bottom: 1px solid var(--card-border); 
  font-weight: 800; 
}

.admin-table td { 
  padding: 1rem 1.15rem; 
  border-bottom: 1px solid rgba(212, 175, 55, 0.15); 
  vertical-align: middle; 
}

.badge-status { 
  display: inline-flex; 
  align-items: center; 
  gap: 0.35rem; 
  padding: 0.25rem 0.75rem; 
  border-radius: var(--radius-full); 
  font-size: 0.74rem; 
  font-weight: 800; 
  text-transform: uppercase; 
}

.badge-status.active { 
  background: rgba(22, 163, 74, 0.12); 
  color: #15803d; 
  border: 1px solid rgba(22, 163, 74, 0.3); 
}

.badge-status.pending { 
  background: rgba(212, 175, 55, 0.18); 
  color: #a16207; 
  border: 1px solid rgba(212, 175, 55, 0.4); 
}

.badge-status.rejected { 
  background: rgba(239, 68, 68, 0.12); 
  color: #dc2626; 
  border: 1px solid rgba(239, 68, 68, 0.3); 
}

.payment-tag { 
  font-size: 0.76rem; 
  font-weight: 800; 
  padding: 0.2rem 0.5rem; 
  border-radius: 4px; 
  display: inline-block; 
}

.payment-tag.pix { 
  background: #00b494; 
  color: #fff; 
}

.payment-tag.paypal { 
  background: #0070ba; 
  color: #fff; 
}

.table-actions { 
  display: flex; 
  align-items: center; 
  gap: 0.45rem; 
}

.btn-table { 
  padding: 0.35rem 0.75rem; 
  border-radius: var(--radius-sm); 
  font-size: 0.78rem; 
  font-weight: 700; 
  cursor: pointer; 
  border: none; 
  transition: var(--transition); 
}

.btn-table-approve { 
  background: #16a34a; 
  color: #fff; 
}

.btn-table-approve:hover { 
  background: #15803d; 
}

.btn-table-pause { 
  background: #e2e8f0; 
  color: #334155; 
}

.btn-table-pause:hover { 
  background: #cbd5e1; 
}

.btn-table-edit { 
  background: #fef08a; 
  color: #854d0e; 
  text-decoration: none; 
  display: inline-block; 
}

.btn-table-edit:hover { 
  background: #fde047; 
}

.btn-table-del { 
  background: #fee2e2; 
  color: #dc2626; 
}

.btn-table-del:hover { 
  background: #fca5a5; 
}

.login-card { 
  max-width: 400px; 
  margin: 4rem auto; 
  background: var(--card); 
  border: 1.5px solid rgba(212, 175, 55, 0.4); 
  border-radius: var(--radius-lg); 
  padding: 2.25rem; 
  text-align: center; 
  box-shadow: 0 20px 50px rgba(180, 140, 60, 0.15); 
}

.alert-box { 
  padding: 0.85rem 1.15rem; 
  border-radius: var(--radius-md); 
  font-size: 0.86rem; 
  margin-bottom: 1.25rem; 
  font-weight: 600; 
}

.alert-success { 
  background: rgba(22, 163, 74, 0.12); 
  color: #15803d; 
  border: 1px solid rgba(22, 163, 74, 0.3); 
}

.alert-error { 
  background: rgba(239, 68, 68, 0.12); 
  color: #b91c1c; 
  border: 1px solid rgba(239, 68, 68, 0.3); 
}

/* Keyframes */
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes goldPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
  }
  50% {
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.45);
  }
}

/* =========================================================================
   SEGMENTS NAVIGATION & NICHES STYLES
   ========================================================================= */
.segments-section {
  margin: 2rem 0 1.25rem;
}

.segments-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.segments-nav-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.segments-search-box {
  position: relative;
  min-width: 200px;
  max-width: 280px;
  flex: 1;
}

.segments-search-box .search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  font-size: 0.8rem;
  pointer-events: none;
}

.segment-search-input {
  width: 100%;
  height: 36px;
  padding: 0 0.75rem 0 2.1rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--foreground);
  outline: none;
  transition: var(--transition);
}

.segment-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* ==========================================
   HERO SEGMENT PICKER & NICHES STYLES
   ========================================== */
.hero-segment-picker {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.hero-seg-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
}

.hero-seg-label i {
  color: var(--primary);
}

.hero-seg-select-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.75rem 0.3rem 1.15rem;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.12);
  transition: all 0.25s ease;
  margin: 0 auto;
}

.hero-seg-select-wrapper:hover,
.hero-seg-select-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
  transform: translateY(-1px);
}

.hero-seg-icon-preview {
  font-size: 1.15rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.6rem;
  flex-shrink: 0;
}

.hero-seg-dropdown {
  width: 100%;
  background: transparent;
  border: none;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--foreground);
  cursor: pointer;
  outline: none;
  font-family: var(--font-sans);
  text-align: center;
  text-align-last: center;
  padding: 0.45rem 1.8rem 0.45rem 0.25rem;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23d4af37'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.35rem center;
  background-size: 1.1rem;
}

.hero-seg-dropdown option {
  background: #18181b;
  color: #ffffff;
  padding: 0.65rem;
  font-weight: 600;
}

/* ==========================================
   SEGMENTS NAVIGATION BAR & PILLS
   ========================================== */
.segments-section {
  margin-bottom: 2rem;
  width: 100%;
}

.segments-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.segments-nav-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.segments-search-box {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 240px;
  width: 100%;
}

.segments-search-box .search-icon {
  position: absolute;
  left: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.78rem;
  pointer-events: none;
}

.segment-search-input {
  width: 100%;
  padding: 0.4rem 0.75rem 0.4rem 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
  color: var(--foreground);
  outline: none;
  transition: all 0.2s ease;
}

.segment-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.segments-scroll-wrapper {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.35rem 0.25rem 0.85rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.4) transparent;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.segments-scroll-wrapper::-webkit-scrollbar {
  height: 5px;
}

.segments-scroll-wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
}

.segments-scroll-wrapper::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 4px;
}

.segments-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.segment-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  background: var(--card);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--foreground);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.segment-pill:hover {
  border-color: rgba(212, 175, 55, 0.6);
  background: var(--background-subtle);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.segment-pill.active {
  background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
  color: #ffffff;
  border-color: #d4af37;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
  transform: scale(1.04);
}

.segment-pill.active .pill-icon {
  color: #d4af37;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.6));
}

.segment-pill.active .pill-badge.active-count {
  background: #d4af37;
  color: #000000;
  font-weight: 800;
}

.segment-pill.active .pill-badge.new-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.pill-icon {
  font-size: 0.9rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.segment-pill:hover .pill-icon {
  transform: scale(1.15);
}

.pill-title {
  font-weight: 700;
}

.pill-badge {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-full);
  line-height: 1;
}

.pill-badge.active-count {
  background: rgba(212, 175, 55, 0.18);
  color: var(--primary);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.pill-badge.new-count {
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.25);
  text-transform: uppercase;
  font-size: 0.64rem;
  letter-spacing: 0.3px;
}

/* Badges nos Cards de Anúncios */
.board-seg-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.board-seg-tag-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-left: 0.35rem;
}

/* Golden Empty State Banner */
.segment-empty-banner {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 1.85rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14) 0%, rgba(255, 248, 220, 0.5) 50%, rgba(212, 175, 55, 0.1) 100%);
  border: 2px dashed rgba(212, 175, 55, 0.65);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1.35rem;
  overflow: hidden;
  animation: goldPulse 4s infinite ease-in-out;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.empty-banner-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #d4af37 0%, #aa8010 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.empty-banner-body {
  flex: 1;
  min-width: 0;
}

.empty-banner-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: #d4af37;
  color: #000000;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.35rem;
}

.empty-banner-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.empty-banner-desc {
  font-size: 0.86rem;
  color: var(--muted-foreground);
  line-height: 1.45;
}

.empty-banner-action {
  flex-shrink: 0;
}

.btn-claim-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #18181b 0%, #000000 100%);
  color: #d4af37;
  border: 1.5px solid #d4af37;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-claim-empty:hover {
  background: #d4af37;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.45);
}

@media (max-width: 768px) {
  .segment-empty-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.35rem;
  }
  .empty-banner-action {
    width: 100%;
  }
  .btn-claim-empty {
    width: 100%;
  }
  .segments-search-box {
    max-width: 100%;
    min-width: 100%;
  }
  .hero-segment-picker {
    max-width: 100%;
  }
}

/* ==========================================
   SELOS DE GARANTIA, SEGURANÇA E CONFIANÇA
   ========================================== */

/* Hero Quick Trust Bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  flex-wrap: wrap;
  width: 100%;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted-foreground);
  letter-spacing: -0.01em;
}

.hero-trust-item i {
  font-size: 0.88rem;
}

/* Dedicated Security & Guarantee Section */
.trust-section {
  margin: 3.5rem 0 2rem;
  padding: 2.25rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #22c55e, #38bdf8, #a855f7, #d4af37);
  background-size: 200% 100%;
  animation: barGradient 6s linear infinite;
}

.trust-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.25rem;
}

.trust-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.trust-title {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--foreground);
  margin-bottom: 0.4rem;
}

.trust-subtitle {
  font-size: 0.88rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.trust-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--background-subtle);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
  position: relative;
}

.trust-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.trust-card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-gold {
  background: linear-gradient(135deg, #d4af37 0%, #aa8010 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

.icon-green {
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

.icon-blue {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.icon-purple {
  background: linear-gradient(135deg, #9333ea 0%, #6b21a8 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(147, 51, 234, 0.35);
}

.trust-card-info {
  flex: 1;
  min-width: 0;
}

.trust-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-bottom: 0.35rem;
}

.gold-tag { background: rgba(212, 175, 55, 0.18); color: var(--primary); }
.green-tag { background: rgba(34, 197, 94, 0.18); color: #16a34a; }
.blue-tag { background: rgba(2, 132, 199, 0.18); color: #0284c7; }
.purple-tag { background: rgba(147, 51, 234, 0.18); color: #9333ea; }

.trust-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.trust-card-desc {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  line-height: 1.45;
}

/* Modal Trust Bar */
.modal-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.5rem 0.75rem;
  background: var(--background-subtle);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.modal-trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted-foreground);
}

.modal-trust-bar span i {
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .trust-section {
    padding: 1.5rem 1rem;
    margin: 2.5rem 0 1.5rem;
  }
  .hero-trust-bar {
    gap: 0.75rem;
  }
  .hero-trust-item {
    font-size: 0.74rem;
  }
  .modal-trust-bar {
    gap: 0.5rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .trust-card {
    padding: 1rem;
  }
}

/* ==========================================================================
   MOBILE & CROSS-DEVICE PERFECTION (ANDROID, IOS SAFARI & TOUCH OPTIMIZATIONS)
   ========================================================================== */
@media (max-width: 480px) {
  /* iOS Safe Area & Viewport Handling */
  body {
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  }

  .site-header {
    padding: 0.65rem 0;
  }

  .brand-logo {
    font-size: 1.1rem;
  }

  .header-controls {
    gap: 0.35rem;
  }

  .lang-link, .curr-link {
    font-size: 0.72rem;
    padding: 0.15rem 0.35rem;
  }

  /* Hero Stepper Touch Ergonomics */
  .claim-headline {
    font-size: 1.7rem;
    gap: 0.35rem;
  }

  .bid-stepper {
    padding: 0.15rem 0.35rem;
    user-select: none;
    -webkit-user-select: none;
  }

  .btn-step {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
    font-weight: 900;
  }

  .bid-amount-editable {
    font-size: 1.35rem;
  }

  .hero-segment-picker {
    margin: 0 auto 0.95rem auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-seg-select-wrapper {
    margin: 0 auto;
    padding: 0.25rem 0.5rem 0.25rem 0.75rem;
  }

  .hero-seg-dropdown {
    font-size: 0.84rem;
    text-align: center;
    text-align-last: center;
  }

  .claim-subtitle {
    font-size: 0.84rem;
    margin: 0.5rem auto 1.15rem;
  }

  /* Quick Claim Form */
  .claim-input {
    height: 48px;
    font-size: 16px !important; /* Prevents iOS auto-zoom */
    padding-left: 2.8rem;
  }

  .btn-outbid {
    height: 48px;
    font-size: 0.95rem;
  }

  /* Segments Horizontal Scroll */
  .segments-nav-header {
    margin-bottom: 0.65rem;
  }

  .segments-nav-title {
    font-size: 0.88rem;
  }

  .segments-scroll-wrapper {
    padding: 0.25rem 0.1rem 0.65rem;
    gap: 0.45rem;
  }

  .segment-pill {
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
  }

  .pill-badge {
    font-size: 0.62rem;
    padding: 0.12rem 0.4rem;
  }

  /* Leaderboard Rows on Mobile */
  .board-row {
    padding: 0.85rem 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .board-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .board-rank-badge {
    min-width: 28px;
    height: 22px;
    font-size: 0.74rem;
  }

  .board-title {
    font-size: 0.9rem;
  }

  .board-price {
    font-size: 0.92rem;
  }

  .board-desc {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .board-footer-meta {
    font-size: 0.72rem;
    gap: 0.45rem;
  }

  .board-seg-tag {
    font-size: 0.68rem;
    padding: 0.12rem 0.4rem;
  }

  /* Modal on Mobile */
  .modal-content {
    padding: 1.35rem 1rem;
    border-radius: var(--radius-md);
    max-height: calc(100dvh - 1.5rem);
  }

  .modal-header-title {
    font-size: 1.2rem;
  }

  .field-input {
    font-size: 16px !important; /* Prevents iOS auto-zoom */
    height: 44px;
  }

  /* LGPD Banner */
  .lgpd-banner {
    padding: 0.75rem 0.5rem;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .lgpd-text {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .lgpd-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .btn-lgpd-accept {
    width: 100%;
    height: 38px;
    font-size: 0.82rem;
  }
}

/* Ensure no text overflows anywhere */
.board-title, .widget-name, .empty-banner-title {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ==========================================================================
   CONSULTORIA SEO GOOGLE & SOLUÇÃO DE TRÁFEGO IMEDIATO
   ========================================================================== */
.seo-consultancy-section {
  margin: 3.5rem 0 2rem;
  width: 100%;
}

.seo-consultancy-card {
  background: var(--card);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.seo-consultancy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853, #d4af37);
  background-size: 200% 100%;
  animation: barGradient 8s linear infinite;
}

.seo-consultancy-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2rem;
}

.seo-consultancy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.95rem;
  background: rgba(212, 175, 55, 0.14);
  color: var(--primary);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.85rem;
}

.seo-consultancy-title {
  font-size: clamp(1.4rem, 3.8vw, 1.95rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--foreground);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.seo-consultancy-desc {
  font-size: 0.92rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.seo-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.15rem;
  margin-bottom: 2.25rem;
}

.seo-benefit-item {
  background: var(--background-subtle);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: all 0.25s ease;
}

.seo-benefit-item:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.seo-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-gradient);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.seo-benefit-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 0.35rem;
}

.seo-benefit-desc {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  line-height: 1.45;
}

/* Form Container */
.seo-form-container {
  background: #ffffff;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.seo-form-heading {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.02em;
}

.seo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.seo-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

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

.seo-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--foreground);
}

.btn-seo-submit {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

@media (max-width: 680px) {
  .seo-consultancy-card {
    padding: 1.5rem 1.15rem;
  }
  .seo-form-grid {
    grid-template-columns: 1fr;
  }
  .seo-form-container {
    padding: 1.25rem 1rem;
  }
}


