
:root {
  --gold: #d4af37;
  --gold-1: #e8d18a;
  --text: #f6f6f6;
  --text-light: #cfcfcf;
  --text-muted: #a6a6a6;
  --surface: #141414;
  --surface-2: #171717;
  --border: #2a2a2a;
  --btn-bg: #1d1d1d;
  --btn-border: #2f2f2f;
  --shadow-1: 0 6px 16px rgba(0,0,0,.35);
  --shadow-2: 0 10px 36px rgba(0,0,0,.6);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --gap-1: 10px;
  --gap-2: 16px;
  --gap-3: 24px;
  --gap-4: 32px;
}
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; display: block; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- Contêiner raiz ---------- */
.boost-section {
  color: var(--text);
  padding: 20px;                     /* mobile-first */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  gap: var(--gap-4);
}

/* ---------- Header do dashboard (faltava estilo no seu CSS) ---------- */
.mlc-header {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2);
}
.mlc-header-left { display: flex; gap: var(--gap-2); align-items: center; flex-wrap: wrap; }
.mlc-header-right { display: flex; gap: var(--gap-2); align-items: center; flex-wrap: wrap; }

.plan-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.35);
  color: var(--gold);
  font-weight: 700; font-size: .9rem;
}
.plan-chip i { color: var(--gold); }
.plan-chip.plan-redDiamond {
  background: linear-gradient(90deg, #5a0a0a, #8a1010);
  border-color: #ff4d4d; color: #ffb5b5;
}

/* ---------- Headings ---------- */
.dash-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;                 /* menor no mobile */
  font-weight: 700;
  color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  text-shadow: 0 0 12px rgba(212,175,55,.35);
  margin: 0;
}
.dash-subheading {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 8px 0 10px;
  color: var(--gold);
  border-left: 4px solid var(--gold);
  padding-left: 10px;
  text-shadow: 0 0 8px rgba(207,163,73,.4);
}

