/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0F172A;
  color: #F1F5F9;
  scroll-behavior: smooth;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 140px 20px;
  background: radial-gradient(circle at top, #1E3A8A, #0F172A);
  position: relative;
  overflow: hidden;
}

/* brilho no fundo */
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: #22C55E;
  filter: blur(180px);
  opacity: 0.15;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero p {
  opacity: 0.8;
  margin-bottom: 30px;
  font-size: 18px;
}

/* BOTÕES */
.btn {
  background: linear-gradient(135deg, #22C55E, #16a34a);
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5);
}

.btn-outline {
  margin-left: 10px;
  background: transparent;
  border: 1px solid #22C55E;
  color: #22C55E;
}

.btn-outline:hover {
  background: #22C55E;
  color: black;
}

/* SECTIONS */
.section {
  padding: 90px 20px;
  text-align: center;
}

.bg-dark {
  background: #020617;
}

.section h2 {
  margin-bottom: 20px;
  font-size: 32px;
}

.section p {
  max-width: 650px;
  margin: auto;
  color: #94A3B8;
  line-height: 1.6;
}

/* STEPS */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.step {
  background: #020617;
  padding: 20px;
  border-radius: 12px;
  width: 200px;
  border: 1px solid #1E293B;
}

.step span {
  display: block;
  font-size: 22px;
  font-weight: bold;
  color: #22C55E;
  margin-bottom: 10px;
}

/* CARDS */
.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.card {
  background: #020617;
  padding: 25px;
  border-radius: 12px;
  width: 260px;
  transition: 0.3s;
  border: 1px solid #1E293B;
  position: relative;
  overflow: hidden;
}

/* efeito glow */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, #22C55E20, transparent);
  opacity: 0;
  transition: 0.3s;
}

.card:hover::after {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #22C55E;
}

/* POINTSPAY */
.pointspay {
  position: relative;
}

/* GRID IMPACTO */
.impact-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* TABELA */
.table-box {
  background: #020617;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #1E293B;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  padding: 10px 15px;
  text-align: center;
}

th {
  color: #22C55E;
}

td {
  color: #94A3B8;
}

.pos {
  color: #22C55E;
}

.neg {
  color: #ef4444;
}

/* GRÁFICO */
.chart-box {
  background: #020617;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #1E293B;
}

/* FORM */
.form {
  margin-top: 40px;
  max-width: 400px;
  margin-inline: auto;
}

.form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  background: #020617;
  color: white;
  transition: 0.3s;
}

.form input:focus {
  outline: none;
  border: 1px solid #22C55E;
  box-shadow: 0 0 10px #22C55E50;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  color: #64748b;
}

/* ANIMAÇÃO */
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* ROLE (cargo) */
.role {
  display: block;
  font-size: 14px;
  color: #22C55E;
  margin-bottom: 10px;
  font-weight: 600;
}

/* LINHAS CONGELADAS */
.freeze {
  opacity: 0.4;
}

.freeze-text {
  color: #64748b;
}

/* RECOMEÇO */
.restart {
  background: rgba(34, 197, 94, 0.08);
}

/* ANIMAÇÃO DE "FOGO" NO TÍTULO */
.pointspay h2 {
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #22C55E;
  }
  to {
    text-shadow: 0 0 20px #22C55E, 0 0 30px #22C55E;
  }
}

/* RESUMO POINTSPAY */
.points-resumo {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.resumo-card {
  background: #020617;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #1E293B;
  width: 220px;
  text-align: center;
  transition: 0.3s;
}

.resumo-card:hover {
  transform: translateY(-5px);
  border-color: #22C55E;
}

.resumo-card h4 {
  margin-bottom: 10px;
  color: #94A3B8;
}

.valor {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}

.destaque {
  color: #22C55E;
}

.money {
  color: #facc15;
}

/* EXEMPLO IA */
.ai-example {
  margin-top: 50px;
}

.chat-box {
  background: #020617;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #1E293B;
  text-align: left;
  max-width: 600px;
  margin: 20px auto 0;
}

.chat-box p {
  margin-bottom: 10px;
  color: #94A3B8;
}

.chat-box strong {
  color: #22C55E;
}

.footer {
  text-align: center;
  padding: 30px 20px;
  background: #020617;
  border-top: 1px solid #0f172a;
}

.admin-btn {
  margin-top: 15px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid #22C55E;
  background: transparent;
  color: #22C55E;
  cursor: pointer;
  transition: 0.3s;
  font-size: 12px;
}

.admin-btn:hover {
  background: #22C55E;
  color: #020617;
}

.store {
  text-align: center;
}

.store-image {
  margin-top: 30px;
}

.store-image img {
  max-width: 100%;
  height: auto;
  width: 420px;
  transition: 0.3s;
}

.store-image img:hover {
  transform: scale(1.05);
}

.store-note {
  margin-top: 20px;
  font-size: 14px;
  color: #64748b;
}