:root {
  --bg-main: #0b141a;      /* fundo escuro estilo WhatsApp Web */
  --bg-alt: #111b21;
  --bg-card: #202c33;
  --bg-light: #ece5dd;
  --primary: #25d366;      /* verde claro WhatsApp */
  --primary-dark: #0a9f45;
  --accent: #34b7f1;
  --text-main: #f5f5f5;
  --text-muted: #b1b3b5;
  --border-subtle: #2a3942;
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.35);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-pill: 999px;
}

*,
*::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: radial-gradient(circle at top left, #18252f 0, #02060a 40%, #020202 100%);
  color: var(--text-main);
}

/* Layout helpers */

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

.section {
  padding: 80px 0;
}

.section-alt {
  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-muted);
  font-size: 0.98rem;
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 20, 26, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

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

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0, #6cf0a5 0, #25d366 45%, #0f7040 100%);
  display: grid;
  place-items: center;
  color: #0b141a;
  font-size: 1rem;
  font-weight: 700;
}

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

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  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: #ffffff;
}

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

/* Hero */

.hero {
  padding: 80px 0 72px;
  background: radial-gradient(circle at top right, #202c33 0, #0b141a 45%, #020202 100%);
}

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

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

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

.hero-bullets {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  color: var(--text-main);
  font-size: 0.96rem;
}

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

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

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

/* 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;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0b141a;
  box-shadow: 0 14px 30px rgba(9, 153, 69, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(9, 153, 69, 0.55);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-main);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

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

.btn-outline:hover {
  background: rgba(37, 211, 102, 0.08);
}

.btn-full {
  width: 100%;
}

/* Hero mockup */

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

.phone-frame {
  background: #000;
  padding: 10px 8px 14px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
  max-width: 320px;
  width: 100%;
}

.phone-frame img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

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

/* Cards */

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

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  font-size: 0.94rem;
}

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

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

/* Steps */

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

.step {
  background: #0b141a;
  border-radius: var(--radius-lg);
  padding: 20px 18px 22px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  font-size: 0.94rem;
  position: relative;
}

.step-number {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.6);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  color: var(--primary);
}

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

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

/* Pricing */

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

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 22px 20px 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
  position: relative;
}

.pricing-card-featured {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 22px 44px rgba(9, 153, 69, 0.7);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(37, 211, 102, 0.14);
  color: var(--primary);
  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-muted);
  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-muted);
  margin-top: 2px;
}

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

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

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

/* Contact */

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

.contact-text h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

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

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

.contact-highlight {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-main);
}

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

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #2a3942;
  padding: 9px 10px;
  background: #111b21;
  color: #f5f5f5;
  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 select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.5);
  background: #0b141a;
}

.contact-form textarea {
  resize: vertical;
}

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

/* Footer */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #02060a;
  padding: 18px 0 22px;
}

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

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

.footer-small {
  margin-top: 4px;
}

/* Responsive */

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

  .hero-copy {
    text-align: left;
  }

  .hero-bullets {
    max-width: 100%;
  }

  .hero-mockup {
    align-items: flex-start;
  }

  .cards-grid,
  .steps-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.1rem;
  }

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

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

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