:root {
  --bg-body: #020617;          /* fundo escuro estilo fintech */
  --bg-hero: #020617;
  --bg-section: #0b1220;
  --bg-alt: #0f172a;
  --bg-card: #020617;
  --primary: #22c55e;          /* verde dinheiro */
  --primary-soft: #4ade80;
  --primary-dark: #16a34a;
  --accent: #0ea5e9;           /* azul para detalhes */
  --text-main: #e5e7eb;
  --text-soft: #9ca3af;
  --border-soft: #1f2937;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.6);
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
}

/* Layout helpers */

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

.section {
  padding: 80px 0;
  background: var(--bg-section);
}

.section-alt {
  padding: 80px 0;
  background: var(--bg-alt);
}

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

.section-header h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.section-header p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0, #4ade80 0, #22c55e 45%, #052e16 100%);
  display: grid;
  place-items: center;
  color: #0b1120;
  font-size: 1rem;
}

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

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  padding: 6px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: width 0.2s ease;
}

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

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

/* Hero */

.hero {
  padding: 80px 0 76px;
  background: radial-gradient(circle at top left, #1f2937 0, #020617 45%, #020617 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 60px;
  align-items: center;
}

.hero-copy h1 {
  font-size: 2.7rem;
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-subtitle {
  margin: 0 0 16px;
  color: var(--text-soft);
  max-width: 540px;
}

.hero-badge {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(34, 197, 94, 0.08);
  color: var(--primary-soft);
  font-size: 0.86rem;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.hero-bullets {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  font-size: 0.95rem;
}

.hero-bullets li + li {
  margin-top: 4px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease,
    color 0.12s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #020617;
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 52px rgba(22, 163, 74, 0.7);
}

.btn-ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(156, 163, 175, 0.5);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.8);
}

.btn-outline {
  background: transparent;
  color: var(--primary-soft);
  border-color: rgba(34, 197, 94, 0.5);
}

.btn-outline:hover {
  background: rgba(22, 163, 74, 0.09);
}

.btn-full {
  width: 100%;
}

/* Hero mockup */

.hero-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mockup-card {
  background: #020617;
  border-radius: 30px;
  padding: 18px 18px 20px;
  border: 1px solid #111827;
  box-shadow: var(--shadow-soft);
  max-width: 360px;
  width: 100%;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mockup-title {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.mockup-pill {
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(34, 197, 94, 0.15);
  color: var(--primary-soft);
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.mockup-body {
  background: #020617;
  border-radius: 22px;
  border: 1px solid #111827;
  padding: 10px 10px 12px;
}

.mockup-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.mockup-col {
  flex: 1;
}

.mockup-label {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin: 0 0 2px;
}

.mockup-value {
  font-size: 0.86rem;
  margin: 0;
}

.mockup-right {
  text-align: right;
}

.mockup-timeline {
  margin: 10px 0 10px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item .line {
  width: 3px;
  border-radius: 999px;
  margin-top: 4px;
  height: 30px;
  background: #1f2937;
}

.timeline-item.ok .line {
  background: var(--primary-soft);
}

.timeline-item.alert .line {
  background: #f97316;
}

.timeline-item .bubble {
  background: #020617;
  border-radius: 12px;
  padding: 6px 9px;
  border: 1px solid #1f2937;
  font-size: 0.8rem;
}

.timeline-item .bubble span {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  color: var(--text-soft);
}

.mockup-footer {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}

.btn-mini {
  flex: 1;
  font-size: 0.78rem;
  border-radius: 999px;
  padding: 6px 8px;
  border: none;
  cursor: pointer;
  background: rgba(34, 197, 94, 0.15);
  color: var(--primary-soft);
}

.btn-mini.ghost {
  background: #020617;
  border: 1px solid #1f2937;
  color: var(--text-soft);
}

.mockup-caption {
  font-size: 0.84rem;
  color: var(--text-soft);
  text-align: center;
}

/* Cards */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: #020617;
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
  font-size: 0.95rem;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--text-soft);
}

/* Steps */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.step {
  background: #020617;
  border-radius: var(--radius-lg);
  padding: 20px 18px 22px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
  position: relative;
  font-size: 0.95rem;
}

.step-number {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.6);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  color: #7dd3fc;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.step p {
  margin: 0;
  color: var(--text-soft);
}

/* Funcionalidades */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  background: #020617;
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
  font-size: 0.95rem;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  background: #020617;
  border-radius: var(--radius-lg);
  padding: 22px 20px 24px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  position: relative;
}

.pricing-card-featured {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 28px 80px rgba(34, 197, 94, 0.45);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(14, 165, 233, 0.12);
  color: #7dd3fc;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.pricing-card h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.pricing-tagline {
  margin: 0 0 12px;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.pricing-price {
  margin: 0 0 16px;
  font-size: 1.45rem;
  font-weight: 600;
}

.pricing-price span {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-soft);
  margin-top: 2px;
}

.pricing-features {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.pricing-features li + li {
  margin-top: 6px;
}

.pricing-note {
  margin-top: 18px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-soft);
}

/* Contato */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.contact-text h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.contact-text ul {
  margin: 10px 0 0 18px;
  padding: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.contact-text li + li {
  margin-top: 4px;
}

.contact-form-wrapper {
  background: #020617;
  border-radius: var(--radius-lg);
  padding: 22px 20px 24px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.contact-form .form-group {
  margin-bottom: 12px;
}

.contact-form label {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #1f2937;
  padding: 9px 10px;
  background: #020617;
  color: #e5e7eb;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.6);
}

.contact-form textarea {
  resize: vertical;
}

.contact-footnote {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* Footer */

.footer {
  border-top: 1px solid #111827;
  background: #020617;
  padding: 18px 0 22px;
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* Responsivo */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cards-grid,
  .steps-grid,
  .feature-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .cards-grid,
  .steps-grid,
  .feature-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-card-featured {
    transform: none;
  }
}
