/* ============================================================
   PrivyHub CMS — Estilos globais (design noir digital)
   ============================================================ */

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

:root {
  --bg:        #050712;
  --bg-mid:    #0a0d1f;
  --bg-card:   #0f1228;
  --border:    rgba(255,255,255,0.08);
  --pink:      #ff4f9a;
  --pink-dark: #cc3d7b;
  --amber:     #f59e0b;
  --text:      #ffffff;
  --text-muted:#9ca3af;
  --text-dim:  rgba(255,255,255,0.64);
  --radius:    8px;
  --radius-lg: 16px;
  --shadow-pink: 0 18px 45px rgba(255,79,154,0.28);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow-pink);
  transition: transform .2s, background .2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #ff6aaa; transform: translateY(-2px); }
.btn-primary.btn-lg { font-size: 1rem; padding: 1rem 2rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--text-dim);
  font-weight: 700;
  font-size: .9rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: color .2s, border-color .2s;
}
.btn-outline:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-outline.btn-lg { font-size: 1rem; padding: 1rem 2rem; }

.btn-ghost {
  color: var(--text-dim);
  font-weight: 700;
  font-size: .875rem;
  text-decoration: none;
  padding: .75rem 1rem;
  transition: color .2s;
}
.btn-ghost:hover { color: #fff; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,7,18,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.brand-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-dim);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  color: var(--text-dim);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
      text-align: right;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-ghost { display: none; }
}

/* ── Sections ───────────────────────────────────────────────── */
.section-dark { background: var(--bg); padding: 5rem 0; }
.section-mid  { background: var(--bg-mid); padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: .75rem 0 1rem;
}
.section-badge {
  display: inline-block;
  background: rgba(255,79,154,.12);
  color: var(--pink);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,79,154,.25);
}
.section-desc { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
}
.hero-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 12%, rgba(255,79,154,.22), transparent 32%),
              radial-gradient(circle at 80% 80%, rgba(245,158,11,.08), transparent 40%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--pink);
  color: var(--pink);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero-subtitle {
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-disclaimer { color: var(--text-muted); font-size: .8rem; }
.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
}

/* ── Feature Cards ──────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: rgba(255,79,154,.3); transform: translateY(-4px); }
.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,79,154,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p  { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }

/* ── Plans ──────────────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.plan-highlight {
  border-color: var(--pink);
  box-shadow: 0 0 40px rgba(255,79,154,.15);
}
.plan-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 999px;
}
.plan-badge { color: var(--pink); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.plan-name  { font-size: 1.25rem; font-weight: 800; }
.plan-price { font-size: 1.1rem; font-weight: 700; color: var(--amber); }
.plan-chat  { font-size: .875rem; color: var(--text-dim); }
.plan-desc  { font-size: .875rem; color: var(--text-muted); flex: 1; }
.plan-cta   { margin-top: .5rem; text-align: center; justify-content: center; }

/* ── PPV ────────────────────────────────────────────────────── */
.ppv-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ppv-list { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: .75rem; }
.ppv-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-dim);
  font-size: .95rem;
}
.ppv-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}
.ppv-visual { display: flex; justify-content: center; }
.ppv-card {
  background: var(--bg-card);
  border: 1px solid var(--pink);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 0 60px rgba(255,79,154,.15);
  max-width: 280px;
}
.ppv-icon  { font-size: 3rem; margin-bottom: 1rem; }
.ppv-label { color: var(--pink); font-weight: 700; font-size: .875rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.ppv-desc  { color: var(--text-muted); font-size: .9rem; margin-bottom: 1rem; }
.ppv-price { font-size: 1.25rem; font-weight: 800; color: var(--amber); }

@media (max-width: 768px) { .ppv-inner { grid-template-columns: 1fr; } }

/* ── Earnings Table ─────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
.earnings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.earnings-table th {
  background: rgba(255,79,154,.1);
  color: var(--pink);
  font-weight: 700;
  text-align: left;
  padding: .875rem 1rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.earnings-table td {
  padding: .875rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
.earnings-table tr:hover td { background: rgba(255,255,255,.02); }
.earnings-highlight { color: var(--amber) !important; font-weight: 700; }
.earnings-disclaimer { color: var(--text-muted); font-size: .8rem; margin-top: 1rem; text-align: center; }

/* ── Screenshots ────────────────────────────────────────────── */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.screenshot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s;
}
.screenshot-card:hover { transform: translateY(-4px); }
.screenshot-img-wrap { position: relative; overflow: hidden; max-height: 540px; }
.screenshot-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.screenshot-blur-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(20px);
  background: rgba(5,7,18,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .05em;
}
.screenshot-info { padding: 1.25rem; }
.screenshot-label {
  display: inline-block;
  background: rgba(255,79,154,.12);
  color: var(--pink);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .2rem .6rem;
  border-radius: 4px;
  margin-bottom: .5rem;
}
.screenshot-info h4 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.screenshot-info p  { color: var(--text-muted); font-size: .8rem; line-height: 1.5; }

/* ── Security ───────────────────────────────────────────────── */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.security-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.security-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.safety-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.safety-card .card-icon { flex-shrink: 0; }
.safety-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; }
.safety-card p  { color: var(--text-muted); font-size: .85rem; line-height: 1.5; }

@media (max-width: 768px) { .security-grid { grid-template-columns: 1fr; } }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  padding: 1.1rem 1.25rem;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}
.faq-question:hover { background: rgba(255,79,154,.08); }
.faq-icon { color: var(--pink); font-size: 1.25rem; font-weight: 400; flex-shrink: 0; transition: transform .2s; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--border);
}
.faq-answer.open { display: block; }
.faq-answer p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }

/* ── CTA Final ──────────────────────────────────────────────── */
.cta-section {
  background: var(--bg);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-glow {
  position: absolute;
  inset: -100px;
  background: radial-gradient(circle at 50% 50%, rgba(255,79,154,.15), transparent 60%);
  pointer-events: none;
}
.cta-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  margin: 1rem 0;
}
.cta-inner p { color: var(--text-dim); font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #030510;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p { color: var(--text-muted); font-size: .875rem; margin-top: .75rem; max-width: 280px; }
.footer-logo { height: 40px; width: auto; }
.footer-links { display: flex; gap: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-col h5 { color: #fff; font-size: .875rem; font-weight: 700; margin-bottom: .25rem; }
.footer-col a { color: var(--text-muted); font-size: .875rem; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: .8rem; }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
}

/* ── Admin link (hidden, for admin access) ──────────────────── */
.admin-access {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  opacity: 0;
  pointer-events: none;
  font-size: .7rem;
  color: var(--text-muted);
  text-decoration: none;
  z-index: 999;
  transition: opacity .3s;
}
.admin-access:hover { opacity: 1; pointer-events: auto; }
body:hover .admin-access { opacity: .15; }
/* Container do vídeo 9:16 */
.ppv-video-container {
  width: 100%;
  aspect-ratio: 9 / 16;  /* Mantém proporção 9:16 */
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* Vídeo dentro do container */
.ppv-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* Preenche sem distorcer */
}

/* Card do PPV */
.ppv-card {
  width: 290px;
  background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%);
  border: 1px solid rgba(255, 46, 122, 0.3);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
 
/* Responsivo */
@media (max-width: 768px) {
  .ppv-card {
    width: 100%;
  }
  
  .hero-section {
  padding: 1rem 0;
}
.container {
    padding: 0 0.8rem;
}
}