/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    Roboto, sans-serif;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #000 100%);
  color: #e5e7eb;
  line-height: 1.6;
}

/* VARS */
:root {
  --primary: #f97316;
  --primary-soft: rgba(249, 115, 22, 0.14);
  --accent: #ec4899;
  --accent-soft: rgba(236, 72, 153, 0.16);
  --bg-elevated: rgba(15, 23, 42, 0.98);
  --border-soft: rgba(148, 163, 184, 0.28);
  --muted: #9ca3af;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.95);
}

/* GENERIC LAYOUT */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0 4.5rem;
}

.section-alt {
  background: radial-gradient(circle at top, #030712 0, #020617 40%, #020617);
}

.section-header {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: left;
}

.section-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 0.96rem;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(2, 6, 23, 0.94);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, var(--primary), var(--accent));
  box-shadow: 0 0 22px rgba(249, 115, 22, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #020617;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #f9fafb;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #f9fafb;
  box-shadow: 0 20px 50px rgba(248, 113, 22, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(248, 113, 22, 0.65);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.8);
  color: #e5e7eb;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(15, 23, 42, 0.9);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.25);
  color: var(--muted);
  background: transparent;
}

.btn-ghost:hover {
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.5);
}

.btn.full-width {
  width: 100%;
}

/* HERO */

.hero {
  padding: 5.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.gradient-text {
  background-image: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.hero-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

.hero-subtitle {
  color: var(--muted);
  max-width: 32rem;
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-meta span::before {
  content: "• ";
  color: var(--primary);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
}

.hero-badges span {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.95);
}

.hero-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 100%;
  border: 1px dashed rgba(248, 113, 22, 0.5);
  opacity: 0.7;
}

.hero-card {
  position: relative;
  width: 280px;
  border-radius: 24px;
  padding: 1.4rem;
  background: radial-gradient(circle at top left, #111827, #020617);
  border: 1px solid rgba(248, 113, 22, 0.6);
  box-shadow: var(--shadow-soft);
}

.hero-screen {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1rem;
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.95),
    rgba(30, 64, 175, 0.4)
  );
  margin-bottom: 1.1rem;
}

.hero-label {
  font-size: 0.75rem;
  color: #fed7aa;
  margin-bottom: 0.6rem;
}

.metrics-row {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.metric {
  flex: 1;
  border-radius: 12px;
  padding: 0.45rem 0.6rem;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.metric-label {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
}

.metric-value {
  font-size: 0.86rem;
  font-weight: 600;
  color: #fed7aa;
}

.chart-area {
  margin-bottom: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.chart-line {
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  overflow: hidden;
}

.chart-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: #fecaca;
}

.hero-tags span {
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.9);
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(248, 113, 22, 0.16);
  border: 1px solid rgba(248, 113, 22, 0.7);
  color: #ffedd5;
}

.pill-outline {
  background: transparent;
  border-color: rgba(236, 72, 153, 0.7);
  color: #f9a8d4;
}

.hero-glow {
  position: absolute;
  bottom: -40px;
  width: 240px;
  height: 90px;
  background: radial-gradient(circle, rgba(248, 113, 22, 0.6), transparent 70%);
  filter: blur(12px);
  opacity: 0.9;
}

.hero-strip {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.4rem 0;
  margin-top: 1.5rem;
  background: radial-gradient(circle at top, #020617, #020617);
}

.hero-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  font-size: 0.8rem;
  color: var(--muted);
  justify-content: center;
}

/* GRIDS & CARDS */

.grid-3 {
  display: grid;
  gap: 1.8rem;
}

.grid-2 {
  display: grid;
  gap: 1.8rem;
}

.card {
  border-radius: 20px;
  padding: 1.7rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ABOUT GRID */

.about-grid .card {
  background: radial-gradient(
    circle at top left,
    var(--primary-soft),
    #020617
  );
}

/* STEPS */

.steps-grid {
  display: grid;
  gap: 1.5rem;
}

.step-card {
  border-radius: 20px;
  padding: 1.6rem 1.7rem 1.5rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.32);
  position: relative;
}

.step-number {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  font-size: 2.3rem;
  font-weight: 700;
  color: rgba(248, 113, 22, 0.14);
}

/* AUDIENCE */

.audience-card ul {
  list-style: none;
  font-size: 0.9rem;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.audience-card li::before {
  content: "• ";
  color: var(--primary);
}

.audience-card.alt {
  background: radial-gradient(circle at top left, var(--accent-soft), #020617);
}

/* BÔNUS */

.bonus-card {
  background: radial-gradient(circle at top left, var(--primary-soft), #020617);
}

/* TESTIMONIALS */

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 14px;
  font-size: 2.8rem;
  color: rgba(248, 113, 22, 0.35);
}

.testimonial-text {
  margin-top: 1.2rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.testimonial-author {
  font-weight: 500;
}

.testimonial-role {
  font-size: 0.84rem;
  color: var(--muted);
}

/* PRICING */

.pricing-section {
  position: relative;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
}

.pricing-card.destaque {
  background: radial-gradient(circle at top left, var(--accent-soft), #020617);
  border-color: rgba(236, 72, 153, 0.7);
}

.pricing-highlight {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-main {
  font-size: 1.8rem;
  font-weight: 600;
}

.price-note {
  font-size: 0.86rem;
  color: var(--muted);
}

.pricing-list {
  list-style: none;
  font-size: 0.9rem;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pricing-list li::before {
  content: "• ";
  color: var(--primary);
}

.pricing-garantie {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* FAQ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  width: 100%;
  text-align: left;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  background: var(--bg-elevated);
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.faq-item.open {
  border-color: var(--primary);
  background: radial-gradient(circle at top left, var(--primary-soft), #020617);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.faq-question span:first-child {
  font-size: 0.95rem;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--muted);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--muted);
  padding-top: 0.5rem;
}

/* CTA FINAL */

.cta-section {
  padding: 4rem 0 3.5rem;
  background: radial-gradient(circle at center, var(--primary-soft), #020617);
}

.final-cta .cta-inner {
  align-items: flex-start;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.cta-inner h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.cta-inner p {
  color: #fed7aa;
  max-width: 480px;
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 260px;
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.2rem 0 1.6rem;
  background: #020617;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ANIMAÇÃO */

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVO */

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    position: absolute;
    inset: 56px 1.5rem auto;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.3);
    display: none;
    flex-direction: column;
    gap: 0.8rem;
  }

  .nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-strip-inner {
    justify-content: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
