/* ================================================================
   CLUBE VIP DOS DRAMAS — catalogo.css v2
   Layout responsivo mobile-first inspirado nas referências
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { 
  box-sizing: border-box; margin: 0; padding: 0; 
  -webkit-tap-highlight-color: transparent; 
}

:root {
  --pink: #ff2d78;
  --pink-dark: #d41f62;
  --pink-glow: rgba(255,45,120,.35);
  --gold: #d4a843;
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #1a1a24;
  --border: rgba(255,255,255,.08);
  --text: #ffffff;
  --text-muted: rgba(255,255,255,.55);
  --radius: 10px;
  --header-h: 56px;
}

html, body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; outline: none; }
img { display: block; max-width: 100%; }

/* ================================================================
   LOADING
   ================================================================ */
.loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.25rem;
  transition: opacity .4s;
}
.loading-screen.hidden { opacity: 0; pointer-events: none; }
.loading-logo { font-size: 1.3rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.loading-logo .accent { color: var(--pink); }
.loading-spinner { width: 36px; height: 36px; border: 2.5px solid rgba(255,45,120,.15); border-top-color: var(--pink); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ================================================================
   TOAST
   ================================================================ */
.toast-container { position: fixed; bottom: 1rem; right: 1rem; z-index: 9000; display: flex; flex-direction: column; gap: .4rem; }
.toast {
  display: flex; align-items: center; gap: .5rem;
  background: #1e1e2e; border: 1px solid var(--border);
  border-radius: 10px; padding: .7rem .9rem;
  font-size: .85rem; font-weight: 500;
  animation: tIn .25s ease; max-width: 300px;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.toast.exit { animation: tOut .25s ease forwards; }
.toast-success { border-left: 3px solid #22c55e; }
.toast-error   { border-left: 3px solid var(--pink); }
.toast-info    { border-left: 3px solid #3b82f6; }
@keyframes tIn  { from { transform: translateX(110%); opacity:0; } to { transform: none; opacity:1; } }
@keyframes tOut { to   { transform: translateX(110%); opacity:0; } }

/* ================================================================
   HEADER
   ================================================================ */
.cat-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  height: var(--header-h);
  background: rgba(10,10,15,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, border-color .3s;
}
.cat-header.transparent { background: transparent; border-color: transparent; }
.cat-header-inner {
  height: 100%; max-width: 1400px; margin: 0 auto;
  padding: 0 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.cat-logo { display: flex; align-items: center; gap: .5rem; }
.cat-logo img { width: 32px; height: 32px; border-radius: 7px; object-fit: cover; }
.cat-logo-text { font-size: .9rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.cat-logo-text .accent { color: var(--pink); }

.cat-nav { display: flex; gap: .2rem; margin-left: 1rem; }
.cat-nav a {
  padding: .35rem .75rem; border-radius: 8px;
  font-size: .82rem; font-weight: 600; color: var(--text-muted);
  transition: color .2s, background .2s;
}
.cat-nav a:hover, .cat-nav a.active { color: var(--text); background: rgba(255,255,255,.08); }

.cat-header-right { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.cat-search {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.07); border: 1px solid var(--border);
  border-radius: 9px; padding: .3rem .65rem;
}
.cat-search:focus-within { border-color: var(--pink); }
.cat-search svg { width: 15px; height: 15px; flex-shrink: 0; opacity: .45; }
.cat-search input {
  background: none; border: none; outline: none;
  font-family: inherit; font-size: .82rem; color: var(--text);
  width: 150px;
}
.cat-search input::placeholder { color: var(--text-muted); }

.btn-profile-top {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: var(--text);
  border: 1px solid rgba(255,255,255,.15); transition: all .2s;
  text-decoration: none;
}
.btn-profile-top svg { width: 20px; height: 20px; opacity: 0.8; }
.btn-profile-top:hover { background: rgba(255,255,255,.15); }
.profile-badge {
  position: absolute; top: -2px; right: -2px;
  background: var(--pink); color: #fff;
  font-size: 0.65rem; font-weight: 800;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
}

/* ================================================================
   HERO — mobile first
   ================================================================ */
.hero {
  position: relative;
  width: 100%;
  padding-top: var(--header-h);
  min-height: 480px;
  height: calc(80vw + var(--header-h));
  max-height: 680px;
  overflow: hidden;
  background: #0d0d14;
}
.hero-bg-img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  transition: opacity .7s;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,15,.96) 0%, rgba(10,10,15,.55) 55%, transparent 100%);
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 250px;
  background: linear-gradient(to top, var(--bg) 0%, rgba(10,10,15,0.7) 40%, transparent 100%);
}
.hero-content {
  position: absolute; bottom: 0; left: 0;
  padding: 1.25rem 1rem 1.25rem;
  max-width: 560px; width: 100%;
}
.hero-badge-row { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .5rem; }
.hero-badge {
  font-size: .58rem; font-weight: 800; letter-spacing: .07em;
  padding: 3px 7px; border-radius: 4px;
  background: var(--pink); color: #fff; text-transform: uppercase;
}
.hero-badge-outline {
  font-size: .58rem; font-weight: 600; letter-spacing: .04em;
  padding: 3px 7px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.8);
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(1.25rem, 4.5vw, 2.2rem);
  font-weight: 900; line-height: 1.15; margin-bottom: .5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}
.hero-synopsis {
  font-size: .82rem; color: rgba(255,255,255,.75);
  line-height: 1.5; margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.btn-hero-play {
  display: flex; align-items: center; gap: .45rem;
  background: var(--pink); color: #fff;
  padding: .6rem 1.25rem; border-radius: 9px;
  font-size: .88rem; font-weight: 700;
  box-shadow: 0 4px 18px var(--pink-glow);
  transition: all .2s;
}
.btn-hero-play:hover { background: var(--pink-dark); transform: translateY(-1px); }
.btn-hero-play svg { width: 18px; height: 18px; fill: #fff; }
.btn-hero-preview {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  padding: .6rem 1.1rem; border-radius: 9px;
  font-size: .88rem; font-weight: 700; transition: all .2s;
}
.btn-hero-preview:hover { background: rgba(255,255,255,.2); }
.btn-hero-preview svg { width: 16px; height: 16px; opacity: .75; }
.hero-dots { position: absolute; bottom: 1rem; right: 1rem; display: flex; gap: .35rem; }
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: all .2s; }
.hero-dot.active { background: var(--pink); width: 20px; border-radius: 3px; }

/* ================================================================
   AVISO PRÉVIA
   ================================================================ */
.preview-notice {
  background: linear-gradient(135deg, rgba(255,45,120,.1), rgba(255,180,0,.06));
  border: 1px solid rgba(255,45,120,.2);
  border-radius: 10px; margin: 1rem .75rem 0;
  padding: .65rem 1rem;
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .82rem; line-height: 1.5;
}
.preview-notice-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.preview-notice strong { color: var(--pink); }

/* ================================================================
   FILTROS
   ================================================================ */
.filters-bar {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1rem .75rem; background: var(--bg);
}
.filter-group { display: flex; flex-direction: column; gap: 0.4rem; }
.filter-group label {
    font-size: 0.75rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.filter-segmented {
  display: flex; background: rgba(255,255,255,.05); border-radius: 12px; padding: 4px;
}
.seg-btn {
  flex: 1; padding: 0.6rem 0; border: none; background: transparent;
  color: var(--text-muted); font-size: 0.85rem; font-weight: 700;
  border-radius: 8px; cursor: pointer; transition: all 0.3s ease; text-align: center;
}
.seg-btn.active { background: var(--pink); color: #fff; box-shadow: 0 4px 12px rgba(255,45,120,0.3); }

/* Para a listagem de categorias renderizada via JS (nós a alteraremos para dropdown ou manteremos pills bonitas) */
.custom-select-wrapper { display: flex; gap: 0.5rem; overflow-x: auto; scrollbar-width: none; }
.custom-select-wrapper::-webkit-scrollbar { display: none; }
.pill {
  padding: .5rem 1rem; border-radius: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.8);
  transition: all .2s; white-space: nowrap; cursor: pointer; flex-shrink: 0;
}
.pill:hover { background: rgba(255,255,255,.1); }
.pill.active { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); color: #fff; }

/* ================================================================
   CATÁLOGO
   ================================================================ */
.catalog-main { padding: .25rem 0 1.5rem; }
.catalog-section { margin-bottom: 1.25rem; }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 .75rem .4rem;
}
.section-title { font-size: .95rem; font-weight: 800; }
.section-see-all {
  display: flex; align-items: center; gap: .2rem;
  font-size: .75rem; font-weight: 700; color: var(--pink); cursor: pointer;
}
.section-see-all svg { width: 13px; height: 13px; }

.catalog-row {
  display: flex; gap: .6rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .4rem 1rem 1rem; scrollbar-width: none; cursor: grab;
  user-select: none;
}
.catalog-row::-webkit-scrollbar { display: none; }
.catalog-row.expanded { flex-wrap: wrap; justify-content: center; overflow-x: visible; }

/* ================================================================
   CARD — 2 cols mobile / 4-5 cols desktop
   ================================================================ */
.drama-card {
  flex-shrink: 0;
  width: clamp(100px, 26vw, 140px);
  scroll-snap-align: center;
  cursor: pointer; border-radius: 9px; overflow: hidden;
  position: relative; background: var(--bg3);
  transition: transform .22s ease, box-shadow .22s;
}
.drama-card:hover { transform: scale(1.05); box-shadow: 0 8px 28px rgba(0,0,0,.6); z-index: 10; }
.drama-card img { width: 100%; aspect-ratio: 9/13; object-fit: cover; }
.drama-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, transparent 100%);
  padding: 1.75rem .45rem .45rem;
}
.drama-card-title {
  font-size: .65rem; font-weight: 700; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.drama-card-badges { position: absolute; top: .35rem; left: .35rem; display: flex; flex-direction: column; gap: .2rem; }
.card-badge {
  font-size: .48rem; font-weight: 800; letter-spacing: .05em;
  padding: 2px 5px; border-radius: 3px; text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.badge-dub { background: rgba(255,45,120,.9); color: #fff; }
.badge-leg { background: rgba(30,120,255,.9); color: #fff; }
.badge-nac { background: rgba(22,163,74,.9); color: #fff; }
.card-play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.38); opacity: 0; transition: opacity .2s;
}
.drama-card:hover .card-play-overlay { opacity: 1; }
.card-play-overlay svg { width: 34px; height: 34px; fill: #fff; }

/* Grid de busca */
.search-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; padding: 0 .75rem; }
.search-grid .drama-card { width: 100%; }

.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; padding: 4rem 2rem; text-align: center; }
.empty-state-icon { font-size: 2.5rem; }
.empty-state h3 { font-size: 1rem; font-weight: 700; }
.empty-state p { font-size: .85rem; color: var(--text-muted); }

/* ================================================================
   PLAYER OVERLAY
   ================================================================ */
.player-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.97);
  display: none; flex-direction: column;
}
.player-overlay.show { display: flex; }

.player-topbar {
  height: 50px; background: rgba(10,10,15,.95);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 .75rem; gap: .6rem; flex-shrink: 0;
}
.btn-player-back {
  display: flex; align-items: center; gap: .3rem;
  font-size: .82rem; font-weight: 600; color: var(--text-muted);
  padding: .4rem .6rem; border-radius: 7px; transition: background .2s;
}
.btn-player-back:hover { background: rgba(255,255,255,.08); }
.btn-player-back svg { width: 16px; height: 16px; }
.player-topbar-title {
  font-size: .82rem; font-weight: 700; flex: 1;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.preview-timer-badge {
  margin-left: auto; flex-shrink: 0;
  background: rgba(255,45,120,.15); border: 1px solid rgba(255,45,120,.4);
  border-radius: 20px; padding: .28rem .7rem;
  font-size: .72rem; font-weight: 700; color: var(--pink);
  display: flex; align-items: center; gap: .3rem;
}
.preview-timer-badge.urgent { animation: timerPulse 1s ease-in-out infinite; }
@keyframes timerPulse {
  0%,100% { background: rgba(255,45,120,.15); }
  50%      { background: rgba(255,45,120,.35); }
}

.player-body {
  flex: 1; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; background: #000;
}
.player-wrap {
  position: relative; background: #000;
  width: 100%; height: 100%;
  max-width: 430px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .player-wrap { height: calc(100dvh - 50px); aspect-ratio: 9/16; width: auto; }
}
#iframe-el { position: absolute; inset: 0; width: 100%; height: 100%; border: none; background: #000; }

/* Capa */
#cover-box { position: absolute; inset: 0; z-index: 10; cursor: pointer; }
#cover-box.gone { display: none; }
#cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cover-dark {
  position: absolute; inset: 0; background: rgba(0,0,0,.42);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .65rem;
}
.play-circle {
  width: 68px; height: 68px; background: var(--pink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: pulse 2s ease-out infinite;
}
.play-circle svg { width: 30px; height: 30px; fill: #fff; margin-left: 4px; }
.play-label { font-size: .9rem; font-weight: 700; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.preview-label {
  font-size: .68rem; font-weight: 600;
  background: rgba(255,45,120,.2); border: 1px solid rgba(255,45,120,.4);
  padding: 3px 9px; border-radius: 20px; color: var(--pink);
}
@keyframes pulse {
  0%  { box-shadow: 0 0 0 0 rgba(255,45,120,.6); }
  70% { box-shadow: 0 0 0 16px rgba(255,45,120,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,45,120,0); }
}

/* Bloqueio de preview */
.preview-bloqueio {
  position: absolute; inset: 0; z-index: 500;
  background: rgba(0,0,0,.88); backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  flex-direction: column; gap: .9rem; text-align: center; padding: 1.75rem;
}
.preview-bloqueio.show { display: flex; }
.preview-bloqueio .lock-icon { font-size: 2.75rem; }
.preview-bloqueio h3 { font-size: 1.05rem; font-weight: 900; }
.preview-bloqueio p { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }
.btn-ver-planos {
  background: var(--pink); color: #fff; padding: .7rem 1.75rem;
  border-radius: 10px; font-size: .9rem; font-weight: 800;
  box-shadow: 0 4px 20px var(--pink-glow); transition: all .2s;
}
.btn-ver-planos:hover { background: var(--pink-dark); transform: translateY(-2px); }

/* ================================================================
   MODAL PLANOS
   ================================================================ */
.planos-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,.75); backdrop-filter: blur(12px);
  display: none; align-items: flex-end; justify-content: center;
}
.planos-overlay.show { display: flex; }
.planos-modal {
  /* Fundo escuro com grade como referência */
  background: #050510;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 28px 28px 0 0;
  width: 100%; max-width: 640px;
  padding: 1.25rem 1rem 3rem;
  position: relative; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 -20px 80px rgba(0,0,0,.9), 0 -1px 0 rgba(255,255,255,0.06);
  animation: slideUpModal .45s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-x: hidden;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}
/* Glow roxo/rosa gigante atrás dos cards (igual à referência) */
.planos-modal::before {
  content: '';
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 90%; height: 300px;
  background: radial-gradient(ellipse at center, rgba(255,45,120,.22) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.planos-modal > * { position: relative; z-index: 1; }
@keyframes slideUpModal { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* Handle bar */
.modal-handle {
  width: 42px; height: 4px;
  background: rgba(255,255,255,.15);
  border-radius: 2px; margin: 0 auto 1.2rem;
}
.planos-header {
  display: flex; align-items: center; gap: .6rem; margin-bottom: .2rem;
}
.planos-header h2 { font-size: 1.25rem; font-weight: 900; flex: 1; letter-spacing: -0.5px; }
.planos-flag {
  display: flex; align-items: center; gap: .3rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: .3rem .7rem;
  font-size: .72rem; font-weight: 700;
}
.btn-planos-close {
  width: 32px; height: 32px; background: rgba(255,255,255,.06); border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: rgba(255,255,255,.6); transition: all .2s;
}
.btn-planos-close:hover { background: rgba(255,255,255,.12); color: #fff; }
.planos-subtitle { font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }

.planos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .55rem;
  margin-bottom: 1rem;
}
.plano-card {
  background: linear-gradient(145deg, rgba(25,25,35,0.9), rgba(15,15,25,0.9));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 1.2rem 1rem;
  cursor: pointer; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1); position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
}
.plano-card:hover { 
  transform: translateY(-3px); 
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 8px 25px rgba(0,0,0,.4);
}
.plano-card.selected { 
  border-color: var(--pink); background: rgba(255,45,120,.1); 
  box-shadow: 0 0 0 3px rgba(255,45,120,.2), inset 0 0 15px rgba(255,45,120,0.1); 
}
.plano-card-badge {
  position: absolute; top: -10px; right: 10px;
  background: var(--text-muted); color: #fff;
  font-size: .65rem; font-weight: 800; padding: .25rem .55rem;
  border-radius: 6px; letter-spacing: 1px;
}
.badge-popular { background: #c9a227; color: #000; }
.badge-custo   { background: var(--pink); color: #fff; }
.plano-nome { font-size: .88rem; font-weight: 700; margin-bottom: .2rem; }
.plano-preco { font-size: 1.25rem; font-weight: 900; }
.plano-preco span { font-size: .7rem; font-weight: 600; color: var(--text-muted); margin-right: .1rem; }

/* ================================================================
   PLANOS SECTION LABEL
   ================================================================ */
.planos-section-label {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; margin: 1.2rem 0 0.6rem;
}
.planos-section-label.pink { color: var(--pink); }
.planos-section-label.gold { color: #d4a843; }

/* ================================================================
   CARDS 2-COLUNAS — PREMIUM
   ================================================================ */
.planos-grid-2col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
  margin-bottom: 0.2rem;
  width: 100%; box-sizing: border-box;
}
.plano-card2 {
  background: linear-gradient(160deg, #0d0d1f 0%, #0a0a18 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 0.85rem 0.75rem;
  text-align: left; cursor: pointer; position: relative; overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column; gap: 0.12rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  box-sizing: border-box; min-width: 0;
}
/* Glow interno quando hover */
.plano-card2::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,45,120,.1) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.plano-card2:hover::after { opacity: 1; }
.plano-card2:hover { border-color: rgba(255,255,255,.18); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08); }
.plano-card2.selected {
  border-color: var(--pink);
  background: linear-gradient(160deg, #1a0814 0%, #12060f 100%);
  box-shadow: 0 0 0 2px rgba(255,45,120,.3), 0 12px 35px rgba(255,45,120,.15), inset 0 1px 0 rgba(255,45,120,.2);
}
.plano-card2.selected::after { opacity: 1; }
/* Card popular tem glow azul/roxo especial */
.plano-card2.card-popular {
  border-color: rgba(255,45,120,.3);
  box-shadow: 0 -8px 40px rgba(255,45,120,.2), inset 0 1px 0 rgba(255,255,255,.1);
}
.plano2-badge {
  position: absolute; top: 9px; right: 9px;
  font-size: 0.52rem; font-weight: 900; letter-spacing: 1px;
  padding: 3px 7px; border-radius: 6px; text-transform: uppercase;
}
.plano2-badge.popular { background: linear-gradient(135deg, #c9a227, #e8c84a); color: #000; }
.plano2-badge.melhor  { background: linear-gradient(135deg, var(--pink), var(--pink-dark)); color: #fff; }
.plano2-nome { font-size: 1rem; font-weight: 800; color: #fff; line-height: 1.2; margin-top: 14px; padding-right: 5px; }
.plano2-sub  { font-size: 0.65rem; color: rgba(255,255,255,.35); font-weight: 500; }
.plano2-preco {
  font-size: 1.75rem; font-weight: 900; color: #fff; margin-top: 0.5rem;
  letter-spacing: -1px; line-height: 1;
}
.plano2-preco span { font-size: 0.75rem; color: rgba(255,255,255,.45); font-weight: 600; margin-right: 2px; letter-spacing: 0; }

/* ================================================================
   TUTORIAL PIX
   ================================================================ */
.pix-tutorial {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 1rem; margin: 0.75rem 0; text-align: left;
}
.pix-tutorial-header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem;
}
.pix-tutorial-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pix-tutorial-icon svg { width: 20px; height: 20px; color: #22c55e; fill: #22c55e; }
.pix-tutorial-header strong { display: block; font-size: 0.85rem; font-weight: 800; color: #fff; }
.pix-tutorial-header p { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin: 0; }

.pix-bank-preview {
  background: #111; border-radius: 10px; overflow: hidden;
  margin-bottom: 0.85rem; border: 1px solid rgba(255,255,255,0.06);
}
.bank-menu-item {
  padding: 0.55rem 0.9rem; font-size: 0.8rem; color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}
.bank-menu-item:last-child { border-bottom: none; }
.bank-menu-item.active { background: #22c55e; color: #fff; font-weight: 700; border-radius: 8px 8px 0 0; }
.bank-menu-item.highlight { color: #fff; font-weight: 700; }

.pix-steps { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.pix-steps li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.8); line-height: 1.4;
}
.step-num {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.7rem; font-weight: 800; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
}
.step-num.active { background: #22c55e; border-color: #22c55e; color: #fff; }
.pix-steps li strong { color: #fff; }

.planos-beneficios {
  background: linear-gradient(135deg, rgba(42,32,16,0.8), rgba(31,26,8,0.8));
  border: 1px solid rgba(212,168,67,.18); border-radius: 14px;
  padding: .9rem 1rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .6rem;
  margin: 1.2rem 0;
  backdrop-filter: blur(4px);
}
.beneficio-item {
  display: flex; align-items: center; gap: .45rem;
  font-size: .75rem; font-weight: 600; color: rgba(255,220,100,.85);
}
.beneficio-item svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.8; }

.btn-assinar {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--pink) 0%, #e0185d 100%);
  color: #fff; border-radius: 14px; font-size: 1rem; font-weight: 900;
  letter-spacing: -0.2px;
  box-shadow: 0 6px 30px rgba(255,45,120,.5), 0 2px 0 rgba(255,255,255,.1) inset;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: .75rem;
}
.btn-assinar:hover { 
  background: linear-gradient(135deg, #ff4d92 0%, #ff1f6b 100%);
  transform: translateY(-2px); 
  box-shadow: 0 10px 40px rgba(255,45,120,.6), 0 2px 0 rgba(255,255,255,.15) inset;
}
.btn-assinar:disabled { 
  opacity: .4; cursor: not-allowed; transform: none; 
  box-shadow: none;
  background: rgba(255,255,255,.1);
}
.btn-assinar.pulsing:not(:disabled) {
  animation: btnPulse 1.8s ease-in-out infinite;
}
@keyframes btnPulse {
  0%   { box-shadow: 0 6px 30px rgba(255,45,120,.5), 0 0 0 0 rgba(255,45,120,.45); }
  50%  { box-shadow: 0 6px 30px rgba(255,45,120,.6), 0 0 0 10px rgba(255,45,120,0); transform: translateY(-1px); }
  100% { box-shadow: 0 6px 30px rgba(255,45,120,.5), 0 0 0 0 rgba(255,45,120,0); }
}
.planos-login-link { text-align: center; font-size: .78rem; color: rgba(255,255,255,.35); }
.planos-login-link a { color: var(--pink); font-weight: 700; }

/* ================================================================
   MODAL PIX
   ================================================================ */
.pix-overlay {
  position: fixed; inset: 0; z-index: 4000;
  background: rgba(0,0,0,.82); backdrop-filter: blur(12px);
  display: none; align-items: flex-end; justify-content: center;
}
.pix-overlay.show { display: flex; }
.pix-modal {
  background: #050510;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  border: 1px solid rgba(255,255,255,.07); border-radius: 28px 28px 0 0;
  width: 100%; max-width: 480px;
  padding: 1.25rem 1.25rem 3rem;
  text-align: center;
  box-shadow: 0 -20px 80px rgba(0,0,0,.9);
  animation: slideUpModal .4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}
.pix-modal h3 { font-size: 1.1rem; font-weight: 900; margin-bottom: .2rem; }
.pix-modal-sub { font-size: .8rem; color: var(--text-muted); margin-bottom: 1rem; }
.pix-plano-tag {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,45,120,.12); border: 1px solid rgba(255,45,120,.3);
  border-radius: 7px; padding: .3rem .8rem;
  font-size: .82rem; font-weight: 700; color: var(--pink); margin-bottom: 1rem;
}
.pix-qr-box {
  background: #fff; border-radius: 12px; padding: .9rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .9rem; min-height: 180px;
}
.pix-qr-box img { max-width: 170px; }
.pix-qr-loading { display: flex; flex-direction: column; align-items: center; gap: .6rem; color: #444; }
.pix-qr-loading .spin2 { width: 28px; height: 28px; border: 2.5px solid rgba(0,0,0,.15); border-top-color: var(--pink); border-radius: 50%; animation: spin .8s linear infinite; }
/* Botao copiar PIX — grande e intuitivo */
.pix-copy-wrap { margin-bottom: .75rem; }
.pix-copy-hint {
  font-size: .72rem; color: rgba(255,255,255,.5);
  margin-bottom: .45rem; text-align: center;
  animation: pulseOpacity 2s ease-in-out infinite;
}
@keyframes pulseOpacity { 0%,100%{opacity:.5} 50%{opacity:1} }
.btn-copiar-pix {
  width: 100%; padding: .9rem 1rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff; border-radius: 14px;
  display: flex; align-items: center; gap: .75rem;
  box-shadow: 0 4px 24px rgba(34,197,94,.4), 0 0 0 0 rgba(34,197,94,.4);
  animation: btnCopiarPulse 2s ease-in-out infinite;
  transition: all .2s; text-align: left;
}
.btn-copiar-pix:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(34,197,94,.55); }
.btn-copiar-pix.copiado {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  animation: none;
  box-shadow: 0 4px 24px rgba(74,222,128,.5);
}
@keyframes btnCopiarPulse {
  0%   { box-shadow: 0 4px 24px rgba(34,197,94,.4), 0 0 0 0 rgba(34,197,94,.35); }
  60%  { box-shadow: 0 4px 24px rgba(34,197,94,.4), 0 0 0 12px rgba(34,197,94,0); }
  100% { box-shadow: 0 4px 24px rgba(34,197,94,.4), 0 0 0 0 rgba(34,197,94,0); }
}
.btn-copiar-icon { font-size: 1.6rem; flex-shrink: 0; }
.btn-copiar-texts { display: flex; flex-direction: column; gap: .1rem; }
.btn-copiar-texts strong { font-size: .95rem; font-weight: 900; letter-spacing: -.2px; }
.btn-copiar-texts small { font-size: .7rem; opacity: .8; font-weight: 400; }
.pix-code-mini {
  font-size: .58rem; color: rgba(255,255,255,.3);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  text-align: center; margin-top: .3rem; padding: 0 .5rem;
}
.pix-status { display: flex; align-items: center; gap: .45rem; justify-content: center; font-size: .8rem; color: var(--text-muted); margin-bottom: .85rem; }
.pix-status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: blink 1.2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.pix-status.pago { color: #22c55e; }
.pix-status.pago .dot { background: #22c55e; animation: none; }

/* Passos animados do tutorial */
.pix-steps { list-style: none; padding: 0; margin: .5rem 0 0; display: flex; flex-direction: column; gap: .3rem; }
.pix-step {
  display: flex; align-items: center; gap: .6rem;
  padding: .45rem .55rem; border-radius: 8px;
  transition: background .4s, transform .4s;
  font-size: .8rem; color: rgba(255,255,255,.45);
}
.pix-step.ativo {
  background: rgba(34,197,94,.12);
  color: rgba(255,255,255,.9);
  transform: translateX(4px);
}
.pix-step.ativo .step-num {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 0 10px rgba(34,197,94,.5);
}
.pix-timer { font-size: .72rem; color: var(--text-muted); margin-bottom: .75rem; }
.pix-timer strong { color: var(--gold); }
.btn-pix-voltar { font-size: .78rem; color: var(--text-muted); text-decoration: underline; cursor: pointer; }

/* ================================================================
   ACESSO LIBERADO
   ================================================================ */
.acesso-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(0,0,0,.88);
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.acesso-overlay.show { display: flex; }
.acesso-modal {
  background: var(--bg3); border: 1px solid rgba(34,197,94,.3);
  border-radius: 18px; padding: 2rem 1.5rem;
  max-width: 360px; width: 100%; text-align: center;
  box-shadow: 0 0 50px rgba(34,197,94,.18); animation: slideUpModal .35s ease;
}
.acesso-modal .check-icon { font-size: 3.25rem; margin-bottom: .85rem; }
.acesso-modal h2 { font-size: 1.3rem; font-weight: 900; margin-bottom: .45rem; }
.acesso-modal p { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.4rem; line-height: 1.6; }
.btn-acessar-agora {
  width: 100%; padding: .85rem; background: #22c55e; color: #fff;
  border-radius: 11px; font-size: .95rem; font-weight: 800;
  box-shadow: 0 4px 18px rgba(34,197,94,.28); transition: all .2s; margin-bottom: .55rem;
}
.btn-acessar-agora:hover { background: #16a34a; }
.btn-continuar-vendo { font-size: .82rem; color: var(--text-muted); cursor: pointer; text-decoration: underline; }

/* ================================================================
   DESKTOP — ajustes
   ================================================================ */
@media (min-width: 640px) {
  .drama-card { width: 140px; }
  .hero { height: min(65vh, 560px); }
  .hero-synopsis { -webkit-line-clamp: 3; }
  .planos-overlay, .pix-overlay {
    align-items: center; padding: 1rem;
  }
  .planos-modal, .pix-modal {
    border-radius: 18px; max-height: 94vh;
  }
  .search-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 900px) {
  .drama-card { width: 148px; }
  .cat-nav { display: flex; }
  .search-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (min-width: 1200px) {
  .drama-card { width: 155px; }
}
@media (max-width: 400px) {
  .cat-logo-text { display: none; }
  .cat-search input { width: 100px; }
}

/* ================================================================
   WHATSAPP BANNER
   ================================================================ */
.whatsapp-banner {
    position: relative;
    margin: 1rem;
    border-radius: 14px;
    overflow: hidden;
    display: block;
    /* Borda pulsante verde */
    border: 2px solid rgba(37, 211, 102, 0.8);
    /* Glow pulsante externo */
    animation: wa-glow 2.2s ease-in-out infinite;
}
@keyframes wa-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(37,211,102,0.5), 0 0 20px rgba(37,211,102,0.25); }
    50% { box-shadow: 0 0 16px rgba(37,211,102,0.8), 0 0 35px rgba(37,211,102,0.45); }
}
.whatsapp-banner-link { display: block; width: 100%; position: relative; }
.whatsapp-banner-link::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    background-size: 200% 200%; animation: wa-shine 3.5s linear infinite;
}
@keyframes wa-shine { 0% { background-position: -150% 150%; } 100% { background-position: 150% -150%; } }
.whatsapp-banner-img { width: 100%; display: block; border-radius: 12px; }

/* ================================================================
   FOOTER
   ================================================================ */
.cat-footer {
    background: #0a0a0f; padding: 1.25rem 1rem 5.5rem;
    border-top: 1px solid rgba(255,255,255,0.05); text-align: center;
}
.footer-logo-container { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 1rem; }
.footer-logo-img { width: 45px; margin-bottom: 0.5rem; }
.footer-logo-text { font-size: 1.4rem; font-weight: 900; letter-spacing: -0.5px; }
.footer-logo-text .accent { color: var(--pink); font-family: 'Inter', sans-serif; font-style: italic; }
.footer-description { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; max-width: 400px; margin-inline: auto; }

.footer-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.footer-badge {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.9);
}

.footer-links-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1.5rem;
    text-align: left; margin-bottom: 2rem; max-width: 600px; margin-inline: auto;
}
.footer-column h3 {
    font-size: 0.9rem; font-weight: 800; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.4rem;
}
.footer-column h3 svg { width: 16px; height: 16px; opacity: 0.8; }
.footer-column a {
    display: block; color: var(--text-muted); text-decoration: none; font-size: 0.85rem;
    margin-bottom: 0.5rem; transition: color 0.2s;
}
.footer-column a:hover { color: var(--pink); }

.btn-topo {
    background: rgba(255,255,255,0.08); color: var(--text); border: 1px solid rgba(255,255,255,0.15);
    padding: 0.6rem 1.2rem; border-radius: 20px; font-size: 0.8rem; font-weight: 700;
    cursor: pointer; display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 2rem; transition: background 0.2s;
}
.btn-topo:hover { background: rgba(255,255,255,0.15); }
.btn-topo svg { width: 16px; height: 16px; }

.footer-copy {
    font-size: 0.7rem; color: rgba(255,255,255,0.3); padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05);
}

/* ================================================================
   BOTTOM NAVIGATION
   ================================================================ */
body { padding-bottom: 75px; } /* Evita conteúdo ser coberto */
.bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0;
    height: 70px; background: rgba(18, 18, 25, 0.96);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    display: flex; justify-content: space-around; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05); z-index: 4500;
    padding-bottom: env(safe-area-inset-bottom);
}
body.player-open .bottom-nav,
body.modal-open .bottom-nav {
    display: none !important;
}
.bottom-nav-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--text-muted); text-decoration: none; font-size: 0.65rem; font-weight: 600;
    gap: 5px; flex: 1; transition: all 0.3s ease;
}
.bottom-nav-item svg { width: 22px; height: 22px; opacity: 0.7; transition: all 0.3s ease; }
.bottom-nav-item:hover, .bottom-nav-item.active { color: #fff; }
.bottom-nav-item:hover svg, .bottom-nav-item.active svg { opacity: 1; stroke: var(--pink); transform: translateY(-2px); }
.bottom-nav-item .premium-text { color: #ffbc00; }
.bottom-nav-item:hover .premium-text { text-shadow: 0 0 10px rgba(255,188,0,0.5); }
.bottom-nav-item:hover svg[stroke="currentColor"] { stroke: #ffbc00 !important; }

/* ================================================================
   MOBILE — CORREÇÕES DO MODAL DE PLANOS
   ================================================================ */
@media (max-width: 400px) {
  .planos-modal {
    padding: 1rem 0.75rem 3rem;
  }
  .planos-grid-2col {
    gap: 0.4rem;
  }
  .plano-card2 {
    padding: 0.75rem 0.6rem;
    border-radius: 12px;
  }
  .plano2-nome {
    font-size: 0.85rem;
  }
  .plano2-sub {
    font-size: 0.58rem;
  }
  .plano2-preco {
    font-size: 1.4rem;
  }
  .plano2-badge {
    font-size: 0.45rem;
    padding: 2px 5px;
  }
  .planos-section-label {
    font-size: 0.6rem;
  }
  .planos-beneficios {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }
  .btn-assinar {
    font-size: 0.9rem;
    padding: 0.9rem 1rem;
  }
}

/* Garante que box-sizing se propague ao modal todo */
.planos-modal *, .planos-modal *::before, .planos-modal *::after {
  box-sizing: border-box;
}

/* ================================================================
   MENU PERFIL — Bottom Sheet
   ================================================================ */
#btn-nav-perfil {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center;
  gap: .2rem; font-size: .65rem; color: var(--text-muted);
  padding: .4rem .6rem;
}
#btn-nav-perfil svg { color: var(--text-muted); }

.perfil-overlay {
  position: fixed; inset: 0; z-index: 5500;
  background: rgba(0,0,0,.65); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.perfil-overlay.show { opacity: 1; pointer-events: all; }

.perfil-sheet {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 5600;
  background: #0f0518;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 36px 36px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px 24px 0 0;
  padding: 1rem 1.25rem 2.5rem;
  max-width: 480px; margin: 0 auto;
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 -20px 80px rgba(0,0,0,.85);
}
.perfil-sheet.show { transform: translateY(0); }

.perfil-handle {
  width: 36px; height: 4px; background: rgba(255,255,255,.15);
  border-radius: 2px; margin: 0 auto;
}

.perfil-sheet-top {
  position: relative; display: flex; align-items: center;
  justify-content: center; margin-bottom: .9rem; padding-top: .2rem;
}
.perfil-close-btn {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.08); border: none;
  width: 30px; height: 30px; border-radius: 50%;
  color: rgba(255,255,255,.6); font-size: 1.2rem; line-height: 1;
  cursor: pointer; transition: background .2s, color .2s;
  display: flex; align-items: center; justify-content: center;
}
.perfil-close-btn:hover { background: rgba(255,255,255,.15); color: #fff; }

/* Identidade */
.perfil-identity {
  display: flex; align-items: center; gap: .85rem;
  padding: .6rem 0 1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: .9rem;
}
.perfil-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg,#2d0a35,#1a0a1e);
  border: 2px solid rgba(255,45,120,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.perfil-saudacao { font-size: .92rem; font-weight: 800; color: #fff; margin: 0 0 .15rem; }
.perfil-sub { font-size: .72rem; color: rgba(255,255,255,.4); }

/* Opções */
.perfil-options { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.2rem; }

.perfil-option {
  display: flex; align-items: center; gap: .85rem;
  padding: .85rem .9rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  transition: background .2s, transform .15s;
  cursor: pointer; text-decoration: none;
}
.perfil-option:hover, .perfil-option:active {
  background: rgba(255,255,255,.08);
  transform: translateX(3px);
}

.perfil-opt-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.perfil-opt-icon--pink { background: rgba(255,45,120,.15); color: #ff2d78; }
.perfil-opt-icon--green { background: rgba(34,197,94,.12); color: #22c55e; }
.perfil-opt-icon--blue { background: rgba(59,130,246,.12); color: #60a5fa; }

.perfil-opt-text { flex: 1; }
.perfil-opt-text strong { display: block; font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: .1rem; }
.perfil-opt-text span { font-size: .72rem; color: rgba(255,255,255,.4); }

.perfil-opt-arrow { color: rgba(255,255,255,.25); flex-shrink: 0; }
.perfil-option:hover .perfil-opt-arrow { color: rgba(255,255,255,.55); }

/* Footer */
.perfil-version {
  text-align: center; font-size: .68rem;
  color: rgba(255,255,255,.2); margin: 0;
}
