/* ===============================
   VARIABLES
=============================== */
/* ===============================
   MIXINS
=============================== */
/* ===============================
   GLOBAL
=============================== */
html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: #222;
}

main {
  padding-top: 90px;
}

img {
  width: 100%;
  border-radius: 12px;
}

/* ===============================
   NAVBAR
=============================== */
.navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-weight: 600;
}
.navbar-brand img {
  height: 80px;
  width: 100%;
}

/* ===============================
   HERO
=============================== */
.hero {
  background: linear-gradient(120deg, #4c8230, #5A973A);
  color: #fff;
  padding: 120px 0 80px;
  text-align: center;
}
.hero h1 {
  font-weight: 800;
  margin-bottom: 20px;
}
.hero p {
  max-width: 700px;
  margin: 0 auto;
}

/* ===============================
   BUTTONS
=============================== */
.btn-brand {
  background: #5A973A;
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  transition: all 0.2s ease;
}
.btn-brand:hover {
  background: #4c8230;
  color: #fff;
}
.btn-outline-white {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-outline-white:hover {
  background: #fff;
  color: #5A973A;
}

/* ===============================
   SECTIONS
=============================== */
section {
  padding: 80px 0;
  scroll-margin-top: 100px;
}

.section-light {
  background: #f8f9fa;
}
.section-soft {
  background: #f4f7f4;
}

/* ===============================
   CARDS
=============================== */
.card-clean {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  height: 100%;
}

/* ===============================
   ICONS
=============================== */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(90, 151, 58, 0.1);
  color: #5A973A;
  font-size: 1.5rem;
  margin: 0 auto 15px;
}

/* ===============================
   BADGES
=============================== */
.badge-trust {
  background: #eef6ea;
  color: #3d6c28;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 50px;
  display: inline-block;
  margin: 5px;
}

/* ===============================
   CTA
=============================== */
.cta {
  background: #5A973A;
  color: #fff;
  text-align: center;
}

/* ===============================
   STICKY CTA
=============================== */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===============================
   FOOTER
=============================== */
footer {
  background: #222;
  color: #ccc;
  font-size: 0.9rem;
  padding: 40px 0;
  text-align: center;
}
footer a {
  color: #fff;
  text-decoration: underline;
}

/* ===============================
   UTILITIES
=============================== */
.text-muted-custom {
  color: #6c757d;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}/*# sourceMappingURL=main.css.map */