/* ===========================
   PLANS GRID
=========================== */
.plans-upgrade {
  display: grid;
  grid-template-columns: 1fr;        /* mobile: 1 coluna */
  gap: var(--gap-3);
}
@media (min-width: 640px) {
  .plans-upgrade { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .plans-upgrade { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.plan-card {
  border: 1px solid rgba(212,175,55,.22);
  border-radius: var(--radius-lg);
  padding: 18px;
  position: relative;
  box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; gap: 12px;
  background: linear-gradient(160deg, #101010, #151515);
  transition: transform .25s ease, border .25s ease, box-shadow .25s ease;
}
.plan-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 8px 24px rgba(212,175,55,.28); }
.plan-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--gold); margin: 0 24px 8px 0; }
.plan-bullets { margin: 0; padding-left: 16px; font-size: .95rem; color: var(--text-light); line-height: 1.55; }
.plan-bullets li { margin-bottom: 6px; }
.plan-pricebox { text-align: center; margin-top: 6px; }
.plan-pricebox .price-line { font-weight: 800; font-size: 1rem; margin-bottom: 4px; color: var(--gold); }
.plan-pricebox .price-compare { font-size: .85rem; opacity: .85; color: var(--text-muted); }
.plan-tag {
  position: absolute; top: -12px; right: 16px;
  background: var(--gold); color: #000; font-size: .8rem; font-weight: 800;
  padding: 5px 12px; border-radius: 14px; box-shadow: 0 2px 10px rgba(212,175,55,.45);
}
.badge-current {
  display: inline-block; background: linear-gradient(90deg, #d4af37, #f0ca32);
  color: #000; font-size: .8rem; font-weight: 800; padding: 6px 14px; border-radius: 999px;
  margin-top: 6px; box-shadow: 0 0 10px rgba(212,175,55,.5);
}
.plan-card.redDiamond { border: 1px solid #d62b2b; box-shadow: 0 0 22px rgba(229,57,53,.45); }
.plan-card.redDiamond h3 { color: #ff4d4d; }

/* ===========================
   BOOST CARDS
=========================== */
.boost-options {
  display: grid;
  grid-template-columns: 1fr;        /* mobile */
  gap: var(--gap-3);
}
@media (min-width: 640px) {
  .boost-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .boost-options { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.boost-card {
  border: 1px solid rgba(212,175,55,.22);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, border .2s ease, box-shadow .2s ease;
}
.boost-card:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: 0 8px 22px rgba(212,175,55,.25); }
.boost-card i { font-size: 1.6rem; color: var(--gold); margin-bottom: 10px; }
.boost-card h4 { font-size: 1rem; font-weight: 800; color: var(--gold); margin: 0 0 6px; }
.boost-desc { font-size: .92rem; color: var(--text); min-height: 38px; margin: 6px 0 10px; }

/* Botão padrão dourado (reutilizado) */
.boost-btn,
.addon-btn,
.vb-buy,
.vb-confirm,
.btn-gold,
.buy-coins-btn,
.coin-pack {
  --_bg: var(--gold);
  background: var(--_bg);
  color: #111;
  border: 0;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s ease, filter .2s ease, box-shadow .2s ease;
}
.boost-btn:hover,
.addon-btn:hover,
.vb-buy:hover,
.vb-confirm:hover,
.btn-gold:hover,
.buy-coins-btn:hover,
.coin-pack:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 6px 18px rgba(212,175,55,.35);
}
.buy-coins-btn { background: transparent; color: var(--text); border: 1px solid var(--gold); }
.buy-coins-btn:hover { color: #111; }

/* ===========================
   ADD-ONS
=========================== */
.addons-options {
  display: grid;
  grid-template-columns: 1fr;        /* mobile */
  gap: var(--gap-3);
}
@media (min-width: 640px) {
  .addons-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .addons-options { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.addon-card {
  border: 1px solid rgba(212,175,55,.18);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-1);
  text-align: center;

  transition: transform .2s ease, border .2s ease, box-shadow .2s ease;
}
.addon-card.active { border-color: var(--gold); box-shadow: 0 8px 22px rgba(212,175,55,.25); }
.addon-card i { font-size: 1.3rem; color: var(--gold); margin-bottom: 8px; }
.addon-card h4 { font-size: 1rem; font-weight: 800; color: var(--gold); margin: 0 0 6px; }
.addon-card p { font-size: .92rem; color: var(--text-light); margin: 0; }
.addon-table { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.addon-row { display: flex; justify-content: space-between; align-items: center; font-size: .9rem; }
.addon-row .addon-price-vc { font-weight: 800; color: var(--gold); }

/* ===========================
   STATUS
=========================== */
.boost-status {
  margin-top: 8px;
  font-size: .95rem;
  color: var(--text-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
}
.boost-status i { color: var(--gold); margin-right: 6px; }
.boost-status span { font-weight: 800; color: var(--gold); }
.boost-timer { font-weight: 700; color: var(--gold); margin-top: 6px; text-align: right; }

/* ===========================
   CHIPS / INFO
=========================== */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 700; color: var(--gold);
  background: rgba(212,175,55,.12);
  border-radius: 999px; padding: 4px 10px; box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.chip-rocket { background: linear-gradient(90deg, #d4af37, #f0ca32); color: #000; }
.info-inline { font-size: .85rem; color: var(--text-muted); margin: 4px 0 8px; }
.info-inline strong { color: var(--gold); }

/* ===========================
   MODAIS (Info / VB / Coins / Effects)
=========================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.65);
  display: none; align-items: center; justify-content: center; z-index: 9999;
  padding: 12px;                      /* evita corte em celulares pequenos */
}
.modal-box {
  background: linear-gradient(160deg, #111, #1a1a1a);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  width: 100%; max-width: 520px; color: var(--text);
    height: 320px;
  box-shadow: var(--shadow-2); position: relative;
  
}
.modal-box h3 { color: var(--gold); font-size: 1.15rem; margin: 0 0 10px; }
.modal-close {
  position: absolute; top: 10px; right: 12px; background: none; border: none;
  color: var(--gold); font-size: 1.25rem; cursor: pointer;
  transition: transform .2s ease, color .2s ease;
}
.modal-close:hover { transform: rotate(90deg); color: #f0ca32; }
.modal-body { font-size: .95rem; line-height: 1.55; color: var(--text-light); }

/* Coin Modal */
.coin-modal { max-width: 560px; text-align: center; border: 1px solid var(--gold); }
.velvet-store-title { font-family: "Playfair Display", serif; font-size: 1.35rem; color: var(--gold); margin-bottom: 14px; }
.coin-balance { margin-bottom: 12px; font-size: 1rem; font-weight: 700; color: var(--gold); }
.coin-options { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 520px) { .coin-options { grid-template-columns: repeat(2, 1fr); } }
.coin-pack.best-value { background: linear-gradient(90deg, #d4af37, #f0ca32); }
.coin-pack.popular   { background: linear-gradient(90deg, #f0ca32, #d4af37); }
.coin-pack .label { margin-left: 8px; font-size: .75rem; background: #000; color: var(--text); padding: 2px 6px; border-radius: 8px; }
.coin-hint { margin-top: 10px; font-size: .85rem; color: var(--text-muted); }

/* VB Modal (duration) */
.vb-modal { animation: fadeInScale .25s ease; text-align: center; }
#vbModalTitle {
  font-family: "Playfair Display", serif; font-size: 1.2rem; font-weight: 800;
  color: var(--gold); margin-bottom: 12px; text-shadow: 0 0 10px rgba(212,175,55,.4);
}
.vb-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.vb-line { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.vb-line label { font-size: .85rem; color: var(--text-light); font-weight: 700; }
.vb-line input, .vb-line select {
  width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid #2f2f2f;
  background: #1a1a1a; color: var(--text); font-size: .95rem; transition: border .2s ease, box-shadow .2s ease;
}
.vb-line input:focus, .vb-line select:focus { border-color: var(--gold); box-shadow: 0 0 8px rgba(212,175,55,.35); }
.vb-total { margin-top: 4px; font-size: 1rem; font-weight: 800; color: var(--gold); display: flex; justify-content: space-between; padding-top: 8px; border-top: 1px solid #2f2f2f; }
.vb-actions { display: flex; justify-content: center; }

/* Effects Modal */
.effects-modal {
  background: var(--surface-2); border-radius: var(--radius-lg); padding: 20px;
  color: var(--text); box-shadow: var(--shadow-2); max-width: 720px; width: 100%;
  text-align: center; position: relative; animation: fadeIn .2s ease;
}
.effects-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 14px 0 18px; }
.effect-option {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 8px 12px; color: var(--text); cursor: pointer; transition: all .2s ease; font-size: .95rem;
}
.effect-option.active { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,.12); box-shadow: 0 0 10px rgba(212,175,55,.25); }
.effect-option:hover { background: rgba(212,175,55,.08); color: var(--gold); }
.tier-label { font-size: .74rem; opacity: .85; margin-left: 6px; }
.effects-preview { display: flex; justify-content: center; margin: 10px 0; }
#effectsPreviewCard {
  width: min(260px, 80vw); height: 320px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 0 16px rgba(0,0,0,.5); transition: all .3s ease; 
}
.effects-footer { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.duration-select select {
  background: var(--surface); color: var(--text); border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px;
}
.footer-total {
  display: flex; align-items: center; gap: 8px; font-size: .95rem; background: rgba(255,215,0,.08);
  padding: 6px 12px; border-radius: 8px; border: 1px solid rgba(212,175,55,.35);
}
.footer-total strong { color: var(--gold); text-shadow: 0 0 6px rgba(212,175,55,.45); }

/* ===========================
   VISUAL PREVIEW (inline)
=========================== */
.boost-preview-card {
  background: transparent; border-radius: var(--radius-lg);
  padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 16px;
  width: 100%; max-width: 360px; margin: 0 auto;
}
.boost-preview-header { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.boost-preview-header h3 {
  font-family: "Playfair Display", serif; font-size: 1.2rem; color: var(--gold-1);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-shadow: 0 0 10px rgba(212,175,55,.45); margin: 0;
}
.boost-preview-header p { font-size: .92rem; opacity: .82; margin: 0; }
#boostPreviewCard .catalog-card {
  width: 100%; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 16px rgba(0,0,0,.25);
  transition: filter .35s ease, box-shadow .35s ease, transform .35s ease;
}
#boostPreviewCard .foot { padding: 6px 9px; display: flex; justify-content: space-between; align-items: center; font-weight: 700; }
.effects-selector { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 6px; }
.effect-btn {
  border: 1px solid var(--btn-border); background: var(--btn-bg); color: #fff; padding: 8px 12px;
  border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .2s ease;
}
.effect-btn:hover { background: #222; color: var(--gold); transform: translateY(-1px); }
.effect-btn.active {
  border-color: var(--gold-1);
  background: linear-gradient(135deg, rgba(212,175,55,.2), rgba(212,175,55,.08));
  color: var(--gold-1); box-shadow: 0 0 12px rgba(212,175,55,.25);
}
.boost-actions { margin-top: 6px; }
.btn-gold { background: linear-gradient(90deg, #d4b86a 0%, #b58b35 100%); color: #111; font-weight: 800; }
.btn-gold:hover { background: linear-gradient(90deg, #f0d77e 0%, #d4b86a 100%); box-shadow: 0 0 18px rgba(212,175,55,.5); transform: translateY(-1px); }

/* ===========================
   VISUAL GRID (cards)
=========================== */
.visual-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--gap-3); margin-top: 10px;
}
@media (min-width: 640px) { .visual-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .visual-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ===========================
   PREVIEW MINI CARD
=========================== */
.catalog-card.preview {
  width: 160px; height: 240px; font-size: .85rem; transform: scale(.98);
  border-radius: 14px; overflow: hidden; margin: 0 auto; background: #0f0f0f;
}
.catalog-card.preview .card-name { font-size: .86rem; padding: 6px 8px; }
.catalog-card.preview .card-img { height: 160px; }
.catalog-card.preview .card-img img { object-fit: cover; width: 100%; height: 100%; }
.catalog-card.preview .foot { padding: 6px 8px; font-size: .78rem; }

/* ===========================
   TOASTS
=========================== */
.velvet-toast {
  position: fixed; inset-block-end: 20px; inset-inline: 20px auto;
  background: var(--gold); color: #111; padding: 10px 14px; border-radius: 12px;
  font-size: .92rem; font-weight: 800; box-shadow: 0 6px 18px rgba(0,0,0,.4);
  opacity: 0; transform: translateY(12px); transition: opacity .25s ease, transform .25s ease;
  z-index: 10000;
}
.velvet-toast.show { opacity: 1; transform: translateY(0); }

/* ===========================
   EFEITOS VISUAIS (cards)
   >> Mantém seus nomes/classe para compat
   >> Suavizados para mobile e brilho controlado
=========================== */

/* Tier 1 */
.effect-soft-glow { box-shadow: 0 0 18px 4px rgba(212,175,55,.35), inset 0 0 10px rgba(255,240,180,.22); animation: softGlowPulse 2.6s ease-in-out infinite; }
@keyframes softGlowPulse { 0%,100%{ box-shadow: 0 0 12px rgba(212,175,55,.28) } 50%{ box-shadow: 0 0 26px rgba(212,175,55,.55) } }
.effect-velvet-pulse { box-shadow: 0 0 24px rgba(160,0,20,.55); animation: velvetPulse 3.2s ease-in-out infinite; }
@keyframes velvetPulse { 0%,100%{ box-shadow: 0 0 16px rgba(150,0,20,.5) } 50%{ box-shadow: 0 0 36px rgba(200,0,40,.85) } }
.effect-crystal-shine::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 22% 28%, rgba(255,255,255,.5) 0%, transparent 52%),
              radial-gradient(circle at 78% 72%, rgba(255,255,255,.35) 0%, transparent 55%);
  animation: crystalShine 4s linear infinite; mix-blend-mode: screen; pointer-events:none;
}
@keyframes crystalShine { 0%,100%{ opacity:.55 } 50%{ opacity:1; transform: scale(1.03) } }

/* Tier 2 */
.effect-neon-flux { box-shadow: 0 0 36px rgba(0,255,220,.6), inset 0 0 16px rgba(0,255,255,.35); animation: neonFlux 2.6s linear infinite alternate; }
@keyframes neonFlux { 0%{ box-shadow: 0 0 22px rgba(0,255,255,.45) } 100%{ box-shadow: 0 0 46px rgba(0,255,255,.9) } }
.effect-gold-radiance { box-shadow: 0 0 28px rgba(255,215,100,.6), inset 0 0 16px rgba(255,235,150,.35); animation: goldRadiance 3.8s ease-in-out infinite alternate; }
@keyframes goldRadiance { 0%{ filter:brightness(1) } 100%{ filter:brightness(1.35) saturate(1.25) } }
.effect-silver-waves::before {
  content:""; position:absolute; inset:0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.06) 4%, transparent 8%);
  animation: silverWaves 4.2s linear infinite; mix-blend-mode: overlay; pointer-events:none;
}
@keyframes silverWaves { 0%{ background-position:0 0 } 100%{ background-position:300px 300px } }

/* Tier 3 */
.effect-fire-aura { box-shadow: 0 0 48px rgba(255,130,0,.85), inset 0 0 22px rgba(255,100,0,.35); background: radial-gradient(circle at 50% 90%, rgba(255,80,0,.14), transparent 70%); animation: fireAura 2s ease-in-out infinite alternate; }
@keyframes fireAura { 0%{ filter:brightness(1) } 100%{ filter:brightness(1.45) hue-rotate(-12deg) } }
.effect-electric-storm { box-shadow: 0 0 40px rgba(0,200,255,.75), inset 0 0 18px rgba(0,120,255,.35); animation: electricStorm 2.6s linear infinite; }
@keyframes electricStorm { 0%,100%{ box-shadow: 0 0 22px rgba(0,200,255,.5) } 50%{ box-shadow: 0 0 54px rgba(0,255,255,1) } }
.effect-velvet-energy { box-shadow: 0 0 38px rgba(180,0,40,.75), inset 0 0 24px rgba(120,0,30,.45); animation: velvetEnergy 3s ease-in-out infinite; }
@keyframes velvetEnergy { 0%,100%{ box-shadow: 0 0 24px rgba(150,0,30,.55) } 50%{ box-shadow: 0 0 56px rgba(200,0,50,.9) } }

/* Tier 4 */
.effect-galactic-pulse { background: radial-gradient(circle at 50% 50%, rgba(100,0,255,.16), transparent 60%); box-shadow: 0 0 62px rgba(130,0,255,.85), inset 0 0 26px rgba(80,0,150,.55); animation: galacticPulse 3.6s ease-in-out infinite alternate; filter: saturate(1.35); }
@keyframes galacticPulse { 0%{ filter:brightness(1) } 50%{ filter:brightness(1.35) saturate(1.35) } 100%{ filter:brightness(1) } }
.effect-thunder-core { box-shadow: 0 0 58px rgba(0,255,255,.75), inset 0 0 22px rgba(0,255,200,.45); animation: thunderCore 2.2s ease-in-out infinite alternate; filter: contrast(1.25); }
@keyframes thunderCore { 0%,100%{ box-shadow: 0 0 32px rgba(0,255,255,.5) } 50%{ box-shadow: 0 0 74px rgba(0,255,255,1) } }
.effect-phoenix-flare::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 50% 120%, rgba(255,100,0,.28), rgba(255,0,0,.1), transparent 75%);
  animation: phoenixFlare 2.8s ease-in-out infinite; filter: blur(1.5px); mix-blend-mode: screen; pointer-events:none;
}
@keyframes phoenixFlare { 0%,100%{ opacity:.55; transform: scale(1) } 50%{ opacity:1; transform: scale(1.06) } }

/* ===========================
   UTILIDADES/DETALHES
=========================== */
.vl-bullets { list-style: none; padding: 0; margin: 10px 0; display: flex; flex-direction: column; gap: 6px; }
.vl-bullets li { display: flex; align-items: flex-start; gap: 8px; font-size: .95rem; color: var(--text); line-height: 1.4; }
.vl-bullets li i { color: var(--gold); margin-top: 2px; font-size: .9rem; }
.vl-section-title { font-weight: 800; font-size: .82rem; text-transform: uppercase; color: var(--text-muted); margin: 4px 0; letter-spacing: .3px; }

/* Divisor simples usado no template */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent); border: 0; }

/* ===========================
   MEDIA QUERIES (refinos)
=========================== */
@media (min-width: 768px) {
  .boost-section { padding: 28px; gap: 36px; }
  .dash-heading { font-size: 1.8rem; }
  .dash-subheading { font-size: 1.25rem; }
  .mlc-header { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 1200px) {
  .boost-section { padding: 40px; gap: 40px; }
  .dash-heading { font-size: 2rem; }
  .dash-subheading { font-size: 1.35rem; }
}

/* ===========================
   ACESSIBILIDADE/REDUÇÃO DE MOVIMENTO
=========================== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================
   EFFECTS SELECTOR — LUXURY GRID REDESIGN
========================================================== */
.effects-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px 14px;
  justify-content: center;
  width: 100%;
  max-width: 640px;
  margin: 16px auto;
  padding: 10px 0;
}

.effect-btn {
  border: 1px solid rgba(212,175,55,0.25);
  background: linear-gradient(180deg, #111 0%, #181818 100%);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
}

.effect-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 14px rgba(212,175,55,0.3);
  transform: translateY(-2px);
}

.effect-btn.active {
  border-color: var(--gold);
  color: #000;
  background: linear-gradient(90deg, #d4af37, #f0ca32);
  box-shadow: 0 0 18px rgba(212,175,55,0.45);
  transform: translateY(-1px);
}

/* ------- Responsivo ------- */
@media (max-width: 768px) {
  .effects-selector {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
  }
  .effect-btn {
    font-size: 0.85rem;
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  .effects-selector {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .effect-btn {
    font-size: 0.82rem;
    padding: 8px 8px;
  }
}

/* ==========================================================
   VISUAL EFFECTS MODAL — REAL CATALOG PREVIEW MODE
========================================================== */
.effects-modal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 820px) {
  .effects-modal {
    grid-template-columns: 1fr;
  }
}

.effects-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#effectsPreviewCard {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 0 18px rgba(0,0,0,0.6);
}
#effectsPreviewCard img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ------- Simula card real ------- */
#effectsPreviewCard .card-name {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.55);
  color: var(--gold);
  padding: 10px 12px;
  font-weight: 600;
  font-size: 1rem;
  backdrop-filter: blur(3px);
}

/* ------- Efeitos mais visuais ------- */
.effect-soft-glow { box-shadow: 0 0 28px rgba(212,175,55,0.6); }
.effect-velvet-pulse { animation: velvetPulse 2.5s infinite alternate; }
.effect-crystal-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.4), transparent 70%);
  animation: crystalShine 4s linear infinite;
}
@keyframes velvetPulse { from{filter:brightness(1);} to{filter:brightness(1.3) drop-shadow(0 0 12px rgba(255,0,60,0.8));} }
@keyframes crystalShine { 0%{opacity:.4;}50%{opacity:1;}100%{opacity:.4;} }

.effect-neon-flux { box-shadow: 0 0 40px rgba(0,255,255,0.8); animation: neonFlux 2s ease-in-out infinite alternate; }
@keyframes neonFlux { from{filter:brightness(1);} to{filter:brightness(1.5);} }

.effect-gold-radiance { box-shadow: 0 0 45px rgba(255,215,0,0.8); animation: goldRadiance 3s infinite alternate; }
@keyframes goldRadiance { from{filter:brightness(1);} to{filter:brightness(1.4);} }

.effect-fire-aura { box-shadow: 0 0 55px rgba(255,100,0,0.9), inset 0 0 20px rgba(255,60,0,0.4); animation: fireAura 2s ease-in-out infinite alternate; }
@keyframes fireAura { from{filter:brightness(1);} to{filter:brightness(1.3) hue-rotate(-10deg);} }

.effect-electric-storm { box-shadow: 0 0 55px rgba(0,255,255,0.8); animation: electricStorm 2s infinite alternate; }
@keyframes electricStorm { from{filter:brightness(1);} to{filter:brightness(1.4);} }

.effect-velvet-energy { box-shadow: 0 0 50px rgba(200,0,60,0.9); animation: velvetEnergy 3s ease-in-out infinite; }
@keyframes velvetEnergy { 0%{filter:brightness(1);} 50%{filter:brightness(1.5);} 100%{filter:brightness(1);} }

.effect-galactic-pulse { box-shadow: 0 0 65px rgba(100,0,255,0.9); animation: galacticPulse 3.5s infinite alternate; }
@keyframes galacticPulse { from{filter:saturate(1);} to{filter:saturate(1.4);} }

.effect-thunder-core { box-shadow: 0 0 80px rgba(0,255,255,0.9); animation: thunderCore 2.3s ease-in-out infinite alternate; }
@keyframes thunderCore { from{filter:brightness(1);} to{filter:brightness(1.6);} }

.effect-phoenix-flare::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(255,90,0,0.4), transparent 70%);
  animation: phoenixFlare 3s ease-in-out infinite;
}
@keyframes phoenixFlare { from{opacity:0.5;} to{opacity:1;} }

/* ------- Tabela mais moderna ------- */
.tier-block {
  background: rgba(20,20,20,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px 73px 20px;
  transition: all .3s ease;
}
.tier-block:hover {
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(212,175,55,0.3);
}
.effects-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}
.effect-option {
  background: rgba(30,30,30,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px;
  color: var(--text);
  transition: all .25s ease;
}
.effect-option.active {
  border-color: var(--gold);
  background: linear-gradient(90deg, #d4af37, #f0ca32);
  color: #000;
  box-shadow: 0 0 18px rgba(212,175,55,0.4);
}


/* ==========================================================
   VISUAL EFFECTS PRICING — FIXED PREVIEW + SCROLL AREA
========================================================== */

#effectsModal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(6px);
}

.effects-modal {
  position: relative;
  width: 95%;
  max-width: 600px;
  max-height: 90vh;
  background: linear-gradient(180deg, #0a0a0a, #151515);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.35s ease;
}

@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ------- Cabeçalho ------- */
.effects-modal .modal-title {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  margin: 14px 0 4px;
  text-shadow: 0 0 14px rgba(212,175,55,0.6);
}
.effects-modal .modal-subtitle {
  color: #ccc;
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* ------- Preview fixo ------- */
.effects-preview {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #0c0c0c;
  padding: 11px 93px 33px;
  border-radius: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
#effectsPreviewCard {
  width: 82%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(0,0,0,0.7);
  transition: all 0.4s ease;
}
#effectsPreviewCard img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
#effectsPreviewCard .card-name {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: var(--gold);
  font-weight: 600;
  text-align: center;
  padding: 8px 0;
  font-size: 1rem;
}

/* ------- Área scroll ------- */
.effects-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px 120px;
}
.effects-scroll::-webkit-scrollbar { width: 6px; }
.effects-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), #b58b35);
  border-radius: 4px;
}

/* ------- Footer fixo ------- */
.effects-footer-fixed {
  position: sticky;
  bottom: 0;
  z-index: 20;
  background: rgba(10,10,10,0.95);
  border-top: 1px solid rgba(212,175,55,0.3);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(6px);
}
.effects-footer-fixed .footer-total {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}
.effects-footer-fixed .btn-gold {
  background: linear-gradient(90deg, #d4b86a 0%, #b58b35 100%);
  color: #000;
  font-weight: 700;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.35s ease;
}
.effects-footer-fixed .btn-gold:hover {
  background: linear-gradient(90deg, #f0d77e 0%, #d4b86a 100%);
  box-shadow: 0 0 16px rgba(212,175,55,0.5);
}

/* ------- Mobile ------- */
@media (max-width: 768px) {
  .effects-modal {
    width: 96%;
    height: 94vh;
    border-radius: 18px;
    margin: auto;
  }
  #effectsPreviewCard {
    width: 90%;
    height: auto;
  }
  #effectsPreviewCard img {
    height: 240px;
  }
}

/* ==========================================================
   VELVET VISUAL EFFECTS — All Animated + Layered Glow Styles
   (Mantém nomes originais do modelBoost.js)
========================================================== */

/* Base layer setup */
.catalog-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.catalog-card::before,
.catalog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

/* ---------- Tier 1 — Simple (Elegant & Subtle) ---------- */
.effect-soft-glow::after {
  background: radial-gradient(circle at center, rgba(255,215,120,0.25), transparent 70%);
  mix-blend-mode: screen;
  animation: softGlowPulse 3s ease-in-out infinite;
}
@keyframes softGlowPulse {
  0%, 100% { opacity: 0.3; filter: blur(8px); }
  50% { opacity: 0.7; filter: blur(14px); }
}

.effect-velvet-pulse::after {
  border: 2px solid rgba(180, 30, 60, 0.5);
  box-shadow: 0 0 16px rgba(255, 40, 70, 0.25);
  animation: velvetPulse 2.8s ease-in-out infinite;
}
@keyframes velvetPulse {
  0%, 100% { box-shadow: 0 0 14px rgba(255, 40, 70, 0.2); }
  50% { box-shadow: 0 0 32px rgba(255, 40, 70, 0.5); }
}

.effect-crystal-shine::after {
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  animation: crystalSweep 3.5s linear infinite;
}
@keyframes crystalSweep {
  0% { transform: translateX(-100%) rotate(0deg); }
  100% { transform: translateX(100%) rotate(0deg); }
}

/* ---------- Tier 2 — Luxury (Visible Movement & Luster) ---------- */
.effect-neon-flux::after {
  border: 2px solid transparent;
  background: linear-gradient(90deg, #ff0055, #ffdd00, #00ffff, #ff0055);
  background-size: 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: neonFlow 4s linear infinite;
}
@keyframes neonFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.effect-gold-radiance::after {
  border: 2px solid rgba(255,215,120,0.6);
  box-shadow: 0 0 24px rgba(255,215,120,0.3);
  animation: goldPulse 3s ease-in-out infinite;
}
@keyframes goldPulse {
  0%,100% { opacity: 0.8; box-shadow: 0 0 20px rgba(255,215,120,0.4); }
  50% { opacity: 1; box-shadow: 0 0 40px rgba(255,215,120,0.8); }
}

.effect-silver-waves::after {
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.12) 0px,
    rgba(255,255,255,0.05) 2px,
    transparent 4px
  );
  animation: silverWave 5s linear infinite;
}
@keyframes silverWave {
  0% { background-position: 0 0; }
  100% { background-position: 100px 200px; }
}

/* ---------- Tier 3 — Complex (Dynamic Auras) ---------- */
.effect-fire-aura::after {
  background: radial-gradient(circle at 50% 80%, rgba(255,80,0,0.25), transparent 70%);
  animation: fireAura 2.2s ease-in-out infinite;
}
@keyframes fireAura {
  0%, 100% { filter: hue-rotate(0deg) brightness(1); opacity: 0.6; }
  50% { filter: hue-rotate(20deg) brightness(1.3); opacity: 0.9; }
}

.effect-electric-storm::after {
  background: repeating-radial-gradient(
    circle,
    rgba(0,150,255,0.15) 0px,
    rgba(0,150,255,0.05) 2px,
    transparent 4px
  );
  animation: lightningFlash 1.8s infinite;
}
@keyframes lightningFlash {
  0%, 97%, 100% { opacity: 0.4; filter: brightness(0.8); }
  20%, 23%, 26% { opacity: 1; filter: brightness(1.5); }
}

.effect-velvet-energy::after {
  border: 2px solid rgba(220,30,80,0.3);
  box-shadow: 0 0 24px rgba(220,30,80,0.4);
  background: radial-gradient(circle at center, rgba(220,30,80,0.15), transparent 70%);
  animation: velvetEnergyPulse 3s ease-in-out infinite;
}
@keyframes velvetEnergyPulse {
  0%,100% { box-shadow: 0 0 22px rgba(220,30,80,0.3); }
  50% { box-shadow: 0 0 40px rgba(220,30,80,0.7); }
}

/* ---------- Tier 4 — Ultra Complex (Cosmic, Showy, Premium) ---------- */
.effect-galactic-pulse::after {
  background: radial-gradient(circle at 60% 40%, rgba(0,200,255,0.3), transparent 70%),
              radial-gradient(circle at 40% 60%, rgba(255,0,150,0.2), transparent 70%);
  animation: galacticPulse 6s ease-in-out infinite;
}
@keyframes galacticPulse {
  0%,100% { filter: hue-rotate(0deg) blur(2px); opacity: 0.7; }
  50% { filter: hue-rotate(180deg) blur(4px); opacity: 1; }
}

.effect-thunder-core::after {
  background: radial-gradient(circle, rgba(0,200,255,0.2), transparent 60%);
  box-shadow: inset 0 0 40px rgba(0,200,255,0.4);
  animation: thunderCore 2s ease-in-out infinite;
}
@keyframes thunderCore {
  0%,100% { box-shadow: inset 0 0 20px rgba(0,200,255,0.3); }
  50% { box-shadow: inset 0 0 50px rgba(0,200,255,0.7); }
}

.effect-phoenix-flare::after {
  background: radial-gradient(circle at 50% 80%, rgba(255,120,0,0.35), transparent 75%);
  box-shadow: 0 0 40px rgba(255,80,0,0.25);
  animation: phoenixRise 2.8s ease-in-out infinite;
}
@keyframes phoenixRise {
  0% { transform: translateY(10px) scale(1); opacity: 0.6; }
  50% { transform: translateY(-10px) scale(1.05); opacity: 1; }
  100% { transform: translateY(10px) scale(1); opacity: 0.6; }
}

/* ---------- Active effect highlight (UI feedback) ---------- */
.effect-option.active {
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.08);
  color: var(--gold);
  transition: all .25s ease;
}

/* ==========================================================
   VELVET VISUAL EFFECTS — LUXE REVISION (BORDAS + SOMBRAS)
   Premium reflection + inner volume + depth aesthetic
========================================================== */

/* ---------- Tier 1: FEMME LUXE (discreto, reflexivo, elegante) ---------- */
.effect-soft-glow::after {
  background: radial-gradient(circle at center, rgba(255,240,210,0.45), transparent 75%);
  box-shadow:
    0 0 12px rgba(255,230,200,0.25),
    0 0 24px rgba(255,230,180,0.25),
    inset 0 0 8px rgba(255,240,200,0.35);
  border: 1.5px solid rgba(255,240,210,0.35);
  filter: blur(6px);
  animation: softLuxeGlow 3s ease-in-out infinite;
}
@keyframes softLuxeGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.effect-velvet-pulse::after {
  border: 2px solid rgba(255, 80, 120, 0.5);
  box-shadow:
    0 0 14px rgba(255, 60, 120, 0.25),
    0 0 32px rgba(255, 60, 120, 0.15),
    inset 0 0 14px rgba(255, 90, 160, 0.25);
  animation: velvetHeartPulse 2.4s ease-in-out infinite;
}
@keyframes velvetHeartPulse {
  0%, 100% { box-shadow: 0 0 22px rgba(255, 60, 120, 0.25), inset 0 0 10px rgba(255,90,160,0.2); }
  50% { box-shadow: 0 0 42px rgba(255, 90, 160, 0.6), inset 0 0 18px rgba(255,120,180,0.4); }
}

.effect-crystal-shine::after {
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.4) 50%, transparent 80%);
  box-shadow:
    0 0 22px rgba(255,255,255,0.1),
    inset 0 0 14px rgba(255,255,255,0.15);
  animation: diamondSweep 3.2s linear infinite;
}
@keyframes diamondSweep {
  0% { transform: translateX(-160%) rotate(4deg); opacity: 0.2; }
  50% { opacity: 0.9; }
  100% { transform: translateX(160%) rotate(4deg); opacity: 0.2; }
}

/* ---------- Tier 2: ELITE LUXURY (metal líquido + reflexos) ---------- */
.effect-neon-flux::after {
  background: linear-gradient(90deg, #ff0077, #ffb300, #00fff7, #ff0077);
  background-size: 400%;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 26px rgba(255,0,150,0.25),
    inset 0 0 10px rgba(255,255,255,0.08);
  animation: neonRun 3s linear infinite;
}
@keyframes neonRun {
  0% { background-position: 0% 50%; filter: brightness(1); }
  100% { background-position: 300% 50%; filter: brightness(1.3); }
}

.effect-gold-radiance::after {
  border: 2px solid rgba(255,215,120,0.55);
  box-shadow:
    0 0 20px rgba(255,215,120,0.4),
    0 0 60px rgba(255,210,100,0.25),
    inset 0 0 18px rgba(255,220,130,0.25);
  background: radial-gradient(circle at center, rgba(255,220,140,0.2), transparent 70%);
  animation: goldShine 2.8s ease-in-out infinite;
}
@keyframes goldShine {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.5) saturate(1.3); }
}

