/* ===============================
   PREMIUM — GHOSTUNE (FINAL)
=============================== */

/* ===============================
   HERO — FULL WIDTH REAL
=============================== */
.premium-hero {
  width: 100%;
  background: radial-gradient(
    circle at top right,
    #2226DF,
    #0b0d1a 60%
  );
  color: #fff;
}

/* Container interno (centralizado) */
.premium-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 16px 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

/* ===============================
   TEXTO
=============================== */
.premium-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.premium-title span {
  display: inline-block;
  padding: 0.0em 0.2em;
  margin-top: 10px;
  background: linear-gradient(90deg, #EA646C, #2226DF);
  color: #fff;
  border-radius: 10px;
}

.premium-subtitle {
  font-size: 1.1rem;
  color: #d6d6e0;
  max-width: 520px;
  margin-bottom: 28px;
}

/* Checklist */
.premium-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.premium-checklist li {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.premium-checklist i {
  color: #EA646C;
}

/* Highlight */
.premium-highlight {
  margin-top: 20px;
  font-weight: 600;
  color: #EA646C;
  align-items: center;
  gap: 10px;
}

/* ===============================
   CARD DO PLANO
=============================== */
.premium-card {
  background: linear-gradient(160deg, #141633, #0d1026);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 25px 70px rgba(0,0,0,.55);
  position: relative;
}

/* Badge */
.premium-badge {
  position: absolute;
  top: -14px;
  right: 24px;

  background: #EA646C;
  color: #fff;

  padding: 6px 14px;
  border-radius: 999px;

  font-size: .75rem;
  font-weight: 700;
}

/* Plano */
.plan-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.plan-description {
  font-size: .95rem;
  color: #b9bbd3;
  margin-bottom: 18px;
}

/* Preço */
.plan-price {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.plan-price span {
  font-size: 1rem;
  opacity: .7;
}

/* Features */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.plan-features li {
  font-size: .95rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features i {
  color: #EA646C;
}

/* Botões */
.premium-btn {
  display: block;
  width: 100%;
  text-align: center;

  padding: 14px 18px;
  border-radius: 999px;

  background: linear-gradient(90deg, #EA646C, #2226DF);
  color: #fff;

  font-weight: 700;
  text-decoration: none;

  transition: transform .2s ease, box-shadow .2s ease;
}

.premium-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(234,100,108,.45);
}

.premium-btn.secondary {
  background: transparent;
  border: 1px solid #EA646C;
}

/* Nota */
.premium-note {
  margin-top: 14px;
  text-align: center;
  font-size: .85rem;
  color: #a0a3c0;
}

/* ===============================
   BENEFÍCIOS
=============================== */
.premium-benefits {
  padding: 0px 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 36px;
}

.benefit-item {
  background: #0f112a;
  padding: 32px;
  border-radius: 18px;
  text-align: center;
}

.benefit-item i {
  font-size: 2rem;
  color: #EA646C;
  margin-bottom: 14px;
}

/* ===============================
   FAQ
=============================== */
.premium-faq {
  padding: 40px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.faq-item i {
  font-size: 1.4rem;
  color: #2226DF;
}

/* ===============================
   RESPONSIVO
=============================== */
@media (max-width: 900px) {

  .premium-hero-inner {
    grid-template-columns: 1fr;
    padding: 16px 16px 40px;
    gap: 40px;
  }

  .premium-card {
    margin-top: 0px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}




/* ======================================================
   🎉 ASSINATURA CONCLUÍDA — PREMIUM SUCCESS
====================================================== */

:root {
  --bg-main: #0b0e14;
  --card-bg: radial-gradient(
    circle at top,
    #12172a 0%,
    #0b0e14 70%
  );
  --accent: #6c63ff;
  --accent-glow: rgba(108, 99, 255, 0.45);
  --text-main: #ffffff;
  --text-muted: #aab0c0;
  --border-soft: rgba(255, 255, 255, 0.08);
}

/* ======================================================
   🌌 CONTAINER GERAL
====================================================== */

.container-premium {
  min-height: 100vh;
  background: radial-gradient(
      circle at 30% 10%,
      rgba(108, 99, 255, 0.15),
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(99, 255, 215, 0.08),
      transparent 40%
    ),
    var(--bg-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 20px 60px;
  color: var(--text-main);
  overflow: hidden;
}

/* ======================================================
   🎧 LOGO
====================================================== */


/* ======================================================
   🔝 TOPO — LOGO CENTRALIZADA
====================================================== */
.legal-header-sucesso {
  width: 100%;
  padding: 1.5rem 1rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.legal-logo-sucesso {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #ffffff;
}


/* ======================================================
   💎 CARD DE SUCESSO
====================================================== */

.success-card {
  position: relative;
  width: 100%;
  max-width: 1024px;
  background: var(--card-bg);
  border-radius: 22px;
  padding: 36px 28px 34px;
  text-align: center;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px var(--border-soft);
  animation: cardEnter 0.6s ease-out;
}

@keyframes cardEnter {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Glow */
.success-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    var(--accent),
    transparent
  );
  opacity: 0.25;
  filter: blur(18px);
  z-index: -1;
}

/* ======================================================
   ✅ ÍCONE DE SUCESSO
====================================================== */

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
    background: linear-gradient(135deg, #EA646C, #2226DF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 25px var(--accent-glow);
}

.success-icon i {
  color: #fff;
  font-size: 1.6rem;
}

/* ======================================================
   📝 TEXTOS
====================================================== */

.success-title {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.success-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 22px;
}

.welcome-message {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 28px;
}

/* ======================================================
   🚀 PRÓXIMOS PASSOS
====================================================== */

.next-steps {
  margin-bottom: 26px;
}

.steps-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.steps-container {
  display: grid;
  gap: 12px;
  font-size: 1.6rem;
}

.step {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 14px 10px 16px;
  border: 1px solid var(--border-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(108, 99, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #ffffff;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}



.step-link {
  text-decoration: none;
  color: inherit;
}

.step-link:hover {
  text-decoration: none;
}

/* feedback visual de clique */
.step-link:hover {
  transform: translateY(-4px);
}

.step-link:active {
  transform: scale(0.98);
}


/* ======================================================
   🔘 BOTÕES
====================================================== */

.buttons-container-app {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}

.btn-sucesso {
  display: inline-flex;
  align-items: center;           /* central vertical */
  justify-content: center;       /* 🔥 central horizontal */
  gap: 10px;

  padding: 19px 22px;
  border-radius: 999px;

  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;

  cursor: pointer;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-sucesso i {
  font-size: 1.05rem;
  line-height: 1;                /* evita desalinhamento */
  display: flex;
  align-items: center;
}

.btn-primary-sucesso {
  background: linear-gradient(135deg, #EA646C, #2226DF);
  color: #fff;
  box-shadow: 0 8px 20px var(--accent-glow);
}

.btn-secondary-sucesso {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--border-soft);
}

.btn-sucesso:hover {
  transform: translateY(-2px);
}


/* ======================================================
   📩 CONTATO
====================================================== */

.contact-info {
  margin-top: 26px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
}

/* ======================================================
   🎊 CONFETTI CONTAINER
====================================================== */

#confetti-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
}

/* ======================================================
   📱 MOBILE
====================================================== */

@media (max-width: 420px) {
  .steps-container {
    grid-template-columns: 1fr;
  }

  .buttons-container-app {
    flex-direction: column;
  }
}
