@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #f8f6f2;
  --surface: #ffffff;
  --ink: #1f2a24;
  --muted: #5b6b61;
  --primary: #0f5b4f;
  --primary-dark: #0a4037;
  --accent: #d8b46a;
  --line: #e6e0d8;
  --shadow: 0 18px 50px rgba(15, 32, 28, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  margin: 0 0 0.6rem 0;
}

p {
  margin: 0 0 1rem 0;
  color: var(--muted);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}

.brand-icon {
  width: 34px;
  height: 34px;
}

.nav {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
}

.nav-cta {
  color: var(--primary);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 32, 28, 0.12);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--line);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--primary);
  background: transparent;
}

.hero {
  position: relative;
  padding: 4rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 2.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.2rem 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-badges span {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-media .mockup {
  background: #fff;
  border-radius: 24px;
  padding: 0.8rem;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.hero-glow {
  position: absolute;
  right: 8%;
  top: 20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(216, 180, 106, 0.35), transparent 60%);
  filter: blur(10px);
  z-index: -1;
}

.section {
  padding: 3.5rem 0;
}

.section-sub {
  max-width: 720px;
}

.cards {
  display: grid;
  gap: 1.2rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.3rem;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 32, 28, 0.06);
}

.feature-list {
  display: grid;
  gap: 1.2rem;
}

.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--line);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(15, 91, 79, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.step {
  padding: 1.1rem;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--line);
}

.step span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.split {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill-list span {
  padding: 0.5rem 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
}

.gallery {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery figure {
  margin: 0;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 0.8rem;
  box-shadow: 0 12px 28px rgba(15, 32, 28, 0.08);
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.gallery figcaption {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-box {
  background: var(--primary);
  color: #fff;
  padding: 2rem;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.82);
}

.form-wrap {
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: 22px;
}

form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--ink);
}

input {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.form-status {
  color: var(--primary);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1rem;
  border-radius: 16px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer a {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1bb058;
  color: #fff;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 2.5rem;
  }

  .cta-box {
    text-align: left;
  }

  .whatsapp {
    right: 16px;
    bottom: 16px;
  }
}