.effect-silver-waves::after {
  background: repeating-linear-gradient(
    130deg,
    rgba(255,255,255,0.3) 0px,
    rgba(255,255,255,0.15) 3px,
    transparent 6px
  );
  box-shadow:
    0 0 18px rgba(255,255,255,0.25),
    inset 0 0 12px rgba(255,255,255,0.15);
  animation: silverMotion 4s linear infinite;
}
@keyframes silverMotion {
  0% { background-position: 0 0; opacity: 0.6; }
  100% { background-position: 120px 240px; opacity: 1; }
}

/* ---------- Tier 3: IMPERIAL ENERGY (poder, volume e luxo supremo) ---------- */
.effect-fire-aura::after {
  background: radial-gradient(circle at 50% 70%, rgba(255,90,0,0.4), transparent 80%);
  border: 2px solid rgba(255,110,40,0.5);
  box-shadow:
    0 0 18px rgba(255,90,0,0.35),
    0 0 60px rgba(255,120,0,0.25),
    inset 0 0 18px rgba(255,140,40,0.3);
  animation: fireLux 2s ease-in-out infinite;
}
@keyframes fireLux {
  0%,100% { opacity: 0.6; transform: scale(1); filter: brightness(1); }
  50% { opacity: 1; transform: scale(1.06); filter: brightness(1.4); }
}

