* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-background: #000000;
  --color-foreground: #ffffff;
  /* Alterando cinza de #737373 para #e5e5e5 (bem mais claro, quase branco) */
  --color-muted: #e5e5e5;
  --color-accent: #34d399;
  --color-card: #0a0a0a;
  --color-border: #1a1a1a;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Diminuindo padding de 5rem para 2rem para reduzir espaço no topo */
  padding: 2rem 1rem;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(120, 255, 214, 0.05), transparent 50%);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 4rem 4rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  background-color: var(--color-card);
  font-size: 0.875rem;
  color: var(--color-muted);
}

.badge .icon {
  color: var(--color-accent);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.accent-text {
  color: var(--color-accent);
}

.hero-description {
  max-width: 42rem;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-muted);
}

/* Adicionado estilo para o botão CTA na hero section */
.hero-cta-button {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  color: #000;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3);
  margin-bottom: 2rem;
}

.hero-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(52, 211, 153, 0.5);
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.hero-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.price-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-check svg {
  color: var(--color-accent);
}

.price-detail {
  font-size: 0.75rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  animation: bounce 2s infinite;
}

.scroll-indicator p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

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

/* Stats Section */
.stats {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background-color: rgba(10, 10, 10, 0.5);
  padding: 4rem 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Features Section */
.features {
  padding: 6rem 1rem;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-description {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  background-color: var(--color-card);
  padding: 2rem;
  transition: border-color 0.3s;
  /* Adicionado background gradient e glow effect para destaque visual */
  position: relative;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.03) 0%, rgba(10, 10, 10, 0.95) 50%);
  overflow: hidden;
}

/* Adicionado efeito de glow sutil no background */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(52, 211, 153, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  border-color: rgba(52, 211, 153, 0.5);
  /* Adicionado box-shadow no hover para mais destaque */
  box-shadow: 0 0 30px rgba(52, 211, 153, 0.15);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  /* Melhorado o background do ícone com gradient e glow */
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(52, 211, 153, 0.05));
  color: var(--color-accent);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-description {
  line-height: 1.6;
  color: var(--color-muted);
}

/* Pricing Section */
.pricing {
  padding: 6rem 1rem;
}

.container-small {
  max-width: 64rem;
  margin: 0 auto;
}

/* Adicionado banner de promoção de lançamento acima do card de pagamento */
.launch-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(52, 211, 153, 0.05));
  border: 2px solid #34d399;
  border-radius: 12px;
  padding: 1.25rem 2rem;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  color: #e5e5e5;
  box-shadow: 0 0 30px rgba(52, 211, 153, 0.3);
  animation: pulse-border 2s ease-in-out infinite;
}

.launch-promo svg {
  color: #34d399;
  flex-shrink: 0;
}

.launch-promo strong {
  color: #34d399;
  font-weight: 700;
}

@keyframes pulse-border {
  0%, 100% {
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(52, 211, 153, 0.5);
  }
}

.pricing-card {
  position: relative;
  border: 1px solid var(--color-accent);
  border-radius: 0.5rem;
  background-color: var(--color-card);
  overflow: hidden;
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5rem 1rem;
  border-bottom-left-radius: 0.5rem;
  background-color: var(--color-accent);
  color: #000;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-content {
  padding: 3rem 2rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-value {
  font-size: 4rem;
  font-weight: 700;
}

.price-period {
  font-size: 1.125rem;
  color: var(--color-muted);
}

.pricing-next {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pricing-feature svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--color-accent);
}

.pricing-feature span {
  line-height: 1.6;
}

.pricing-button {
  width: 100%;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  background-color: var(--color-accent);
  color: #000;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}

.pricing-button:hover {
  opacity: 0.9;
}

.pricing-footer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* CTA Section */
.cta {
  padding: 6rem 1rem;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-description {
  max-width: 42rem;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.cta-button {
  min-width: 250px;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  background-color: var(--color-accent);
  color: #000;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}

.cta-button:hover {
  opacity: 0.9;
}

/* Footer */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 2rem 1rem;
  text-align: center;
}

.footer p {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Responsive */
@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .cta-title {
    font-size: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-content {
    padding: 3rem;
  }
}
