:root {
  --bg-main: #050816;
  --bg-alt: #0b1020;
  --bg-card: #0f172a;
  --bg-highlight: #020617;
  --primary: #00e6a8;
  --primary-soft: rgba(0, 230, 168, 0.12);
  --secondary: #38bdf8;
  --accent: #facc15;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.4);
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.75);
  --shadow-card: 0 14px 30px rgba(15, 23, 42, 0.65);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #1e293b 0, #020617 45%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
}

/* UTILITÁRIOS */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.98),
    rgba(15, 23, 42, 0.92),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo-mark {
  background: radial-gradient(circle at top left, var(--primary), #22c55e);
  color: #020617;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
}

.logo-text {
  font-size: 1rem;
  color: #e5e7eb;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 999px;
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: #e5e7eb;
}

.nav-links a:hover::after {
  width: 100%;
}

/* BOTÕES */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #22c55e);
  color: #020617;
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.75);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), #6366f1);
  color: #020617;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.55);
}

.btn-secondary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.75);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.6);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.btn-ghost:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

.full-width {
  width: 100%;
}

/* HERO */

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 3.1vw, 3rem);
  line-height: 1.15;
  margin: 0 0 0.9rem;
}

.gradient-text {
  display: block;
  background: linear-gradient(120deg, var(--primary), var(--secondary), #f97316);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 610px;
  margin-bottom: 1.4rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.old-price {
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.6);
  text-decoration: line-through;
}

.price-row {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e5e7eb;
}

.current-price {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  color: transparent;
}

.price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.hero-guarantee {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-card {
  display: flex;
  justify-content: flex-end;
}

.hero-card-inner {
  background: radial-gradient(circle at top left, #1f2937, #020617);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card-inner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top, rgba(56, 189, 248, 0.12), transparent 65%),
    radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.13), transparent 70%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-card-inner h2 {
  position: relative;
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-size: 1.2rem;
}

.hero-card-inner ul {
  position: relative;
  padding-left: 1.1rem;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-card-inner li {
  margin-bottom: 0.4rem;
}

.hero-highlight {
  position: relative;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.mini-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.mini-text.center {
  text-align: center;
}

/* SEÇÕES GENÉRICAS */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: rgba(15, 23, 42, 0.9);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.4rem;
}

.section-header h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* BENEFÍCIOS */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #020617);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.3rem 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-card);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* COMO FUNCIONA */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step-card {
  position: relative;
  padding-top: 1.4rem;
}

.step-card .step-number {
  position: absolute;
  top: -0.6rem;
  left: 1rem;
  background: radial-gradient(circle at top, var(--primary), #22c55e);
  color: #020617;
  border-radius: 999px;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid #020617;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.75);
}

/* PARA QUEM É */

.para-quem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* VÍDEO */

.video-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: center;
}

.video-text h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.video-text p {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.video-text ul {
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.video-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  background: #020617;
}

.video-wrapper iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* TESTEMUNHOS */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.testimonial-card {
  background: radial-gradient(circle at top left, #111827, #020617);
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.2rem 1.25rem;
  box-shadow: var(--shadow-card);
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.avatar-circle {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: radial-gradient(circle at top, var(--secondary), #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  font-weight: 700;
}

/* PREÇO / OFERTA */

.section-highlight {
  background: radial-gradient(circle at top, #1e293b, #020617 60%, #000 100%);
}

.pricing-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.95);
}

.pricing-header h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  margin-top: 1.6rem;
}

.pricing-tag {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  border: 1px solid rgba(34, 197, 94, 0.9);
  margin-bottom: 0.9rem;
}

.pricing-values {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 0.3rem;
}

.pricing-old {
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.6);
  text-decoration: line-through;
}

.pricing-current {
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  color: transparent;
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.pricing-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-list li {
  margin-bottom: 0.4rem;
}

.guarantee-box {
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.15), #020617);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(74, 222, 128, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* FAQ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #e5e7eb;
  padding: 0.9rem 1rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  cursor: pointer;
}

.faq-icon {
  margin-left: 1rem;
  font-size: 1.1rem;
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  padding: 0 1rem;
}

.faq-answer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 0.8rem;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 0.7rem;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.6rem 0 1.2rem;
  background: #020617;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ANIMAÇÕES SCROLL */

.scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVO */

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero-card {
    justify-content: stretch;
  }

  .pricing-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .video-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 840px) {
  .benefits-grid,
  .steps-grid,
  .para-quem-grid,
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .navbar {
    background: rgba(15, 23, 42, 0.98);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3.2rem;
  }

  .nav-content {
    padding-inline: 0;
  }

  .section {
    padding: 3rem 0;
  }

  .pricing-card {
    padding: 1.6rem 1.3rem;
  }
}