.effect-electric-storm::after {
  border: 2px solid rgba(0,200,255,0.4);
  background: radial-gradient(circle, rgba(0,180,255,0.25), transparent 70%);
  box-shadow:
    0 0 28px rgba(0,180,255,0.3),
    0 0 55px rgba(0,220,255,0.25),
    inset 0 0 14px rgba(0,180,255,0.2);
  animation: electricStorm 1.8s ease-in-out infinite;
}
@keyframes electricStorm {
  0%, 100% { opacity: 0.7; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.6); }
}

.effect-velvet-energy::after {
  border: 2px solid rgba(220,20,80,0.4);
  background: radial-gradient(circle at center, rgba(220,30,80,0.25), transparent 70%);
  box-shadow:
    0 0 24px rgba(220,30,80,0.3),
    0 0 60px rgba(220,40,90,0.25),
    inset 0 0 18px rgba(220,30,80,0.2);
  animation: velvetCore 3s ease-in-out infinite;
}
@keyframes velvetCore {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* ---------- Tier 4: GODDESS / COSMIC LUXURY ---------- */
.effect-galactic-pulse::after {
  background: radial-gradient(circle at 60% 40%, rgba(0,220,255,0.4), transparent 70%),
              radial-gradient(circle at 40% 60%, rgba(255,0,180,0.3), transparent 80%);
  border: 2px solid rgba(255,0,180,0.4);
  box-shadow:
    0 0 25px rgba(255,0,180,0.4),
    0 0 60px rgba(0,200,255,0.3),
    inset 0 0 18px rgba(255,0,180,0.2);
  animation: galaxyQueen 5s ease-in-out infinite;
}
@keyframes galaxyQueen {
  0% { transform: scale(1); filter: hue-rotate(0deg) brightness(1); }
  50% { transform: scale(1.05); filter: hue-rotate(180deg) brightness(1.4); }
  100% { transform: scale(1); filter: hue-rotate(360deg) brightness(1); }
}

.effect-thunder-core::after {
  background: radial-gradient(circle, rgba(0,180,255,0.4), transparent 75%);
  border: 2px solid rgba(0,180,255,0.4);
  box-shadow:
    0 0 35px rgba(0,180,255,0.4),
    inset 0 0 25px rgba(0,180,255,0.25);
  animation: thunderPulse 2.2s ease-in-out infinite;
}
@keyframes thunderPulse {
  0%,100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); filter: brightness(1.4); }
}

