/* =============================
   CLIENT DASHBOARD — Velvet
   ============================= */

   .clientdash-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px;
    background: var(--background);
    color: var(--text);
  }
  
  /* BALANCE */
  .clientdash-balance {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,.15));
  }
  .clientdash-balance .label {
    font-weight: 600;
    color: var(--gold);
  }
  .clientdash-balance .value {
    font-weight: 700;
    font-size: 1.2rem;
  }
  .clientdash-balance button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gold);
    margin-left: auto;
  }
  
  /* BLOCO GENÉRICO */
  .clientdash-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,.15));
  }
  .block-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  /* STORIES */
  .clientdash-stories {
    display: flex;
    gap: 12px;
  }
  .story-card {
    width: 90px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--surface-2, #f9f9f9);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,.2));
  }
  .story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .story-card span {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 8px;
  }
  
  /* RECENTLY VIEWED */
  .clientdash-history {
    display: flex;
    gap: 12px;
  }
  .history-card {
    width: 120px;
    padding: 8px;
    background: var(--surface-2, #f9f9f9);
    border-radius: 12px;
    text-align: center;
    font-size: 0.85rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,.1));
  }
  .history-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 6px;
  }
  .history-card .name {
    font-weight: 600;
  }
  .history-card .city {
    font-size: 0.75rem;
    color: var(--muted);
  }
  
  /* TEXTO INFO */
  .info-text {
    font-size: 0.9rem;
    color: var(--muted);
  }
  .info-text a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
  }
  
  /* BOTÃO REFERRAL */
  .btn-referral {
    margin-top: 10px;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: filter .2s ease;
  }
  .btn-referral:hover {
    filter: brightness(1.1);
  }
  
  /* BANNER PREMIUM */
  .balance-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    background: linear-gradient(90deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
    border: 1px solid rgba(212,175,55,0.25);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,.15));
  }
  .balance-banner i {
    color: var(--gold);
  }
  