/* ====== BASE ====== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #020406;
  color: #fff;
  text-align: center;
  overflow-x: hidden;
}

/* FUNDO FIXO E AURORA */
.main-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 10% 30%, #080c1a 0%, #020406 100%);
}

.aurora-path {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 600%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1000 5000" xmlns="http://www.w3.org/2000/svg"><path d="M1000 0 Q 750 500 900 1200 T 750 2500 T 900 3800 T 750 5000 L 1000 5000 Z" fill="black"/></svg>');
  mask-size: cover;
  opacity: 0.8;
  filter: blur(20px);
}

.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--duration) infinite ease-in-out;
}
@keyframes twinkle { 0%, 100% { opacity: 0.1; } 50% { opacity: 0.8; } }

/* ====== HERO ====== */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.hero-content { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-verse { max-width: 760px; margin-bottom: 10px; }
.hero-verse-quote {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  line-height: 1.5;
  color: #e2e8f0;
  text-shadow: 0 0 16px rgba(124, 58, 237, 0.5), 0 0 28px rgba(79, 70, 229, 0.35);
  letter-spacing: 0.02em;
  margin: 0 0 8px 0;
}
.hero-verse-ref { display: inline-block; margin-top: 6px; color: #cbd5e1; font-style: normal; font-weight: 700; }
.hero-verse-call {
  margin: 0;
  font-weight: 900;
  font-size: clamp(1.1rem, 3.2vw, 1.5rem);
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 0 18px rgba(124, 58, 237, 0.6);
}
.hero-logo { width: 220px; margin-bottom: 30px; }
.headline { font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 900; line-height: 1; margin: 0 0 20px 0; text-transform: uppercase; }
.neon-text { text-shadow: 0 0 15px rgba(139, 92, 246, 0.8), 0 0 30px rgba(139, 92, 246, 0.4); }
.subheadline { font-size: 1.3rem; color: #94a3b8; max-width: 700px; margin: 0 auto 40px; }

/* ====== BOTAO CTA ====== */
.cta-button {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  color: white; border: none; padding: 20px 50px; border-radius: 50px;
  font-weight: 800; font-size: 1.2rem; cursor: pointer; transition: 0.3s;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}
.cta-button:hover { transform: scale(1.05); box-shadow: 0 0 50px rgba(124, 58, 237, 0.8); }

/* ====== FEATURES (BEIJO DOS ELEMENTOS) ====== */
.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 75vh;
  padding: 40px 0;
}
.feature.reverse { flex-direction: row-reverse; }

.feature .text {
  flex: 0 0 450px;
  text-align: left;
  z-index: 10;
  margin: 0 -30px;
}

.neon-white {
  font-size: 2.3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.power-sub { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 15px; line-height: 1.3; }
.feature-list { list-style: none; padding: 0; color: #94a3b8; }
.feature-list li { margin-bottom: 6px; font-size: 0.85rem; display: flex; align-items: flex-start; }
.feature-list li::before { content: "✓"; color: #fff; font-weight: 900; margin-right: 10px; text-shadow: 0 0 5px #fff; }

.mockup-container { flex: 0 0 400px; display: flex; justify-content: center; align-items: center; }
.mockup { width: 290px; height: auto; max-height: 65vh; filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.3)); }

/* ====== PREÇOS (CARDS) ====== */
.pricing-section,
.plans-cards { padding: 80px 20px; display: flex; flex-direction: column; align-items: center; }
.pricing-container,
.plans-cards .pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 50px auto 0;
  width: 100%;
}
.price-card,
.plans-cards .price-card {
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 30px;
  border-radius: 20px;
  width: 100%;
  transition: 0.3s;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-card:hover,
.plans-cards .price-card:hover { border-color: #7c3aed; transform: translateY(-10px); }
.price-card.featured,
.plans-cards .price-card.featured { border-color: #7c3aed; background: #161b22; transform: scale(1.05); }

.price-card h3,
.plans-cards .price-card h3 { font-size: 1.1rem; margin-bottom: 20px; color: #fff; }
.price,
.plans-cards .price { font-size: 2.2rem; font-weight: 900; margin-bottom: 15px; color: #fff; }
.price span,
.plans-cards .price span { font-size: 0.9rem; color: #94a3b8; }
.price-card p,
.plans-cards .price-card p { font-size: 0.85rem; color: #94a3b8; margin-bottom: 25px; }
.price-card ul,
.plans-cards .price-card ul {
  list-style: none;
  padding: 0;
  text-align: center;
  margin: 0 auto 35px;
  width: 100%;
}
.price-card li,
.plans-cards .price-card li { font-size: 0.85rem; margin-bottom: 12px; color: #fff; }

.price-button,
.plans-cards .price-button {
  display: block;
  text-decoration: none;
  background: #7c3aed;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-weight: 800;
  transition: 0.3s;
  font-size: 0.9rem;
}
.price-button.secondary,
.plans-cards .price-button.secondary { background: rgba(255,255,255,0.05); }
.price-button:hover,
.plans-cards .price-button:hover { background: #4f46e5; }

.plans-cards .price-button:disabled { opacity: 0.6; cursor: not-allowed; }

.badge,
.plans-cards .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #7c3aed;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
}

/* ====== FOOTER ====== */
.cta-final { padding: 100px 20px; }
footer { padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-logo { width: 160px; margin-bottom: 30px; }
.social img { width: 30px; margin: 0 15px; }

@media (max-width: 968px) {
  .feature, .feature.reverse { flex-direction: column; text-align: center; }
  .feature .text { flex: 0 0 auto; margin: 0; padding: 20px; text-align: center; }
  .mockup-container { flex: 0 0 auto; }
}

@media (max-width: 1024px) {
  .pricing-container,
  .plans-cards .pricing-container {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-top: 30px;
  }

  .price-card.featured,
  .plans-cards .price-card.featured {
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .pricing-section,
  .plans-cards {
    padding: 60px 16px;
  }

  .price-card,
  .plans-cards .price-card {
    padding: 30px 22px;
  }

  .price,
  .plans-cards .price {
    font-size: 2rem;
  }
}