.effect-phoenix-flare::after {
  background: radial-gradient(circle at 50% 80%, rgba(255,120,0,0.5), transparent 80%);
  border: 2px solid rgba(255,100,0,0.45);
  box-shadow:
    0 0 28px rgba(255,100,0,0.35),
    0 0 80px rgba(255,120,0,0.25),
    inset 0 0 22px rgba(255,130,30,0.25);
  animation: phoenixAscend 2.5s ease-in-out infinite;
}
@keyframes phoenixAscend {
  0% { transform: translateY(8px) scale(1); opacity: 0.7; }
  50% { transform: translateY(-8px) scale(1.05); opacity: 1; }
  100% { transform: translateY(8px) scale(1); opacity: 0.7; }
}

/* ==========================================================
   VELVET VISUAL EFFECTS — LUXE REVISION (BORDAS + SOMBRAS)
   Premium reflection + inner volume + depth aesthetic
========================================================== */

/* ---------- Tier 1: FEMME LUXE (discreto, reflexivo, elegante) ---------- */
.effect-soft-glow::after {
  background: radial-gradient(circle at center, rgba(255,240,210,0.45), transparent 75%);
  box-shadow:
    0 0 12px rgba(255,230,200,0.25),
    0 0 24px rgba(255,230,180,0.25),
    inset 0 0 8px rgba(255,240,200,0.35);
  border: 1.5px solid rgba(255,240,210,0.35);
  filter: blur(6px);
  animation: softLuxeGlow 3s ease-in-out infinite;
}
@keyframes softLuxeGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.effect-velvet-pulse::after {
  border: 2px solid rgba(255, 80, 120, 0.5);
  box-shadow:
    0 0 14px rgba(255, 60, 120, 0.25),
    0 0 32px rgba(255, 60, 120, 0.15),
    inset 0 0 14px rgba(255, 90, 160, 0.25);
  animation: velvetHeartPulse 2.4s ease-in-out infinite;
}
@keyframes velvetHeartPulse {
  0%, 100% { box-shadow: 0 0 22px rgba(255, 60, 120, 0.25), inset 0 0 10px rgba(255,90,160,0.2); }
  50% { box-shadow: 0 0 42px rgba(255, 90, 160, 0.6), inset 0 0 18px rgba(255,120,180,0.4); }
}

.effect-crystal-shine::after {
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.4) 50%, transparent 80%);
  box-shadow:
    0 0 22px rgba(255,255,255,0.1),
    inset 0 0 14px rgba(255,255,255,0.15);
  animation: diamondSweep 3.2s linear infinite;
}
@keyframes diamondSweep {
  0% { transform: translateX(-160%) rotate(4deg); opacity: 0.2; }
  50% { opacity: 0.9; }
  100% { transform: translateX(160%) rotate(4deg); opacity: 0.2; }
}

/* ---------- Tier 2: ELITE LUXURY (metal líquido + reflexos) ---------- */
.effect-neon-flux::after {
  background: linear-gradient(90deg, #ff0077, #ffb300, #00fff7, #ff0077);
  background-size: 400%;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 26px rgba(255,0,150,0.25),
    inset 0 0 10px rgba(255,255,255,0.08);
  animation: neonRun 3s linear infinite;
}
@keyframes neonRun {
  0% { background-position: 0% 50%; filter: brightness(1); }
  100% { background-position: 300% 50%; filter: brightness(1.3); }
}

.effect-gold-radiance::after {
  border: 2px solid rgba(255,215,120,0.55);
  box-shadow:
    0 0 20px rgba(255,215,120,0.4),
    0 0 60px rgba(255,210,100,0.25),
    inset 0 0 18px rgba(255,220,130,0.25);
  background: radial-gradient(circle at center, rgba(255,220,140,0.2), transparent 70%);
  animation: goldShine 2.8s ease-in-out infinite;
}
@keyframes goldShine {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.5) saturate(1.3); }
}

.effect-silver-waves::after {
  background: repeating-linear-gradient(
    130deg,
    rgba(255,255,255,0.3) 0px,
    rgba(255,255,255,0.15) 3px,
    transparent 6px
  );
  box-shadow:
    0 0 18px rgba(255,255,255,0.25),
    inset 0 0 12px rgba(255,255,255,0.15);
  animation: silverMotion 4s linear infinite;
}
@keyframes silverMotion {
  0% { background-position: 0 0; opacity: 0.6; }
  100% { background-position: 120px 240px; opacity: 1; }
}

/* ---------- Tier 3: IMPERIAL ENERGY (poder, volume e luxo supremo) ---------- */
.effect-fire-aura::after {
  background: radial-gradient(circle at 50% 70%, rgba(255,90,0,0.4), transparent 80%);
  border: 2px solid rgba(255,110,40,0.5);
  box-shadow:
    0 0 18px rgba(255,90,0,0.35),
    0 0 60px rgba(255,120,0,0.25),
    inset 0 0 18px rgba(255,140,40,0.3);
  animation: fireLux 2s ease-in-out infinite;
}
@keyframes fireLux {
  0%,100% { opacity: 0.6; transform: scale(1); filter: brightness(1); }
  50% { opacity: 1; transform: scale(1.06); filter: brightness(1.4); }
}

.effect-electric-storm::after {
  border: 2px solid rgba(0,200,255,0.4);
  background: radial-gradient(circle, rgba(0,180,255,0.25), transparent 70%);
  box-shadow:
    0 0 28px rgba(0,180,255,0.3),
    0 0 55px rgba(0,220,255,0.25),
    inset 0 0 14px rgba(0,180,255,0.2);
  animation: electricStorm 1.8s ease-in-out infinite;
}
@keyframes electricStorm {
  0%, 100% { opacity: 0.7; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.6); }
}

.effect-velvet-energy::after {
  border: 2px solid rgba(220,20,80,0.4);
  background: radial-gradient(circle at center, rgba(220,30,80,0.25), transparent 70%);
  box-shadow:
    0 0 24px rgba(220,30,80,0.3),
    0 0 60px rgba(220,40,90,0.25),
    inset 0 0 18px rgba(220,30,80,0.2);
  animation: velvetCore 3s ease-in-out infinite;
}
@keyframes velvetCore {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* ---------- Tier 4: GODDESS / COSMIC LUXURY ---------- */
.effect-galactic-pulse::after {
  background: radial-gradient(circle at 60% 40%, rgba(0,220,255,0.4), transparent 70%),
              radial-gradient(circle at 40% 60%, rgba(255,0,180,0.3), transparent 80%);
  border: 2px solid rgba(255,0,180,0.4);
  box-shadow:
    0 0 25px rgba(255,0,180,0.4),
    0 0 60px rgba(0,200,255,0.3),
    inset 0 0 18px rgba(255,0,180,0.2);
  animation: galaxyQueen 5s ease-in-out infinite;
}
@keyframes galaxyQueen {
  0% { transform: scale(1); filter: hue-rotate(0deg) brightness(1); }
  50% { transform: scale(1.05); filter: hue-rotate(180deg) brightness(1.4); }
  100% { transform: scale(1); filter: hue-rotate(360deg) brightness(1); }
}

.effect-thunder-core::after {
  background: radial-gradient(circle, rgba(0,180,255,0.4), transparent 75%);
  border: 2px solid rgba(0,180,255,0.4);
  box-shadow:
    0 0 35px rgba(0,180,255,0.4),
    inset 0 0 25px rgba(0,180,255,0.25);
  animation: thunderPulse 2.2s ease-in-out infinite;
}
@keyframes thunderPulse {
  0%,100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); filter: brightness(1.4); }
}

.effect-phoenix-flare::after {
  background: radial-gradient(circle at 50% 80%, rgba(255,120,0,0.5), transparent 80%);
  border: 2px solid rgba(255,100,0,0.45);
  box-shadow:
    0 0 28px rgba(255,100,0,0.35),
    0 0 80px rgba(255,120,0,0.25),
    inset 0 0 22px rgba(255,130,30,0.25);
  animation: phoenixAscend 2.5s ease-in-out infinite;
}
@keyframes phoenixAscend {
  0% { transform: translateY(8px) scale(1); opacity: 0.7; }
  50% { transform: translateY(-8px) scale(1.05); opacity: 1; }
  100% { transform: translateY(8px) scale(1); opacity: 0.7; }
}

/* =========================================================
   VELVET MODEL BOOST — Premium Gold Edition
   Author: Velvet Labs
   Version: Final 2025
   ---------------------------------------------------------
   Covers:
   - Plans (toggle iOS)
   - Boosts Table
   - Boost Cards
   - Add-ons Grid
   - Visual Effects
   - Responsive layout
========================================================= */

/* ==============
   Base structure
================= */
.boost-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 16px 4px 80px;
}

/* ==========================================
   PLANS SECTION — Toggle Weekly / Monthly
========================================== */
.plans-area {
  margin-top: 8px;
}

.plans-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 14px;
  gap: 12px;
}

.plans-head h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* ---- iOS Toggle ---- */
.billing-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
  font-weight: 600;
  color: var(--text);
}

.billing-toggle span {
  opacity: 0.85;
  font-size: 0.95rem;
}

