:root {
  --primary: #8b5cf6;
  --primary-dark: #6d28d9;
  --primary-soft: #ede9fe;
  --text: #111827;
  --muted: #64748b;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e5e7eb;
}

* {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

.navbar-custom {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.navbar-logo {
  height: 58px;
}

.nav-link {
  color: #334155;
  font-weight: 700;
}

.nav-link:hover {
  color: var(--primary);
}

.btn-main {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 16px;
  padding: 14px 24px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 14px 35px rgba(139, 92, 246, 0.28);
  transition: 0.25s;
}

.btn-main:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 20px 45px rgba(139, 92, 246, 0.38);
}

.btn-outline-main {
  border: 1px solid var(--primary);
  color: var(--primary-dark);
  border-radius: 16px;
  padding: 14px 24px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  transition: 0.25s;
}

.btn-outline-main:hover {
  background: var(--primary-soft);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(139, 92, 246, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 10% 15%,
      rgba(14, 165, 233, 0.16),
      transparent 32%
    ),
    linear-gradient(180deg, #fff, #f8fafc);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.55;
  animation: float 7s ease-in-out infinite;
}

.hero::before {
  width: 280px;
  height: 280px;
  background: #ddd6fe;
  right: -80px;
  top: 130px;
}

.hero::after {
  width: 190px;
  height: 190px;
  background: #bae6fd;
  left: -70px;
  bottom: 90px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-22px);
  }
}

.hero-logo {
  width: 260px;
  max-width: 80%;
  margin-bottom: 28px;
  filter: drop-shadow(0 18px 30px rgba(139, 92, 246, 0.2));
  animation: fadeUp 0.7s ease both;
}

.badge-soft {
  background: var(--primary-soft);
  color: var(--primary-dark);
  border: 1px solid #ddd6fe;
  padding: 9px 16px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 800;
  margin-bottom: 18px;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-size: clamp(2.3rem, 6vw, 4.7rem);
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: -0.05em;
  animation: fadeUp 0.9s ease both;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  color: var(--muted);
  font-size: 1.17rem;
  max-width: 660px;
  animation: fadeUp 1s ease both;
}

.hero-actions {
  animation: fadeUp 1.1s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-panel {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
  animation: slideIn 1s ease both;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mock-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.progress-soft {
  height: 10px;
  border-radius: 999px;
  background: #eef2ff;
  overflow: hidden;
}

.progress-soft span {
  display: block;
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #38bdf8);
  border-radius: 999px;
}

.section {
  padding: 86px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-subtitle {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 42px;
}

.feature-card,
.faq-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  transition: 0.25s;
}

.feature-card:hover,
.faq-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.1);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 1.65rem;
  margin-bottom: 18px;
}

.compare-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 18px;
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.08);
}

.table {
  margin-bottom: 0;
}

.table th {
  color: #111827;
}

.table td {
  color: #334155;
}

.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
  transition: 0.25s;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-9px) scale(1.01);
  box-shadow: 0 35px 90px rgba(139, 92, 246, 0.18);
}

.plan-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 35px 90px rgba(139, 92, 246, 0.23);
}

.plan-card.featured::before {
  content: "Mais escolhido";
  position: absolute;
  right: -36px;
  top: 24px;
  transform: rotate(38deg);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 900;
  padding: 8px 44px;
  font-size: 0.8rem;
}

.plan-title {
  font-weight: 950;
  font-size: 1.35rem;
}

.price {
  font-size: 2.35rem;
  font-weight: 950;
  color: var(--primary-dark);
  letter-spacing: -0.04em;
}

.plan-list li {
  margin-bottom: 10px;
  color: #334155;
}

.cta-band {
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.2),
      transparent 30%
    ),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 36px;
  padding: 54px 30px;
  color: #fff;
  box-shadow: 0 35px 90px rgba(109, 40, 217, 0.32);
}

.cta-band p {
  color: #ede9fe;
}

footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.7s ease;
}

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

@media (max-width: 768px) {
  .navbar-logo {
    height: 48px;
  }

  .hero {
    padding: 70px 0;
    min-height: auto;
  }

  .hero-panel {
    margin-top: 20px;
  }

  .section {
    padding: 64px 0;
  }

  .plan-card.featured::before {
    display: none;
  }
}
a {
  text-decoration: none;
}

.nav-link,
.btn-main,
.btn-outline-main {
  text-decoration: none !important;
}

.faq-card h5,
.faq-card p,
.plan-list li {
  text-decoration: none !important;
}
.faq-card {
  padding: 34px;
}

.faq-card h5 {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #111827;
}

.faq-card p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #64748b;
}

#faq .row {
  row-gap: 28px;
}