.toggle-switch {
  --w: 56px;
  --h: 30px;
  --pad: 3px;
  position: relative;
  width: var(--w);
  height: var(--h);
  border-radius: 999px;
  background: var(--surface-2, #2a2a2a);
  border: 1px solid var(--border, #333);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.15);
  cursor: pointer;
  transition: background .25s ease, box-shadow .25s ease;
}

.toggle-switch .knob {
  position: absolute;
  top: var(--pad);
  left: var(--pad);
  width: calc(var(--h) - var(--pad)*2);
  height: calc(var(--h) - var(--pad)*2);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
  transition: transform .25s ease;
}

.toggle-switch.on {
  background: linear-gradient(135deg, #d4af37, #8a6a1a);
  box-shadow: 0 0 0 2px rgba(212,175,55,.35);
}
.toggle-switch.on .knob {
  transform: translateX(calc(var(--w) - var(--h)));
}

/* ---- Plans grid ---- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .plans-grid { grid-template-columns: 1fr; }
}

.plan-card {
  position: relative;
  background: var(--surface, #1a1a1a);
  border: 1px solid var(--border, #2c2c2c);
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
  transition: all 0.25s ease;
}
.plan-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 10px 30px rgba(212,175,55,.18);
}

.plan-pop {
  border-color: var(--gold, #d4af37);
  box-shadow: 0 10px 24px rgba(212,175,55,.25);
  transform: translateY(-2px);
}

.plan-ribbon {
  position: absolute;
  top: 12px;
  right: -6px;
  background: linear-gradient(135deg, #d4af37, #8a6a1a);
  color: #111;
  font-weight: 800;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px 0 0 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}

.plan-title {
  font: 700 1.1rem/1.3 Inter, system-ui;
  color: var(--text);
}

.plan-price strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.plan-sub {
  color: var(--muted, #aaa);
  font-size: 0.9rem;
}

.plan-actions .upgrade-btn {
  width: 100%;
  border-radius: 10px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #d4af37, #8a6a1a);
  color: #111;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  font-size: 0.95rem;
  transition: filter .25s ease;
}
.plan-actions .upgrade-btn:hover { filter: brightness(1.08); }

/* ====================================
   BOOSTS TABLE — ILS + VVC
==================================== */
.boosts-price-area {
  margin-top: 8px;
}

.boosts-table {
  border: 1px solid var(--border, #2c2c2c);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface, #1a1a1a);
}

.boosts-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 12px 14px;
  align-items: center;
  font-size: 0.94rem;
  color: var(--text);
}
@media (max-width: 720px) {
  .boosts-row {
    grid-template-columns: 1.6fr 0.8fr 0.8fr 0.8fr;
    font-size: 0.88rem;
  }
}

.boosts-head {
  background: var(--surface-2, #222);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.boosts-row:not(.boosts-head):nth-child(odd) {
  background: rgba(255,255,255,0.02);
}

.muted-note {
  opacity: 0.7;
  font-size: 0.8rem;
  margin-top: 6px;
  text-align: right;
}

/* ====================================
   BOOST CARDS — Buy / Activate / VVC
==================================== */
.boosts-area { margin-top: 12px; }

.boosts-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.boosts-head .info-inline {
  font-size: 0.9rem;
  opacity: 0.85;
}

.boost-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 14px;
}

.boost-card {
  border: 1px solid var(--border, #2c2c2c);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all .25s ease;
}
.boost-card:hover {
  border-color: var(--gold, #d4af37);
  box-shadow: 0 6px 20px rgba(212,175,55,.2);
}

.boost-icon {
  font-size: 1.4rem;
  color: var(--gold, #d4af37);
  flex-shrink: 0;
}

.boost-desc {
  opacity: .85;
  font-size: 0.88rem;
  margin: 4px 0;
}

.boost-price-vc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  border-radius: 999px;
  font-size: 0.8rem;
  padding: 2px 8px;
  font-weight: 600;
}

.boost-btn, .boost-buy, .boost-activate {
  background: linear-gradient(135deg, #d4af37, #8a6a1a);
  color: #111;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 0.88rem;
  margin-top: 8px;
  width: 100%;
  transition: filter .25s ease;
}
.boost-btn:hover, .boost-buy:hover, .boost-activate:hover {
  filter: brightness(1.08);
}

/* ====================================
   ADD-ONS GRID
==================================== */
.addons-area { margin-top: 14px; }

.addons-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.addon-card {
  border: 1px solid var(--border, #2c2c2c);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: border-color .25s ease, transform .25s ease;
}
.addon-card:hover {
  border-color: var(--gold, #d4af37);
  transform: translateY(-2px);
}

.addon-card h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}
.addon-card p {
  font-size: 0.88rem;
  opacity: 0.85;
  margin-bottom: 10px;
}

.addon-buy, .addon-btn {
  background: linear-gradient(135deg, #d4af37, #8a6a1a);
  color: #111;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: filter .25s ease;
}
.addon-buy:hover, .addon-btn:hover { filter: brightness(1.08); }

/* ====================================
   VISUAL PREVIEW / FOOTER
==================================== */
.visual-grid {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37, #8a6a1a);
  color: #111;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  transition: filter .25s ease;
}
.btn-gold:hover { filter: brightness(1.08); }

.divider {
  height: 1px;
  background: var(--border, #2c2c2c);
  margin: 20px 0;
  opacity: .6;
}

/* Responsive */
@media (max-width: 600px) {
  .boosts-table { font-size: 0.8rem; }
  .plan-card { padding: 16px; }
  .plan-actions .upgrade-btn { font-size: 0.9rem; }
}

/* ==============================================
   Velvet Boost & Plans — LUXURY GOLD EDITION
   ============================================== */

   :root {
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --gold-deep: #b58e2f;
    --bg-dark: #0c0c0c;
    --bg-panel: rgba(20, 20, 20, 0.92);
    --border-dark: rgba(255, 255, 255, 0.05);
    --text-light: #f2f2f2;
    --muted: #aaaaaa;
    --radius: 18px;
  }
  
  /* ===== Layout Base ===== */
  .boost-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 20px 10px 100px;
    background: var(--bg-dark);
    color: var(--text-light);
  }
  
  /* ========================================
     PLANS AREA — Velvet Premium Plans
  ======================================== */
  .plans-area {
    margin-top: 8px;
  }
  
  .plans-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .plans-head h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
  }
  
  /* --- Toggle --- */
  .billing-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
  }
  
  .toggle-switch {
    --w: 58px;
    --h: 30px;
    position: relative;
    width: var(--w);
    height: var(--h);
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: background .3s ease, box-shadow .3s ease;
  }
  
  .toggle-switch .knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    transition: transform .25s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,.4);
  }
  
  .toggle-switch.on {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    box-shadow: 0 0 8px var(--gold-glow);
  }
  .toggle-switch.on .knob {
    transform: translateX(28px);
  }
  
  /* --- Grid Layout --- */
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
  }
  
  /* --- Plan Card --- */
  .plan-card {
    position: relative;
    background: var(--bg-panel);
    border-radius: var(--radius);
    padding: 26px 20px 30px;
    border: 1px solid var(--border-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
  }
  .plan-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212,175,55,0.25);
    transform: translateY(-5px);
  }
  
  /* --- Active Highlights --- */
  .plan-pop,
  .plan-card:hover {
    background: radial-gradient(circle at top right, rgba(212,175,55,0.08), rgba(0,0,0,0.8));
    border: 1px solid var(--gold-glow);
  }
  
  .plan-ribbon {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #111;
    font-weight: 700;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
  }
  
  /* --- Plan Header --- */
  .plan-head {
    text-align: center;
    margin-bottom: 16px;
  }
  
  .plan-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 1.4rem;
  }
  
  .plan-price strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    display: block;
    margin: 6px 0 2px;
  }
  
  .plan-sub {
    font-size: 0.9rem;
    color: var(--muted);
  }
  
  /* --- Plan Bullets --- */
  .plan-bullets {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
    line-height: 1.8;
  }
  
  .plan-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.9;
  }
  .plan-bullets i {
    color: var(--gold);
    font-size: 0.95rem;
  }
  
  /* --- Button --- */
  .plan-actions .upgrade-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #111;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 12px 10px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 3px 10px rgba(212,175,55,0.3);
  }
  .plan-actions .upgrade-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 20px rgba(212,175,55,0.45);
    transform: translateY(-2px);
  }
  
  /* ===================================
     BOOSTS TABLE — Polished Version
  =================================== */
  .boosts-price-area {
    margin-top: 10px;
  }
  
  .boosts-table {
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  }
  
  .boosts-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 12px;
    padding: 14px 18px;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-light);
  }
  .boosts-head {
    background: rgba(212,175,55,0.08);
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  .boosts-row:not(.boosts-head):hover {
    background: rgba(255,255,255,0.06);
  }
  
  /* ===================================
     ADD-ONS + EFFECTS (visual harmony)
  =================================== */
  .addons-area {
    margin-top: 14px;
  }
  
  .addons-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
  }
  
  .addon-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px 18px;
    transition: all .25s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  }
  .addon-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
  }
  
  .addon-card h4 {
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .addon-card p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 12px;
  }
  
  .addon-buy, .addon-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #111;
    font-weight: 700;
    border-radius: 10px;
    padding: 8px 0;
    border: none;
    cursor: pointer;
    transition: all .25s ease;
  }
  .addon-buy:hover, .addon-btn:hover {
    filter: brightness(1.1);
  }
  
  /* ===================================
     Dividers / Helpers
  =================================== */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
    margin: 24px 0;
  }
  
  /* ===================================
     Responsive Adjustments
  =================================== */
  @media (max-width: 768px) {
    .plans-head { flex-direction: column; align-items: flex-start; }
    .plan-title { font-size: 1.2rem; }
    .plan-price strong { font-size: 1.6rem; }
    .plan-bullets li { font-size: 0.9rem; }
  }
  
  @media (max-width: 480px) {
    .boosts-row { grid-template-columns: 1.6fr 0.8fr 0.8fr 0.8fr; font-size: 0.85rem; }
    .plan-actions .upgrade-btn { font-size: 0.88rem; }
  }
  
  /* ==========================================================
   VELVET BOOSTS & ADD-ONS — GOLD LUXE FINAL
   Autor: Velvet Labs — 2025
   ----------------------------------------------------------
   Estrutura unificada:
   - Plans
   - Profile Boosts
   - Utilities (Hide Age, Blur Preview etc)
   - Add-ons
   - Visual Effects
   Tudo em CARDS, sem tabelas.
========================================================== */

/* ---------- Tokens ---------- */
:root {
  --gold: #d4af37;
  --gold-deep: #8a6a1a;
  --gold-glow: rgba(212,175,55,0.35);
  --text: #f6f6f6;
  --text-muted: #a6a6a6;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --border: #2a2a2a;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-1: 0 4px 14px rgba(0,0,0,0.25);
  --shadow-2: 0 10px 28px rgba(0,0,0,0.45);
}

/* Reset básico */
*, *::before, *::after { box-sizing: border-box; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- Seção raiz ---------- */
.boost-section {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}

/* ---------- Headings ---------- */
.dash-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(212,175,55,.35);
  margin: 0;
}
.dash-subheading {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  border-left: 4px solid var(--gold);
  padding-left: 10px;
  margin: 6px 0 10px;
}

/* ==========================================================
   PROFILE BOOSTS (Spotlight, Global Push, Luxury Banner, etc)
========================================================== */
.boost-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.boost-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-1);
  text-align: center;
  transition: all 0.25s ease;
}
.boost-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(212,175,55,.25);
}
.boost-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.boost-card p {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.9;
  margin-bottom: 10px;
}
.boost-price-vc {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.35);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.boost-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #111;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  transition: filter .25s ease;
}
.boost-btn:hover { filter: brightness(1.1); }

/* ==========================================================
   UTILITIES (Hide Age, Blur Preview, Anonymous, Always Online)
========================================================== */
.utilities-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.utility-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: all .25s ease;
}
.utility-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212,175,55,.25);
}
.utility-card h4 {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.utility-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.utility-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.utility-options span {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text);
}
.utility-btn {
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  font-weight: 700;
  color: #111;
  border: none;
  transition: filter .25s ease;
}
.utility-btn:hover { filter: brightness(1.1); }

/* ==========================================================
   ADD-ONS (Cover, Theme, Analytics, etc)
========================================================== */
.addons-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.addon-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: all 0.25s ease;
}
.addon-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212,175,55,.25);
}
.addon-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.addon-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.addon-price {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.addon-btn {
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #111;
  font-weight: 700;
  border: none;
  transition: filter .25s ease;
}
.addon-btn:hover { filter: brightness(1.1); }

/* ==========================================================
   RESPONSIVIDADE
========================================================== */
@media (max-width: 768px) {
  .dash-heading { font-size: 1.3rem; }
  .dash-subheading { font-size: 1rem; }
  .boost-card, .utility-card, .addon-card { padding: 14px; }
}
@media (max-width: 480px) {
  .boost-card h4, .utility-card h4, .addon-card h4 { font-size: 0.95rem; }
  .boost-card p, .utility-card p, .addon-card p { font-size: 0.82rem; }
}

/* =============== Velvet Boost & Plans (refactor) =============== */

/* base */
:root{
  --bg: #0c0c0f;
  --panel: #131318;
  --panel-2: #15151b;
  --gold-1:#e6c46a;
  --gold-2:#d7a93a;
  --gold-3:#ad8429;
  --muted:#a8a8b7;
  --text:#f5f5f7;
  --text-2:#d6d7de;
  --ring:rgba(230,196,106,.22);
  --shadow:0 8px 28px rgba(0,0,0,.45);
}

[data-velvet-boost-root]{
  color:var(--text);
}

/* ---------------- Header ---------------- */
.mlc-header{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;margin:8px 0 18px;
}
.mlc-header .dash-heading{margin:0;font-size:22px;font-weight:700}
.mlc-header .mlc-header-left{display:flex;align-items:center;gap:12px}
.plan-chip{display:inline-flex;align-items:center;gap:8px;padding:6px 10px;border-radius:999px;
  background:linear-gradient(180deg,#1f1f27,#18181f);border:1px solid #2a2a35;color:var(--text-2);font-weight:600}
.plan-chip.plan-redDiamond{border-color:#6b1322;color:#ffced6;background:linear-gradient(180deg,#2b0a12,#18070a)}
.chip{display:inline-flex;align-items:center;gap:8px;padding:6px 10px;border-radius:10px;background:#18181f;border:1px solid #262631}
.chip strong{color:#fff}
.chip-rocket{border-color:#3a2b10;background:linear-gradient(180deg,#201a0d,#17130b)}
.btn-ghost{background:transparent;border:1px solid #2b2b36;color:#ddd;padding:6px 12px;border-radius:10px}

/* ---------------- Section divider ---------------- */
.divider{height:1px;background:linear-gradient(90deg,transparent,#282833,transparent);margin:22px 0}

/* =========================================================
   PLANS (ILS only)
========================================================= */
.plans-area .dash-subheading,
.boosts-area .dash-subheading,
.addons-area .dash-subheading{font-size:18px;margin:0 0 12px;font-weight:800}

.plans-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.billing-toggle{display:flex;align-items:center;gap:10px;color:var(--muted)}
.toggle-switch{width:50px;height:26px;border-radius:999px;background:#2a2a34;border:1px solid #343446;position:relative}
.toggle-switch .knob{position:absolute;top:2px;left:2px;width:22px;height:22px;border-radius:50%;background:#888;transition:.25s}
.toggle-switch.on{background:#3b3216;border-color:#53421b}
.toggle-switch.on .knob{left:26px;background:linear-gradient(180deg,#f3d37a,#d5a73c)}

.plans-grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px
}
@media (max-width:840px){ .plans-grid{grid-template-columns:1fr} }

.plan-card{
  position:relative;display:flex;flex-direction:column;justify-content:space-between;
  background:linear-gradient(180deg,#131318,#0f0f14);
  border:1px solid #272731;border-radius:18px;padding:18px;box-shadow:var(--shadow);
  overflow:hidden;
}
.plan-card.plan-pop{box-shadow:0 10px 40px rgba(214,168,60,.15);border-color:#3c2d11}
.plan-card .plan-ribbon{
  position:absolute;top:12px;right:12px;background:linear-gradient(180deg,#f4d277,#d8a63f);
  color:#201a08;font-size:11px;font-weight:800;border-radius:999px;padding:4px 10px
}
.plan-head{margin-bottom:10px}
.plan-title{font-size:22px;margin:0 0 8px}
.plan-price{display:flex;align-items:baseline;gap:8px;}
.plan-price .price-month{font-size:28px;line-height:1;font-weight:900}
.plan-sub{color:var(--muted);font-size:13px}

.plan-bullets{list-style:none;margin:10px 0 16px;padding:0;display:grid;gap:8px}
.plan-bullets li{display:flex;gap:10px;color:var(--text-2)}
.plan-bullets i{color:var(--gold-1)}

.plan-actions{margin-top:auto}
.plan-actions .upgrade-btn{
  width:100%;padding:12px 16px;border-radius:12px;border:1px solid #4a3a14;
  background:linear-gradient(180deg,#f0d06f,#c7922f);color:#1c1505;font-weight:800;
  box-shadow:0 6px 0 #7b5b19,0 10px 22px rgba(0,0,0,.35)
}
.plan-actions .upgrade-btn:active{transform:translateY(1px);box-shadow:0 5px 0 #7b5b19}

/* =========================================================
   PROFILE BOOSTS (VC only)
========================================================= */
.boost-options{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px
}
@media (max-width:980px){ .boost-options{grid-template-columns:repeat(2,1fr)} }
@media (max-width:580px){ .boost-options{grid-template-columns:1fr} }

.boost-card{
  border:1px solid #292936;border-radius:16px;padding:16px;box-shadow:var(--shadow)
}
.boost-icon{
  width:48px;height:48px;border-radius:14px;display:grid;place-items:center;
  background:radial-gradient(circle at 30% 30%,#3c3415 0,#1b1609 65%);border:1px solid #3b2e12;color:#f2d078;font-size:20px;flex:0 0 48px
}
.boost-head{display:flex;align-items:center;justify-content:space-between;gap:8px}
.boost-head h4{margin:0 0 2px;font-size:16px}
.boost-desc{margin:2px 0 10px;color:var(--text-2);min-height:36px}
.icon-help{width:26px;height:26px;border-radius:50%;border:1px solid #3a3a46;background:#1a1a22;color:#ddd}

.boost-price-vc{
  display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;
  background:linear-gradient(180deg,#2d2a1a,#1a180f);border:1px solid #4a3a14;color:#f7d989;font-weight:800;margin-bottom:10px
}

.boost-btn{
  width:100%;padding:10px 12px;border-radius:10px;border:1px solid #4a3a14;
  background:linear-gradient(180deg,#efd06e,#c8912f);color:#1c1505;font-weight:800
}

/* Active boost status */
.boost-status{
  margin-top:14px;padding:10px 12px;border-radius:12px;border:1px dashed #33343f;color:var(--text-2)
}
.boost-timer{color:#f6d67a;font-weight:800}

/* =========================================================
   VISUAL PREVIEW
========================================================= */
#boostPreviewCard .catalog-card{
  border-radius:16px;border:1px solid #2a2a35;overflow:hidden;background:#0f0f13
}
#boostPreviewCard .btn-gold{
  border:1px solid #4a3a14;background:linear-gradient(180deg,#efd06e,#c8912f);color:#1c1505;font-weight:800;
  padding:10px 12px;border-radius:10px
}

/* =========================================================
   UTILITIES (VC only)
========================================================= */
.addons-options{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px
}
@media (max-width:980px){ .addons-options{grid-template-columns:1fr} }

.addon-card{
  border:1px solid #272734;border-radius:16px;padding:16px;box-shadow:var(--shadow)
}
.addon-card > i{display:block;text-align:center;color:#f2d078;font-size:22px}
.addon-card h4{margin:8px 0 4px;text-align:center;font-size:16px}
.addon-card p{margin:0 0 12px;text-align:center;color:var(--text-2)}

/* durations table → linhas bonitas */
.addon-table{display:flex;flex-direction:column;gap:8px}
.addon-row{
  display:grid;grid-template-columns:70px 1fr 120px;align-items:center;gap:10px;
  ;border:1px solid #252533;border-radius:12px;padding:8px 10px
}
.addon-row span:first-child{color:#f6d67a;font-weight:800}
.addon-row span:nth-child(2){
  display:inline-flex;align-items:center;gap:6px;color:#f6d67a;
  background:linear-gradient(180deg,#2d2a1a,#1a180f);border:1px solid #4a3a14;border-radius:999px;padding:4px 10px;justify-self:flex-start
}

.addon-buy{
  justify-self:end;
  padding:8px 12px;border-radius:10px;border:1px solid #4a3a14;
  background:linear-gradient(180deg,#efd06e,#c8912f);color:#1c1505;font-weight:800
}

/* simple “toggle” version */
.addon-card:not(.durations):not(.packs){
  display:flex;align-items:center;gap:14px
}
.addon-card .addon-info{flex:1}
.addon-card .addon-top{display:flex;align-items:center;justify-content:space-between;gap:8px}
.addon-price-vc{
  display:inline-flex;align-items:center;gap:6px;padding:4px 8px;border-radius:999px;
  border:1px solid #4a3a14;background:linear-gradient(180deg,#2d2a1a,#1a180f);color:#f7d989;font-weight:800
}
.addon-btn{
  padding:10px 12px;border-radius:10px;border:1px solid #4a3a14;
  background:linear-gradient(180deg,#efd06e,#c8912f);color:#1c1505;font-weight:800
}

/* =========================================================
   MODALS (shared)
========================================================= */
.modal-overlay{
  position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(8,8,12,.6);backdrop-filter:blur(4px);z-index:1000
}
.modal-box{
  width:min(720px,92vw);border:1px solid #2a2a36;border-radius:16px;padding:16px;box-shadow:var(--shadow)
}
.modal-close{position:absolute;right:14px;top:10px;background:#1a1a22;border:1px solid #2a2a36;border-radius:10px;width:32px;height:32px;color:#ddd}
.effects-modal .effects-preview{border:1px dashed #30303a;border-radius:12px;padding:10px;margin:8px 0 12px;background:#0d0d12}
.vl-section-title{font-weight:800;margin:8px 0 6px}
.effects-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}
@media (max-width:620px){ .effects-list{grid-template-columns:repeat(2,1fr)} }
.effect-option{
  display:flex;align-items:center;gap:8px;border:1px solid #2b2b35;background:#15151b;color:#ddd;border-radius:10px;padding:8px 10px
}
.effect-option.active{border-color:#4a3a14;background:#1f1a0c}
.tier-label{margin-left:auto;font-size:11px;color:#f1d17a}
.effects-total{
  display:flex;align-items:center;justify-content:flex-end;gap:10px;border-top:1px solid #272734;padding-top:10px;margin-top:10px
}
.btn-gold{
  border:1px solid #4a3a14;background:linear-gradient(180deg,#efd06e,#c8912f);color:#1c1505;font-weight:800;padding:10px 12px;border-radius:10px
}

/* =========================================================
   TOASTS
========================================================= */
.velvet-toast{
  text-align: center;
  align-items: center;
  justify-content: center;
  position:fixed;right:16px;bottom:16px;background:#17171e;border:1px solid #2a2a36;color:#f5f5f7;
  padding:10px 12px;border-radius:10px;opacity:0;transform:translateY(8px);transition:.25s;z-index:1100
}
.velvet-toast.show{opacity:1;transform:translateY(0)}
.toast-success{border-color:#234a2a;background:#122015}
.toast-error{border-color:#5a1c1c;background:#1c0f10}
.toast-info{}

/* =========================================================
   MISC
========================================================= */
.info-inline{color:var(--muted)}
.dash-subheading{display:flex;align-items:center;gap:10px}


/* ----- Footer Pricebox ----- */
.plan-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto; /* força o bloco de preços+botão descer pro final */
}

.plan-pricebox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
}

.plan-pricebox .price-month {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 6px rgba(212,175,55,0.35);
}

.plan-pricebox .price-month strong {
  font-size: 1.35rem;
}

.plan-pricebox .price-month small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-pricebox .price-week {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ----- Footer Pricebox ----- */
.plan-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto; /* força o bloco de preços+botão descer pro final */
}

.plan-pricebox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
}

.plan-pricebox .price-month {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 6px rgba(212,175,55,0.35);
}

.plan-pricebox .price-month strong {
  font-size: 1.35rem;
}

.plan-pricebox .price-month small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-pricebox .price-week {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.dash-lang-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}

.lang-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface-2);
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-chip input {
  display: none;
}

.lang-chip img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
}

.lang-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(212,175,55,0.3);
}

.lang-tip {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-tip i { color: var(--gold); }




/* assets/css/modelBoost.css */

/* --- CONTAINER PRINCIPAL --- */
.boost-main-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  margin-bottom: 40px;
}
.boost-section {
  padding: 30px;
}
@media (max-width: 600px) {
  .boost-main-card { padding: 15px; }
}

.boost-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.dash-subheading {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  font-weight: 600;
}

/* --- PLANS GRID --- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .plans-grid { grid-template-columns: 1fr; }
}

.plan-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  /* Aumentei o padding-top para dar espaço à TAG */
  padding: 40px 20px 20px 20px; 
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  min-height: 450px; /* Altura um pouco maior para respirar */
}

.plan-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.plan-card.plan-silver { border-top: 4px solid #C0C0C0; }
.plan-card.plan-gold { border-top: 4px solid #FFD700; }
.plan-card.plan-platinum { border-top: 4px solid #E5E4E2; }
.plan-card.plan-redDiamond { border-top: 4px solid #FF4444; }

.plan-ribbon {
  position: absolute;
  top: 15px; /* Posição ajustada */
  right: -5px;
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 4px 0 0 4px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  z-index: 2;
}

.plan-head {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  /* Empurra o título para baixo da Tag */
  margin-top: 15px; 
}

.plan-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem; /* Levemente maior */
  color: var(--text-color);
  margin: 0;
  line-height: 1.2;
}

.plan-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: left;
}

.plan-bullets li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.plan-bullets li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.plan-actions {
  margin-top: 25px;
  text-align: center;
  width: 100%;
}

/* Preço Centralizado */
.plan-price {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price-month {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.price-month i {
  font-size: 1.1rem;
  color: var(--gold);
}

.plan-price small {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.upgrade-btn {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.2s;
}
.upgrade-btn:hover {
  background: var(--gold);
  color: #000;
}

.badge-current {
  display: inline-block;
  width: 100%;
  padding: 12px;
  text-align: center;
  color: var(--success-color);
  font-weight: bold;
  border: 1px solid var(--success-color);
  border-radius: 8px;
  background: rgba(0, 255, 0, 0.05);
}

/* --- BOOSTS GRID --- */
.boost-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.boost-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.2s;
}
.boost-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.boost-icon i { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; display: inline-block; }
.boost-head h4 { margin: 0 0 10px 0; font-size: 1.1rem; }
.boost-desc { font-size: 0.85rem; color: var(--text-muted); height: 40px; overflow: hidden; margin-bottom: 15px; }
.boost-price-vc { display: block; font-weight: bold; margin-bottom: 10px; font-size: 1.1rem; }
.boost-price-vc i { color: var(--gold); margin-right: 5px; }
.boost-btn { width: 100%; padding: 10px; background: var(--gold); color: #000; border: none; border-radius: 6px; font-weight: bold; cursor: pointer; }
.boost-btn:hover { opacity: 0.9; }

/* --- UTILITIES (ADDONS) --- */
.addons-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.addon-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.2s;
  position: relative;
}

.addon-card:hover {
  border-color: var(--gold);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.addon-card.active {
  border-color: var(--success-color);
  background: rgba(0, 255, 0, 0.03);
}

.addon-top { display: flex; align-items: center; gap: 15px; }
.addon-top i {
  font-size: 1.8rem; color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
  padding: 12px; border-radius: 10px;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.addon-info h4 { margin: 0; font-size: 1.1rem; color: var(--text-color); }
.addon-info p { margin: 5px 0 0 0; font-size: 0.85rem; color: var(--text-muted); line-height: 1.3; }

.addon-active-note {
    font-size: 0.75rem;
    color: var(--success-color);
    font-weight: bold;
    margin-top: 5px;
    display: block;
}

/* Ação (Preço + Botão) - Ajuste Automático */
.addon-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 10px;
}

.addon-price-vc {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-color);
  white-space: nowrap;
  flex-shrink: 0;
}
.addon-price-vc i { color: var(--gold); margin-right: 5px; }

.addon-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  width: auto;
  min-width: 80px;
}
.addon-btn:hover { background: var(--gold); color: #000; }

/* Tabela de durações */
.addon-table { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card-bg);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 8px;
}
.addon-row span:first-child { color: var(--text-muted); flex-grow: 1; }
.addon-row span:nth-child(2) { 
  font-weight: bold; color: white; white-space: nowrap; margin-right: 5px; 
}
.addon-buy {
  padding: 6px 14px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: bold;
  white-space: nowrap;
  flex-shrink: 0;
}
.addon-buy:hover { opacity: 0.9; }
.addon-buy:disabled { background: #444; color: #888; cursor: not-allowed; }

.icon-help { background: none; border: none; color: var(--text-muted); cursor: pointer; margin-left: 5px; font-size: 0.9rem; }
.icon-help:hover { color: var(--gold); }

/* Modals */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.modal-box { background: var(--bg-color); border: 1px solid var(--gold); padding: 25px; border-radius: 12px; max-width: 450px; width: 90%; position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.modal-close { position: absolute; top: 10px; right: 15px; background: none; border: none; color: var(--text-muted); font-size: 1.8rem; cursor: pointer; }
.btn-gold { background: var(--gold); color: #000; border: none; padding: 12px; width: 100%; border-radius: 8px; cursor: pointer; font-weight: bold; font-size: 1rem; margin-top: 15px; }
.btn-ghost { background: transparent; border: 1px solid var(--text-muted); color: var(--text-muted); padding: 8px 16px; border-radius: 6px; cursor: pointer; }